Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rphansen91/90f5980f0fc050b0741e9a68e5d4d99e to your computer and use it in GitHub Desktop.
Save rphansen91/90f5980f0fc050b0741e9a68e5d4d99e to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.1+commit.df193b15.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";
/**
*
* @dev Implementation of the basic standard multi-token.
* See https://eips.ethereum.org/EIPS/eip-1155
* Originally based on code by Enjin: https://github.com/enjin/erc-1155
*
* _Available since v3.1._
*/
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
using Address for address;
// Mapping from token ID to account balances
mapping (uint256 => mapping(address => uint256)) private _balances;
// Mapping from account to operator approvals
mapping (address => mapping(address => bool)) private _operatorApprovals;
// Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
string private _uri;
/**
* @dev See {_setURI}.
*/
constructor (string memory uri_) {
_setURI(uri_);
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return interfaceId == type(IERC1155).interfaceId
|| interfaceId == type(IERC1155MetadataURI).interfaceId
|| super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC1155MetadataURI-uri}.
*
* This implementation returns the same URI for *all* token types. It relies
* on the token type ID substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* Clients calling this function must replace the `\{id\}` substring with the
* actual token type ID.
*/
function uri(uint256) public view virtual override returns (string memory) {
return _uri;
}
/**
* @dev See {IERC1155-balanceOf}.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
require(account != address(0), "ERC1155: balance query for the zero address");
return _balances[id][account];
}
/**
* @dev See {IERC1155-balanceOfBatch}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(
address[] memory accounts,
uint256[] memory ids
)
public
view
virtual
override
returns (uint256[] memory)
{
require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");
uint256[] memory batchBalances = new uint256[](accounts.length);
for (uint256 i = 0; i < accounts.length; ++i) {
batchBalances[i] = balanceOf(accounts[i], ids[i]);
}
return batchBalances;
}
/**
* @dev See {IERC1155-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(_msgSender() != operator, "ERC1155: setting approval status for self");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC1155-isApprovedForAll}.
*/
function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
return _operatorApprovals[account][operator];
}
/**
* @dev See {IERC1155-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
)
public
virtual
override
{
require(to != address(0), "ERC1155: transfer to the zero address");
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not owner nor approved"
);
address operator = _msgSender();
_beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
_balances[id][from] = fromBalance - amount;
_balances[id][to] += amount;
emit TransferSingle(operator, from, to, id, amount);
_doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
}
/**
* @dev See {IERC1155-safeBatchTransferFrom}.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
)
public
virtual
override
{
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
require(to != address(0), "ERC1155: transfer to the zero address");
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: transfer caller is not owner nor approved"
);
address operator = _msgSender();
_beforeTokenTransfer(operator, from, to, ids, amounts, data);
for (uint256 i = 0; i < ids.length; ++i) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
_balances[id][from] = fromBalance - amount;
_balances[id][to] += amount;
}
emit TransferBatch(operator, from, to, ids, amounts);
_doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
}
/**
* @dev Sets a new URI for all token types, by relying on the token type ID
* substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* By this mechanism, any occurrence of the `\{id\}` substring in either the
* URI or any of the amounts in the JSON file at said URI will be replaced by
* clients with the token type ID.
*
* For example, the `https://token-cdn-domain/\{id\}.json` URI would be
* interpreted by clients as
* `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
* for token type ID 0x4cce0.
*
* See {uri}.
*
* Because these URIs cannot be meaningfully represented by the {URI} event,
* this function emits no events.
*/
function _setURI(string memory newuri) internal virtual {
_uri = newuri;
}
/**
* @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual {
require(account != address(0), "ERC1155: mint to the zero address");
address operator = _msgSender();
_beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);
_balances[id][account] += amount;
emit TransferSingle(operator, address(0), account, id, amount);
_doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual {
require(to != address(0), "ERC1155: mint to the zero address");
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
address operator = _msgSender();
_beforeTokenTransfer(operator, address(0), to, ids, amounts, data);
for (uint i = 0; i < ids.length; i++) {
_balances[ids[i]][to] += amounts[i];
}
emit TransferBatch(operator, address(0), to, ids, amounts);
_doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
}
/**
* @dev Destroys `amount` tokens of token type `id` from `account`
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens of token type `id`.
*/
function _burn(address account, uint256 id, uint256 amount) internal virtual {
require(account != address(0), "ERC1155: burn from the zero address");
address operator = _msgSender();
_beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");
uint256 accountBalance = _balances[id][account];
require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
_balances[id][account] = accountBalance - amount;
emit TransferSingle(operator, account, address(0), id, amount);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
*/
function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual {
require(account != address(0), "ERC1155: burn from the zero address");
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
address operator = _msgSender();
_beforeTokenTransfer(operator, account, address(0), ids, amounts, "");
for (uint i = 0; i < ids.length; i++) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 accountBalance = _balances[id][account];
require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
_balances[id][account] = accountBalance - amount;
}
emit TransferBatch(operator, account, address(0), ids, amounts);
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning, as well as batched variants.
*
* The same hook is called on both single and batched variants. For single
* transfers, the length of the `id` and `amount` arrays will be 1.
*
* Calling conditions (for each `id` and `amount` pair):
*
* - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* of token type `id` will be transferred to `to`.
* - When `from` is zero, `amount` tokens of token type `id` will be minted
* for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
* will be burned.
* - `from` and `to` are never both zero.
* - `ids` and `amounts` have the same, non-zero length.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
)
internal
virtual
{ }
function _doSafeTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
)
private
{
if (to.isContract()) {
try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
if (response != IERC1155Receiver(to).onERC1155Received.selector) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function _doSafeBatchTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
)
private
{
if (to.isContract()) {
try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (bytes4 response) {
if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
uint256[] memory array = new uint256[](1);
array[0] = element;
return array;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC1155.sol";
/**
* @dev Interface of the optional ERC1155MetadataExtension interface, as defined
* in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
*
* _Available since v3.1._
*/
interface IERC1155MetadataURI is IERC1155 {
/**
* @dev Returns the URI for token type `id`.
*
* If the `\{id\}` substring is present in the URI, it must be replaced by
* clients with the actual token type ID.
*/
function uri(uint256 id) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC1155 compliant contract, as defined in the
* https://eips.ethereum.org/EIPS/eip-1155[EIP].
*
* _Available since v3.1._
*/
interface IERC1155 is IERC165 {
/**
* @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
*/
event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);
/**
* @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
* transfers.
*/
event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values);
/**
* @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
* `approved`.
*/
event ApprovalForAll(address indexed account, address indexed operator, bool approved);
/**
* @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
*
* If an {URI} event was emitted for `id`, the standard
* https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
* returned by {IERC1155MetadataURI-uri}.
*/
event URI(string value, uint256 indexed id);
/**
* @dev Returns the amount of tokens of token type `id` owned by `account`.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) external view returns (uint256);
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory);
/**
* @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
*
* Emits an {ApprovalForAll} event.
*
* Requirements:
*
* - `operator` cannot be the caller.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address account, address operator) external view returns (bool);
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external;
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external;
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* _Available since v3.1._
*/
interface IERC1155Receiver is IERC165 {
/**
@dev Handles the receipt of a single ERC1155 token type. This function is
called at the end of a `safeTransferFrom` after the balance has been updated.
To accept the transfer, this must return
`bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
(i.e. 0xf23a6e61, or its own function selector).
@param operator The address which initiated the transfer (i.e. msg.sender)
@param from The address which previously owned the token
@param id The ID of the token being transferred
@param value The amount of tokens being transferred
@param data Additional data with no specified format
@return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
*/
function onERC1155Received(
address operator,
address from,
uint256 id,
uint256 value,
bytes calldata data
)
external
returns(bytes4);
/**
@dev Handles the receipt of a multiple ERC1155 token types. This function
is called at the end of a `safeBatchTransferFrom` after the balances have
been updated. To accept the transfer(s), this must return
`bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
(i.e. 0xbc197c81, or its own function selector).
@param operator The address which initiated the batch transfer (i.e. msg.sender)
@param from The address which previously owned the token
@param ids An array containing ids of each token being transferred (order and length must match values array)
@param values An array containing amounts of each token being transferred (order and length must match ids array)
@param data Additional data with no specified format
@return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
*/
function onERC1155BatchReceived(
address operator,
address from,
uint256[] calldata ids,
uint256[] calldata values,
bytes calldata data
)
external
returns(bytes4);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20 {
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The defaut value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overloaded;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
_approve(sender, _msgSender(), currentAllowance - amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
_balances[sender] = senderBalance - amount;
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
_balances[account] = accountBalance - amount;
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens 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 amount) internal virtual { }
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// SPDX-License-Identifier: MIT
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
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 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");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(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");
// solhint-disable-next-line avoid-low-level-calls
(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");
// solhint-disable-next-line avoid-low-level-calls
(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");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
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) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
}
// SPDX-License-Identifier: MIT
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
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);
}
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.
{
"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:2383:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:183:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:4"
},
"nodeType": "YulFunctionCall",
"src": "170:67:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "258:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "263:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "254:3:4"
},
"nodeType": "YulFunctionCall",
"src": "254:11:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "267:33:4",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "247:6:4"
},
"nodeType": "YulFunctionCall",
"src": "247:54:4"
},
"nodeType": "YulExpressionStatement",
"src": "247:54:4"
},
{
"nodeType": "YulAssignment",
"src": "311:19:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "322:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "327:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "318:3:4"
},
"nodeType": "YulFunctionCall",
"src": "318:12:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "311:3:4"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:4",
"type": ""
}
],
"src": "7:329:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "407:53:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "424:3:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "447:5:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "429:17:4"
},
"nodeType": "YulFunctionCall",
"src": "429:24:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "417:6:4"
},
"nodeType": "YulFunctionCall",
"src": "417:37:4"
},
"nodeType": "YulExpressionStatement",
"src": "417:37:4"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "395:5:4",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "402:3:4",
"type": ""
}
],
"src": "342:118:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "637:248:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "647:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "659:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "670:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "655:3:4"
},
"nodeType": "YulFunctionCall",
"src": "655:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "647:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "694:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "705:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "690:3:4"
},
"nodeType": "YulFunctionCall",
"src": "690:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "713:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "719:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "709:3:4"
},
"nodeType": "YulFunctionCall",
"src": "709:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "683:6:4"
},
"nodeType": "YulFunctionCall",
"src": "683:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "683:47:4"
},
{
"nodeType": "YulAssignment",
"src": "739:139:4",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "873:4:4"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "747:124:4"
},
"nodeType": "YulFunctionCall",
"src": "747:131:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "739:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "617:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "632:4:4",
"type": ""
}
],
"src": "466:419:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "989:124:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "999:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1011:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1022:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1007:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1007:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "999:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1079:6:4"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1092:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1103:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1088:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1088:17:4"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1035:43:4"
},
"nodeType": "YulFunctionCall",
"src": "1035:71:4"
},
"nodeType": "YulExpressionStatement",
"src": "1035:71:4"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "961:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "973:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "984:4:4",
"type": ""
}
],
"src": "891:222:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1215:73:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1232:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1237:6:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1225:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1225:19:4"
},
"nodeType": "YulExpressionStatement",
"src": "1225:19:4"
},
{
"nodeType": "YulAssignment",
"src": "1253:29:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1272:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1277:4:4",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1268:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1268:14:4"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1253:11:4"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1187:3:4",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1192:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1203:11:4",
"type": ""
}
],
"src": "1119:169:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1338:261:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1348:25:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1371:1:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1353:17:4"
},
"nodeType": "YulFunctionCall",
"src": "1353:20:4"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1348:1:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1382:25:4",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1405:1:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1387:17:4"
},
"nodeType": "YulFunctionCall",
"src": "1387:20:4"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1382:1:4"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1545:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "1547:16:4"
},
"nodeType": "YulFunctionCall",
"src": "1547:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "1547:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1466:1:4"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1473:66:4",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1541:1:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1469:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1469:74:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1463:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1463:81:4"
},
"nodeType": "YulIf",
"src": "1460:2:4"
},
{
"nodeType": "YulAssignment",
"src": "1577:16:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1588:1:4"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1591:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1584:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1584:9:4"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "1577:3:4"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "1325:1:4",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "1328:1:4",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "1334:3:4",
"type": ""
}
],
"src": "1294:305:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1650:32:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1660:16:4",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1671:5:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1660:7:4"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1632:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1642:7:4",
"type": ""
}
],
"src": "1605:77:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1739:269:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1749:22:4",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1763:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1769:1:4",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1759:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1759:12:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1749:6:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1780:38:4",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1810:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1816:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1806:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1806:12:4"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "1784:18:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1857:51:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1871:27:4",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1885:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1893:4:4",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1881:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1881:17:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1871:6:4"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1837:18:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1830:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1830:26:4"
},
"nodeType": "YulIf",
"src": "1827:2:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1960:42:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "1974:16:4"
},
"nodeType": "YulFunctionCall",
"src": "1974:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "1974:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1924:18:4"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1947:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1955:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1944:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1944:14:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1921:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1921:38:4"
},
"nodeType": "YulIf",
"src": "1918:2:4"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "1723:4:4",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1732:6:4",
"type": ""
}
],
"src": "1688:320:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2042:152:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2059:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2062:77:4",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2052:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2052:88:4"
},
"nodeType": "YulExpressionStatement",
"src": "2052:88:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2156:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2159:4:4",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2149:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2149:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "2149:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2180:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2183:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2173:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2173:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "2173:15:4"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "2014:180:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2228:152:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2245:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2248:77:4",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2238:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2238:88:4"
},
"nodeType": "YulExpressionStatement",
"src": "2238:88:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2342:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2345:4:4",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2335:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2335:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "2335:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2366:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2369:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2359:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2359:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "2359:15:4"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "2200:180:4"
}
]
},
"contents": "{\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n\n mstore(add(pos, 0), \"ERC20: mint to the zero address\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__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_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_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 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 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 cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n}\n",
"id": 4,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600381526020017f58595a00000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f58595a00000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200023d565b508060049080519060200190620000af9291906200023d565b505050620000cd3368056bc75e2d63100000620000d360201b60201c565b6200048b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000146576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013d9062000340565b60405180910390fd5b6200015a600083836200023860201b60201c565b80600260008282546200016e919062000390565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001c5919062000390565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200022c919062000362565b60405180910390a35050565b505050565b8280546200024b90620003f7565b90600052602060002090601f0160209004810192826200026f5760008555620002bb565b82601f106200028a57805160ff1916838001178555620002bb565b82800160010185558215620002bb579182015b82811115620002ba5782518255916020019190600101906200029d565b5b509050620002ca9190620002ce565b5090565b5b80821115620002e9576000816000905550600101620002cf565b5090565b6000620002fc601f836200037f565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200033a81620003ed565b82525050565b600060208201905081810360008301526200035b81620002ed565b9050919050565b60006020820190506200037960008301846200032f565b92915050565b600082825260208201905092915050565b60006200039d82620003ed565b9150620003aa83620003ed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003e257620003e16200042d565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200041057607f821691505b602082108114156200042757620004266200045c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611380806200049b6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190611015565b60405180910390f35b6100e660048036038101906100e19190610c8e565b610308565b6040516100f39190610ffa565b60405180910390f35b610104610326565b6040516101119190611117565b60405180910390f35b610134600480360381019061012f9190610c3f565b610330565b6040516101419190610ffa565b60405180910390f35b610152610431565b60405161015f9190611132565b60405180910390f35b610182600480360381019061017d9190610c8e565b61043a565b60405161018f9190610ffa565b60405180910390f35b6101b260048036038101906101ad9190610bda565b6104e6565b6040516101bf9190611117565b60405180910390f35b6101d061052e565b6040516101dd9190611015565b60405180910390f35b61020060048036038101906101fb9190610c8e565b6105c0565b60405161020d9190610ffa565b60405180910390f35b610230600480360381019061022b9190610c8e565b6106b4565b60405161023d9190610ffa565b60405180910390f35b610260600480360381019061025b9190610c03565b6106d2565b60405161026d9190611117565b60405180910390f35b6060600380546102859061127b565b80601f01602080910402602001604051908101604052809291908181526020018280546102b19061127b565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c610315610759565b8484610761565b6001905092915050565b6000600254905090565b600061033d84848461092c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610388610759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90611097565b60405180910390fd5b61042585610414610759565b858461042091906111bf565b610761565b60019150509392505050565b60006012905090565b60006104dc610447610759565b848460016000610455610759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d79190611169565b610761565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461053d9061127b565b80601f01602080910402602001604051908101604052809291908181526020018280546105699061127b565b80156105b65780601f1061058b576101008083540402835291602001916105b6565b820191906000526020600020905b81548152906001019060200180831161059957829003601f168201915b5050505050905090565b600080600160006105cf610759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610683906110f7565b60405180910390fd5b6106a9610697610759565b8585846106a491906111bf565b610761565b600191505092915050565b60006106c86106c1610759565b848461092c565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c8906110d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083890611057565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161091f9190611117565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610993906110b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390611037565b60405180910390fd5b610a17838383610bab565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490611077565b60405180910390fd5b8181610aa991906111bf565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b399190611169565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9d9190611117565b60405180910390a350505050565b505050565b600081359050610bbf8161131c565b92915050565b600081359050610bd481611333565b92915050565b600060208284031215610bec57600080fd5b6000610bfa84828501610bb0565b91505092915050565b60008060408385031215610c1657600080fd5b6000610c2485828601610bb0565b9250506020610c3585828601610bb0565b9150509250929050565b600080600060608486031215610c5457600080fd5b6000610c6286828701610bb0565b9350506020610c7386828701610bb0565b9250506040610c8486828701610bc5565b9150509250925092565b60008060408385031215610ca157600080fd5b6000610caf85828601610bb0565b9250506020610cc085828601610bc5565b9150509250929050565b610cd381611205565b82525050565b6000610ce48261114d565b610cee8185611158565b9350610cfe818560208601611248565b610d078161130b565b840191505092915050565b6000610d1f602383611158565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d85602283611158565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610deb602683611158565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e51602883611158565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610eb7602583611158565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f1d602483611158565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f83602583611158565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610fe581611231565b82525050565b610ff48161123b565b82525050565b600060208201905061100f6000830184610cca565b92915050565b6000602082019050818103600083015261102f8184610cd9565b905092915050565b6000602082019050818103600083015261105081610d12565b9050919050565b6000602082019050818103600083015261107081610d78565b9050919050565b6000602082019050818103600083015261109081610dde565b9050919050565b600060208201905081810360008301526110b081610e44565b9050919050565b600060208201905081810360008301526110d081610eaa565b9050919050565b600060208201905081810360008301526110f081610f10565b9050919050565b6000602082019050818103600083015261111081610f76565b9050919050565b600060208201905061112c6000830184610fdc565b92915050565b60006020820190506111476000830184610feb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061117482611231565b915061117f83611231565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156111b4576111b36112ad565b5b828201905092915050565b60006111ca82611231565b91506111d583611231565b9250828210156111e8576111e76112ad565b5b828203905092915050565b60006111fe82611211565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561126657808201518184015260208101905061124b565b83811115611275576000848401525b50505050565b6000600282049050600182168061129357607f821691505b602082108114156112a7576112a66112dc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611325816111f3565b811461133057600080fd5b50565b61133c81611231565b811461134757600080fd5b5056fea2646970667358221220d9ddaa34bd6c02eb2d298afb9b697f6f7fb89cb2f864302331379e727951413a64736f6c63430008000033",
"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 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x58595A0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x58595A0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0x23D JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0x23D JUMP JUMPDEST POP POP POP PUSH3 0xCD CALLER PUSH9 0x56BC75E2D63100000 PUSH3 0xD3 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x48B JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x146 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x13D SWAP1 PUSH3 0x340 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x15A PUSH1 0x0 DUP4 DUP4 PUSH3 0x238 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x16E SWAP2 SWAP1 PUSH3 0x390 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 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 PUSH3 0x1C5 SWAP2 SWAP1 PUSH3 0x390 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x22C SWAP2 SWAP1 PUSH3 0x362 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x24B SWAP1 PUSH3 0x3F7 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x26F JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x2BB JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x28A JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x2BB JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x2BB JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x2BA JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x29D JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x2CA SWAP2 SWAP1 PUSH3 0x2CE JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x2E9 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x2CF JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2FC PUSH1 0x1F DUP4 PUSH3 0x37F JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x33A DUP2 PUSH3 0x3ED JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x35B DUP2 PUSH3 0x2ED JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x379 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x32F JUMP JUMPDEST 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 PUSH3 0x39D DUP3 PUSH3 0x3ED JUMP JUMPDEST SWAP2 POP PUSH3 0x3AA DUP4 PUSH3 0x3ED JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x3E2 JUMPI PUSH3 0x3E1 PUSH3 0x42D JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x410 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x427 JUMPI PUSH3 0x426 PUSH3 0x45C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x1380 DUP1 PUSH3 0x49B PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E6 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x246 JUMPI PUSH2 0xA9 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x11A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x14A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x276 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0x1015 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE1 SWAP2 SWAP1 PUSH2 0xC8E JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xFFA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x326 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0x1117 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x134 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12F SWAP2 SWAP1 PUSH2 0xC3F JUMP JUMPDEST PUSH2 0x330 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xFFA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x152 PUSH2 0x431 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15F SWAP2 SWAP1 PUSH2 0x1132 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x182 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17D SWAP2 SWAP1 PUSH2 0xC8E JUMP JUMPDEST PUSH2 0x43A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xFFA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AD SWAP2 SWAP1 PUSH2 0xBDA JUMP JUMPDEST PUSH2 0x4E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0x1117 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D0 PUSH2 0x52E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP2 SWAP1 PUSH2 0x1015 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x200 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1FB SWAP2 SWAP1 PUSH2 0xC8E JUMP JUMPDEST PUSH2 0x5C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xFFA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x230 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22B SWAP2 SWAP1 PUSH2 0xC8E JUMP JUMPDEST PUSH2 0x6B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xFFA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25B SWAP2 SWAP1 PUSH2 0xC03 JUMP JUMPDEST PUSH2 0x6D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x1117 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0x127B 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 0x2B1 SWAP1 PUSH2 0x127B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FE 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 0x2E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31C PUSH2 0x315 PUSH2 0x759 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x761 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33D DUP5 DUP5 DUP5 PUSH2 0x92C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x388 PUSH2 0x759 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x408 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3FF SWAP1 PUSH2 0x1097 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x425 DUP6 PUSH2 0x414 PUSH2 0x759 JUMP JUMPDEST DUP6 DUP5 PUSH2 0x420 SWAP2 SWAP1 PUSH2 0x11BF JUMP JUMPDEST PUSH2 0x761 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4DC PUSH2 0x447 PUSH2 0x759 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x455 PUSH2 0x759 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x4D7 SWAP2 SWAP1 PUSH2 0x1169 JUMP JUMPDEST PUSH2 0x761 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x53D SWAP1 PUSH2 0x127B 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 0x569 SWAP1 PUSH2 0x127B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5B6 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x58B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5B6 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 0x599 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x5CF PUSH2 0x759 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x68C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x683 SWAP1 PUSH2 0x10F7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6A9 PUSH2 0x697 PUSH2 0x759 JUMP JUMPDEST DUP6 DUP6 DUP5 PUSH2 0x6A4 SWAP2 SWAP1 PUSH2 0x11BF JUMP JUMPDEST PUSH2 0x761 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6C8 PUSH2 0x6C1 PUSH2 0x759 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x92C JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 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 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x7D1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7C8 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x841 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x838 SWAP1 PUSH2 0x1057 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 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 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x91F SWAP2 SWAP1 PUSH2 0x1117 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x99C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x993 SWAP1 PUSH2 0x10B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xA0C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA03 SWAP1 PUSH2 0x1037 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA17 DUP4 DUP4 DUP4 PUSH2 0xBAB JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xA9D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA94 SWAP1 PUSH2 0x1077 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0xAA9 SWAP2 SWAP1 PUSH2 0x11BF JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 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 0xB39 SWAP2 SWAP1 PUSH2 0x1169 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xB9D SWAP2 SWAP1 PUSH2 0x1117 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xBBF DUP2 PUSH2 0x131C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xBD4 DUP2 PUSH2 0x1333 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xBEC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xBFA DUP5 DUP3 DUP6 ADD PUSH2 0xBB0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xC16 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xC24 DUP6 DUP3 DUP7 ADD PUSH2 0xBB0 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xC35 DUP6 DUP3 DUP7 ADD PUSH2 0xBB0 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 0xC54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xC62 DUP7 DUP3 DUP8 ADD PUSH2 0xBB0 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xC73 DUP7 DUP3 DUP8 ADD PUSH2 0xBB0 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xC84 DUP7 DUP3 DUP8 ADD PUSH2 0xBC5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xCA1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xCAF DUP6 DUP3 DUP7 ADD PUSH2 0xBB0 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xCC0 DUP6 DUP3 DUP7 ADD PUSH2 0xBC5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xCD3 DUP2 PUSH2 0x1205 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCE4 DUP3 PUSH2 0x114D JUMP JUMPDEST PUSH2 0xCEE DUP2 DUP6 PUSH2 0x1158 JUMP JUMPDEST SWAP4 POP PUSH2 0xCFE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1248 JUMP JUMPDEST PUSH2 0xD07 DUP2 PUSH2 0x130B JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD1F PUSH1 0x23 DUP4 PUSH2 0x1158 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD85 PUSH1 0x22 DUP4 PUSH2 0x1158 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDEB PUSH1 0x26 DUP4 PUSH2 0x1158 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE51 PUSH1 0x28 DUP4 PUSH2 0x1158 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEB7 PUSH1 0x25 DUP4 PUSH2 0x1158 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF1D PUSH1 0x24 DUP4 PUSH2 0x1158 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 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 0xF83 PUSH1 0x25 DUP4 PUSH2 0x1158 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFE5 DUP2 PUSH2 0x1231 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xFF4 DUP2 PUSH2 0x123B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x100F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCCA 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 0x102F DUP2 DUP5 PUSH2 0xCD9 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 0x1050 DUP2 PUSH2 0xD12 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 0x1070 DUP2 PUSH2 0xD78 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 0x1090 DUP2 PUSH2 0xDDE 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 0x10B0 DUP2 PUSH2 0xE44 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 0x10D0 DUP2 PUSH2 0xEAA 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 0x10F0 DUP2 PUSH2 0xF10 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 0x1110 DUP2 PUSH2 0xF76 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x112C PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xFDC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1147 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xFEB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1174 DUP3 PUSH2 0x1231 JUMP JUMPDEST SWAP2 POP PUSH2 0x117F DUP4 PUSH2 0x1231 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x11B4 JUMPI PUSH2 0x11B3 PUSH2 0x12AD JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11CA DUP3 PUSH2 0x1231 JUMP JUMPDEST SWAP2 POP PUSH2 0x11D5 DUP4 PUSH2 0x1231 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x11E8 JUMPI PUSH2 0x11E7 PUSH2 0x12AD JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11FE DUP3 PUSH2 0x1211 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO 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 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1266 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x124B JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1275 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 0x1293 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x12A7 JUMPI PUSH2 0x12A6 PUSH2 0x12DC JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 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 0x1325 DUP2 PUSH2 0x11F3 JUMP JUMPDEST DUP2 EQ PUSH2 0x1330 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x133C DUP2 PUSH2 0x1231 JUMP JUMPDEST DUP2 EQ PUSH2 0x1347 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD9 0xDD 0xAA CALLVALUE 0xBD PUSH13 0x2EB2D298AFB9B697F6F7FB89C 0xB2 0xF8 PUSH5 0x302331379E PUSH19 0x7951413A64736F6C6343000800003300000000 ",
"sourceMap": "90:127:3:-:0;;;118:97;;;;;;;;;;1842:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1917:5;1909;:13;;;;;;;;;;;;:::i;:::-;;1942:7;1932;:17;;;;;;;;;;;;:::i;:::-;;1842:114;;168:40:3::1;174:10;186:21;168:5;;;:40;;:::i;:::-;90:127:::0;;7940:330:0;8042:1;8023:21;;:7;:21;;;;8015:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8091:49;8120:1;8124:7;8133:6;8091:20;;;:49;;:::i;:::-;8167:6;8151:12;;:22;;;;;;;:::i;:::-;;;;;;;;8205:6;8183:9;:18;8193:7;8183:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8247:7;8226:37;;8243:1;8226:37;;;8256:6;8226:37;;;;;;:::i;:::-;;;;;;;;7940:330;;:::o;10423:92::-;;;;:::o;90:127:3:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:329:4:-;;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;267:33;263:1;258:3;254:11;247:54;327:2;322:3;318:12;311:19;;153:183;;;:::o;342:118::-;429:24;447:5;429:24;:::i;:::-;424:3;417:37;407:53;;:::o;466:419::-;;670:2;659:9;655:18;647:26;;719:9;713:4;709:20;705:1;694:9;690:17;683:47;747:131;873:4;747:131;:::i;:::-;739:139;;637:248;;;:::o;891:222::-;;1022:2;1011:9;1007:18;999:26;;1035:71;1103:1;1092:9;1088:17;1079:6;1035:71;:::i;:::-;989:124;;;;:::o;1119:169::-;;1237:6;1232:3;1225:19;1277:4;1272:3;1268:14;1253:29;;1215:73;;;;:::o;1294:305::-;;1353:20;1371:1;1353:20;:::i;:::-;1348:25;;1387:20;1405:1;1387:20;:::i;:::-;1382:25;;1541:1;1473:66;1469:74;1466:1;1463:81;1460:2;;;1547:18;;:::i;:::-;1460:2;1591:1;1588;1584:9;1577:16;;1338:261;;;;:::o;1605:77::-;;1671:5;1660:16;;1650:32;;;:::o;1688:320::-;;1769:1;1763:4;1759:12;1749:22;;1816:1;1810:4;1806:12;1837:18;1827:2;;1893:4;1885:6;1881:17;1871:27;;1827:2;1955;1947:6;1944:14;1924:18;1921:38;1918:2;;;1974:18;;:::i;:::-;1918:2;1739:269;;;;:::o;2014:180::-;2062:77;2059:1;2052:88;2159:4;2156:1;2149:15;2183:4;2180:1;2173:15;2200:180;2248:77;2245:1;2238:88;2345:4;2342:1;2335:15;2369:4;2366:1;2359:15;90:127:3;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:11922:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:4"
},
"nodeType": "YulFunctionCall",
"src": "78:20:4"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:4"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:4"
},
"nodeType": "YulFunctionCall",
"src": "107:33:4"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:4"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:4",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:4",
"type": ""
}
],
"src": "7:139:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:4"
},
"nodeType": "YulFunctionCall",
"src": "223:20:4"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:4"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "252:26:4"
},
"nodeType": "YulFunctionCall",
"src": "252:33:4"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:4"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:4",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:4",
"type": ""
}
],
"src": "152:139:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:196:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "409:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "418:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "421:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "411:6:4"
},
"nodeType": "YulFunctionCall",
"src": "411:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "411:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "384:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "393:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "380:3:4"
},
"nodeType": "YulFunctionCall",
"src": "380:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "376:3:4"
},
"nodeType": "YulFunctionCall",
"src": "376:32:4"
},
"nodeType": "YulIf",
"src": "373:2:4"
},
{
"nodeType": "YulBlock",
"src": "435:117:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "450:15:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "454:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "479:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "514:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "525:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "510:3:4"
},
"nodeType": "YulFunctionCall",
"src": "510:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "534:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "489:20:4"
},
"nodeType": "YulFunctionCall",
"src": "489:53:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "479:6:4"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "333:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "344:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "356:6:4",
"type": ""
}
],
"src": "297:262:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "648:324:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "694:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "703:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "706:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "696:6:4"
},
"nodeType": "YulFunctionCall",
"src": "696:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "696:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "669:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "678:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "665:3:4"
},
"nodeType": "YulFunctionCall",
"src": "665:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "690:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "661:3:4"
},
"nodeType": "YulFunctionCall",
"src": "661:32:4"
},
"nodeType": "YulIf",
"src": "658:2:4"
},
{
"nodeType": "YulBlock",
"src": "720:117:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "735:15:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "749:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "739:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "764:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "799:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "810:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "795:3:4"
},
"nodeType": "YulFunctionCall",
"src": "795:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "819:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "774:20:4"
},
"nodeType": "YulFunctionCall",
"src": "774:53:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "764:6:4"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "847:118:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "862:16:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "876:2:4",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "866:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "892:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "927:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "938:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "923:3:4"
},
"nodeType": "YulFunctionCall",
"src": "923:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "947:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "902:20:4"
},
"nodeType": "YulFunctionCall",
"src": "902:53:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "892:6:4"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "610:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "621:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "633:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "641:6:4",
"type": ""
}
],
"src": "565:407:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1078:452:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1124:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1133:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1136:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1126:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1126:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "1126:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1099:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1108:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1095:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1095:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1120:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1091:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1091:32:4"
},
"nodeType": "YulIf",
"src": "1088:2:4"
},
{
"nodeType": "YulBlock",
"src": "1150:117:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1165:15:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1179:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1169:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1194:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1229:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1240:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1225:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1225:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1249:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1204:20:4"
},
"nodeType": "YulFunctionCall",
"src": "1204:53:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1194:6:4"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1277:118:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1292:16:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1306:2:4",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1296:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1322:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1357:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1368:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1353:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1353:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1377:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1332:20:4"
},
"nodeType": "YulFunctionCall",
"src": "1332:53:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1322:6:4"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1405:118:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1420:16:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1434:2:4",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1424:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1450:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1485:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1496:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1481:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1481:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1505:7:4"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1460:20:4"
},
"nodeType": "YulFunctionCall",
"src": "1460:53:4"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1450:6:4"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1032:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1043:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1055:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1063:6:4",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1071:6:4",
"type": ""
}
],
"src": "978:552:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1619:324:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1665:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1674:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1677:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1667:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1667:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "1667:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1640:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1649:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1636:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1636:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1661:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1632:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1632:32:4"
},
"nodeType": "YulIf",
"src": "1629:2:4"
},
{
"nodeType": "YulBlock",
"src": "1691:117:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1706:15:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1720:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1710:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1735:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1770:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1781:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1766:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1766:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1790:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1745:20:4"
},
"nodeType": "YulFunctionCall",
"src": "1745:53:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1735:6:4"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1818:118:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1833:16:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1847:2:4",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1837:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1863:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1898:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1909:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1894:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1894:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1918:7:4"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1873:20:4"
},
"nodeType": "YulFunctionCall",
"src": "1873:53:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1863:6:4"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1581:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1592:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1604:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1612:6:4",
"type": ""
}
],
"src": "1536:407:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2008:50:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2025:3:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2045:5:4"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2030:14:4"
},
"nodeType": "YulFunctionCall",
"src": "2030:21:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2018:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2018:34:4"
},
"nodeType": "YulExpressionStatement",
"src": "2018:34:4"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1996:5:4",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2003:3:4",
"type": ""
}
],
"src": "1949:109:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2156:272:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2166:53:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2213:5:4"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2180:32:4"
},
"nodeType": "YulFunctionCall",
"src": "2180:39:4"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2170:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2228:78:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2294:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2299:6:4"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2235:58:4"
},
"nodeType": "YulFunctionCall",
"src": "2235:71:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2228:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2341:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2348:4:4",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2337:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2337:16:4"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2355:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2360:6:4"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2315:21:4"
},
"nodeType": "YulFunctionCall",
"src": "2315:52:4"
},
"nodeType": "YulExpressionStatement",
"src": "2315:52:4"
},
{
"nodeType": "YulAssignment",
"src": "2376:46:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2387:3:4"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2414:6:4"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2392:21:4"
},
"nodeType": "YulFunctionCall",
"src": "2392:29:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2383:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2383:39:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2376:3:4"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2137:5:4",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2144:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2152:3:4",
"type": ""
}
],
"src": "2064:364:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2580:221:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2590:74:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2656:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2661:2:4",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2597:58:4"
},
"nodeType": "YulFunctionCall",
"src": "2597:67:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2590:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2685:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2690:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2681:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2681:11:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2694:34:4",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2674:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2674:55:4"
},
"nodeType": "YulExpressionStatement",
"src": "2674:55:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2750:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2755:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2746:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2746:12:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2760:5:4",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2739:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2739:27:4"
},
"nodeType": "YulExpressionStatement",
"src": "2739:27:4"
},
{
"nodeType": "YulAssignment",
"src": "2776:19:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2787:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2792:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2783:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2783:12:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2776:3:4"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2568:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2576:3:4",
"type": ""
}
],
"src": "2434:367:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2953:220:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2963:74:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3029:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3034:2:4",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2970:58:4"
},
"nodeType": "YulFunctionCall",
"src": "2970:67:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2963:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3058:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3063:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3054:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3054:11:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3067:34:4",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3047:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3047:55:4"
},
"nodeType": "YulExpressionStatement",
"src": "3047:55:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3123:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3128:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3119:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3119:12:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3133:4:4",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3112:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3112:26:4"
},
"nodeType": "YulExpressionStatement",
"src": "3112:26:4"
},
{
"nodeType": "YulAssignment",
"src": "3148:19:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3159:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3164:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3155:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3155:12:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3148:3:4"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2941:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2949:3:4",
"type": ""
}
],
"src": "2807:366:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3325:224:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3335:74:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3401:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3406:2:4",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3342:58:4"
},
"nodeType": "YulFunctionCall",
"src": "3342:67:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3335:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3430:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3435:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3426:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3426:11:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3439:34:4",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3419:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3419:55:4"
},
"nodeType": "YulExpressionStatement",
"src": "3419:55:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3495:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3500:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3491:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3491:12:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3505:8:4",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3484:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3484:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "3484:30:4"
},
{
"nodeType": "YulAssignment",
"src": "3524:19:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3535:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3540:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3531:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3531:12:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3524:3:4"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3313:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3321:3:4",
"type": ""
}
],
"src": "3179:370:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3701:226:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3711:74:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3777:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3782:2:4",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3718:58:4"
},
"nodeType": "YulFunctionCall",
"src": "3718:67:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3711:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3806:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3811:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3802:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3802:11:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3815:34:4",
"type": "",
"value": "ERC20: transfer amount exceeds a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3795:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3795:55:4"
},
"nodeType": "YulExpressionStatement",
"src": "3795:55:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3871:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3876:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3867:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3867:12:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3881:10:4",
"type": "",
"value": "llowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3860:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3860:32:4"
},
"nodeType": "YulExpressionStatement",
"src": "3860:32:4"
},
{
"nodeType": "YulAssignment",
"src": "3902:19:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3913:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3918:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3909:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3909:12:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3902:3:4"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3689:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3697:3:4",
"type": ""
}
],
"src": "3555:372:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4079:223:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4089:74:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4155:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4160:2:4",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4096:58:4"
},
"nodeType": "YulFunctionCall",
"src": "4096:67:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4089:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4184:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4189:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4180:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4180:11:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4193:34:4",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4173:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4173:55:4"
},
"nodeType": "YulExpressionStatement",
"src": "4173:55:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4249:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4254:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4245:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4245:12:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4259:7:4",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4238:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4238:29:4"
},
"nodeType": "YulExpressionStatement",
"src": "4238:29:4"
},
{
"nodeType": "YulAssignment",
"src": "4277:19:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4288:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4293:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4284:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4284:12:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4277:3:4"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4067:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4075:3:4",
"type": ""
}
],
"src": "3933:369:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4454:222:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4464:74:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4530:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4535:2:4",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4471:58:4"
},
"nodeType": "YulFunctionCall",
"src": "4471:67:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4464:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4559:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4564:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4555:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4555:11:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4568:34:4",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4548:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4548:55:4"
},
"nodeType": "YulExpressionStatement",
"src": "4548:55:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4624:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4629:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4620:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4620:12:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4634:6:4",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4613:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4613:28:4"
},
"nodeType": "YulExpressionStatement",
"src": "4613:28:4"
},
{
"nodeType": "YulAssignment",
"src": "4651:19:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4662:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4667:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4658:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4658:12:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4651:3:4"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4442:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4450:3:4",
"type": ""
}
],
"src": "4308:368:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4828:223:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4838:74:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4904:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4909:2:4",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4845:58:4"
},
"nodeType": "YulFunctionCall",
"src": "4845:67:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4838:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4933:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4938:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4929:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4929:11:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4942:34:4",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4922:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4922:55:4"
},
"nodeType": "YulExpressionStatement",
"src": "4922:55:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4998:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5003:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4994:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4994:12:4"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "5008:7:4",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4987:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4987:29:4"
},
"nodeType": "YulExpressionStatement",
"src": "4987:29:4"
},
{
"nodeType": "YulAssignment",
"src": "5026:19:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5037:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5042:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5033:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5033:12:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5026:3:4"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4816:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4824:3:4",
"type": ""
}
],
"src": "4682:369:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5122:53:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5139:3:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5162:5:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5144:17:4"
},
"nodeType": "YulFunctionCall",
"src": "5144:24:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5132:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5132:37:4"
},
"nodeType": "YulExpressionStatement",
"src": "5132:37:4"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5110:5:4",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5117:3:4",
"type": ""
}
],
"src": "5057:118:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5242:51:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5259:3:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5280:5:4"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "5264:15:4"
},
"nodeType": "YulFunctionCall",
"src": "5264:22:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5252:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5252:35:4"
},
"nodeType": "YulExpressionStatement",
"src": "5252:35:4"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5230:5:4",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5237:3:4",
"type": ""
}
],
"src": "5181:112:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5391:118:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5401:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5413:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5424:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5409:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5409:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5401:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5475:6:4"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5488:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5499:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5484:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5484:17:4"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "5437:37:4"
},
"nodeType": "YulFunctionCall",
"src": "5437:65:4"
},
"nodeType": "YulExpressionStatement",
"src": "5437:65:4"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5363:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5375:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5386:4:4",
"type": ""
}
],
"src": "5299:210:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5633:195:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5643:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5655:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5666:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5651:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5651:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5643:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5690:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5701:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5686:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5686:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5709:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5715:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5705:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5705:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5679:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5679:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "5679:47:4"
},
{
"nodeType": "YulAssignment",
"src": "5735:86:4",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5807:6:4"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5816:4:4"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5743:63:4"
},
"nodeType": "YulFunctionCall",
"src": "5743:78:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5735:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5605:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5617:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5628:4:4",
"type": ""
}
],
"src": "5515:313:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6005:248:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6015:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6027:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6038:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6023:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6023:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6015:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6062:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6073:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6058:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6058:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6081:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6087:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6077:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6077:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6051:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6051:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "6051:47:4"
},
{
"nodeType": "YulAssignment",
"src": "6107:139:4",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6241:4:4"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6115:124:4"
},
"nodeType": "YulFunctionCall",
"src": "6115:131:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6107:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5985:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6000:4:4",
"type": ""
}
],
"src": "5834:419:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6430:248:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6440:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6452:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6463:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6448:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6448:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6440:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6487:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6498:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6483:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6483:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6506:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6512:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6502:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6502:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6476:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6476:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "6476:47:4"
},
{
"nodeType": "YulAssignment",
"src": "6532:139:4",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6666:4:4"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6540:124:4"
},
"nodeType": "YulFunctionCall",
"src": "6540:131:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6532:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6410:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6425:4:4",
"type": ""
}
],
"src": "6259:419:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6855:248:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6865:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6877:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6888:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6873:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6873:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6865:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6912:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6923:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6908:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6908:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6931:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6937:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6927:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6927:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6901:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6901:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "6901:47:4"
},
{
"nodeType": "YulAssignment",
"src": "6957:139:4",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7091:4:4"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6965:124:4"
},
"nodeType": "YulFunctionCall",
"src": "6965:131:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6957:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6835:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6850:4:4",
"type": ""
}
],
"src": "6684:419:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7280:248:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7290:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7302:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7313:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7298:3:4"
},
"nodeType": "YulFunctionCall",
"src": "7298:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7290:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7337:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7348:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7333:3:4"
},
"nodeType": "YulFunctionCall",
"src": "7333:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7356:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7362:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7352:3:4"
},
"nodeType": "YulFunctionCall",
"src": "7352:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7326:6:4"
},
"nodeType": "YulFunctionCall",
"src": "7326:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "7326:47:4"
},
{
"nodeType": "YulAssignment",
"src": "7382:139:4",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7516:4:4"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7390:124:4"
},
"nodeType": "YulFunctionCall",
"src": "7390:131:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7382:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7260:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7275:4:4",
"type": ""
}
],
"src": "7109:419:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7705:248:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7715:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7727:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7738:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7723:3:4"
},
"nodeType": "YulFunctionCall",
"src": "7723:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7715:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7762:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7773:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7758:3:4"
},
"nodeType": "YulFunctionCall",
"src": "7758:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7781:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7787:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7777:3:4"
},
"nodeType": "YulFunctionCall",
"src": "7777:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7751:6:4"
},
"nodeType": "YulFunctionCall",
"src": "7751:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "7751:47:4"
},
{
"nodeType": "YulAssignment",
"src": "7807:139:4",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7941:4:4"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7815:124:4"
},
"nodeType": "YulFunctionCall",
"src": "7815:131:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7807:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7685:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7700:4:4",
"type": ""
}
],
"src": "7534:419:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8130:248:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8140:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8152:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8163:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8148:3:4"
},
"nodeType": "YulFunctionCall",
"src": "8148:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8140:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8187:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8198:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8183:3:4"
},
"nodeType": "YulFunctionCall",
"src": "8183:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8206:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8212:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8202:3:4"
},
"nodeType": "YulFunctionCall",
"src": "8202:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8176:6:4"
},
"nodeType": "YulFunctionCall",
"src": "8176:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "8176:47:4"
},
{
"nodeType": "YulAssignment",
"src": "8232:139:4",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8366:4:4"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8240:124:4"
},
"nodeType": "YulFunctionCall",
"src": "8240:131:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8232:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8110:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8125:4:4",
"type": ""
}
],
"src": "7959:419:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8555:248:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8565:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8577:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8588:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8573:3:4"
},
"nodeType": "YulFunctionCall",
"src": "8573:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8565:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8612:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8623:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8608:3:4"
},
"nodeType": "YulFunctionCall",
"src": "8608:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8631:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8637:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8627:3:4"
},
"nodeType": "YulFunctionCall",
"src": "8627:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8601:6:4"
},
"nodeType": "YulFunctionCall",
"src": "8601:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "8601:47:4"
},
{
"nodeType": "YulAssignment",
"src": "8657:139:4",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8791:4:4"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8665:124:4"
},
"nodeType": "YulFunctionCall",
"src": "8665:131:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8657:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8535:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8550:4:4",
"type": ""
}
],
"src": "8384:419:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8907:124:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8917:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8929:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8940:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8925:3:4"
},
"nodeType": "YulFunctionCall",
"src": "8925:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8917:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8997:6:4"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9010:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9021:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9006:3:4"
},
"nodeType": "YulFunctionCall",
"src": "9006:17:4"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "8953:43:4"
},
"nodeType": "YulFunctionCall",
"src": "8953:71:4"
},
"nodeType": "YulExpressionStatement",
"src": "8953:71:4"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8879:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8891:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8902:4:4",
"type": ""
}
],
"src": "8809:222:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9131:120:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9141:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9153:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9164:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9149:3:4"
},
"nodeType": "YulFunctionCall",
"src": "9149:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9141:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9217:6:4"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9230:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9241:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9226:3:4"
},
"nodeType": "YulFunctionCall",
"src": "9226:17:4"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "9177:39:4"
},
"nodeType": "YulFunctionCall",
"src": "9177:67:4"
},
"nodeType": "YulExpressionStatement",
"src": "9177:67:4"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9103:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9115:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9126:4:4",
"type": ""
}
],
"src": "9037:214:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9316:40:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9327:22:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9343:5:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "9337:5:4"
},
"nodeType": "YulFunctionCall",
"src": "9337:12:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9327:6:4"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9299:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9309:6:4",
"type": ""
}
],
"src": "9257:99:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9458:73:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9475:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9480:6:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9468:6:4"
},
"nodeType": "YulFunctionCall",
"src": "9468:19:4"
},
"nodeType": "YulExpressionStatement",
"src": "9468:19:4"
},
{
"nodeType": "YulAssignment",
"src": "9496:29:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9515:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9520:4:4",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9511:3:4"
},
"nodeType": "YulFunctionCall",
"src": "9511:14:4"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "9496:11:4"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9430:3:4",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9435:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "9446:11:4",
"type": ""
}
],
"src": "9362:169:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9581:261:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9591:25:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9614:1:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9596:17:4"
},
"nodeType": "YulFunctionCall",
"src": "9596:20:4"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9591:1:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9625:25:4",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9648:1:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9630:17:4"
},
"nodeType": "YulFunctionCall",
"src": "9630:20:4"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9625:1:4"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9788:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "9790:16:4"
},
"nodeType": "YulFunctionCall",
"src": "9790:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "9790:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9709:1:4"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9716:66:4",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9784:1:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9712:3:4"
},
"nodeType": "YulFunctionCall",
"src": "9712:74:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9706:2:4"
},
"nodeType": "YulFunctionCall",
"src": "9706:81:4"
},
"nodeType": "YulIf",
"src": "9703:2:4"
},
{
"nodeType": "YulAssignment",
"src": "9820:16:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9831:1:4"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9834:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9827:3:4"
},
"nodeType": "YulFunctionCall",
"src": "9827:9:4"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "9820:3:4"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "9568:1:4",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "9571:1:4",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "9577:3:4",
"type": ""
}
],
"src": "9537:305:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9893:146:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9903:25:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9926:1:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9908:17:4"
},
"nodeType": "YulFunctionCall",
"src": "9908:20:4"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9903:1:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9937:25:4",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9960:1:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9942:17:4"
},
"nodeType": "YulFunctionCall",
"src": "9942:20:4"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9937:1:4"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9984:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "9986:16:4"
},
"nodeType": "YulFunctionCall",
"src": "9986:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "9986:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9978:1:4"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9981:1:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "9975:2:4"
},
"nodeType": "YulFunctionCall",
"src": "9975:8:4"
},
"nodeType": "YulIf",
"src": "9972:2:4"
},
{
"nodeType": "YulAssignment",
"src": "10016:17:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10028:1:4"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10031:1:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10024:3:4"
},
"nodeType": "YulFunctionCall",
"src": "10024:9:4"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "10016:4:4"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "9879:1:4",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "9882:1:4",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "9888:4:4",
"type": ""
}
],
"src": "9848:191:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10090:51:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10100:35:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10129:5:4"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "10111:17:4"
},
"nodeType": "YulFunctionCall",
"src": "10111:24:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10100:7:4"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10072:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10082:7:4",
"type": ""
}
],
"src": "10045:96:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10189:48:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10199:32:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10224:5:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10217:6:4"
},
"nodeType": "YulFunctionCall",
"src": "10217:13:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10210:6:4"
},
"nodeType": "YulFunctionCall",
"src": "10210:21:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10199:7:4"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10171:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10181:7:4",
"type": ""
}
],
"src": "10147:90:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10288:81:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10298:65:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10313:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10320:42:4",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10309:3:4"
},
"nodeType": "YulFunctionCall",
"src": "10309:54:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10298:7:4"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10270:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10280:7:4",
"type": ""
}
],
"src": "10243:126:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10420:32:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10430:16:4",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "10441:5:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10430:7:4"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10402:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10412:7:4",
"type": ""
}
],
"src": "10375:77:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10501:43:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10511:27:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10526:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10533:4:4",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10522:3:4"
},
"nodeType": "YulFunctionCall",
"src": "10522:16:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10511:7:4"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10483:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10493:7:4",
"type": ""
}
],
"src": "10458:86:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10599:258:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10609:10:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10618:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "10613:1:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10678:63:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10703:3:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10708:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10699:3:4"
},
"nodeType": "YulFunctionCall",
"src": "10699:11:4"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10722:3:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10727:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10718:3:4"
},
"nodeType": "YulFunctionCall",
"src": "10718:11:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10712:5:4"
},
"nodeType": "YulFunctionCall",
"src": "10712:18:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10692:6:4"
},
"nodeType": "YulFunctionCall",
"src": "10692:39:4"
},
"nodeType": "YulExpressionStatement",
"src": "10692:39:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10639:1:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10642:6:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10636:2:4"
},
"nodeType": "YulFunctionCall",
"src": "10636:13:4"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "10650:19:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10652:15:4",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10661:1:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10664:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10657:3:4"
},
"nodeType": "YulFunctionCall",
"src": "10657:10:4"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10652:1:4"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "10632:3:4",
"statements": []
},
"src": "10628:113:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10775:76:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10825:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10830:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10821:3:4"
},
"nodeType": "YulFunctionCall",
"src": "10821:16:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10839:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10814:6:4"
},
"nodeType": "YulFunctionCall",
"src": "10814:27:4"
},
"nodeType": "YulExpressionStatement",
"src": "10814:27:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10756:1:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10759:6:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10753:2:4"
},
"nodeType": "YulFunctionCall",
"src": "10753:13:4"
},
"nodeType": "YulIf",
"src": "10750:2:4"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "10581:3:4",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "10586:3:4",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10591:6:4",
"type": ""
}
],
"src": "10550:307:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10914:269:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10924:22:4",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10938:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10944:1:4",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "10934:3:4"
},
"nodeType": "YulFunctionCall",
"src": "10934:12:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10924:6:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10955:38:4",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10985:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10991:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10981:3:4"
},
"nodeType": "YulFunctionCall",
"src": "10981:12:4"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "10959:18:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11032:51:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11046:27:4",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11060:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11068:4:4",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11056:3:4"
},
"nodeType": "YulFunctionCall",
"src": "11056:17:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11046:6:4"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "11012:18:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11005:6:4"
},
"nodeType": "YulFunctionCall",
"src": "11005:26:4"
},
"nodeType": "YulIf",
"src": "11002:2:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11135:42:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "11149:16:4"
},
"nodeType": "YulFunctionCall",
"src": "11149:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "11149:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "11099:18:4"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11122:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11130:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "11119:2:4"
},
"nodeType": "YulFunctionCall",
"src": "11119:14:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11096:2:4"
},
"nodeType": "YulFunctionCall",
"src": "11096:38:4"
},
"nodeType": "YulIf",
"src": "11093:2:4"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "10898:4:4",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10907:6:4",
"type": ""
}
],
"src": "10863:320:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11217:152:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11234:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11237:77:4",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11227:6:4"
},
"nodeType": "YulFunctionCall",
"src": "11227:88:4"
},
"nodeType": "YulExpressionStatement",
"src": "11227:88:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11331:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11334:4:4",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11324:6:4"
},
"nodeType": "YulFunctionCall",
"src": "11324:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "11324:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11355:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11358:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11348:6:4"
},
"nodeType": "YulFunctionCall",
"src": "11348:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "11348:15:4"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "11189:180:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11403:152:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11420:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11423:77:4",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11413:6:4"
},
"nodeType": "YulFunctionCall",
"src": "11413:88:4"
},
"nodeType": "YulExpressionStatement",
"src": "11413:88:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11517:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11520:4:4",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11510:6:4"
},
"nodeType": "YulFunctionCall",
"src": "11510:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "11510:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11541:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11544:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11534:6:4"
},
"nodeType": "YulFunctionCall",
"src": "11534:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "11534:15:4"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "11375:180:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11609:54:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11619:38:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11637:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11644:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11633:3:4"
},
"nodeType": "YulFunctionCall",
"src": "11633:14:4"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11653:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "11649:3:4"
},
"nodeType": "YulFunctionCall",
"src": "11649:7:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11629:3:4"
},
"nodeType": "YulFunctionCall",
"src": "11629:28:4"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "11619:6:4"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11592:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "11602:6:4",
"type": ""
}
],
"src": "11561:102:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11712:79:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11769:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11778:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11781:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11771:6:4"
},
"nodeType": "YulFunctionCall",
"src": "11771:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "11771:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11735:5:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11760:5:4"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "11742:17:4"
},
"nodeType": "YulFunctionCall",
"src": "11742:24:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11732:2:4"
},
"nodeType": "YulFunctionCall",
"src": "11732:35:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11725:6:4"
},
"nodeType": "YulFunctionCall",
"src": "11725:43:4"
},
"nodeType": "YulIf",
"src": "11722:2:4"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11705:5:4",
"type": ""
}
],
"src": "11669:122:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11840:79:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11897:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11906:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11909:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11899:6:4"
},
"nodeType": "YulFunctionCall",
"src": "11899:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "11899:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11863:5:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11888:5:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11870:17:4"
},
"nodeType": "YulFunctionCall",
"src": "11870:24:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11860:2:4"
},
"nodeType": "YulFunctionCall",
"src": "11860:35:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11853:6:4"
},
"nodeType": "YulFunctionCall",
"src": "11853:43:4"
},
"nodeType": "YulIf",
"src": "11850:2:4"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11833:5:4",
"type": ""
}
],
"src": "11797:122:4"
}
]
},
"contents": "{\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_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_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_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\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_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n\n mstore(add(pos, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(pos, 32), \"ess\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n\n mstore(add(pos, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(pos, 32), \"ss\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n\n mstore(add(pos, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(pos, 32), \"alance\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n\n mstore(add(pos, 0), \"ERC20: transfer amount exceeds a\")\n\n mstore(add(pos, 32), \"llowance\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_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), \"ERC20: transfer from the zero ad\")\n\n mstore(add(pos, 32), \"dress\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_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), \"ERC20: approve from the zero add\")\n\n mstore(add(pos, 32), \"ress\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_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), \"ERC20: decreased allowance below\")\n\n mstore(add(pos, 32), \" zero\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function 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_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__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_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__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_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__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_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__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_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__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_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__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_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__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_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_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_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function 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_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_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_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 panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\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 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_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 4,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190611015565b60405180910390f35b6100e660048036038101906100e19190610c8e565b610308565b6040516100f39190610ffa565b60405180910390f35b610104610326565b6040516101119190611117565b60405180910390f35b610134600480360381019061012f9190610c3f565b610330565b6040516101419190610ffa565b60405180910390f35b610152610431565b60405161015f9190611132565b60405180910390f35b610182600480360381019061017d9190610c8e565b61043a565b60405161018f9190610ffa565b60405180910390f35b6101b260048036038101906101ad9190610bda565b6104e6565b6040516101bf9190611117565b60405180910390f35b6101d061052e565b6040516101dd9190611015565b60405180910390f35b61020060048036038101906101fb9190610c8e565b6105c0565b60405161020d9190610ffa565b60405180910390f35b610230600480360381019061022b9190610c8e565b6106b4565b60405161023d9190610ffa565b60405180910390f35b610260600480360381019061025b9190610c03565b6106d2565b60405161026d9190611117565b60405180910390f35b6060600380546102859061127b565b80601f01602080910402602001604051908101604052809291908181526020018280546102b19061127b565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c610315610759565b8484610761565b6001905092915050565b6000600254905090565b600061033d84848461092c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610388610759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90611097565b60405180910390fd5b61042585610414610759565b858461042091906111bf565b610761565b60019150509392505050565b60006012905090565b60006104dc610447610759565b848460016000610455610759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d79190611169565b610761565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461053d9061127b565b80601f01602080910402602001604051908101604052809291908181526020018280546105699061127b565b80156105b65780601f1061058b576101008083540402835291602001916105b6565b820191906000526020600020905b81548152906001019060200180831161059957829003601f168201915b5050505050905090565b600080600160006105cf610759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610683906110f7565b60405180910390fd5b6106a9610697610759565b8585846106a491906111bf565b610761565b600191505092915050565b60006106c86106c1610759565b848461092c565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c8906110d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083890611057565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161091f9190611117565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610993906110b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390611037565b60405180910390fd5b610a17838383610bab565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490611077565b60405180910390fd5b8181610aa991906111bf565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b399190611169565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9d9190611117565b60405180910390a350505050565b505050565b600081359050610bbf8161131c565b92915050565b600081359050610bd481611333565b92915050565b600060208284031215610bec57600080fd5b6000610bfa84828501610bb0565b91505092915050565b60008060408385031215610c1657600080fd5b6000610c2485828601610bb0565b9250506020610c3585828601610bb0565b9150509250929050565b600080600060608486031215610c5457600080fd5b6000610c6286828701610bb0565b9350506020610c7386828701610bb0565b9250506040610c8486828701610bc5565b9150509250925092565b60008060408385031215610ca157600080fd5b6000610caf85828601610bb0565b9250506020610cc085828601610bc5565b9150509250929050565b610cd381611205565b82525050565b6000610ce48261114d565b610cee8185611158565b9350610cfe818560208601611248565b610d078161130b565b840191505092915050565b6000610d1f602383611158565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d85602283611158565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610deb602683611158565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e51602883611158565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610eb7602583611158565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f1d602483611158565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f83602583611158565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610fe581611231565b82525050565b610ff48161123b565b82525050565b600060208201905061100f6000830184610cca565b92915050565b6000602082019050818103600083015261102f8184610cd9565b905092915050565b6000602082019050818103600083015261105081610d12565b9050919050565b6000602082019050818103600083015261107081610d78565b9050919050565b6000602082019050818103600083015261109081610dde565b9050919050565b600060208201905081810360008301526110b081610e44565b9050919050565b600060208201905081810360008301526110d081610eaa565b9050919050565b600060208201905081810360008301526110f081610f10565b9050919050565b6000602082019050818103600083015261111081610f76565b9050919050565b600060208201905061112c6000830184610fdc565b92915050565b60006020820190506111476000830184610feb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061117482611231565b915061117f83611231565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156111b4576111b36112ad565b5b828201905092915050565b60006111ca82611231565b91506111d583611231565b9250828210156111e8576111e76112ad565b5b828203905092915050565b60006111fe82611211565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561126657808201518184015260208101905061124b565b83811115611275576000848401525b50505050565b6000600282049050600182168061129357607f821691505b602082108114156112a7576112a66112dc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611325816111f3565b811461133057600080fd5b50565b61133c81611231565b811461134757600080fd5b5056fea2646970667358221220d9ddaa34bd6c02eb2d298afb9b697f6f7fb89cb2f864302331379e727951413a64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E6 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x246 JUMPI PUSH2 0xA9 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x11A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x14A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x276 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0x1015 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE1 SWAP2 SWAP1 PUSH2 0xC8E JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xFFA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x326 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0x1117 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x134 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12F SWAP2 SWAP1 PUSH2 0xC3F JUMP JUMPDEST PUSH2 0x330 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xFFA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x152 PUSH2 0x431 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15F SWAP2 SWAP1 PUSH2 0x1132 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x182 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17D SWAP2 SWAP1 PUSH2 0xC8E JUMP JUMPDEST PUSH2 0x43A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xFFA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AD SWAP2 SWAP1 PUSH2 0xBDA JUMP JUMPDEST PUSH2 0x4E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0x1117 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D0 PUSH2 0x52E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP2 SWAP1 PUSH2 0x1015 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x200 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1FB SWAP2 SWAP1 PUSH2 0xC8E JUMP JUMPDEST PUSH2 0x5C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xFFA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x230 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22B SWAP2 SWAP1 PUSH2 0xC8E JUMP JUMPDEST PUSH2 0x6B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xFFA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25B SWAP2 SWAP1 PUSH2 0xC03 JUMP JUMPDEST PUSH2 0x6D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x1117 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0x127B 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 0x2B1 SWAP1 PUSH2 0x127B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FE 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 0x2E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31C PUSH2 0x315 PUSH2 0x759 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x761 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33D DUP5 DUP5 DUP5 PUSH2 0x92C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x388 PUSH2 0x759 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x408 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3FF SWAP1 PUSH2 0x1097 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x425 DUP6 PUSH2 0x414 PUSH2 0x759 JUMP JUMPDEST DUP6 DUP5 PUSH2 0x420 SWAP2 SWAP1 PUSH2 0x11BF JUMP JUMPDEST PUSH2 0x761 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4DC PUSH2 0x447 PUSH2 0x759 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x455 PUSH2 0x759 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x4D7 SWAP2 SWAP1 PUSH2 0x1169 JUMP JUMPDEST PUSH2 0x761 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x53D SWAP1 PUSH2 0x127B 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 0x569 SWAP1 PUSH2 0x127B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5B6 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x58B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5B6 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 0x599 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x5CF PUSH2 0x759 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x68C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x683 SWAP1 PUSH2 0x10F7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6A9 PUSH2 0x697 PUSH2 0x759 JUMP JUMPDEST DUP6 DUP6 DUP5 PUSH2 0x6A4 SWAP2 SWAP1 PUSH2 0x11BF JUMP JUMPDEST PUSH2 0x761 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6C8 PUSH2 0x6C1 PUSH2 0x759 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x92C JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 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 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x7D1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7C8 SWAP1 PUSH2 0x10D7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x841 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x838 SWAP1 PUSH2 0x1057 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 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 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x91F SWAP2 SWAP1 PUSH2 0x1117 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x99C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x993 SWAP1 PUSH2 0x10B7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xA0C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA03 SWAP1 PUSH2 0x1037 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA17 DUP4 DUP4 DUP4 PUSH2 0xBAB JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xA9D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA94 SWAP1 PUSH2 0x1077 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0xAA9 SWAP2 SWAP1 PUSH2 0x11BF JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 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 0xB39 SWAP2 SWAP1 PUSH2 0x1169 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xB9D SWAP2 SWAP1 PUSH2 0x1117 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xBBF DUP2 PUSH2 0x131C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xBD4 DUP2 PUSH2 0x1333 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xBEC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xBFA DUP5 DUP3 DUP6 ADD PUSH2 0xBB0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xC16 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xC24 DUP6 DUP3 DUP7 ADD PUSH2 0xBB0 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xC35 DUP6 DUP3 DUP7 ADD PUSH2 0xBB0 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 0xC54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xC62 DUP7 DUP3 DUP8 ADD PUSH2 0xBB0 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xC73 DUP7 DUP3 DUP8 ADD PUSH2 0xBB0 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xC84 DUP7 DUP3 DUP8 ADD PUSH2 0xBC5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xCA1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xCAF DUP6 DUP3 DUP7 ADD PUSH2 0xBB0 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xCC0 DUP6 DUP3 DUP7 ADD PUSH2 0xBC5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xCD3 DUP2 PUSH2 0x1205 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCE4 DUP3 PUSH2 0x114D JUMP JUMPDEST PUSH2 0xCEE DUP2 DUP6 PUSH2 0x1158 JUMP JUMPDEST SWAP4 POP PUSH2 0xCFE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1248 JUMP JUMPDEST PUSH2 0xD07 DUP2 PUSH2 0x130B JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD1F PUSH1 0x23 DUP4 PUSH2 0x1158 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD85 PUSH1 0x22 DUP4 PUSH2 0x1158 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDEB PUSH1 0x26 DUP4 PUSH2 0x1158 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE51 PUSH1 0x28 DUP4 PUSH2 0x1158 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEB7 PUSH1 0x25 DUP4 PUSH2 0x1158 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF1D PUSH1 0x24 DUP4 PUSH2 0x1158 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 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 0xF83 PUSH1 0x25 DUP4 PUSH2 0x1158 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFE5 DUP2 PUSH2 0x1231 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xFF4 DUP2 PUSH2 0x123B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x100F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCCA 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 0x102F DUP2 DUP5 PUSH2 0xCD9 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 0x1050 DUP2 PUSH2 0xD12 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 0x1070 DUP2 PUSH2 0xD78 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 0x1090 DUP2 PUSH2 0xDDE 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 0x10B0 DUP2 PUSH2 0xE44 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 0x10D0 DUP2 PUSH2 0xEAA 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 0x10F0 DUP2 PUSH2 0xF10 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 0x1110 DUP2 PUSH2 0xF76 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x112C PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xFDC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1147 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xFEB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1174 DUP3 PUSH2 0x1231 JUMP JUMPDEST SWAP2 POP PUSH2 0x117F DUP4 PUSH2 0x1231 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x11B4 JUMPI PUSH2 0x11B3 PUSH2 0x12AD JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11CA DUP3 PUSH2 0x1231 JUMP JUMPDEST SWAP2 POP PUSH2 0x11D5 DUP4 PUSH2 0x1231 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x11E8 JUMPI PUSH2 0x11E7 PUSH2 0x12AD JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11FE DUP3 PUSH2 0x1211 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO 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 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1266 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x124B JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1275 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 0x1293 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x12A7 JUMPI PUSH2 0x12A6 PUSH2 0x12DC JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 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 0x1325 DUP2 PUSH2 0x11F3 JUMP JUMPDEST DUP2 EQ PUSH2 0x1330 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x133C DUP2 PUSH2 0x1231 JUMP JUMPDEST DUP2 EQ PUSH2 0x1347 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD9 0xDD 0xAA CALLVALUE 0xBD PUSH13 0x2EB2D298AFB9B697F6F7FB89C 0xB2 0xF8 PUSH5 0x302331379E PUSH19 0x7951413A64736F6C6343000800003300000000 ",
"sourceMap": "90:127:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2021:89:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4091:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3082:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4724:414;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2940:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5533:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3246:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2223:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6232:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3574:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3804:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2021:89;2066:13;2098:5;2091:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2021:89;:::o;4091:166::-;4174:4;4190:39;4199:12;:10;:12::i;:::-;4213:7;4222:6;4190:8;:39::i;:::-;4246:4;4239:11;;4091:166;;;;:::o;3082:106::-;3143:7;3169:12;;3162:19;;3082:106;:::o;4724:414::-;4830:4;4846:36;4856:6;4864:9;4875:6;4846:9;:36::i;:::-;4893:24;4920:11;:19;4932:6;4920:19;;;;;;;;;;;;;;;:33;4940:12;:10;:12::i;:::-;4920:33;;;;;;;;;;;;;;;;4893:60;;4991:6;4971:16;:26;;4963:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5052:57;5061:6;5069:12;:10;:12::i;:::-;5102:6;5083:16;:25;;;;:::i;:::-;5052:8;:57::i;:::-;5127:4;5120:11;;;4724:414;;;;;:::o;2940:82::-;2989:5;3013:2;3006:9;;2940:82;:::o;5533:212::-;5621:4;5637:80;5646:12;:10;:12::i;:::-;5660:7;5706:10;5669:11;:25;5681:12;:10;:12::i;:::-;5669:25;;;;;;;;;;;;;;;:34;5695:7;5669:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5637:8;:80::i;:::-;5734:4;5727:11;;5533:212;;;;:::o;3246:125::-;3320:7;3346:9;:18;3356:7;3346:18;;;;;;;;;;;;;;;;3339:25;;3246:125;;;:::o;2223:93::-;2270:13;2302:7;2295:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2223:93;:::o;6232:371::-;6325:4;6341:24;6368:11;:25;6380:12;:10;:12::i;:::-;6368:25;;;;;;;;;;;;;;;:34;6394:7;6368:34;;;;;;;;;;;;;;;;6341:61;;6440:15;6420:16;:35;;6412:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6507:67;6516:12;:10;:12::i;:::-;6530:7;6558:15;6539:16;:34;;;;:::i;:::-;6507:8;:67::i;:::-;6592:4;6585:11;;;6232:371;;;;:::o;3574:172::-;3660:4;3676:42;3686:12;:10;:12::i;:::-;3700:9;3711:6;3676:9;:42::i;:::-;3735:4;3728:11;;3574:172;;;;:::o;3804:149::-;3893:7;3919:11;:18;3931:5;3919:18;;;;;;;;;;;;;;;:27;3938:7;3919:27;;;;;;;;;;;;;;;;3912:34;;3804:149;;;;:::o;586:96:2:-;639:7;665:10;658:17;;586:96;:::o;9496:340:0:-;9614:1;9597:19;;:5;:19;;;;9589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9694:1;9675:21;;:7;:21;;;;9667:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9776:6;9746:11;:18;9758:5;9746:18;;;;;;;;;;;;;;;:27;9765:7;9746:27;;;;;;;;;;;;;;;:36;;;;9813:7;9797:32;;9806:5;9797:32;;;9822:6;9797:32;;;;;;:::i;:::-;;;;;;;;9496:340;;;:::o;7077:592::-;7200:1;7182:20;;:6;:20;;;;7174:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7283:1;7262:23;;:9;:23;;;;7254:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7336:47;7357:6;7365:9;7376:6;7336:20;:47::i;:::-;7394:21;7418:9;:17;7428:6;7418:17;;;;;;;;;;;;;;;;7394:41;;7470:6;7453:13;:23;;7445:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7565:6;7549:13;:22;;;;:::i;:::-;7529:9;:17;7539:6;7529:17;;;;;;;;;;;;;;;:42;;;;7605:6;7581:9;:20;7591:9;7581:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7644:9;7627:35;;7636:6;7627:35;;;7655:6;7627:35;;;;;;:::i;:::-;;;;;;;;7077:592;;;;:::o;10423:92::-;;;;:::o;7:139:4:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:367::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2694:34;2690:1;2685:3;2681:11;2674:55;2760:5;2755:2;2750:3;2746:12;2739:27;2792:2;2787:3;2783:12;2776:19;;2580:221;;;:::o;2807:366::-;;2970:67;3034:2;3029:3;2970:67;:::i;:::-;2963:74;;3067:34;3063:1;3058:3;3054:11;3047:55;3133:4;3128:2;3123:3;3119:12;3112:26;3164:2;3159:3;3155:12;3148:19;;2953:220;;;:::o;3179:370::-;;3342:67;3406:2;3401:3;3342:67;:::i;:::-;3335:74;;3439:34;3435:1;3430:3;3426:11;3419:55;3505:8;3500:2;3495:3;3491:12;3484:30;3540:2;3535:3;3531:12;3524:19;;3325:224;;;:::o;3555:372::-;;3718:67;3782:2;3777:3;3718:67;:::i;:::-;3711:74;;3815:34;3811:1;3806:3;3802:11;3795:55;3881:10;3876:2;3871:3;3867:12;3860:32;3918:2;3913:3;3909:12;3902:19;;3701:226;;;:::o;3933:369::-;;4096:67;4160:2;4155:3;4096:67;:::i;:::-;4089:74;;4193:34;4189:1;4184:3;4180:11;4173:55;4259:7;4254:2;4249:3;4245:12;4238:29;4293:2;4288:3;4284:12;4277:19;;4079:223;;;:::o;4308:368::-;;4471:67;4535:2;4530:3;4471:67;:::i;:::-;4464:74;;4568:34;4564:1;4559:3;4555:11;4548:55;4634:6;4629:2;4624:3;4620:12;4613:28;4667:2;4662:3;4658:12;4651:19;;4454:222;;;:::o;4682:369::-;;4845:67;4909:2;4904:3;4845:67;:::i;:::-;4838:74;;4942:34;4938:1;4933:3;4929:11;4922:55;5008:7;5003:2;4998:3;4994:12;4987:29;5042:2;5037:3;5033:12;5026:19;;4828:223;;;:::o;5057:118::-;5144:24;5162:5;5144:24;:::i;:::-;5139:3;5132:37;5122:53;;:::o;5181:112::-;5264:22;5280:5;5264:22;:::i;:::-;5259:3;5252:35;5242:51;;:::o;5299:210::-;;5424:2;5413:9;5409:18;5401:26;;5437:65;5499:1;5488:9;5484:17;5475:6;5437:65;:::i;:::-;5391:118;;;;:::o;5515:313::-;;5666:2;5655:9;5651:18;5643:26;;5715:9;5709:4;5705:20;5701:1;5690:9;5686:17;5679:47;5743:78;5816:4;5807:6;5743:78;:::i;:::-;5735:86;;5633:195;;;;:::o;5834:419::-;;6038:2;6027:9;6023:18;6015:26;;6087:9;6081:4;6077:20;6073:1;6062:9;6058:17;6051:47;6115:131;6241:4;6115:131;:::i;:::-;6107:139;;6005:248;;;:::o;6259:419::-;;6463:2;6452:9;6448:18;6440:26;;6512:9;6506:4;6502:20;6498:1;6487:9;6483:17;6476:47;6540:131;6666:4;6540:131;:::i;:::-;6532:139;;6430:248;;;:::o;6684:419::-;;6888:2;6877:9;6873:18;6865:26;;6937:9;6931:4;6927:20;6923:1;6912:9;6908:17;6901:47;6965:131;7091:4;6965:131;:::i;:::-;6957:139;;6855:248;;;:::o;7109:419::-;;7313:2;7302:9;7298:18;7290:26;;7362:9;7356:4;7352:20;7348:1;7337:9;7333:17;7326:47;7390:131;7516:4;7390:131;:::i;:::-;7382:139;;7280:248;;;:::o;7534:419::-;;7738:2;7727:9;7723:18;7715:26;;7787:9;7781:4;7777:20;7773:1;7762:9;7758:17;7751:47;7815:131;7941:4;7815:131;:::i;:::-;7807:139;;7705:248;;;:::o;7959:419::-;;8163:2;8152:9;8148:18;8140:26;;8212:9;8206:4;8202:20;8198:1;8187:9;8183:17;8176:47;8240:131;8366:4;8240:131;:::i;:::-;8232:139;;8130:248;;;:::o;8384:419::-;;8588:2;8577:9;8573:18;8565:26;;8637:9;8631:4;8627:20;8623:1;8612:9;8608:17;8601:47;8665:131;8791:4;8665:131;:::i;:::-;8657:139;;8555:248;;;:::o;8809:222::-;;8940:2;8929:9;8925:18;8917:26;;8953:71;9021:1;9010:9;9006:17;8997:6;8953:71;:::i;:::-;8907:124;;;;:::o;9037:214::-;;9164:2;9153:9;9149:18;9141:26;;9177:67;9241:1;9230:9;9226:17;9217:6;9177:67;:::i;:::-;9131:120;;;;:::o;9257:99::-;;9343:5;9337:12;9327:22;;9316:40;;;:::o;9362:169::-;;9480:6;9475:3;9468:19;9520:4;9515:3;9511:14;9496:29;;9458:73;;;;:::o;9537:305::-;;9596:20;9614:1;9596:20;:::i;:::-;9591:25;;9630:20;9648:1;9630:20;:::i;:::-;9625:25;;9784:1;9716:66;9712:74;9709:1;9706:81;9703:2;;;9790:18;;:::i;:::-;9703:2;9834:1;9831;9827:9;9820:16;;9581:261;;;;:::o;9848:191::-;;9908:20;9926:1;9908:20;:::i;:::-;9903:25;;9942:20;9960:1;9942:20;:::i;:::-;9937:25;;9981:1;9978;9975:8;9972:2;;;9986:18;;:::i;:::-;9972:2;10031:1;10028;10024:9;10016:17;;9893:146;;;;:::o;10045:96::-;;10111:24;10129:5;10111:24;:::i;:::-;10100:35;;10090:51;;;:::o;10147:90::-;;10224:5;10217:13;10210:21;10199:32;;10189:48;;;:::o;10243:126::-;;10320:42;10313:5;10309:54;10298:65;;10288:81;;;:::o;10375:77::-;;10441:5;10430:16;;10420:32;;;:::o;10458:86::-;;10533:4;10526:5;10522:16;10511:27;;10501:43;;;:::o;10550:307::-;10618:1;10628:113;10642:6;10639:1;10636:13;10628:113;;;10727:1;10722:3;10718:11;10712:18;10708:1;10703:3;10699:11;10692:39;10664:2;10661:1;10657:10;10652:15;;10628:113;;;10759:6;10756:1;10753:13;10750:2;;;10839:1;10830:6;10825:3;10821:16;10814:27;10750:2;10599:258;;;;:::o;10863:320::-;;10944:1;10938:4;10934:12;10924:22;;10991:1;10985:4;10981:12;11012:18;11002:2;;11068:4;11060:6;11056:17;11046:27;;11002:2;11130;11122:6;11119:14;11099:18;11096:38;11093:2;;;11149:18;;:::i;:::-;11093:2;10914:269;;;;:::o;11189:180::-;11237:77;11234:1;11227:88;11334:4;11331:1;11324:15;11358:4;11355:1;11348:15;11375:180;11423:77;11420:1;11413:88;11520:4;11517:1;11510:15;11544:4;11541:1;11534:15;11561:102;;11653:2;11649:7;11644:2;11637:5;11633:14;11629:28;11619:38;;11609:54;;;:::o;11669:122::-;11742:24;11760:5;11742:24;:::i;:::-;11735:5;11732:35;11722:2;;11781:1;11778;11771:12;11722:2;11712:79;:::o;11797:122::-;11870:24;11888:5;11870:24;:::i;:::-;11863:5;11860:35;11850:2;;11909:1;11906;11899:12;11850:2;11840:79;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "998400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "1563",
"decimals()": "432",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "1182",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"increaseAllowance(address,uint256)": "39509351",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"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": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5,05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overloaded; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"ABC.sol": "ABC"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0x21d8a5dd396bee41e4a039d150af08b66b6d09eef416daf8e5edf13ef219084e",
"license": "MIT",
"urls": [
"bzz-raw://682f1e9c20780070df3c8b52bf3b48d2aa6debcdff5a924e212d78bbaedb945f",
"dweb:/ipfs/QmXGhsAPeemtVQ8ip5CsParvX3sgpMm4Lq8EccS3YaTtwA"
]
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0xf8e8d118a7a8b2e134181f7da655f6266aa3a0f9134b2605747139fcb0c5d835",
"license": "MIT",
"urls": [
"bzz-raw://9ec48567e7ad06acb670980d5cdf3fd7f3949bf12894f02d68c3bb43e75aa84f",
"dweb:/ipfs/QmaG3R2J9cz92YT77vFjYrjMNU2wHp4ypwYD62HqDUqS5U"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xf930d2df426bfcfc1f7415be724f04081c96f4fb9ec8d0e3a521c07692dface0",
"license": "MIT",
"urls": [
"bzz-raw://fc2bfdea0d2562c76fb3c4cf70a86c6ba25c5a30e8f8515c95aafdf8383f8395",
"dweb:/ipfs/QmTbFya18786ckJfLYUoWau9jBTKfmWnWm5XSViWvB7PXN"
]
},
"ABC.sol": {
"keccak256": "0x2868eb4124e02bbd3cafd0311f67dbb2da5fd34c5f735fa1e74993d145d8ff72",
"urls": [
"bzz-raw://94aecac1024e8a423773ecd48ab0c77e2f82256745b4f57a9a4258ed0044b408",
"dweb:/ipfs/QmdY5e6uJoDXEB6GDkWFnxpPpE4wS4vG21wot3jEp8ph6N"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
contract Migrations {
address public owner = msg.sender;
uint public last_completed_migration;
modifier restricted() {
require(
msg.sender == owner,
"This function is restricted to the contract's owner"
);
_;
}
function setCompleted(uint completed) public restricted {
last_completed_migration = completed;
}
}
pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
contract TicTacToe is ERC1155 {
using Counters for Counters.Counter;
Counters.Counter private _tokenIds;
event Start(uint256 indexed gameId, address indexed player0, address indexed token, uint balance0);
event Join(uint256 indexed gameId, address indexed player1, address indexed token, uint balance1);
event Play(uint256 indexed gameId, uint turn, uint row, uint col);
event Tie(uint256 indexed gameId, address indexed player0, address indexed player1);
event Win(uint256 indexed gameId, address indexed winner);
mapping (uint256 => Game) public games;
// Main struct that contains all game's info
struct Game
{
address token;
address player0;
address player1;
uint balance0;
uint balance1;
uint turn;
uint time_limit;
mapping(uint => mapping(uint => uint)) board;
bool isSet;
}
constructor() public ERC1155("") {}
function start (address token, uint balance) public {
ERC20(token).transferFrom(msg.sender, address(this), balance);
_tokenIds.increment();
uint256 newGameId = _tokenIds.current();
Game storage g = games[newGameId];
g.isSet = true;
restart(newGameId);
g.token = token;
g.player0 = msg.sender;
g.balance0 = balance;
Start(newGameId, msg.sender, token, balance);
}
function join (uint256 gameId, uint balance) public {
Game storage g = games[gameId];
require(g.isSet && g.player1 == address(0) && g.balance0 == balance);
ERC20(g.token).transferFrom(msg.sender, address(this), balance);
g.player1 = msg.sender;
g.balance1 = balance;
Join(gameId, msg.sender, g.token, balance);
}
//This function is needed to play a move on the board,
//take as arguments the wallet address of the host, row and columns where to put the sign
//Positions schema:
//[(0,0),(0,1),(0,2)]
//[(1,0),(1,1),(1,2)]
//[(2,0),(2,1),(2,2)]
function play(uint256 gameId, uint row, uint column) public
{
Game storage g = games[gameId];
//Assign an int to identify players, player -> 1, opposition -> 2
require(msg.sender == g.player0 || msg.sender == g.player1, "User must be a member of game");
uint8 player = 0;
if(msg.sender == g.player1)
player = 1;
// Performs some checks to verify the correctness of the move:
// 1 - There must be a bet value stored by the contract (balance)
// 2 - There must be an opponent to play
// 3 - You must play a move inside the board 0>=row>=2 and 0>=column>=2
// 4 - There should be no other moves played on the same place
// 5 - You must play in time w.r.t. TimeLimit
// 6 - There must be your turn
require(g.balance0 > 0, "There must be a bet value stored by the contract (balance)");
require(g.player1 != address(0), "There must be an opponent to play");
require(row >= 0 && row < 3 && column >= 0 && column < 3, "You must play a move inside the board 0>=row>=2 and 0>=column>=2");
require(g.board[row][column] == 0, "There should be no other moves played on the same place");
require(g.time_limit == 0 || block.timestamp <= g.time_limit, "You must play in time w.r.t. TimeLimit");
require(g.turn == player, "Must be your turn");
// Put the move in the board
g.board[row][column] = player + 1;
// If the board is full resend halved balance to each player
if(is_board_full(gameId))
{
ERC20(g.token).transfer(g.player0, g.balance0);
ERC20(g.token).transfer(g.player1, g.balance1);
g.balance0 = 0;
g.balance1 = 0;
g.turn = 0;
Tie(gameId, g.player0, g.player1);
return;
}
// If the last move decreed a winner send thw whole balance to him
// and restart the game
if(is_winner(gameId, player))
{
if(player == 0)
ERC20(g.token).transfer(g.player0, g.balance0 + g.balance1);
else
ERC20(g.token).transfer(g.player1, g.balance0 + g.balance1);
g.balance0 = 0;
g.balance1 = 0;
g.turn = 0;
if(player == 0)
Win(gameId, g.player0);
else
Win(gameId, g.player1);
return;
}
// Set player's turn
if (player == 0)
g.turn = 1;
else
g.turn = 0;
// Set time limit for the next move (in seconds), 10 minutes.
g.time_limit = block.timestamp + (600);
Play(gameId, player, row, column);
}
// This function is called in order to claim the reward in case the opponent
// exceed the time limit.
function claim_reward(uint256 gameId) public
{
Game storage g = games[gameId];
if(g.player1 != address(0)
&& g.balance0 > 0
&& block.timestamp > g.time_limit)
{
if(g.turn == 0)
ERC20(g.token).transfer(g.player1, g.balance0 + g.balance1);
else
ERC20(g.token).transfer(g.player0, g.balance0 + g.balance1);
g.balance0 = 0;
g.balance1 = 0;
g.turn = 0;
}
}
function check(uint256 gameId, uint player, uint r1, uint r2, uint r3,
uint c1, uint c2, uint c3) private view returns (bool retVal)
{
Game storage g = games[gameId];
if(g.board[r1][c1] == player + 1 && g.board[r2][c2] == player + 1
&& g.board[r3][c3] == player + 1)
return true;
}
// Boolean function that verify wheter the board is in a winning condition or not
function is_winner(uint256 gameId, uint player) private view returns (bool winner)
{
// Verify if there's a winning streak on diagonals
if(check(gameId, player, 0, 1, 2, 0, 1, 2) || check(gameId, player, 0, 1, 2, 2, 1, 0))
return true;
// Verify if there's a winning streak on rows and columns
for(uint r = 0; r < 3; r++)
if(check(gameId, player, r, r, r, 0, 1, 2) || check(gameId, player, 0, 1, 2, r, r, r))
return true;
}
// Booleand function that verify wheter the board is full or not
// Simply counts number of signs, if thet are 9 then the board is full
function is_board_full(uint256 gameId) private view returns (bool retVal)
{
Game storage g = games[gameId];
uint count = 0;
for(uint r = 0; r < 3; r++)
for(uint c = 0; c < 3; c++)
if(g.board[r][c] > 0)
count++;
if(count >= 9)
return true;
}
function restart(uint256 gameId) private
{
Game storage g = games[gameId];
g.turn = 0;
g.balance1 = 0;
g.player1 = address(0);
g.time_limit = 0;
for(uint r = 0; r < 3; r++)
for(uint c = 0; c < 3; c++)
g.board[r][c] = 0;
}
// Debug function to print some attributes of the game
function get_game_status(uint256 gameId) public view returns(address, uint, address, uint, address, uint, uint, uint, uint){
Game storage g = games[gameId];
uint row1 = (100 * (g.board[0][0] + 1)) + (10 * (g.board[0][1] + 1)) + (g.board[0][2] + 1);
uint row2 = (100 * (g.board[1][0] + 1)) + (10 * (g.board[1][1] + 1)) + (g.board[1][2] + 1);
uint row3 = (100 * (g.board[2][0] + 1)) + (10 * (g.board[2][1] + 1)) + (g.board[2][2] + 1);
return (
g.player0,
g.balance0,
g.player1,
g.balance1,
g.token,
g.turn,
row1,
row2,
row3
);
}
// Debug function to print out the current block timestamp
function get_blocktimestamp() public view returns(uint){
return(block.timestamp);
}
}
pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract XYZ is ERC20 {
constructor() public ERC20("XYZ", "XYZ"){
_mint(msg.sender, 100000000000000000000);
}
}
This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "58:269:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "68:22:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "82:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "88:1:12",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "78:3:12"
},
"nodeType": "YulFunctionCall",
"src": "78:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "68:6:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "99:38:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "129:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "135:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "125:3:12"
},
"nodeType": "YulFunctionCall",
"src": "125:12:12"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "103:18:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "176:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "190:27:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "204:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "212:4:12",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "200:3:12"
},
"nodeType": "YulFunctionCall",
"src": "200:17:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "190:6:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "156:18:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "149:6:12"
},
"nodeType": "YulFunctionCall",
"src": "149:26:12"
},
"nodeType": "YulIf",
"src": "146:2:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "279:42:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "293:16:12"
},
"nodeType": "YulFunctionCall",
"src": "293:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "293:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "243:18:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "263:2:12"
},
"nodeType": "YulFunctionCall",
"src": "263:14:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "240:2:12"
},
"nodeType": "YulFunctionCall",
"src": "240:38:12"
},
"nodeType": "YulIf",
"src": "237:2:12"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "42:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "51:6:12",
"type": ""
}
],
"src": "7:320:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "361:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "378:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "381:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "371:6:12"
},
"nodeType": "YulFunctionCall",
"src": "371:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "371:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "475:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "478:4:12",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "468:6:12"
},
"nodeType": "YulFunctionCall",
"src": "468:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "468:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "499:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "502:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "492:6:12"
},
"nodeType": "YulFunctionCall",
"src": "492:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "492:15:12"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "333:180:12"
}
]
},
"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": 12,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060200160405280600081525062000033816200003a60201b60201c565b506200016b565b80600290805190602001906200005292919062000056565b5050565b828054620000649062000106565b90600052602060002090601f016020900481019282620000885760008555620000d4565b82601f10620000a357805160ff1916838001178555620000d4565b82800160010185558215620000d4579182015b82811115620000d3578251825591602001919060010190620000b6565b5b509050620000e39190620000e7565b5090565b5b8082111562000102576000816000905550600101620000e8565b5090565b600060028204905060018216806200011f57607f821691505b602082108114156200013657620001356200013c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61456f806200017b6000396000f3fe608060405234801561001057600080fd5b50600436106100f45760003560e01c806379e66b4611610097578063ab2e5a1f11610066578063ab2e5a1f146102b6578063c9d0ba85146102d2578063e985e9c5146102ee578063f242432a1461031e576100f4565b806379e66b4614610228578063a22cb46514610244578063a36f4c3314610260578063a4d83ec514610298576100f4565b8063117a5b90116100d3578063117a5b90146101895780632eb2c2d6146101c05780633c2d70e9146101dc5780634e1273f4146101f8576100f4565b8062fdd58e146100f957806301ffc9a7146101295780630e89341c14610159575b600080fd5b610113600480360381019061010e91906130df565b61033a565b6040516101209190613f6c565b60405180910390f35b610143600480360381019061013e91906131b0565b610403565b6040516101509190613d0f565b60405180910390f35b610173600480360381019061016e9190613202565b6104e5565b6040516101809190613d2a565b60405180910390f35b6101a3600480360381019061019e9190613202565b610579565b6040516101b7989796959493929190613a89565b60405180910390f35b6101da60048036038101906101d59190612f55565b61062e565b005b6101f660048036038101906101f191906130df565b610a24565b005b610212600480360381019061020d919061311b565b610c04565b60405161021f9190613cb6565b60405180910390f35b610242600480360381019061023d919061322b565b610db5565b005b61025e600480360381019061025991906130a3565b610fe1565b005b61027a60048036038101906102759190613202565b611162565b60405161028f99989796959493929190613c29565b60405180910390f35b6102a0611491565b6040516102ad9190613f6c565b60405180910390f35b6102d060048036038101906102cb9190613267565b611499565b005b6102ec60048036038101906102e79190613202565b611e88565b005b61030860048036038101906103039190612f19565b612120565b6040516103159190613d0f565b60405180910390f35b61033860048036038101906103339190613014565b6121b4565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156103ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a290613d8c565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ce57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104de57506104dd826124cc565b5b9050919050565b6060600280546104f490614301565b80601f016020809104026020016040519081016040528092919081815260200182805461052090614301565b801561056d5780601f106105425761010080835404028352916020019161056d565b820191906000526020600020905b81548152906001019060200180831161055057829003601f168201915b50505050509050919050565b60046020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060030154908060040154908060050154908060060154908060080160009054906101000a900460ff16905088565b8151835114610672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066990613f4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156106e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d990613dec565b60405180910390fd5b6106ea612536565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610730575061072f8561072a612536565b612120565b5b61076f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076690613e0c565b60405180910390fd5b6000610779612536565b905061078981878787878761253e565b60005b845181101561098f5760008582815181106107d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110610815577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad90613e4c565b60405180910390fd5b81816108c291906141f8565b60008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109749190614111565b925050819055505050508061098890614333565b905061078c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610a06929190613cd8565b60405180910390a4610a1c818787878787612546565b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401610a6193929190613b6f565b602060405180830381600087803b158015610a7b57600080fd5b505af1158015610a8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab39190613187565b50610abe6003612716565b6000610aca600361272c565b9050600060046000838152602001908152602001600020905060018160080160006101000a81548160ff021916908315150217905550610b098261273a565b838160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550338160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508281600301819055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16837f4e2c0d5cdf3ed1506e2b61635db6126329dd3a1b3ff5d91ff0337ddb3082754b86604051610bf69190613f6c565b60405180910390a450505050565b60608151835114610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190613f0c565b60405180910390fd5b6000835167ffffffffffffffff811115610c8d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610cbb5781602001602082028036833780820191505090505b50905060005b8451811015610daa57610d54858281518110610d06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610d47577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161033a565b828281518110610d8d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610da390614333565b9050610cc1565b508091505092915050565b60006004600084815260200190815260200160002090508060080160009054906101000a900460ff168015610e3a5750600073ffffffffffffffffffffffffffffffffffffffff168160020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b8015610e495750818160030154145b610e5257600080fd5b8060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401610eb393929190613b6f565b602060405180830381600087803b158015610ecd57600080fd5b505af1158015610ee1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f059190613187565b50338160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508181600401819055508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16847f5ba397fefbe224a8036109a153eea01ab25eadb596d8c2f1db4bf54f4dc1a24f85604051610fd49190613f6c565b60405180910390a4505050565b8173ffffffffffffffffffffffffffffffffffffffff16611000612536565b73ffffffffffffffffffffffffffffffffffffffff161415611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90613eec565b60405180910390fd5b8060016000611064612536565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611111612536565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111569190613d0f565b60405180910390a35050565b600080600080600080600080600080600460008c8152602001908152602001600020905060006001826007016000808152602001908152602001600020600060028152602001908152602001600020546111bc9190614111565b6001836007016000808152602001908152602001600020600060018152602001908152602001600020546111f09190614111565b600a6111fc919061419e565b600184600701600080815260200190815260200160002060008081526020019081526020016000205461122f9190614111565b606461123b919061419e565b6112459190614111565b61124f9190614111565b90506000600183600701600060018152602001908152602001600020600060028152602001908152602001600020546112889190614111565b600184600701600060018152602001908152602001600020600060018152602001908152602001600020546112bd9190614111565b600a6112c9919061419e565b6001856007016000600181526020019081526020016000206000808152602001908152602001600020546112fd9190614111565b6064611309919061419e565b6113139190614111565b61131d9190614111565b90506000600184600701600060028152602001908152602001600020600060028152602001908152602001600020546113569190614111565b6001856007016000600281526020019081526020016000206000600181526020019081526020016000205461138b9190614111565b600a611397919061419e565b6001866007016000600281526020019081526020016000206000808152602001908152602001600020546113cb9190614111565b60646113d7919061419e565b6113e19190614111565b6113eb9190614111565b90508360010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684600301548560020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686600401548760000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1688600501548888889c509c509c509c509c509c509c509c509c50505050509193959799909294969850565b600042905090565b60006004600085815260200190815260200160002090508060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061155d57508060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61159c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159390613e8c565b60405180910390fd5b60008160020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156115fb57600190505b6000826003015411611642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163990613e2c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168260020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613dac565b60405180910390fd5b600084101580156116e75750600384105b80156116f4575060008310155b80156117005750600383105b61173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173690613f2c565b60405180910390fd5b6000826007016000868152602001908152602001600020600085815260200190815260200160002054146117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90613ecc565b60405180910390fd5b6000826006015414806117bf575081600601544211155b6117fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f590613e6c565b60405180910390fd5b8060ff16826005015414611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e90613eac565b60405180910390fd5b6001816118549190614167565b60ff1682600701600086815260200190815260200160002060008581526020019081526020016000208190555061188a85612823565b15611b0b578160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8360010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684600301546040518363ffffffff1660e01b8152600401611916929190613c00565b602060405180830381600087803b15801561193057600080fd5b505af1158015611944573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119689190613187565b508160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8360020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684600401546040518363ffffffff1660e01b81526004016119f0929190613c00565b602060405180830381600087803b158015611a0a57600080fd5b505af1158015611a1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a429190613187565b506000826003018190555060008260040181905550600082600501819055508160020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16867f3212c233a5d7eb92cc9bc80249b62592fe1d4fbfdcbf9c8e78d3ad2864fc3a5a60405160405180910390a45050611e83565b611b18858260ff166128d5565b15611e085760008160ff161415611c17578160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8360010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684600401548560030154611ba29190614111565b6040518363ffffffff1660e01b8152600401611bbf929190613c00565b602060405180830381600087803b158015611bd957600080fd5b505af1158015611bed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c119190613187565b50611d01565b8160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8360020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684600401548560030154611c909190614111565b6040518363ffffffff1660e01b8152600401611cad929190613c00565b602060405180830381600087803b158015611cc757600080fd5b505af1158015611cdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cff9190613187565b505b60008260030181905550600082600401819055506000826005018190555060008160ff161415611d98578160010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16857f5099dd6dac0a84e5cc1d9629b2e349cc5123e62fff80006667b71ca663638fc860405160405180910390a3611e01565b8160020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16857f5099dd6dac0a84e5cc1d9629b2e349cc5123e62fff80006667b71ca663638fc860405160405180910390a35b5050611e83565b60008160ff161415611e235760018260050181905550611e2e565b600082600501819055505b61025842611e3c9190614111565b8260060181905550847f8e301fff5ad6fd5062f8b51838478c973de9d3be11a6a487a1908b82f09ea05d828686604051611e7893929190613fb0565b60405180910390a250505b505050565b6000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015611f04575060008160030154115b8015611f135750806006015442115b1561211c57600081600501541415612013578060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8260020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683600401548460030154611f9e9190614111565b6040518363ffffffff1660e01b8152600401611fbb929190613c00565b602060405180830381600087803b158015611fd557600080fd5b505af1158015611fe9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061200d9190613187565b506120fd565b8060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8260010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168360040154846003015461208c9190614111565b6040518363ffffffff1660e01b81526004016120a9929190613c00565b602060405180830381600087803b1580156120c357600080fd5b505af11580156120d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120fb9190613187565b505b6000816003018190555060008160040181905550600081600501819055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221b90613dec565b60405180910390fd5b61222c612536565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061227257506122718561226c612536565b612120565b5b6122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a890613dcc565b60405180910390fd5b60006122bb612536565b90506122db8187876122cc8861297a565b6122d58861297a565b8761253e565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236990613e4c565b60405180910390fd5b838161237e91906141f8565b60008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124309190614111565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516124ad929190613f87565b60405180910390a46124c3828888888888612a40565b50505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b505050505050565b6125658473ffffffffffffffffffffffffffffffffffffffff16612c10565b1561270e578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016125ab959493929190613b07565b602060405180830381600087803b1580156125c557600080fd5b505af19250505080156125f657506040513d601f19601f820116820180604052508101906125f391906131d9565b60015b61268557612602614427565b8061260d575061264a565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126419190613d2a565b60405180910390fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267c90613d4c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461270c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270390613d6c565b60405180910390fd5b505b505050505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000600460008381526020019081526020016000209050600081600501819055506000816004018190555060008160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000816006018190555060005b600381101561281e5760005b600381101561280a576000836007016000848152602001908152602001600020600083815260200190815260200160002081905550808061280290614333565b9150506127c2565b50808061281690614333565b9150506127b6565b505050565b6000806004600084815260200190815260200160002090506000805b60038110156128b95760005b60038110156128a5576000846007016000848152602001908152602001600020600083815260200190815260200160002054111561289257828061288e90614333565b9350505b808061289d90614333565b91505061284b565b5080806128b190614333565b91505061283f565b50600981106128cd576001925050506128d0565b50505b919050565b60006128ed8383600060016002600060016002612c23565b80612909575061290883836000600160028060016000612c23565b5b156129175760019050612974565b60005b6003811015612972576129368484838485600060016002612c23565b80612950575061294f8484600060016002868788612c23565b5b1561295f576001915050612974565b808061296a90614333565b91505061291a565b505b92915050565b60606000600167ffffffffffffffff8111156129bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156129ed5781602001602082028036833780820191505090505b5090508281600081518110612a2b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b612a5f8473ffffffffffffffffffffffffffffffffffffffff16612c10565b15612c08578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612aa5959493929190613ba6565b602060405180830381600087803b158015612abf57600080fd5b505af1925050508015612af057506040513d601f19601f82011682018060405250810190612aed91906131d9565b60015b612b7f57612afc614427565b80612b075750612b44565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3b9190613d2a565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7690613d4c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfd90613d6c565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b600080600460008b81526020019081526020016000209050600189612c489190614111565b8160070160008a8152602001908152602001600020600087815260200190815260200160002054148015612cad5750600189612c849190614111565b816007016000898152602001908152602001600020600086815260200190815260200160002054145b8015612cea5750600189612cc19190614111565b816007016000888152602001908152602001600020600085815260200190815260200160002054145b15612cf9576001915050612cfb565b505b98975050505050505050565b6000612d1a612d1584614018565b613fe7565b90508083825260208201905082856020860282011115612d3957600080fd5b60005b85811015612d695781612d4f8882612e1d565b845260208401935060208301925050600181019050612d3c565b5050509392505050565b6000612d86612d8184614044565b613fe7565b90508083825260208201905082856020860282011115612da557600080fd5b60005b85811015612dd55781612dbb8882612f04565b845260208401935060208301925050600181019050612da8565b5050509392505050565b6000612df2612ded84614070565b613fe7565b905082815260208101848484011115612e0a57600080fd5b612e158482856142bf565b509392505050565b600081359050612e2c816144dd565b92915050565b600082601f830112612e4357600080fd5b8135612e53848260208601612d07565b91505092915050565b600082601f830112612e6d57600080fd5b8135612e7d848260208601612d73565b91505092915050565b600081359050612e95816144f4565b92915050565b600081519050612eaa816144f4565b92915050565b600081359050612ebf8161450b565b92915050565b600081519050612ed48161450b565b92915050565b600082601f830112612eeb57600080fd5b8135612efb848260208601612ddf565b91505092915050565b600081359050612f1381614522565b92915050565b60008060408385031215612f2c57600080fd5b6000612f3a85828601612e1d565b9250506020612f4b85828601612e1d565b9150509250929050565b600080600080600060a08688031215612f6d57600080fd5b6000612f7b88828901612e1d565b9550506020612f8c88828901612e1d565b945050604086013567ffffffffffffffff811115612fa957600080fd5b612fb588828901612e5c565b935050606086013567ffffffffffffffff811115612fd257600080fd5b612fde88828901612e5c565b925050608086013567ffffffffffffffff811115612ffb57600080fd5b61300788828901612eda565b9150509295509295909350565b600080600080600060a0868803121561302c57600080fd5b600061303a88828901612e1d565b955050602061304b88828901612e1d565b945050604061305c88828901612f04565b935050606061306d88828901612f04565b925050608086013567ffffffffffffffff81111561308a57600080fd5b61309688828901612eda565b9150509295509295909350565b600080604083850312156130b657600080fd5b60006130c485828601612e1d565b92505060206130d585828601612e86565b9150509250929050565b600080604083850312156130f257600080fd5b600061310085828601612e1d565b925050602061311185828601612f04565b9150509250929050565b6000806040838503121561312e57600080fd5b600083013567ffffffffffffffff81111561314857600080fd5b61315485828601612e32565b925050602083013567ffffffffffffffff81111561317157600080fd5b61317d85828601612e5c565b9150509250929050565b60006020828403121561319957600080fd5b60006131a784828501612e9b565b91505092915050565b6000602082840312156131c257600080fd5b60006131d084828501612eb0565b91505092915050565b6000602082840312156131eb57600080fd5b60006131f984828501612ec5565b91505092915050565b60006020828403121561321457600080fd5b600061322284828501612f04565b91505092915050565b6000806040838503121561323e57600080fd5b600061324c85828601612f04565b925050602061325d85828601612f04565b9150509250929050565b60008060006060848603121561327c57600080fd5b600061328a86828701612f04565b935050602061329b86828701612f04565b92505060406132ac86828701612f04565b9150509250925092565b60006132c28383613a5c565b60208301905092915050565b6132d78161422c565b82525050565b60006132e8826140b0565b6132f281856140de565b93506132fd836140a0565b8060005b8381101561332e57815161331588826132b6565b9750613320836140d1565b925050600181019050613301565b5085935050505092915050565b6133448161423e565b82525050565b6000613355826140bb565b61335f81856140ef565b935061336f8185602086016142ce565b61337881614409565b840191505092915050565b600061338e826140c6565b6133988185614100565b93506133a88185602086016142ce565b6133b181614409565b840191505092915050565b60006133c9603483614100565b91507f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008301527f526563656976657220696d706c656d656e7465720000000000000000000000006020830152604082019050919050565b600061342f602883614100565b91507f455243313135353a204552433131353552656365697665722072656a6563746560008301527f6420746f6b656e730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613495602b83614100565b91507f455243313135353a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006134fb602183614100565b91507f5468657265206d75737420626520616e206f70706f6e656e7420746f20706c6160008301527f79000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613561602983614100565b91507f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008301527f20617070726f76656400000000000000000000000000000000000000000000006020830152604082019050919050565b60006135c7602583614100565b91507f455243313135353a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061362d603283614100565b91507f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613693603a83614100565b91507f5468657265206d7573742062652061206265742076616c75652073746f72656460008301527f2062792074686520636f6e7472616374202862616c616e6365290000000000006020830152604082019050919050565b60006136f9602a83614100565b91507f455243313135353a20696e73756666696369656e742062616c616e636520666f60008301527f72207472616e73666572000000000000000000000000000000000000000000006020830152604082019050919050565b600061375f602683614100565b91507f596f75206d75737420706c617920696e2074696d6520772e722e742e2054696d60008301527f654c696d697400000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137c5601d83614100565b91507f55736572206d7573742062652061206d656d626572206f662067616d650000006000830152602082019050919050565b6000613805601183614100565b91507f4d75737420626520796f7572207475726e0000000000000000000000000000006000830152602082019050919050565b6000613845603783614100565b91507f54686572652073686f756c64206265206e6f206f74686572206d6f766573207060008301527f6c61796564206f6e207468652073616d6520706c6163650000000000000000006020830152604082019050919050565b60006138ab602983614100565b91507f455243313135353a2073657474696e6720617070726f76616c2073746174757360008301527f20666f722073656c6600000000000000000000000000000000000000000000006020830152604082019050919050565b6000613911602983614100565b91507f455243313135353a206163636f756e747320616e6420696473206c656e67746860008301527f206d69736d6174636800000000000000000000000000000000000000000000006020830152604082019050919050565b6000613977604183614100565b91507f596f75206d75737420706c61792061206d6f766520696e73696465207468652060008301527f626f6172642020303e3d726f773e3d3220616e6420303e3d636f6c756d6e3e3d60208301527f32000000000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613a03602883614100565b91507f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008301527f6d69736d617463680000000000000000000000000000000000000000000000006020830152604082019050919050565b613a6581614296565b82525050565b613a7481614296565b82525050565b613a83816142ad565b82525050565b600061010082019050613a9f600083018b6132ce565b613aac602083018a6132ce565b613ab960408301896132ce565b613ac66060830188613a6b565b613ad36080830187613a6b565b613ae060a0830186613a6b565b613aed60c0830185613a6b565b613afa60e083018461333b565b9998505050505050505050565b600060a082019050613b1c60008301886132ce565b613b2960208301876132ce565b8181036040830152613b3b81866132dd565b90508181036060830152613b4f81856132dd565b90508181036080830152613b63818461334a565b90509695505050505050565b6000606082019050613b8460008301866132ce565b613b9160208301856132ce565b613b9e6040830184613a6b565b949350505050565b600060a082019050613bbb60008301886132ce565b613bc860208301876132ce565b613bd56040830186613a6b565b613be26060830185613a6b565b8181036080830152613bf4818461334a565b90509695505050505050565b6000604082019050613c1560008301856132ce565b613c226020830184613a6b565b9392505050565b600061012082019050613c3f600083018c6132ce565b613c4c602083018b613a6b565b613c59604083018a6132ce565b613c666060830189613a6b565b613c7360808301886132ce565b613c8060a0830187613a6b565b613c8d60c0830186613a6b565b613c9a60e0830185613a6b565b613ca8610100830184613a6b565b9a9950505050505050505050565b60006020820190508181036000830152613cd081846132dd565b905092915050565b60006040820190508181036000830152613cf281856132dd565b90508181036020830152613d0681846132dd565b90509392505050565b6000602082019050613d24600083018461333b565b92915050565b60006020820190508181036000830152613d448184613383565b905092915050565b60006020820190508181036000830152613d65816133bc565b9050919050565b60006020820190508181036000830152613d8581613422565b9050919050565b60006020820190508181036000830152613da581613488565b9050919050565b60006020820190508181036000830152613dc5816134ee565b9050919050565b60006020820190508181036000830152613de581613554565b9050919050565b60006020820190508181036000830152613e05816135ba565b9050919050565b60006020820190508181036000830152613e2581613620565b9050919050565b60006020820190508181036000830152613e4581613686565b9050919050565b60006020820190508181036000830152613e65816136ec565b9050919050565b60006020820190508181036000830152613e8581613752565b9050919050565b60006020820190508181036000830152613ea5816137b8565b9050919050565b60006020820190508181036000830152613ec5816137f8565b9050919050565b60006020820190508181036000830152613ee581613838565b9050919050565b60006020820190508181036000830152613f058161389e565b9050919050565b60006020820190508181036000830152613f2581613904565b9050919050565b60006020820190508181036000830152613f458161396a565b9050919050565b60006020820190508181036000830152613f65816139f6565b9050919050565b6000602082019050613f816000830184613a6b565b92915050565b6000604082019050613f9c6000830185613a6b565b613fa96020830184613a6b565b9392505050565b6000606082019050613fc56000830186613a7a565b613fd26020830185613a6b565b613fdf6040830184613a6b565b949350505050565b6000604051905081810181811067ffffffffffffffff8211171561400e5761400d6143da565b5b8060405250919050565b600067ffffffffffffffff821115614033576140326143da565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561405f5761405e6143da565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561408b5761408a6143da565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061411c82614296565b915061412783614296565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561415c5761415b61437c565b5b828201905092915050565b6000614172826142a0565b915061417d836142a0565b92508260ff038211156141935761419261437c565b5b828201905092915050565b60006141a982614296565b91506141b483614296565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141ed576141ec61437c565b5b828202905092915050565b600061420382614296565b915061420e83614296565b9250828210156142215761422061437c565b5b828203905092915050565b600061423782614276565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006142b8826142a0565b9050919050565b82818337600083830152505050565b60005b838110156142ec5780820151818401526020810190506142d1565b838111156142fb576000848401525b50505050565b6000600282049050600182168061431957607f821691505b6020821081141561432d5761432c6143ab565b5b50919050565b600061433e82614296565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143715761437061437c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d1015614437576144da565b60046000803e61444860005161441a565b6308c379a0811461445957506144da565b60405160043d036004823e80513d602482011167ffffffffffffffff82111715614485575050506144da565b808201805167ffffffffffffffff8111156144a45750505050506144da565b8060208301013d85018111156144bf575050505050506144da565b6144c882614409565b60208401016040528296505050505050505b90565b6144e68161422c565b81146144f157600080fd5b50565b6144fd8161423e565b811461450857600080fd5b50565b6145148161424a565b811461451f57600080fd5b50565b61452b81614296565b811461453657600080fd5b5056fea2646970667358221220060e8dfc5f328ddbefd0c0ea0d86f2d4f346112c6649c4aff066c7213b6c7a5f64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH3 0x33 DUP2 PUSH3 0x3A PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH3 0x16B JUMP JUMPDEST DUP1 PUSH1 0x2 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x52 SWAP3 SWAP2 SWAP1 PUSH3 0x56 JUMP JUMPDEST POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x64 SWAP1 PUSH3 0x106 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x88 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xD4 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xA3 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xD4 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xD4 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xD3 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xB6 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0xE3 SWAP2 SWAP1 PUSH3 0xE7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x102 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0xE8 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x11F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x136 JUMPI PUSH3 0x135 PUSH3 0x13C 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 0x456F DUP1 PUSH3 0x17B PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xF4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x79E66B46 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xAB2E5A1F GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xAB2E5A1F EQ PUSH2 0x2B6 JUMPI DUP1 PUSH4 0xC9D0BA85 EQ PUSH2 0x2D2 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x2EE JUMPI DUP1 PUSH4 0xF242432A EQ PUSH2 0x31E JUMPI PUSH2 0xF4 JUMP JUMPDEST DUP1 PUSH4 0x79E66B46 EQ PUSH2 0x228 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x244 JUMPI DUP1 PUSH4 0xA36F4C33 EQ PUSH2 0x260 JUMPI DUP1 PUSH4 0xA4D83EC5 EQ PUSH2 0x298 JUMPI PUSH2 0xF4 JUMP JUMPDEST DUP1 PUSH4 0x117A5B90 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x117A5B90 EQ PUSH2 0x189 JUMPI DUP1 PUSH4 0x2EB2C2D6 EQ PUSH2 0x1C0 JUMPI DUP1 PUSH4 0x3C2D70E9 EQ PUSH2 0x1DC JUMPI DUP1 PUSH4 0x4E1273F4 EQ PUSH2 0x1F8 JUMPI PUSH2 0xF4 JUMP JUMPDEST DUP1 PUSH3 0xFDD58E EQ PUSH2 0xF9 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x129 JUMPI DUP1 PUSH4 0xE89341C EQ PUSH2 0x159 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x113 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x10E SWAP2 SWAP1 PUSH2 0x30DF JUMP JUMPDEST PUSH2 0x33A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 SWAP2 SWAP1 PUSH2 0x3F6C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x143 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x13E SWAP2 SWAP1 PUSH2 0x31B0 JUMP JUMPDEST PUSH2 0x403 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x150 SWAP2 SWAP1 PUSH2 0x3D0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x173 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x16E SWAP2 SWAP1 PUSH2 0x3202 JUMP JUMPDEST PUSH2 0x4E5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 SWAP2 SWAP1 PUSH2 0x3D2A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1A3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19E SWAP2 SWAP1 PUSH2 0x3202 JUMP JUMPDEST PUSH2 0x579 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B7 SWAP9 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3A89 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1DA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1D5 SWAP2 SWAP1 PUSH2 0x2F55 JUMP JUMPDEST PUSH2 0x62E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1F6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F1 SWAP2 SWAP1 PUSH2 0x30DF JUMP JUMPDEST PUSH2 0xA24 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x212 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x20D SWAP2 SWAP1 PUSH2 0x311B JUMP JUMPDEST PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21F SWAP2 SWAP1 PUSH2 0x3CB6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x242 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x23D SWAP2 SWAP1 PUSH2 0x322B JUMP JUMPDEST PUSH2 0xDB5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x25E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x259 SWAP2 SWAP1 PUSH2 0x30A3 JUMP JUMPDEST PUSH2 0xFE1 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x27A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x275 SWAP2 SWAP1 PUSH2 0x3202 JUMP JUMPDEST PUSH2 0x1162 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x28F SWAP10 SWAP9 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3C29 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A0 PUSH2 0x1491 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2AD SWAP2 SWAP1 PUSH2 0x3F6C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2D0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2CB SWAP2 SWAP1 PUSH2 0x3267 JUMP JUMPDEST PUSH2 0x1499 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2EC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2E7 SWAP2 SWAP1 PUSH2 0x3202 JUMP JUMPDEST PUSH2 0x1E88 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x308 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x303 SWAP2 SWAP1 PUSH2 0x2F19 JUMP JUMPDEST PUSH2 0x2120 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x315 SWAP2 SWAP1 PUSH2 0x3D0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x338 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x333 SWAP2 SWAP1 PUSH2 0x3014 JUMP JUMPDEST PUSH2 0x21B4 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x3AB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3A2 SWAP1 PUSH2 0x3D8C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP4 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 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xD9B67A2600000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x4CE JUMPI POP PUSH32 0xE89341C00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x4DE JUMPI POP PUSH2 0x4DD DUP3 PUSH2 0x24CC JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD PUSH2 0x4F4 SWAP1 PUSH2 0x4301 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 0x520 SWAP1 PUSH2 0x4301 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x56D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x542 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x56D 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 0x550 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x4 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x3 ADD SLOAD SWAP1 DUP1 PUSH1 0x4 ADD SLOAD SWAP1 DUP1 PUSH1 0x5 ADD SLOAD SWAP1 DUP1 PUSH1 0x6 ADD SLOAD SWAP1 DUP1 PUSH1 0x8 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP DUP9 JUMP JUMPDEST DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0x672 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x669 SWAP1 PUSH2 0x3F4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x6E2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D9 SWAP1 PUSH2 0x3DEC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6EA PUSH2 0x2536 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x730 JUMPI POP PUSH2 0x72F DUP6 PUSH2 0x72A PUSH2 0x2536 JUMP JUMPDEST PUSH2 0x2120 JUMP JUMPDEST JUMPDEST PUSH2 0x76F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x766 SWAP1 PUSH2 0x3E0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x779 PUSH2 0x2536 JUMP JUMPDEST SWAP1 POP PUSH2 0x789 DUP2 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH2 0x253E JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0x98F JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x7D0 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x815 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x8B6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8AD SWAP1 PUSH2 0x3E4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x8C2 SWAP2 SWAP1 PUSH2 0x41F8 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP12 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 0x974 SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP DUP1 PUSH2 0x988 SWAP1 PUSH2 0x4333 JUMP JUMPDEST SWAP1 POP PUSH2 0x78C JUMP JUMPDEST POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x4A39DC06D4C0DBC64B70AF90FD698A233A518AA5D07E595D983B8C0526C8F7FB DUP8 DUP8 PUSH1 0x40 MLOAD PUSH2 0xA06 SWAP3 SWAP2 SWAP1 PUSH2 0x3CD8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0xA1C DUP2 DUP8 DUP8 DUP8 DUP8 DUP8 PUSH2 0x2546 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP5 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA61 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3B6F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xA7B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA8F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xAB3 SWAP2 SWAP1 PUSH2 0x3187 JUMP JUMPDEST POP PUSH2 0xABE PUSH1 0x3 PUSH2 0x2716 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xACA PUSH1 0x3 PUSH2 0x272C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x1 DUP2 PUSH1 0x8 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0xB09 DUP3 PUSH2 0x273A JUMP JUMPDEST DUP4 DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP CALLER DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP3 DUP2 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0x4E2C0D5CDF3ED1506E2B61635DB6126329DD3A1B3FF5D91FF0337DDB3082754B DUP7 PUSH1 0x40 MLOAD PUSH2 0xBF6 SWAP2 SWAP1 PUSH2 0x3F6C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MLOAD DUP4 MLOAD EQ PUSH2 0xC4A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC41 SWAP1 PUSH2 0x3F0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC8D 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 0xCBB 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 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0xDAA JUMPI PUSH2 0xD54 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xD06 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xD47 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x33A JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xD8D 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 DUP1 PUSH2 0xDA3 SWAP1 PUSH2 0x4333 JUMP JUMPDEST SWAP1 POP PUSH2 0xCC1 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP DUP1 PUSH1 0x8 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP1 ISZERO PUSH2 0xE3A JUMPI POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 ISZERO PUSH2 0xE49 JUMPI POP DUP2 DUP2 PUSH1 0x3 ADD SLOAD EQ JUMPDEST PUSH2 0xE52 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP6 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEB3 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3B6F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xECD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xEE1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xF05 SWAP2 SWAP1 PUSH2 0x3187 JUMP JUMPDEST POP CALLER DUP2 PUSH1 0x2 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 DUP2 PUSH1 0x4 ADD DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH32 0x5BA397FEFBE224A8036109A153EEA01AB25EADB596D8C2F1DB4BF54F4DC1A24F DUP6 PUSH1 0x40 MLOAD PUSH2 0xFD4 SWAP2 SWAP1 PUSH2 0x3F6C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1000 PUSH2 0x2536 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1057 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x104E SWAP1 PUSH2 0x3EEC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x1064 PUSH2 0x2536 JUMP JUMPDEST 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 PUSH2 0x1111 PUSH2 0x2536 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1156 SWAP2 SWAP1 PUSH2 0x3D0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x4 PUSH1 0x0 DUP13 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x0 PUSH1 0x1 DUP3 PUSH1 0x7 ADD PUSH1 0x0 DUP1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x11BC SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH1 0x1 DUP4 PUSH1 0x7 ADD PUSH1 0x0 DUP1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x11F0 SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH1 0xA PUSH2 0x11FC SWAP2 SWAP1 PUSH2 0x419E JUMP JUMPDEST PUSH1 0x1 DUP5 PUSH1 0x7 ADD PUSH1 0x0 DUP1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x122F SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH1 0x64 PUSH2 0x123B SWAP2 SWAP1 PUSH2 0x419E JUMP JUMPDEST PUSH2 0x1245 SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH2 0x124F SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x1 DUP4 PUSH1 0x7 ADD PUSH1 0x0 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x1288 SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH1 0x1 DUP5 PUSH1 0x7 ADD PUSH1 0x0 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x12BD SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH1 0xA PUSH2 0x12C9 SWAP2 SWAP1 PUSH2 0x419E JUMP JUMPDEST PUSH1 0x1 DUP6 PUSH1 0x7 ADD PUSH1 0x0 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x12FD SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH1 0x64 PUSH2 0x1309 SWAP2 SWAP1 PUSH2 0x419E JUMP JUMPDEST PUSH2 0x1313 SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH2 0x131D SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x1 DUP5 PUSH1 0x7 ADD PUSH1 0x0 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x1356 SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH1 0x1 DUP6 PUSH1 0x7 ADD PUSH1 0x0 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x138B SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH1 0xA PUSH2 0x1397 SWAP2 SWAP1 PUSH2 0x419E JUMP JUMPDEST PUSH1 0x1 DUP7 PUSH1 0x7 ADD PUSH1 0x0 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x13CB SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH1 0x64 PUSH2 0x13D7 SWAP2 SWAP1 PUSH2 0x419E JUMP JUMPDEST PUSH2 0x13E1 SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH2 0x13EB SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x3 ADD SLOAD DUP6 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH1 0x4 ADD SLOAD DUP8 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP9 PUSH1 0x5 ADD SLOAD DUP9 DUP9 DUP9 SWAP13 POP SWAP13 POP SWAP13 POP SWAP13 POP SWAP13 POP SWAP13 POP SWAP13 POP SWAP13 POP SWAP13 POP POP POP POP POP SWAP2 SWAP4 SWAP6 SWAP8 SWAP10 SWAP1 SWAP3 SWAP5 SWAP7 SWAP9 POP JUMP JUMPDEST PUSH1 0x0 TIMESTAMP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP DUP1 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x155D JUMPI POP DUP1 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST PUSH2 0x159C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1593 SWAP1 PUSH2 0x3E8C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x15FB JUMPI PUSH1 0x1 SWAP1 POP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x3 ADD SLOAD GT PUSH2 0x1642 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1639 SWAP1 PUSH2 0x3E2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x16D6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16CD SWAP1 PUSH2 0x3DAC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP5 LT ISZERO DUP1 ISZERO PUSH2 0x16E7 JUMPI POP PUSH1 0x3 DUP5 LT JUMPDEST DUP1 ISZERO PUSH2 0x16F4 JUMPI POP PUSH1 0x0 DUP4 LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1700 JUMPI POP PUSH1 0x3 DUP4 LT JUMPDEST PUSH2 0x173F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1736 SWAP1 PUSH2 0x3F2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x7 ADD PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD EQ PUSH2 0x17A8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x179F SWAP1 PUSH2 0x3ECC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x6 ADD SLOAD EQ DUP1 PUSH2 0x17BF JUMPI POP DUP2 PUSH1 0x6 ADD SLOAD TIMESTAMP GT ISZERO JUMPDEST PUSH2 0x17FE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17F5 SWAP1 PUSH2 0x3E6C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x5 ADD SLOAD EQ PUSH2 0x1847 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x183E SWAP1 PUSH2 0x3EAC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 PUSH2 0x1854 SWAP2 SWAP1 PUSH2 0x4167 JUMP JUMPDEST PUSH1 0xFF AND DUP3 PUSH1 0x7 ADD PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH2 0x188A DUP6 PUSH2 0x2823 JUMP JUMPDEST ISZERO PUSH2 0x1B0B JUMPI DUP2 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP4 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x3 ADD SLOAD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1916 SWAP3 SWAP2 SWAP1 PUSH2 0x3C00 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1930 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1944 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1968 SWAP2 SWAP1 PUSH2 0x3187 JUMP JUMPDEST POP DUP2 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP4 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x4 ADD SLOAD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19F0 SWAP3 SWAP2 SWAP1 PUSH2 0x3C00 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1A0A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1A1E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1A42 SWAP2 SWAP1 PUSH2 0x3187 JUMP JUMPDEST POP PUSH1 0x0 DUP3 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP3 PUSH1 0x4 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP3 PUSH1 0x5 ADD DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH32 0x3212C233A5D7EB92CC9BC80249B62592FE1D4FBFDCBF9C8E78D3AD2864FC3A5A PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP PUSH2 0x1E83 JUMP JUMPDEST PUSH2 0x1B18 DUP6 DUP3 PUSH1 0xFF AND PUSH2 0x28D5 JUMP JUMPDEST ISZERO PUSH2 0x1E08 JUMPI PUSH1 0x0 DUP2 PUSH1 0xFF AND EQ ISZERO PUSH2 0x1C17 JUMPI DUP2 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP4 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x4 ADD SLOAD DUP6 PUSH1 0x3 ADD SLOAD PUSH2 0x1BA2 SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1BBF SWAP3 SWAP2 SWAP1 PUSH2 0x3C00 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1BD9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1BED JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1C11 SWAP2 SWAP1 PUSH2 0x3187 JUMP JUMPDEST POP PUSH2 0x1D01 JUMP JUMPDEST DUP2 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP4 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x4 ADD SLOAD DUP6 PUSH1 0x3 ADD SLOAD PUSH2 0x1C90 SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CAD SWAP3 SWAP2 SWAP1 PUSH2 0x3C00 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1CC7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1CDB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1CFF SWAP2 SWAP1 PUSH2 0x3187 JUMP JUMPDEST POP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP3 PUSH1 0x4 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP3 PUSH1 0x5 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0xFF AND EQ ISZERO PUSH2 0x1D98 JUMPI DUP2 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH32 0x5099DD6DAC0A84E5CC1D9629B2E349CC5123E62FFF80006667B71CA663638FC8 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x1E01 JUMP JUMPDEST DUP2 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH32 0x5099DD6DAC0A84E5CC1D9629B2E349CC5123E62FFF80006667B71CA663638FC8 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP PUSH2 0x1E83 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0xFF AND EQ ISZERO PUSH2 0x1E23 JUMPI PUSH1 0x1 DUP3 PUSH1 0x5 ADD DUP2 SWAP1 SSTORE POP PUSH2 0x1E2E JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x5 ADD DUP2 SWAP1 SSTORE POP JUMPDEST PUSH2 0x258 TIMESTAMP PUSH2 0x1E3C SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST DUP3 PUSH1 0x6 ADD DUP2 SWAP1 SSTORE POP DUP5 PUSH32 0x8E301FFF5AD6FD5062F8B51838478C973DE9D3BE11A6A487A1908B82F09EA05D DUP3 DUP7 DUP7 PUSH1 0x40 MLOAD PUSH2 0x1E78 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3FB0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0x1F04 JUMPI POP PUSH1 0x0 DUP2 PUSH1 0x3 ADD SLOAD GT JUMPDEST DUP1 ISZERO PUSH2 0x1F13 JUMPI POP DUP1 PUSH1 0x6 ADD SLOAD TIMESTAMP GT JUMPDEST ISZERO PUSH2 0x211C JUMPI PUSH1 0x0 DUP2 PUSH1 0x5 ADD SLOAD EQ ISZERO PUSH2 0x2013 JUMPI DUP1 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP3 PUSH1 0x2 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x4 ADD SLOAD DUP5 PUSH1 0x3 ADD SLOAD PUSH2 0x1F9E SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1FBB SWAP3 SWAP2 SWAP1 PUSH2 0x3C00 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1FD5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1FE9 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x200D SWAP2 SWAP1 PUSH2 0x3187 JUMP JUMPDEST POP PUSH2 0x20FD JUMP JUMPDEST DUP1 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP3 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x4 ADD SLOAD DUP5 PUSH1 0x3 ADD SLOAD PUSH2 0x208C SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20A9 SWAP3 SWAP2 SWAP1 PUSH2 0x3C00 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x20C3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x20D7 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x20FB SWAP2 SWAP1 PUSH2 0x3187 JUMP JUMPDEST POP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x4 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x5 ADD DUP2 SWAP1 SSTORE POP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2224 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x221B SWAP1 PUSH2 0x3DEC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x222C PUSH2 0x2536 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x2272 JUMPI POP PUSH2 0x2271 DUP6 PUSH2 0x226C PUSH2 0x2536 JUMP JUMPDEST PUSH2 0x2120 JUMP JUMPDEST JUMPDEST PUSH2 0x22B1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22A8 SWAP1 PUSH2 0x3DCC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x22BB PUSH2 0x2536 JUMP JUMPDEST SWAP1 POP PUSH2 0x22DB DUP2 DUP8 DUP8 PUSH2 0x22CC DUP9 PUSH2 0x297A JUMP JUMPDEST PUSH2 0x22D5 DUP9 PUSH2 0x297A JUMP JUMPDEST DUP8 PUSH2 0x253E JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x2372 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2369 SWAP1 PUSH2 0x3E4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP4 DUP2 PUSH2 0x237E SWAP2 SWAP1 PUSH2 0x41F8 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP4 PUSH1 0x0 DUP1 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 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 0x2430 SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xC3D58168C5AE7397731D063D5BBF3D657854427343F4C083240F7AACAA2D0F62 DUP9 DUP9 PUSH1 0x40 MLOAD PUSH2 0x24AD SWAP3 SWAP2 SWAP1 PUSH2 0x3F87 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x24C3 DUP3 DUP9 DUP9 DUP9 DUP9 DUP9 PUSH2 0x2A40 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2565 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2C10 JUMP JUMPDEST ISZERO PUSH2 0x270E JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xBC197C81 DUP8 DUP8 DUP7 DUP7 DUP7 PUSH1 0x40 MLOAD DUP7 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x25AB SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3B07 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x25C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x25F6 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 0x25F3 SWAP2 SWAP1 PUSH2 0x31D9 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2685 JUMPI PUSH2 0x2602 PUSH2 0x4427 JUMP JUMPDEST DUP1 PUSH2 0x260D JUMPI POP PUSH2 0x264A JUMP JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2641 SWAP2 SWAP1 PUSH2 0x3D2A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x267C SWAP1 PUSH2 0x3D4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH4 0xBC197C81 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ PUSH2 0x270C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2703 SWAP1 PUSH2 0x3D6C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x5 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x4 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x2 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x6 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 JUMPDEST PUSH1 0x3 DUP2 LT ISZERO PUSH2 0x281E JUMPI PUSH1 0x0 JUMPDEST PUSH1 0x3 DUP2 LT ISZERO PUSH2 0x280A JUMPI PUSH1 0x0 DUP4 PUSH1 0x7 ADD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 DUP1 PUSH2 0x2802 SWAP1 PUSH2 0x4333 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x27C2 JUMP JUMPDEST POP DUP1 DUP1 PUSH2 0x2816 SWAP1 PUSH2 0x4333 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x27B6 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x4 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x0 DUP1 JUMPDEST PUSH1 0x3 DUP2 LT ISZERO PUSH2 0x28B9 JUMPI PUSH1 0x0 JUMPDEST PUSH1 0x3 DUP2 LT ISZERO PUSH2 0x28A5 JUMPI PUSH1 0x0 DUP5 PUSH1 0x7 ADD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD GT ISZERO PUSH2 0x2892 JUMPI DUP3 DUP1 PUSH2 0x288E SWAP1 PUSH2 0x4333 JUMP JUMPDEST SWAP4 POP POP JUMPDEST DUP1 DUP1 PUSH2 0x289D SWAP1 PUSH2 0x4333 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x284B JUMP JUMPDEST POP DUP1 DUP1 PUSH2 0x28B1 SWAP1 PUSH2 0x4333 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x283F JUMP JUMPDEST POP PUSH1 0x9 DUP2 LT PUSH2 0x28CD JUMPI PUSH1 0x1 SWAP3 POP POP POP PUSH2 0x28D0 JUMP JUMPDEST POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28ED DUP4 DUP4 PUSH1 0x0 PUSH1 0x1 PUSH1 0x2 PUSH1 0x0 PUSH1 0x1 PUSH1 0x2 PUSH2 0x2C23 JUMP JUMPDEST DUP1 PUSH2 0x2909 JUMPI POP PUSH2 0x2908 DUP4 DUP4 PUSH1 0x0 PUSH1 0x1 PUSH1 0x2 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x2C23 JUMP JUMPDEST JUMPDEST ISZERO PUSH2 0x2917 JUMPI PUSH1 0x1 SWAP1 POP PUSH2 0x2974 JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x3 DUP2 LT ISZERO PUSH2 0x2972 JUMPI PUSH2 0x2936 DUP5 DUP5 DUP4 DUP5 DUP6 PUSH1 0x0 PUSH1 0x1 PUSH1 0x2 PUSH2 0x2C23 JUMP JUMPDEST DUP1 PUSH2 0x2950 JUMPI POP PUSH2 0x294F DUP5 DUP5 PUSH1 0x0 PUSH1 0x1 PUSH1 0x2 DUP7 DUP8 DUP9 PUSH2 0x2C23 JUMP JUMPDEST JUMPDEST ISZERO PUSH2 0x295F JUMPI PUSH1 0x1 SWAP2 POP POP PUSH2 0x2974 JUMP JUMPDEST DUP1 DUP1 PUSH2 0x296A SWAP1 PUSH2 0x4333 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x291A JUMP JUMPDEST POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x1 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x29BF 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 0x29ED 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 DUP3 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x2A2B 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 DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2A5F DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2C10 JUMP JUMPDEST ISZERO PUSH2 0x2C08 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xF23A6E61 DUP8 DUP8 DUP7 DUP7 DUP7 PUSH1 0x40 MLOAD DUP7 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2AA5 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3BA6 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2ABF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2AF0 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 0x2AED SWAP2 SWAP1 PUSH2 0x31D9 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2B7F JUMPI PUSH2 0x2AFC PUSH2 0x4427 JUMP JUMPDEST DUP1 PUSH2 0x2B07 JUMPI POP PUSH2 0x2B44 JUMP JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2B3B SWAP2 SWAP1 PUSH2 0x3D2A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2B76 SWAP1 PUSH2 0x3D4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH4 0xF23A6E61 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ PUSH2 0x2C06 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2BFD SWAP1 PUSH2 0x3D6C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 EXTCODESIZE SWAP1 POP PUSH1 0x0 DUP2 GT SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x4 PUSH1 0x0 DUP12 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x1 DUP10 PUSH2 0x2C48 SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST DUP2 PUSH1 0x7 ADD PUSH1 0x0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP8 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD EQ DUP1 ISZERO PUSH2 0x2CAD JUMPI POP PUSH1 0x1 DUP10 PUSH2 0x2C84 SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST DUP2 PUSH1 0x7 ADD PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD EQ JUMPDEST DUP1 ISZERO PUSH2 0x2CEA JUMPI POP PUSH1 0x1 DUP10 PUSH2 0x2CC1 SWAP2 SWAP1 PUSH2 0x4111 JUMP JUMPDEST DUP2 PUSH1 0x7 ADD PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD EQ JUMPDEST ISZERO PUSH2 0x2CF9 JUMPI PUSH1 0x1 SWAP2 POP POP PUSH2 0x2CFB JUMP JUMPDEST POP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D1A PUSH2 0x2D15 DUP5 PUSH2 0x4018 JUMP JUMPDEST PUSH2 0x3FE7 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP DUP3 DUP6 PUSH1 0x20 DUP7 MUL DUP3 ADD GT ISZERO PUSH2 0x2D39 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x2D69 JUMPI DUP2 PUSH2 0x2D4F DUP9 DUP3 PUSH2 0x2E1D JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x20 DUP4 ADD SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2D3C JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D86 PUSH2 0x2D81 DUP5 PUSH2 0x4044 JUMP JUMPDEST PUSH2 0x3FE7 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP DUP3 DUP6 PUSH1 0x20 DUP7 MUL DUP3 ADD GT ISZERO PUSH2 0x2DA5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x2DD5 JUMPI DUP2 PUSH2 0x2DBB DUP9 DUP3 PUSH2 0x2F04 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x20 DUP4 ADD SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2DA8 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2DF2 PUSH2 0x2DED DUP5 PUSH2 0x4070 JUMP JUMPDEST PUSH2 0x3FE7 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2E0A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2E15 DUP5 DUP3 DUP6 PUSH2 0x42BF JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2E2C DUP2 PUSH2 0x44DD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2E43 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2E53 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2D07 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2E6D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2E7D DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2D73 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2E95 DUP2 PUSH2 0x44F4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2EAA DUP2 PUSH2 0x44F4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2EBF DUP2 PUSH2 0x450B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2ED4 DUP2 PUSH2 0x450B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2EEB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2EFB DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2DDF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2F13 DUP2 PUSH2 0x4522 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2F2C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2F3A DUP6 DUP3 DUP7 ADD PUSH2 0x2E1D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2F4B DUP6 DUP3 DUP7 ADD PUSH2 0x2E1D JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x2F6D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2F7B DUP9 DUP3 DUP10 ADD PUSH2 0x2E1D JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x2F8C DUP9 DUP3 DUP10 ADD PUSH2 0x2E1D JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2FA9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2FB5 DUP9 DUP3 DUP10 ADD PUSH2 0x2E5C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2FD2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2FDE DUP9 DUP3 DUP10 ADD PUSH2 0x2E5C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2FFB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3007 DUP9 DUP3 DUP10 ADD PUSH2 0x2EDA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x302C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x303A DUP9 DUP3 DUP10 ADD PUSH2 0x2E1D JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x304B DUP9 DUP3 DUP10 ADD PUSH2 0x2E1D JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0x305C DUP9 DUP3 DUP10 ADD PUSH2 0x2F04 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0x306D DUP9 DUP3 DUP10 ADD PUSH2 0x2F04 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x308A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3096 DUP9 DUP3 DUP10 ADD PUSH2 0x2EDA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x30B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x30C4 DUP6 DUP3 DUP7 ADD PUSH2 0x2E1D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x30D5 DUP6 DUP3 DUP7 ADD PUSH2 0x2E86 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x30F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3100 DUP6 DUP3 DUP7 ADD PUSH2 0x2E1D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3111 DUP6 DUP3 DUP7 ADD PUSH2 0x2F04 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x312E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3148 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3154 DUP6 DUP3 DUP7 ADD PUSH2 0x2E32 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3171 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x317D DUP6 DUP3 DUP7 ADD PUSH2 0x2E5C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3199 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x31A7 DUP5 DUP3 DUP6 ADD PUSH2 0x2E9B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x31C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x31D0 DUP5 DUP3 DUP6 ADD PUSH2 0x2EB0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x31EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x31F9 DUP5 DUP3 DUP6 ADD PUSH2 0x2EC5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3214 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3222 DUP5 DUP3 DUP6 ADD PUSH2 0x2F04 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x323E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x324C DUP6 DUP3 DUP7 ADD PUSH2 0x2F04 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x325D DUP6 DUP3 DUP7 ADD PUSH2 0x2F04 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 0x327C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x328A DUP7 DUP3 DUP8 ADD PUSH2 0x2F04 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x329B DUP7 DUP3 DUP8 ADD PUSH2 0x2F04 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x32AC DUP7 DUP3 DUP8 ADD PUSH2 0x2F04 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32C2 DUP4 DUP4 PUSH2 0x3A5C JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x32D7 DUP2 PUSH2 0x422C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32E8 DUP3 PUSH2 0x40B0 JUMP JUMPDEST PUSH2 0x32F2 DUP2 DUP6 PUSH2 0x40DE JUMP JUMPDEST SWAP4 POP PUSH2 0x32FD DUP4 PUSH2 0x40A0 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x332E JUMPI DUP2 MLOAD PUSH2 0x3315 DUP9 DUP3 PUSH2 0x32B6 JUMP JUMPDEST SWAP8 POP PUSH2 0x3320 DUP4 PUSH2 0x40D1 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x3301 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3344 DUP2 PUSH2 0x423E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3355 DUP3 PUSH2 0x40BB JUMP JUMPDEST PUSH2 0x335F DUP2 DUP6 PUSH2 0x40EF JUMP JUMPDEST SWAP4 POP PUSH2 0x336F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x42CE JUMP JUMPDEST PUSH2 0x3378 DUP2 PUSH2 0x4409 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x338E DUP3 PUSH2 0x40C6 JUMP JUMPDEST PUSH2 0x3398 DUP2 DUP6 PUSH2 0x4100 JUMP JUMPDEST SWAP4 POP PUSH2 0x33A8 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x42CE JUMP JUMPDEST PUSH2 0x33B1 DUP2 PUSH2 0x4409 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33C9 PUSH1 0x34 DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x455243313135353A207472616E7366657220746F206E6F6E2045524331313535 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x526563656976657220696D706C656D656E746572000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x342F PUSH1 0x28 DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x455243313135353A204552433131353552656365697665722072656A65637465 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6420746F6B656E73000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3495 PUSH1 0x2B DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x455243313135353A2062616C616E636520717565727920666F7220746865207A PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x65726F2061646472657373000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34FB PUSH1 0x21 DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x5468657265206D75737420626520616E206F70706F6E656E7420746F20706C61 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7900000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3561 PUSH1 0x29 DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x455243313135353A2063616C6C6572206973206E6F74206F776E6572206E6F72 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x20617070726F7665640000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35C7 PUSH1 0x25 DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x455243313135353A207472616E7366657220746F20746865207A65726F206164 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x362D PUSH1 0x32 DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x455243313135353A207472616E736665722063616C6C6572206973206E6F7420 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6F776E6572206E6F7220617070726F7665640000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3693 PUSH1 0x3A DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x5468657265206D7573742062652061206265742076616C75652073746F726564 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x2062792074686520636F6E7472616374202862616C616E636529000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36F9 PUSH1 0x2A DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x455243313135353A20696E73756666696369656E742062616C616E636520666F PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x72207472616E7366657200000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x375F PUSH1 0x26 DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x596F75206D75737420706C617920696E2074696D6520772E722E742E2054696D PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x654C696D69740000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37C5 PUSH1 0x1D DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x55736572206D7573742062652061206D656D626572206F662067616D65000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3805 PUSH1 0x11 DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x4D75737420626520796F7572207475726E000000000000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3845 PUSH1 0x37 DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x54686572652073686F756C64206265206E6F206F74686572206D6F7665732070 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6C61796564206F6E207468652073616D6520706C616365000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38AB PUSH1 0x29 DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x455243313135353A2073657474696E6720617070726F76616C20737461747573 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x20666F722073656C660000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3911 PUSH1 0x29 DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x455243313135353A206163636F756E747320616E6420696473206C656E677468 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x206D69736D617463680000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3977 PUSH1 0x41 DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x596F75206D75737420706C61792061206D6F766520696E736964652074686520 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x626F6172642020303E3D726F773E3D3220616E6420303E3D636F6C756D6E3E3D PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0x3200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A03 PUSH1 0x28 DUP4 PUSH2 0x4100 JUMP JUMPDEST SWAP2 POP PUSH32 0x455243313135353A2069647320616E6420616D6F756E7473206C656E67746820 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6D69736D61746368000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3A65 DUP2 PUSH2 0x4296 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3A74 DUP2 PUSH2 0x4296 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3A83 DUP2 PUSH2 0x42AD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100 DUP3 ADD SWAP1 POP PUSH2 0x3A9F PUSH1 0x0 DUP4 ADD DUP12 PUSH2 0x32CE JUMP JUMPDEST PUSH2 0x3AAC PUSH1 0x20 DUP4 ADD DUP11 PUSH2 0x32CE JUMP JUMPDEST PUSH2 0x3AB9 PUSH1 0x40 DUP4 ADD DUP10 PUSH2 0x32CE JUMP JUMPDEST PUSH2 0x3AC6 PUSH1 0x60 DUP4 ADD DUP9 PUSH2 0x3A6B JUMP JUMPDEST PUSH2 0x3AD3 PUSH1 0x80 DUP4 ADD DUP8 PUSH2 0x3A6B JUMP JUMPDEST PUSH2 0x3AE0 PUSH1 0xA0 DUP4 ADD DUP7 PUSH2 0x3A6B JUMP JUMPDEST PUSH2 0x3AED PUSH1 0xC0 DUP4 ADD DUP6 PUSH2 0x3A6B JUMP JUMPDEST PUSH2 0x3AFA PUSH1 0xE0 DUP4 ADD DUP5 PUSH2 0x333B JUMP JUMPDEST SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x3B1C PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x32CE JUMP JUMPDEST PUSH2 0x3B29 PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x32CE JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x3B3B DUP2 DUP7 PUSH2 0x32DD JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x3B4F DUP2 DUP6 PUSH2 0x32DD JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x3B63 DUP2 DUP5 PUSH2 0x334A JUMP JUMPDEST SWAP1 POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3B84 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x32CE JUMP JUMPDEST PUSH2 0x3B91 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x32CE JUMP JUMPDEST PUSH2 0x3B9E PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3A6B JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x3BBB PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x32CE JUMP JUMPDEST PUSH2 0x3BC8 PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x32CE JUMP JUMPDEST PUSH2 0x3BD5 PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x3A6B JUMP JUMPDEST PUSH2 0x3BE2 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x3A6B JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x3BF4 DUP2 DUP5 PUSH2 0x334A JUMP JUMPDEST SWAP1 POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3C15 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x32CE JUMP JUMPDEST PUSH2 0x3C22 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3A6B JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x120 DUP3 ADD SWAP1 POP PUSH2 0x3C3F PUSH1 0x0 DUP4 ADD DUP13 PUSH2 0x32CE JUMP JUMPDEST PUSH2 0x3C4C PUSH1 0x20 DUP4 ADD DUP12 PUSH2 0x3A6B JUMP JUMPDEST PUSH2 0x3C59 PUSH1 0x40 DUP4 ADD DUP11 PUSH2 0x32CE JUMP JUMPDEST PUSH2 0x3C66 PUSH1 0x60 DUP4 ADD DUP10 PUSH2 0x3A6B JUMP JUMPDEST PUSH2 0x3C73 PUSH1 0x80 DUP4 ADD DUP9 PUSH2 0x32CE JUMP JUMPDEST PUSH2 0x3C80 PUSH1 0xA0 DUP4 ADD DUP8 PUSH2 0x3A6B JUMP JUMPDEST PUSH2 0x3C8D PUSH1 0xC0 DUP4 ADD DUP7 PUSH2 0x3A6B JUMP JUMPDEST PUSH2 0x3C9A PUSH1 0xE0 DUP4 ADD DUP6 PUSH2 0x3A6B JUMP JUMPDEST PUSH2 0x3CA8 PUSH2 0x100 DUP4 ADD DUP5 PUSH2 0x3A6B JUMP JUMPDEST SWAP11 SWAP10 POP POP POP POP 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 0x3CD0 DUP2 DUP5 PUSH2 0x32DD JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3CF2 DUP2 DUP6 PUSH2 0x32DD JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x3D06 DUP2 DUP5 PUSH2 0x32DD JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3D24 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x333B 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 0x3D44 DUP2 DUP5 PUSH2 0x3383 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 0x3D65 DUP2 PUSH2 0x33BC 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 0x3D85 DUP2 PUSH2 0x3422 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 0x3DA5 DUP2 PUSH2 0x3488 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 0x3DC5 DUP2 PUSH2 0x34EE 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 0x3DE5 DUP2 PUSH2 0x3554 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 0x3E05 DUP2 PUSH2 0x35BA 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 0x3E25 DUP2 PUSH2 0x3620 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 0x3E45 DUP2 PUSH2 0x3686 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 0x3E65 DUP2 PUSH2 0x36EC 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 0x3E85 DUP2 PUSH2 0x3752 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 0x3EA5 DUP2 PUSH2 0x37B8 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 0x3EC5 DUP2 PUSH2 0x37F8 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 0x3EE5 DUP2 PUSH2 0x3838 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 0x3F05 DUP2 PUSH2 0x389E 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 0x3F25 DUP2 PUSH2 0x3904 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 0x3F45 DUP2 PUSH2 0x396A 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 0x3F65 DUP2 PUSH2 0x39F6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3F81 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3A6B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3F9C PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x3A6B JUMP JUMPDEST PUSH2 0x3FA9 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3A6B JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3FC5 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x3A7A JUMP JUMPDEST PUSH2 0x3FD2 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x3A6B JUMP JUMPDEST PUSH2 0x3FDF PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x3A6B 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 0x400E JUMPI PUSH2 0x400D PUSH2 0x43DA JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x4033 JUMPI PUSH2 0x4032 PUSH2 0x43DA JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x405F JUMPI PUSH2 0x405E PUSH2 0x43DA JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x408B JUMPI PUSH2 0x408A PUSH2 0x43DA 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 PUSH2 0x411C DUP3 PUSH2 0x4296 JUMP JUMPDEST SWAP2 POP PUSH2 0x4127 DUP4 PUSH2 0x4296 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x415C JUMPI PUSH2 0x415B PUSH2 0x437C JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4172 DUP3 PUSH2 0x42A0 JUMP JUMPDEST SWAP2 POP PUSH2 0x417D DUP4 PUSH2 0x42A0 JUMP JUMPDEST SWAP3 POP DUP3 PUSH1 0xFF SUB DUP3 GT ISZERO PUSH2 0x4193 JUMPI PUSH2 0x4192 PUSH2 0x437C JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x41A9 DUP3 PUSH2 0x4296 JUMP JUMPDEST SWAP2 POP PUSH2 0x41B4 DUP4 PUSH2 0x4296 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x41ED JUMPI PUSH2 0x41EC PUSH2 0x437C JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4203 DUP3 PUSH2 0x4296 JUMP JUMPDEST SWAP2 POP PUSH2 0x420E DUP4 PUSH2 0x4296 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x4221 JUMPI PUSH2 0x4220 PUSH2 0x437C JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4237 DUP3 PUSH2 0x4276 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 PUSH1 0x0 PUSH2 0x42B8 DUP3 PUSH2 0x42A0 JUMP JUMPDEST 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 0x42EC JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x42D1 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x42FB 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 0x4319 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x432D JUMPI PUSH2 0x432C PUSH2 0x43AB JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x433E DUP3 PUSH2 0x4296 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x4371 JUMPI PUSH2 0x4370 PUSH2 0x437C JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 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 PUSH1 0x0 DUP2 PUSH1 0xE0 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x44 RETURNDATASIZE LT ISZERO PUSH2 0x4437 JUMPI PUSH2 0x44DA JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP1 RETURNDATACOPY PUSH2 0x4448 PUSH1 0x0 MLOAD PUSH2 0x441A JUMP JUMPDEST PUSH4 0x8C379A0 DUP2 EQ PUSH2 0x4459 JUMPI POP PUSH2 0x44DA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x4 RETURNDATASIZE SUB PUSH1 0x4 DUP3 RETURNDATACOPY DUP1 MLOAD RETURNDATASIZE PUSH1 0x24 DUP3 ADD GT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x4485 JUMPI POP POP POP PUSH2 0x44DA JUMP JUMPDEST DUP1 DUP3 ADD DUP1 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x44A4 JUMPI POP POP POP POP POP PUSH2 0x44DA JUMP JUMPDEST DUP1 PUSH1 0x20 DUP4 ADD ADD RETURNDATASIZE DUP6 ADD DUP2 GT ISZERO PUSH2 0x44BF JUMPI POP POP POP POP POP POP PUSH2 0x44DA JUMP JUMPDEST PUSH2 0x44C8 DUP3 PUSH2 0x4409 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD ADD PUSH1 0x40 MSTORE DUP3 SWAP7 POP POP POP POP POP POP POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0x44E6 DUP2 PUSH2 0x422C JUMP JUMPDEST DUP2 EQ PUSH2 0x44F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x44FD DUP2 PUSH2 0x423E JUMP JUMPDEST DUP2 EQ PUSH2 0x4508 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x4514 DUP2 PUSH2 0x424A JUMP JUMPDEST DUP2 EQ PUSH2 0x451F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x452B DUP2 PUSH2 0x4296 JUMP JUMPDEST DUP2 EQ PUSH2 0x4536 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MOD 0xE DUP14 0xFC 0x5F ORIGIN DUP14 0xDB 0xEF 0xD0 0xC0 0xEA 0xD DUP7 CALLCODE 0xD4 RETURN CHAINID GT 0x2C PUSH7 0x49C4AFF066C721 EXTCODESIZE PUSH13 0x7A5F64736F6C63430008000033 ",
"sourceMap": "203:8088:11:-:0;;;1112:35;;;;;;;;;;1036:63:0;;;;;;;;;;;;1079:13;1087:4;1079:7;;;:13;;:::i;:::-;1036:63;203:8088:11;;6746:86:0;6819:6;6812:4;:13;;;;;;;;;;;;:::i;:::-;;6746:86;:::o;203:8088:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:320:12:-;;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;203:8088:11;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:40316:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "126:520:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "136:89:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "217:6:12"
}
],
"functionName": {
"name": "array_allocation_size_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "160:56:12"
},
"nodeType": "YulFunctionCall",
"src": "160:64:12"
}
],
"functionName": {
"name": "allocateMemory",
"nodeType": "YulIdentifier",
"src": "145:14:12"
},
"nodeType": "YulFunctionCall",
"src": "145:80:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "136:5:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "234:16:12",
"value": {
"name": "array",
"nodeType": "YulIdentifier",
"src": "245:5:12"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "238:3:12",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "266:5:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "273:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "259:6:12"
},
"nodeType": "YulFunctionCall",
"src": "259:21:12"
},
"nodeType": "YulExpressionStatement",
"src": "259:21:12"
},
{
"nodeType": "YulAssignment",
"src": "281:23:12",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "292:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "299:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "288:3:12"
},
"nodeType": "YulFunctionCall",
"src": "288:16:12"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "281:3:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "313:17:12",
"value": {
"name": "offset",
"nodeType": "YulIdentifier",
"src": "324:6:12"
},
"variables": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "317:3:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "388:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "391:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "381:6:12"
},
"nodeType": "YulFunctionCall",
"src": "381:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "381:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "349:3:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "358:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "366:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "354:3:12"
},
"nodeType": "YulFunctionCall",
"src": "354:17:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "345:3:12"
},
"nodeType": "YulFunctionCall",
"src": "345:27:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "374:3:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "342:2:12"
},
"nodeType": "YulFunctionCall",
"src": "342:36:12"
},
"nodeType": "YulIf",
"src": "339:2:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "464:176:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "478:21:12",
"value": {
"name": "src",
"nodeType": "YulIdentifier",
"src": "496:3:12"
},
"variables": [
{
"name": "elementPos",
"nodeType": "YulTypedName",
"src": "482:10:12",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "519:3:12"
},
{
"arguments": [
{
"name": "elementPos",
"nodeType": "YulIdentifier",
"src": "545:10:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "557:3:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "524:20:12"
},
"nodeType": "YulFunctionCall",
"src": "524:37:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "512:6:12"
},
"nodeType": "YulFunctionCall",
"src": "512:50:12"
},
"nodeType": "YulExpressionStatement",
"src": "512:50:12"
},
{
"nodeType": "YulAssignment",
"src": "575:21:12",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "586:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "591:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "582:3:12"
},
"nodeType": "YulFunctionCall",
"src": "582:14:12"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "575:3:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "609:21:12",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "620:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "625:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "616:3:12"
},
"nodeType": "YulFunctionCall",
"src": "616:14:12"
},
"variableNames": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "609:3:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "426:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "429:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "423:2:12"
},
"nodeType": "YulFunctionCall",
"src": "423:13:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "437:18:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "439:14:12",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "448:1:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "451:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "444:3:12"
},
"nodeType": "YulFunctionCall",
"src": "444:9:12"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "439:1:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "408:14:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "410:10:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "419:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "414:1:12",
"type": ""
}
]
}
]
},
"src": "404:236:12"
}
]
},
"name": "abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "96:6:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "104:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "112:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "120:5:12",
"type": ""
}
],
"src": "24:622:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "771:520:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "781:89:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "862:6:12"
}
],
"functionName": {
"name": "array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "805:56:12"
},
"nodeType": "YulFunctionCall",
"src": "805:64:12"
}
],
"functionName": {
"name": "allocateMemory",
"nodeType": "YulIdentifier",
"src": "790:14:12"
},
"nodeType": "YulFunctionCall",
"src": "790:80:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "781:5:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "879:16:12",
"value": {
"name": "array",
"nodeType": "YulIdentifier",
"src": "890:5:12"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "883:3:12",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "911:5:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "918:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "904:6:12"
},
"nodeType": "YulFunctionCall",
"src": "904:21:12"
},
"nodeType": "YulExpressionStatement",
"src": "904:21:12"
},
{
"nodeType": "YulAssignment",
"src": "926:23:12",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "937:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "944:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "933:3:12"
},
"nodeType": "YulFunctionCall",
"src": "933:16:12"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "926:3:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "958:17:12",
"value": {
"name": "offset",
"nodeType": "YulIdentifier",
"src": "969:6:12"
},
"variables": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "962:3:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1024:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1033:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1036:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1026:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1026:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "1026:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "994:3:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1003:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1011:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "999:3:12"
},
"nodeType": "YulFunctionCall",
"src": "999:17:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "990:3:12"
},
"nodeType": "YulFunctionCall",
"src": "990:27:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1019:3:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "987:2:12"
},
"nodeType": "YulFunctionCall",
"src": "987:36:12"
},
"nodeType": "YulIf",
"src": "984:2:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1109:176:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1123:21:12",
"value": {
"name": "src",
"nodeType": "YulIdentifier",
"src": "1141:3:12"
},
"variables": [
{
"name": "elementPos",
"nodeType": "YulTypedName",
"src": "1127:10:12",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1164:3:12"
},
{
"arguments": [
{
"name": "elementPos",
"nodeType": "YulIdentifier",
"src": "1190:10:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1202:3:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1169:20:12"
},
"nodeType": "YulFunctionCall",
"src": "1169:37:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1157:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1157:50:12"
},
"nodeType": "YulExpressionStatement",
"src": "1157:50:12"
},
{
"nodeType": "YulAssignment",
"src": "1220:21:12",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1231:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1236:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1227:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1227:14:12"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1220:3:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1254:21:12",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1265:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1270:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1261:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1261:14:12"
},
"variableNames": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1254:3:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1071:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1074:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1068:2:12"
},
"nodeType": "YulFunctionCall",
"src": "1068:13:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1082:18:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1084:14:12",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1093:1:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1096:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1089:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1089:9:12"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1084:1:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1053:14:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1055:10:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1064:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1059:1:12",
"type": ""
}
]
}
]
},
"src": "1049:236:12"
}
]
},
"name": "abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "741:6:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "749:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "757:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "765:5:12",
"type": ""
}
],
"src": "669:622:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1380:259:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1390:73:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1455:6:12"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1414:40:12"
},
"nodeType": "YulFunctionCall",
"src": "1414:48:12"
}
],
"functionName": {
"name": "allocateMemory",
"nodeType": "YulIdentifier",
"src": "1399:14:12"
},
"nodeType": "YulFunctionCall",
"src": "1399:64:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1390:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1479:5:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1486:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1472:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1472:21:12"
},
"nodeType": "YulExpressionStatement",
"src": "1472:21:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1502:27:12",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1517:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1524:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1513:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1513:16:12"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1506:3:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1567:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1576:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1579:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1569:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1569:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "1569:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1548:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1553:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1544:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1544:16:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1562:3:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1541:2:12"
},
"nodeType": "YulFunctionCall",
"src": "1541:25:12"
},
"nodeType": "YulIf",
"src": "1538:2:12"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1616:3:12"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1621:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1626:6:12"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "1592:23:12"
},
"nodeType": "YulFunctionCall",
"src": "1592:41:12"
},
"nodeType": "YulExpressionStatement",
"src": "1592:41:12"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1353:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1358:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1366:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1374:5:12",
"type": ""
}
],
"src": "1297:342:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1697:87:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1707:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1729:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1716:12:12"
},
"nodeType": "YulFunctionCall",
"src": "1716:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1707:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1772:5:12"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "1745:26:12"
},
"nodeType": "YulFunctionCall",
"src": "1745:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "1745:33:12"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1675:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1683:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1691:5:12",
"type": ""
}
],
"src": "1645:139:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1884:226:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1933:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1942:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1945:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1935:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1935:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "1935:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1912:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1920:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1908:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1908:17:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1927:3:12"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1904:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1904:27:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1897:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1897:35:12"
},
"nodeType": "YulIf",
"src": "1894:2:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1958:34:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1985:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1972:12:12"
},
"nodeType": "YulFunctionCall",
"src": "1972:20:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1962:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2001:103:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2077:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2085:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2073:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2073:17:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2092:6:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2100:3:12"
}
],
"functionName": {
"name": "abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2010:62:12"
},
"nodeType": "YulFunctionCall",
"src": "2010:94:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2001:5:12"
}
]
}
]
},
"name": "abi_decode_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1862:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1870:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1878:5:12",
"type": ""
}
],
"src": "1807:303:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2210:226:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2259:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2268:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2271:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2261:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2261:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "2261:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2238:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2246:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2234:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2234:17:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2253:3:12"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2230:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2230:27:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2223:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2223:35:12"
},
"nodeType": "YulIf",
"src": "2220:2:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2284:34:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2311:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2298:12:12"
},
"nodeType": "YulFunctionCall",
"src": "2298:20:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2288:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2327:103:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2403:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2411:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2399:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2399:17:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2418:6:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2426:3:12"
}
],
"functionName": {
"name": "abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2336:62:12"
},
"nodeType": "YulFunctionCall",
"src": "2336:94:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2327:5:12"
}
]
}
]
},
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2188:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2196:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2204:5:12",
"type": ""
}
],
"src": "2133:303:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2491:84:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2501:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2523:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2510:12:12"
},
"nodeType": "YulFunctionCall",
"src": "2510:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2501:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2563:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "2539:23:12"
},
"nodeType": "YulFunctionCall",
"src": "2539:30:12"
},
"nodeType": "YulExpressionStatement",
"src": "2539:30:12"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2469:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2477:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2485:5:12",
"type": ""
}
],
"src": "2442:133:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2641:77:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2651:22:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2666:6:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2660:5:12"
},
"nodeType": "YulFunctionCall",
"src": "2660:13:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2651:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2706:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "2682:23:12"
},
"nodeType": "YulFunctionCall",
"src": "2682:30:12"
},
"nodeType": "YulExpressionStatement",
"src": "2682:30:12"
}
]
},
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2619:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2627:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2635:5:12",
"type": ""
}
],
"src": "2581:137:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2775:86:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2785:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2807:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2794:12:12"
},
"nodeType": "YulFunctionCall",
"src": "2794:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2785:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2849:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "2823:25:12"
},
"nodeType": "YulFunctionCall",
"src": "2823:32:12"
},
"nodeType": "YulExpressionStatement",
"src": "2823:32:12"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2753:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2761:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2769:5:12",
"type": ""
}
],
"src": "2724:137:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2929:79:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2939:22:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2954:6:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2948:5:12"
},
"nodeType": "YulFunctionCall",
"src": "2948:13:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2939:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2996:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "2970:25:12"
},
"nodeType": "YulFunctionCall",
"src": "2970:32:12"
},
"nodeType": "YulExpressionStatement",
"src": "2970:32:12"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2907:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2915:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2923:5:12",
"type": ""
}
],
"src": "2867:141:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3088:210:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3137:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3146:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3149:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3139:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3139:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "3139:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3116:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3124:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3112:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3112:17:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3131:3:12"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3108:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3108:27:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3101:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3101:35:12"
},
"nodeType": "YulIf",
"src": "3098:2:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3162:34:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3189:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3176:12:12"
},
"nodeType": "YulFunctionCall",
"src": "3176:20:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3166:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3205:87:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3265:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3273:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3261:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3261:17:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3280:6:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3288:3:12"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3214:46:12"
},
"nodeType": "YulFunctionCall",
"src": "3214:78:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3205:5:12"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3066:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3074:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "3082:5:12",
"type": ""
}
],
"src": "3027:271:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3356:87:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3366:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3388:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3375:12:12"
},
"nodeType": "YulFunctionCall",
"src": "3375:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3366:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3431:5:12"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "3404:26:12"
},
"nodeType": "YulFunctionCall",
"src": "3404:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "3404:33:12"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3334:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3342:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3350:5:12",
"type": ""
}
],
"src": "3304:139:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3532:324:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3578:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3587:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3590:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3580:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3580:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "3580:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3553:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3562:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3549:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3549:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3574:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3545:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3545:32:12"
},
"nodeType": "YulIf",
"src": "3542:2:12"
},
{
"nodeType": "YulBlock",
"src": "3604:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3619:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3633:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3623:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3648:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3683:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3694:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3679:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3679:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3703:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3658:20:12"
},
"nodeType": "YulFunctionCall",
"src": "3658:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3648:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3731:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3746:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3760:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3750:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3776:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3811:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3822:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3807:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3807:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3831:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3786:20:12"
},
"nodeType": "YulFunctionCall",
"src": "3786:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3776:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3494:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3505:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3517:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3525:6:12",
"type": ""
}
],
"src": "3449:407:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4055:1048:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4102:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4111:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4114:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4104:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4104:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "4104:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4076:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4085:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4072:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4072:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4097:3:12",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4068:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4068:33:12"
},
"nodeType": "YulIf",
"src": "4065:2:12"
},
{
"nodeType": "YulBlock",
"src": "4128:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4143:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4157:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4147:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4172:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4207:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4218:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4203:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4203:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4227:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4182:20:12"
},
"nodeType": "YulFunctionCall",
"src": "4182:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4172:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4255:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4270:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4284:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4274:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4300:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4335:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4346:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4331:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4331:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4355:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4310:20:12"
},
"nodeType": "YulFunctionCall",
"src": "4310:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4300:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4383:236:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4398:46:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4429:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4440:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4425:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4425:18:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4412:12:12"
},
"nodeType": "YulFunctionCall",
"src": "4412:32:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4402:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4491:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4500:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4503:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4493:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4493:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "4493:12:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4463:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4471:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4460:2:12"
},
"nodeType": "YulFunctionCall",
"src": "4460:30:12"
},
"nodeType": "YulIf",
"src": "4457:2:12"
},
{
"nodeType": "YulAssignment",
"src": "4521:88:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4581:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4592:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4577:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4577:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4601:7:12"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4531:45:12"
},
"nodeType": "YulFunctionCall",
"src": "4531:78:12"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4521:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4629:236:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4644:46:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4675:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4686:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4671:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4671:18:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4658:12:12"
},
"nodeType": "YulFunctionCall",
"src": "4658:32:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4648:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4737:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4746:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4749:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4739:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4739:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "4739:12:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4709:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4717:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4706:2:12"
},
"nodeType": "YulFunctionCall",
"src": "4706:30:12"
},
"nodeType": "YulIf",
"src": "4703:2:12"
},
{
"nodeType": "YulAssignment",
"src": "4767:88:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4827:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4838:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4823:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4823:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4847:7:12"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4777:45:12"
},
"nodeType": "YulFunctionCall",
"src": "4777:78:12"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4767:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4875:221:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4890:47:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4921:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4932:3:12",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4917:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4917:19:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4904:12:12"
},
"nodeType": "YulFunctionCall",
"src": "4904:33:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4894:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4984:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4993:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4996:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4986:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4986:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "4986:12:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4956:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4964:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4953:2:12"
},
"nodeType": "YulFunctionCall",
"src": "4953:30:12"
},
"nodeType": "YulIf",
"src": "4950:2:12"
},
{
"nodeType": "YulAssignment",
"src": "5014:72:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5058:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5069:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5054:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5054:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5078:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5024:29:12"
},
"nodeType": "YulFunctionCall",
"src": "5024:62:12"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "5014:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3993:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4004:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4016:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4024:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4032:6:12",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "4040:6:12",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "4048:6:12",
"type": ""
}
],
"src": "3862:1241:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5252:812:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5299:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5308:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5311:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5301:6:12"
},
"nodeType": "YulFunctionCall",
"src": "5301:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "5301:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5273:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5282:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5269:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5269:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5294:3:12",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5265:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5265:33:12"
},
"nodeType": "YulIf",
"src": "5262:2:12"
},
{
"nodeType": "YulBlock",
"src": "5325:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5340:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5354:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5344:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5369:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5404:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5415:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5400:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5400:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5424:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5379:20:12"
},
"nodeType": "YulFunctionCall",
"src": "5379:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5369:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5452:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5467:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5481:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5471:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5497:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5532:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5543:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5528:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5528:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5552:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5507:20:12"
},
"nodeType": "YulFunctionCall",
"src": "5507:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5497:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5580:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5595:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5609:2:12",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5599:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5625:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5660:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5671:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5656:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5656:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5680:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5635:20:12"
},
"nodeType": "YulFunctionCall",
"src": "5635:53:12"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5625:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5708:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5723:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5737:2:12",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5727:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5753:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5788:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5799:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5784:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5784:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5808:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5763:20:12"
},
"nodeType": "YulFunctionCall",
"src": "5763:53:12"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "5753:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5836:221:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5851:47:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5882:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5893:3:12",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5878:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5878:19:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5865:12:12"
},
"nodeType": "YulFunctionCall",
"src": "5865:33:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5855:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5945:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5954:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5957:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5947:6:12"
},
"nodeType": "YulFunctionCall",
"src": "5947:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "5947:12:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5917:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5925:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5914:2:12"
},
"nodeType": "YulFunctionCall",
"src": "5914:30:12"
},
"nodeType": "YulIf",
"src": "5911:2:12"
},
{
"nodeType": "YulAssignment",
"src": "5975:72:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6019:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6030:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6015:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6015:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6039:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5985:29:12"
},
"nodeType": "YulFunctionCall",
"src": "5985:62:12"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "5975:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5190:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5201:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5213:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5221:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5229:6:12",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "5237:6:12",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "5245:6:12",
"type": ""
}
],
"src": "5109:955:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6150:321:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6196:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6205:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6208:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6198:6:12"
},
"nodeType": "YulFunctionCall",
"src": "6198:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "6198:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6171:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6180:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6167:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6167:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6192:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6163:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6163:32:12"
},
"nodeType": "YulIf",
"src": "6160:2:12"
},
{
"nodeType": "YulBlock",
"src": "6222:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6237:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6251:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6241:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6266:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6301:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6312:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6297:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6297:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6321:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6276:20:12"
},
"nodeType": "YulFunctionCall",
"src": "6276:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6266:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6349:115:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6364:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6378:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6368:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6394:60:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6426:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6437:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6422:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6422:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6446:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "6404:17:12"
},
"nodeType": "YulFunctionCall",
"src": "6404:50:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6394:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6112:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6123:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6135:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6143:6:12",
"type": ""
}
],
"src": "6070:401:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6560:324:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6606:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6615:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6618:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6608:6:12"
},
"nodeType": "YulFunctionCall",
"src": "6608:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "6608:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6581:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6590:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6577:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6577:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6602:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6573:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6573:32:12"
},
"nodeType": "YulIf",
"src": "6570:2:12"
},
{
"nodeType": "YulBlock",
"src": "6632:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6647:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6661:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6651:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6676:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6711:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6722:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6707:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6707:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6731:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6686:20:12"
},
"nodeType": "YulFunctionCall",
"src": "6686:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6676:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6759:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6774:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6788:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6778:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6804:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6839:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6850:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6835:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6835:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6859:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "6814:20:12"
},
"nodeType": "YulFunctionCall",
"src": "6814:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6804:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6522:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6533:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6545:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6553:6:12",
"type": ""
}
],
"src": "6477:407:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7023:560:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7069:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7078:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7081:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7071:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7071:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "7071:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7044:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7053:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7040:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7040:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7065:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7036:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7036:32:12"
},
"nodeType": "YulIf",
"src": "7033:2:12"
},
{
"nodeType": "YulBlock",
"src": "7095:235:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7110:45:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7141:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7152:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7137:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7137:17:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7124:12:12"
},
"nodeType": "YulFunctionCall",
"src": "7124:31:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7114:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7202:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7211:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7214:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7204:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7204:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "7204:12:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7174:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7182:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7171:2:12"
},
"nodeType": "YulFunctionCall",
"src": "7171:30:12"
},
"nodeType": "YulIf",
"src": "7168:2:12"
},
{
"nodeType": "YulAssignment",
"src": "7232:88:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7292:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7303:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7288:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7288:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7312:7:12"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7242:45:12"
},
"nodeType": "YulFunctionCall",
"src": "7242:78:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7232:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7340:236:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7355:46:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7386:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7397:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7382:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7382:18:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7369:12:12"
},
"nodeType": "YulFunctionCall",
"src": "7369:32:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7359:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7448:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7457:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7460:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7450:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7450:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "7450:12:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7420:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7428:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7417:2:12"
},
"nodeType": "YulFunctionCall",
"src": "7417:30:12"
},
"nodeType": "YulIf",
"src": "7414:2:12"
},
{
"nodeType": "YulAssignment",
"src": "7478:88:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7538:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7549:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7534:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7534:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7558:7:12"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7488:45:12"
},
"nodeType": "YulFunctionCall",
"src": "7488:78:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7478:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6985:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6996:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7008:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7016:6:12",
"type": ""
}
],
"src": "6890:693:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7663:204:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7709:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7718:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7721:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7711:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7711:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "7711:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7684:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7693:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7680:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7680:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7705:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7676:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7676:32:12"
},
"nodeType": "YulIf",
"src": "7673:2:12"
},
{
"nodeType": "YulBlock",
"src": "7735:125:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7750:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7764:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7754:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7779:71:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7822:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7833:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7818:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7818:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7842:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulIdentifier",
"src": "7789:28:12"
},
"nodeType": "YulFunctionCall",
"src": "7789:61:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7779:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7633:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7644:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7656:6:12",
"type": ""
}
],
"src": "7589:278:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7938:195:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7984:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7993:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7996:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7986:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7986:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "7986:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7959:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7968:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7955:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7955:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7980:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7951:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7951:32:12"
},
"nodeType": "YulIf",
"src": "7948:2:12"
},
{
"nodeType": "YulBlock",
"src": "8010:116:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8025:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8039:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8029:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8054:62:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8088:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8099:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8084:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8084:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8108:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "8064:19:12"
},
"nodeType": "YulFunctionCall",
"src": "8064:52:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8054:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7908:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7919:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7931:6:12",
"type": ""
}
],
"src": "7873:260:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8215:206:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8261:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8270:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8273:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8263:6:12"
},
"nodeType": "YulFunctionCall",
"src": "8263:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "8263:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8236:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8245:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8232:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8232:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8257:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8228:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8228:32:12"
},
"nodeType": "YulIf",
"src": "8225:2:12"
},
{
"nodeType": "YulBlock",
"src": "8287:127:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8302:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8316:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8306:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8331:73:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8376:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8387:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8372:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8372:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8396:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "8341:30:12"
},
"nodeType": "YulFunctionCall",
"src": "8341:63:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8331:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8185:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8196:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8208:6:12",
"type": ""
}
],
"src": "8139:282:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8493:196:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8539:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8548:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8551:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8541:6:12"
},
"nodeType": "YulFunctionCall",
"src": "8541:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "8541:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8514:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8523:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8510:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8510:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8535:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8506:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8506:32:12"
},
"nodeType": "YulIf",
"src": "8503:2:12"
},
{
"nodeType": "YulBlock",
"src": "8565:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8580:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8594:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8584:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8609:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8644:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8655:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8640:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8640:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8664:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "8619:20:12"
},
"nodeType": "YulFunctionCall",
"src": "8619:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8609:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8463:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8474:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8486:6:12",
"type": ""
}
],
"src": "8427:262:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8778:324:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8824:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8833:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8836:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8826:6:12"
},
"nodeType": "YulFunctionCall",
"src": "8826:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "8826:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8799:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8808:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8795:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8795:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8820:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8791:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8791:32:12"
},
"nodeType": "YulIf",
"src": "8788:2:12"
},
{
"nodeType": "YulBlock",
"src": "8850:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8865:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8879:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8869:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8894:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8929:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8940:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8925:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8925:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8949:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "8904:20:12"
},
"nodeType": "YulFunctionCall",
"src": "8904:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8894:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8977:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8992:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9006:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8996:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9022:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9057:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9068:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9053:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9053:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9077:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9032:20:12"
},
"nodeType": "YulFunctionCall",
"src": "9032:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "9022:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8740:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8751:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8763:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "8771:6:12",
"type": ""
}
],
"src": "8695:407:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9208:452:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9254:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9263:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9266:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9256:6:12"
},
"nodeType": "YulFunctionCall",
"src": "9256:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "9256:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9229:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9238:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9225:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9225:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9250:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9221:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9221:32:12"
},
"nodeType": "YulIf",
"src": "9218:2:12"
},
{
"nodeType": "YulBlock",
"src": "9280:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9295:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9309:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9299:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9324:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9359:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9370:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9355:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9355:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9379:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9334:20:12"
},
"nodeType": "YulFunctionCall",
"src": "9334:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9324:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9407:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9422:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9436:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9426:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9452:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9487:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9498:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9483:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9483:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9507:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9462:20:12"
},
"nodeType": "YulFunctionCall",
"src": "9462:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "9452:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9535:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9550:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9564:2:12",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9554:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9580:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9615:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9626:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9611:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9611:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9635:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9590:20:12"
},
"nodeType": "YulFunctionCall",
"src": "9590:53:12"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "9580:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_uint256t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9162:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9173:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9185:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9193:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "9201:6:12",
"type": ""
}
],
"src": "9108:552:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9746:99:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9790:6:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9798:3:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "9756:33:12"
},
"nodeType": "YulFunctionCall",
"src": "9756:46:12"
},
"nodeType": "YulExpressionStatement",
"src": "9756:46:12"
},
{
"nodeType": "YulAssignment",
"src": "9811:28:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9829:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9834:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9825:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9825:14:12"
},
"variableNames": [
{
"name": "updatedPos",
"nodeType": "YulIdentifier",
"src": "9811:10:12"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9719:6:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9727:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nodeType": "YulTypedName",
"src": "9735:10:12",
"type": ""
}
],
"src": "9666:179:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9916:53:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9933:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9956:5:12"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "9938:17:12"
},
"nodeType": "YulFunctionCall",
"src": "9938:24:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9926:6:12"
},
"nodeType": "YulFunctionCall",
"src": "9926:37:12"
},
"nodeType": "YulExpressionStatement",
"src": "9926:37:12"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9904:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9911:3:12",
"type": ""
}
],
"src": "9851:118:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10129:608:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10139:68:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10201:5:12"
}
],
"functionName": {
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10153:47:12"
},
"nodeType": "YulFunctionCall",
"src": "10153:54:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10143:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10216:93:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10297:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10302:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10223:73:12"
},
"nodeType": "YulFunctionCall",
"src": "10223:86:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10216:3:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10318:71:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10383:5:12"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10333:49:12"
},
"nodeType": "YulFunctionCall",
"src": "10333:56:12"
},
"variables": [
{
"name": "baseRef",
"nodeType": "YulTypedName",
"src": "10322:7:12",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10398:21:12",
"value": {
"name": "baseRef",
"nodeType": "YulIdentifier",
"src": "10412:7:12"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "10402:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10488:224:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10502:34:12",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "10529:6:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10523:5:12"
},
"nodeType": "YulFunctionCall",
"src": "10523:13:12"
},
"variables": [
{
"name": "elementValue0",
"nodeType": "YulTypedName",
"src": "10506:13:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10549:70:12",
"value": {
"arguments": [
{
"name": "elementValue0",
"nodeType": "YulIdentifier",
"src": "10600:13:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10615:3:12"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "10556:43:12"
},
"nodeType": "YulFunctionCall",
"src": "10556:63:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10549:3:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10632:70:12",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "10695:6:12"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10642:52:12"
},
"nodeType": "YulFunctionCall",
"src": "10642:60:12"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "10632:6:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10450:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10453:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10447:2:12"
},
"nodeType": "YulFunctionCall",
"src": "10447:13:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "10461:18:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10463:14:12",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10472:1:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10475:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10468:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10468:9:12"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10463:1:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "10432:14:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10434:10:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10443:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "10438:1:12",
"type": ""
}
]
}
]
},
"src": "10428:284:12"
},
{
"nodeType": "YulAssignment",
"src": "10721:10:12",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10728:3:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10721:3:12"
}
]
}
]
},
"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": "10108:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10115:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10124:3:12",
"type": ""
}
],
"src": "10005:732:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10802:50:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10819:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10839:5:12"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "10824:14:12"
},
"nodeType": "YulFunctionCall",
"src": "10824:21:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10812:6:12"
},
"nodeType": "YulFunctionCall",
"src": "10812:34:12"
},
"nodeType": "YulExpressionStatement",
"src": "10812:34:12"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10790:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10797:3:12",
"type": ""
}
],
"src": "10743:109:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10948:270:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10958:52:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11004:5:12"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10972:31:12"
},
"nodeType": "YulFunctionCall",
"src": "10972:38:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10962:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11019:77:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11084:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11089:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11026:57:12"
},
"nodeType": "YulFunctionCall",
"src": "11026:70:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11019:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11131:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11138:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11127:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11127:16:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11145:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11150:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "11105:21:12"
},
"nodeType": "YulFunctionCall",
"src": "11105:52:12"
},
"nodeType": "YulExpressionStatement",
"src": "11105:52:12"
},
{
"nodeType": "YulAssignment",
"src": "11166:46:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11177:3:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11204:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "11182:21:12"
},
"nodeType": "YulFunctionCall",
"src": "11182:29:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11173:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11173:39:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11166:3:12"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10929:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10936:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10944:3:12",
"type": ""
}
],
"src": "10858:360:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11316:272:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11326:53:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11373:5:12"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11340:32:12"
},
"nodeType": "YulFunctionCall",
"src": "11340:39:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11330:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11388:78:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11454:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11459:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11395:58:12"
},
"nodeType": "YulFunctionCall",
"src": "11395:71:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11388:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11501:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11508:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11497:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11497:16:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11515:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11520:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "11475:21:12"
},
"nodeType": "YulFunctionCall",
"src": "11475:52:12"
},
"nodeType": "YulExpressionStatement",
"src": "11475:52:12"
},
{
"nodeType": "YulAssignment",
"src": "11536:46:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11547:3:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11574:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "11552:21:12"
},
"nodeType": "YulFunctionCall",
"src": "11552:29:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11543:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11543:39:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11536:3:12"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11297:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11304:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11312:3:12",
"type": ""
}
],
"src": "11224:364:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11740:238:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11750:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11816:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11821:2:12",
"type": "",
"value": "52"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11757:58:12"
},
"nodeType": "YulFunctionCall",
"src": "11757:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11750:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11845:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11850:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11841:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11841:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11854:34:12",
"type": "",
"value": "ERC1155: transfer to non ERC1155"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11834:6:12"
},
"nodeType": "YulFunctionCall",
"src": "11834:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "11834:55:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11910:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11915:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11906:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11906:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11920:22:12",
"type": "",
"value": "Receiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11899:6:12"
},
"nodeType": "YulFunctionCall",
"src": "11899:44:12"
},
"nodeType": "YulExpressionStatement",
"src": "11899:44:12"
},
{
"nodeType": "YulAssignment",
"src": "11953:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11964:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11969:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11960:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11960:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11953:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11728:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11736:3:12",
"type": ""
}
],
"src": "11594:384:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12130:226:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12140:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12206:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12211:2:12",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12147:58:12"
},
"nodeType": "YulFunctionCall",
"src": "12147:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12140:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12235:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12240:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12231:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12231:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12244:34:12",
"type": "",
"value": "ERC1155: ERC1155Receiver rejecte"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12224:6:12"
},
"nodeType": "YulFunctionCall",
"src": "12224:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "12224:55:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12300:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12305:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12296:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12296:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12310:10:12",
"type": "",
"value": "d tokens"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12289:6:12"
},
"nodeType": "YulFunctionCall",
"src": "12289:32:12"
},
"nodeType": "YulExpressionStatement",
"src": "12289:32:12"
},
{
"nodeType": "YulAssignment",
"src": "12331:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12342:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12347:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12338:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12338:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12331:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12118:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12126:3:12",
"type": ""
}
],
"src": "11984:372:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12508:229:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12518:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12584:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12589:2:12",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12525:58:12"
},
"nodeType": "YulFunctionCall",
"src": "12525:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12518:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12613:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12618:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12609:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12609:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12622:34:12",
"type": "",
"value": "ERC1155: balance query for the z"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12602:6:12"
},
"nodeType": "YulFunctionCall",
"src": "12602:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "12602:55:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12678:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12683:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12674:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12674:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12688:13:12",
"type": "",
"value": "ero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12667:6:12"
},
"nodeType": "YulFunctionCall",
"src": "12667:35:12"
},
"nodeType": "YulExpressionStatement",
"src": "12667:35:12"
},
{
"nodeType": "YulAssignment",
"src": "12712:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12723:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12728:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12719:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12719:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12712:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1f4de6a436172e7f7b1540476031cb037fc18ede9cc346a56da1697cbd352aa9_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12496:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12504:3:12",
"type": ""
}
],
"src": "12362:375:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12889:219:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12899:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12965:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12970:2:12",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12906:58:12"
},
"nodeType": "YulFunctionCall",
"src": "12906:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12899:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12994:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12999:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12990:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12990:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "13003:34:12",
"type": "",
"value": "There must be an opponent to pla"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12983:6:12"
},
"nodeType": "YulFunctionCall",
"src": "12983:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "12983:55:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13059:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13064:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13055:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13055:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "13069:3:12",
"type": "",
"value": "y"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13048:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13048:25:12"
},
"nodeType": "YulExpressionStatement",
"src": "13048:25:12"
},
{
"nodeType": "YulAssignment",
"src": "13083:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13094:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13099:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13090:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13090:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13083:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_354d3a2bf1dd0fc46106e8ee78e67ef57a4fc29e5dfc4bb2235cc920c55661ed_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12877:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12885:3:12",
"type": ""
}
],
"src": "12743:365:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13260:227:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13270:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13336:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13341:2:12",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13277:58:12"
},
"nodeType": "YulFunctionCall",
"src": "13277:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13270:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13365:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13370:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13361:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13361:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "13374:34:12",
"type": "",
"value": "ERC1155: caller is not owner nor"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13354:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13354:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "13354:55:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13430:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13435:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13426:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13426:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "13440:11:12",
"type": "",
"value": " approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13419:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13419:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "13419:33:12"
},
{
"nodeType": "YulAssignment",
"src": "13462:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13473:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13478:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13469:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13469:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13462:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_394ac917f53b95ee25db2a5da5874c5b1f0af95a4fdf34992ff8b19c458f239a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13248:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13256:3:12",
"type": ""
}
],
"src": "13114:373:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13639:223:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13649:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13715:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13720:2:12",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13656:58:12"
},
"nodeType": "YulFunctionCall",
"src": "13656:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13649:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13744:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13749:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13740:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13740:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "13753:34:12",
"type": "",
"value": "ERC1155: transfer to the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13733:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13733:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "13733:55:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13809:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13814:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13805:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13805:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "13819:7:12",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13798:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13798:29:12"
},
"nodeType": "YulExpressionStatement",
"src": "13798:29:12"
},
{
"nodeType": "YulAssignment",
"src": "13837:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13848:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13853:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13844:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13844:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13837:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13627:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13635:3:12",
"type": ""
}
],
"src": "13493:369:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14014:236:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14024:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14090:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14095:2:12",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14031:58:12"
},
"nodeType": "YulFunctionCall",
"src": "14031:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14024:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14119:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14124:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14115:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14115:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "14128:34:12",
"type": "",
"value": "ERC1155: transfer caller is not "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14108:6:12"
},
"nodeType": "YulFunctionCall",
"src": "14108:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "14108:55:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14184:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14189:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14180:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14180:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "14194:20:12",
"type": "",
"value": "owner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14173:6:12"
},
"nodeType": "YulFunctionCall",
"src": "14173:42:12"
},
"nodeType": "YulExpressionStatement",
"src": "14173:42:12"
},
{
"nodeType": "YulAssignment",
"src": "14225:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14236:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14241:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14232:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14232:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14225:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_70a41c66829f5508884cda9ef3d2f72551b34f23e4035be97941681123d2d686_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14002:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14010:3:12",
"type": ""
}
],
"src": "13868:382:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14402:244:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14412:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14478:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14483:2:12",
"type": "",
"value": "58"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14419:58:12"
},
"nodeType": "YulFunctionCall",
"src": "14419:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14412:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14507:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14512:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14503:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14503:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "14516:34:12",
"type": "",
"value": "There must be a bet value stored"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14496:6:12"
},
"nodeType": "YulFunctionCall",
"src": "14496:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "14496:55:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14572:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14577:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14568:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14568:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "14582:28:12",
"type": "",
"value": " by the contract (balance)"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14561:6:12"
},
"nodeType": "YulFunctionCall",
"src": "14561:50:12"
},
"nodeType": "YulExpressionStatement",
"src": "14561:50:12"
},
{
"nodeType": "YulAssignment",
"src": "14621:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14632:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14637:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14628:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14628:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14621:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_743b4fe51332212f5b34a00c349604aa807a9ce1a8cc274a0eac695acf57b0aa_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14390:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14398:3:12",
"type": ""
}
],
"src": "14256:390:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14798:228:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14808:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14874:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14879:2:12",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14815:58:12"
},
"nodeType": "YulFunctionCall",
"src": "14815:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14808:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14903:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14908:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14899:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14899:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "14912:34:12",
"type": "",
"value": "ERC1155: insufficient balance fo"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14892:6:12"
},
"nodeType": "YulFunctionCall",
"src": "14892:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "14892:55:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14968:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14973:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14964:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14964:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "14978:12:12",
"type": "",
"value": "r transfer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14957:6:12"
},
"nodeType": "YulFunctionCall",
"src": "14957:34:12"
},
"nodeType": "YulExpressionStatement",
"src": "14957:34:12"
},
{
"nodeType": "YulAssignment",
"src": "15001:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15012:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15017:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15008:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15008:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15001:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14786:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14794:3:12",
"type": ""
}
],
"src": "14652:374:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15178:224:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15188:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15254:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15259:2:12",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15195:58:12"
},
"nodeType": "YulFunctionCall",
"src": "15195:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15188:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15283:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15288:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15279:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15279:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "15292:34:12",
"type": "",
"value": "You must play in time w.r.t. Tim"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15272:6:12"
},
"nodeType": "YulFunctionCall",
"src": "15272:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "15272:55:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15348:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15353:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15344:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15344:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "15358:8:12",
"type": "",
"value": "eLimit"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15337:6:12"
},
"nodeType": "YulFunctionCall",
"src": "15337:30:12"
},
"nodeType": "YulExpressionStatement",
"src": "15337:30:12"
},
{
"nodeType": "YulAssignment",
"src": "15377:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15388:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15393:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15384:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15384:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15377:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8b826dcacc9411c465f8733bada1e4209e88321d9111fae8e6ab503edef54ba5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15166:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15174:3:12",
"type": ""
}
],
"src": "15032:370:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15554:181:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15564:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15630:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15635:2:12",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15571:58:12"
},
"nodeType": "YulFunctionCall",
"src": "15571:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15564:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15659:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15664:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15655:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15655:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "15668:31:12",
"type": "",
"value": "User must be a member of game"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15648:6:12"
},
"nodeType": "YulFunctionCall",
"src": "15648:52:12"
},
"nodeType": "YulExpressionStatement",
"src": "15648:52:12"
},
{
"nodeType": "YulAssignment",
"src": "15710:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15721:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15726:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15717:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15717:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15710:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9f3d166dc6b82cfe4aa8de78d13cd099f4d19554c710f60fe2021d86e5d49f9d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15542:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15550:3:12",
"type": ""
}
],
"src": "15408:327:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15887:169:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15897:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15963:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15968:2:12",
"type": "",
"value": "17"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15904:58:12"
},
"nodeType": "YulFunctionCall",
"src": "15904:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15897:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15992:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15997:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15988:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15988:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16001:19:12",
"type": "",
"value": "Must be your turn"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15981:6:12"
},
"nodeType": "YulFunctionCall",
"src": "15981:40:12"
},
"nodeType": "YulExpressionStatement",
"src": "15981:40:12"
},
{
"nodeType": "YulAssignment",
"src": "16031:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16042:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16047:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16038:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16038:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16031:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a37a17591d27013222ae475796718e5ded813c3ecdd32833c900103e1f334886_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15875:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15883:3:12",
"type": ""
}
],
"src": "15741:315:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16208:241:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16218:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16284:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16289:2:12",
"type": "",
"value": "55"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16225:58:12"
},
"nodeType": "YulFunctionCall",
"src": "16225:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16218:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16313:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16318:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16309:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16309:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16322:34:12",
"type": "",
"value": "There should be no other moves p"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16302:6:12"
},
"nodeType": "YulFunctionCall",
"src": "16302:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "16302:55:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16378:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16383:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16374:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16374:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16388:25:12",
"type": "",
"value": "layed on the same place"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16367:6:12"
},
"nodeType": "YulFunctionCall",
"src": "16367:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "16367:47:12"
},
{
"nodeType": "YulAssignment",
"src": "16424:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16435:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16440:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16431:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16431:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16424:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_cd7b096b4ed4bc09e358718c48c1d6deebf5a197fe5a0d32be8ac57ebee99f58_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16196:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16204:3:12",
"type": ""
}
],
"src": "16062:387:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16601:227:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16611:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16677:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16682:2:12",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16618:58:12"
},
"nodeType": "YulFunctionCall",
"src": "16618:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16611:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16706:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16711:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16702:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16702:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16715:34:12",
"type": "",
"value": "ERC1155: setting approval status"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16695:6:12"
},
"nodeType": "YulFunctionCall",
"src": "16695:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "16695:55:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16771:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16776:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16767:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16767:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16781:11:12",
"type": "",
"value": " for self"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16760:6:12"
},
"nodeType": "YulFunctionCall",
"src": "16760:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "16760:33:12"
},
{
"nodeType": "YulAssignment",
"src": "16803:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16814:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16819:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16810:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16810:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16803:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16589:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16597:3:12",
"type": ""
}
],
"src": "16455:373:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16980:227:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16990:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17056:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17061:2:12",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16997:58:12"
},
"nodeType": "YulFunctionCall",
"src": "16997:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16990:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17085:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17090:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17081:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17081:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17094:34:12",
"type": "",
"value": "ERC1155: accounts and ids length"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17074:6:12"
},
"nodeType": "YulFunctionCall",
"src": "17074:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "17074:55:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17150:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17155:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17146:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17146:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17160:11:12",
"type": "",
"value": " mismatch"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17139:6:12"
},
"nodeType": "YulFunctionCall",
"src": "17139:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "17139:33:12"
},
{
"nodeType": "YulAssignment",
"src": "17182:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17193:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17198:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17189:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17189:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17182:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e155f5d69798c6205436a388a4f3a5fd42f54147b40f4d63a2c8071ff8a9fee5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16968:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16976:3:12",
"type": ""
}
],
"src": "16834:373:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17359:285:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17369:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17435:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17440:2:12",
"type": "",
"value": "65"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17376:58:12"
},
"nodeType": "YulFunctionCall",
"src": "17376:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17369:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17464:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17469:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17460:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17460:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17473:34:12",
"type": "",
"value": "You must play a move inside the "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17453:6:12"
},
"nodeType": "YulFunctionCall",
"src": "17453:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "17453:55:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17529:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17534:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17525:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17525:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17539:34:12",
"type": "",
"value": "board 0>=row>=2 and 0>=column>="
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17518:6:12"
},
"nodeType": "YulFunctionCall",
"src": "17518:56:12"
},
"nodeType": "YulExpressionStatement",
"src": "17518:56:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17595:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17600:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17591:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17591:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17605:3:12",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17584:6:12"
},
"nodeType": "YulFunctionCall",
"src": "17584:25:12"
},
"nodeType": "YulExpressionStatement",
"src": "17584:25:12"
},
{
"nodeType": "YulAssignment",
"src": "17619:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17630:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17635:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17626:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17626:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17619:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e55dd30a445ac21ce8df1d25b3c866f30aeeabff0cef55fe7486849fb7d62e5f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17347:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17355:3:12",
"type": ""
}
],
"src": "17213:431:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17796:226:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17806:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17872:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17877:2:12",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17813:58:12"
},
"nodeType": "YulFunctionCall",
"src": "17813:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17806:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17901:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17906:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17897:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17897:11:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17910:34:12",
"type": "",
"value": "ERC1155: ids and amounts length "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17890:6:12"
},
"nodeType": "YulFunctionCall",
"src": "17890:55:12"
},
"nodeType": "YulExpressionStatement",
"src": "17890:55:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17966:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17971:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17962:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17962:12:12"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17976:10:12",
"type": "",
"value": "mismatch"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17955:6:12"
},
"nodeType": "YulFunctionCall",
"src": "17955:32:12"
},
"nodeType": "YulExpressionStatement",
"src": "17955:32:12"
},
{
"nodeType": "YulAssignment",
"src": "17997:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18008:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18013:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18004:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18004:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17997:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e909e0c9a8f96b4f9af03b716811ece20beb070be416893ed1d50619b5930807_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17784:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17792:3:12",
"type": ""
}
],
"src": "17650:372:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18083:53:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18100:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18123:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "18105:17:12"
},
"nodeType": "YulFunctionCall",
"src": "18105:24:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18093:6:12"
},
"nodeType": "YulFunctionCall",
"src": "18093:37:12"
},
"nodeType": "YulExpressionStatement",
"src": "18093:37:12"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18071:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18078:3:12",
"type": ""
}
],
"src": "18028:108:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18207:53:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18224:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18247:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "18229:17:12"
},
"nodeType": "YulFunctionCall",
"src": "18229:24:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18217:6:12"
},
"nodeType": "YulFunctionCall",
"src": "18217:37:12"
},
"nodeType": "YulExpressionStatement",
"src": "18217:37:12"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18195:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18202:3:12",
"type": ""
}
],
"src": "18142:118:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18329:64:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18346:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18380:5:12"
}
],
"functionName": {
"name": "convert_t_uint8_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "18351:28:12"
},
"nodeType": "YulFunctionCall",
"src": "18351:35:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18339:6:12"
},
"nodeType": "YulFunctionCall",
"src": "18339:48:12"
},
"nodeType": "YulExpressionStatement",
"src": "18339:48:12"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18317:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18324:3:12",
"type": ""
}
],
"src": "18266:127:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18687:697:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18697:27:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18709:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18720:3:12",
"type": "",
"value": "256"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18705:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18705:19:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18697:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18778:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18791:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18802:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18787:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18787:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "18734:43:12"
},
"nodeType": "YulFunctionCall",
"src": "18734:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "18734:71:12"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "18859:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18872:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18883:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18868:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18868:18:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "18815:43:12"
},
"nodeType": "YulFunctionCall",
"src": "18815:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "18815:72:12"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "18941:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18954:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18965:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18950:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18950:18:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "18897:43:12"
},
"nodeType": "YulFunctionCall",
"src": "18897:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "18897:72:12"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "19023:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19036:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19047:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19032:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19032:18:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "18979:43:12"
},
"nodeType": "YulFunctionCall",
"src": "18979:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "18979:72:12"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "19105:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19118:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19129:3:12",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19114:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19114:19:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "19061:43:12"
},
"nodeType": "YulFunctionCall",
"src": "19061:73:12"
},
"nodeType": "YulExpressionStatement",
"src": "19061:73:12"
},
{
"expression": {
"arguments": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "19188:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19201:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19212:3:12",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19197:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19197:19:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "19144:43:12"
},
"nodeType": "YulFunctionCall",
"src": "19144:73:12"
},
"nodeType": "YulExpressionStatement",
"src": "19144:73:12"
},
{
"expression": {
"arguments": [
{
"name": "value6",
"nodeType": "YulIdentifier",
"src": "19271:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19284:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19295:3:12",
"type": "",
"value": "192"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19280:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19280:19:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "19227:43:12"
},
"nodeType": "YulFunctionCall",
"src": "19227:73:12"
},
"nodeType": "YulExpressionStatement",
"src": "19227:73:12"
},
{
"expression": {
"arguments": [
{
"name": "value7",
"nodeType": "YulIdentifier",
"src": "19348:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19361:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19372:3:12",
"type": "",
"value": "224"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19357:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19357:19:12"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "19310:37:12"
},
"nodeType": "YulFunctionCall",
"src": "19310:67:12"
},
"nodeType": "YulExpressionStatement",
"src": "19310:67:12"
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_address_t_uint256_t_uint256_t_uint256_t_uint256_t_bool__to_t_address_t_address_t_address_t_uint256_t_uint256_t_uint256_t_uint256_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18603:9:12",
"type": ""
},
{
"name": "value7",
"nodeType": "YulTypedName",
"src": "18615:6:12",
"type": ""
},
{
"name": "value6",
"nodeType": "YulTypedName",
"src": "18623:6:12",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "18631:6:12",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "18639:6:12",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "18647:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "18655:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "18663:6:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18671:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18682:4:12",
"type": ""
}
],
"src": "18399:985:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19718:725:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19728:27:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19740:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19751:3:12",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19736:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19736:19:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19728:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "19809:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19822:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19833:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19818:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19818:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "19765:43:12"
},
"nodeType": "YulFunctionCall",
"src": "19765:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "19765:71:12"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "19890:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19903:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19914:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19899:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19899:18:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "19846:43:12"
},
"nodeType": "YulFunctionCall",
"src": "19846:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "19846:72:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19939:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19950:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19935:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19935:18:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19959:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19965:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19955:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19955:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19928:6:12"
},
"nodeType": "YulFunctionCall",
"src": "19928:48:12"
},
"nodeType": "YulExpressionStatement",
"src": "19928:48:12"
},
{
"nodeType": "YulAssignment",
"src": "19985:116:12",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "20087:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20096:4:12"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19993:93:12"
},
"nodeType": "YulFunctionCall",
"src": "19993:108:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19985:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20122:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20133:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20118:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20118:18:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20142:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20148:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20138:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20138:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20111:6:12"
},
"nodeType": "YulFunctionCall",
"src": "20111:48:12"
},
"nodeType": "YulExpressionStatement",
"src": "20111:48:12"
},
{
"nodeType": "YulAssignment",
"src": "20168:116:12",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "20270:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20279:4:12"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20176:93:12"
},
"nodeType": "YulFunctionCall",
"src": "20176:108:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20168:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20305:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20316:3:12",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20301:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20301:19:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20326:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20332:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20322:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20322:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20294:6:12"
},
"nodeType": "YulFunctionCall",
"src": "20294:49:12"
},
"nodeType": "YulExpressionStatement",
"src": "20294:49:12"
},
{
"nodeType": "YulAssignment",
"src": "20352:84:12",
"value": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "20422:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20431:4:12"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20360:61:12"
},
"nodeType": "YulFunctionCall",
"src": "20360:76:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20352:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_address_t_address_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19658:9:12",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "19670:6:12",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "19678:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "19686:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "19694:6:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "19702:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19713:4:12",
"type": ""
}
],
"src": "19390:1053:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20603:288:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20613:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20625:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20636:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20621:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20621:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20613:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "20693:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20706:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20717:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20702:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20702:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "20649:43:12"
},
"nodeType": "YulFunctionCall",
"src": "20649:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "20649:71:12"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "20774:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20787:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20798:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20783:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20783:18:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "20730:43:12"
},
"nodeType": "YulFunctionCall",
"src": "20730:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "20730:72:12"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "20856:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20869:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20880:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20865:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20865:18:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "20812:43:12"
},
"nodeType": "YulFunctionCall",
"src": "20812:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "20812:72:12"
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20559:9:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "20571:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "20579:6:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "20587:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20598:4:12",
"type": ""
}
],
"src": "20449:442:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21125:523:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21135:27:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21147:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21158:3:12",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21143:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21143:19:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21135:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "21216:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21229:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21240:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21225:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21225:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "21172:43:12"
},
"nodeType": "YulFunctionCall",
"src": "21172:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "21172:71:12"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "21297:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21310:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21321:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21306:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21306:18:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "21253:43:12"
},
"nodeType": "YulFunctionCall",
"src": "21253:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "21253:72:12"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "21379:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21392:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21403:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21388:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21388:18:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "21335:43:12"
},
"nodeType": "YulFunctionCall",
"src": "21335:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "21335:72:12"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "21461:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21474:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21485:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21470:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21470:18:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "21417:43:12"
},
"nodeType": "YulFunctionCall",
"src": "21417:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "21417:72:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21510:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21521:3:12",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21506:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21506:19:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21531:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21537:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21527:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21527:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21499:6:12"
},
"nodeType": "YulFunctionCall",
"src": "21499:49:12"
},
"nodeType": "YulExpressionStatement",
"src": "21499:49:12"
},
{
"nodeType": "YulAssignment",
"src": "21557:84:12",
"value": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "21627:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21636:4:12"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21565:61:12"
},
"nodeType": "YulFunctionCall",
"src": "21565:76:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21557:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21065:9:12",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "21077:6:12",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "21085:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "21093:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "21101:6:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "21109:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21120:4:12",
"type": ""
}
],
"src": "20897:751:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21780:206:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21790:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21802:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21813:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21798:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21798:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21790:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "21870:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21883:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21894:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21879:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21879:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "21826:43:12"
},
"nodeType": "YulFunctionCall",
"src": "21826:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "21826:71:12"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "21951:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21964:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21975:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21960:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21960:18:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "21907:43:12"
},
"nodeType": "YulFunctionCall",
"src": "21907:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "21907:72:12"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21744:9:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "21756:6:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "21764:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21775:4:12",
"type": ""
}
],
"src": "21654:332:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22314:786:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22324:27:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22336:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22347:3:12",
"type": "",
"value": "288"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22332:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22332:19:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22324:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22405:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22418:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22429:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22414:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22414:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "22361:43:12"
},
"nodeType": "YulFunctionCall",
"src": "22361:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "22361:71:12"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "22486:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22499:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22510:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22495:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22495:18:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "22442:43:12"
},
"nodeType": "YulFunctionCall",
"src": "22442:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "22442:72:12"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "22568:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22581:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22592:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22577:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22577:18:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "22524:43:12"
},
"nodeType": "YulFunctionCall",
"src": "22524:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "22524:72:12"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "22650:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22663:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22674:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22659:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22659:18:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "22606:43:12"
},
"nodeType": "YulFunctionCall",
"src": "22606:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "22606:72:12"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "22732:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22745:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22756:3:12",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22741:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22741:19:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "22688:43:12"
},
"nodeType": "YulFunctionCall",
"src": "22688:73:12"
},
"nodeType": "YulExpressionStatement",
"src": "22688:73:12"
},
{
"expression": {
"arguments": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "22815:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22828:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22839:3:12",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22824:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22824:19:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "22771:43:12"
},
"nodeType": "YulFunctionCall",
"src": "22771:73:12"
},
"nodeType": "YulExpressionStatement",
"src": "22771:73:12"
},
{
"expression": {
"arguments": [
{
"name": "value6",
"nodeType": "YulIdentifier",
"src": "22898:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22911:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22922:3:12",
"type": "",
"value": "192"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22907:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22907:19:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "22854:43:12"
},
"nodeType": "YulFunctionCall",
"src": "22854:73:12"
},
"nodeType": "YulExpressionStatement",
"src": "22854:73:12"
},
{
"expression": {
"arguments": [
{
"name": "value7",
"nodeType": "YulIdentifier",
"src": "22981:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22994:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23005:3:12",
"type": "",
"value": "224"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22990:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22990:19:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "22937:43:12"
},
"nodeType": "YulFunctionCall",
"src": "22937:73:12"
},
"nodeType": "YulExpressionStatement",
"src": "22937:73:12"
},
{
"expression": {
"arguments": [
{
"name": "value8",
"nodeType": "YulIdentifier",
"src": "23064:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23077:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23088:3:12",
"type": "",
"value": "256"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23073:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23073:19:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "23020:43:12"
},
"nodeType": "YulFunctionCall",
"src": "23020:73:12"
},
"nodeType": "YulExpressionStatement",
"src": "23020:73:12"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256_t_address_t_uint256_t_address_t_uint256_t_uint256_t_uint256_t_uint256__to_t_address_t_uint256_t_address_t_uint256_t_address_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22222:9:12",
"type": ""
},
{
"name": "value8",
"nodeType": "YulTypedName",
"src": "22234:6:12",
"type": ""
},
{
"name": "value7",
"nodeType": "YulTypedName",
"src": "22242:6:12",
"type": ""
},
{
"name": "value6",
"nodeType": "YulTypedName",
"src": "22250:6:12",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "22258:6:12",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "22266:6:12",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "22274:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "22282:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "22290:6:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22298:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22309:4:12",
"type": ""
}
],
"src": "21992:1108:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23254:225:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23264:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23276:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23287:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23272:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23272:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23264:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23311:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23322:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23307:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23307:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23330:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23336:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23326:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23326:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23300:6:12"
},
"nodeType": "YulFunctionCall",
"src": "23300:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "23300:47:12"
},
{
"nodeType": "YulAssignment",
"src": "23356:116:12",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "23458:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23467:4:12"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23364:93:12"
},
"nodeType": "YulFunctionCall",
"src": "23364:108:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23356:4:12"
}
]
}
]
},
"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": "23226:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "23238:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23249:4:12",
"type": ""
}
],
"src": "23106:373:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23711:408:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23721:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23733:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23744:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23729:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23729:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23721:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23768:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23779:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23764:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23764:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23787:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23793:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23783:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23783:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23757:6:12"
},
"nodeType": "YulFunctionCall",
"src": "23757:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "23757:47:12"
},
{
"nodeType": "YulAssignment",
"src": "23813:116:12",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "23915:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23924:4:12"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23821:93:12"
},
"nodeType": "YulFunctionCall",
"src": "23821:108:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23813:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23950:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23961:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23946:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23946:18:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23970:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23976:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23966:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23966:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23939:6:12"
},
"nodeType": "YulFunctionCall",
"src": "23939:48:12"
},
"nodeType": "YulExpressionStatement",
"src": "23939:48:12"
},
{
"nodeType": "YulAssignment",
"src": "23996:116:12",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "24098:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24107:4:12"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24004:93:12"
},
"nodeType": "YulFunctionCall",
"src": "24004:108:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23996:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23675:9:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "23687:6:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "23695:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23706:4:12",
"type": ""
}
],
"src": "23485:634:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24217:118:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24227:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24239:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24250:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24235:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24235:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24227:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "24301:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24314:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24325:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24310:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24310:17:12"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "24263:37:12"
},
"nodeType": "YulFunctionCall",
"src": "24263:65:12"
},
"nodeType": "YulExpressionStatement",
"src": "24263:65:12"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24189:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "24201:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24212:4:12",
"type": ""
}
],
"src": "24125:210:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24459:195:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24469:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24481:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24492:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24477:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24477:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24469:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24516:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24527:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24512:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24512:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24535:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24541:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24531:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24531:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24505:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24505:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "24505:47:12"
},
{
"nodeType": "YulAssignment",
"src": "24561:86:12",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "24633:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24642:4:12"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24569:63:12"
},
"nodeType": "YulFunctionCall",
"src": "24569:78:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24561:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24431:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "24443:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24454:4:12",
"type": ""
}
],
"src": "24341:313:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24831:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24841:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24853:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24864:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24849:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24849:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24841:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24888:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24899:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24884:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24884:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24907:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24913:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24903:3:12"
},
"nodeType": "YulFunctionCall",
"src": "24903:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24877:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24877:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "24877:47:12"
},
{
"nodeType": "YulAssignment",
"src": "24933:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25067:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24941:124:12"
},
"nodeType": "YulFunctionCall",
"src": "24941:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24933:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_00aa752fb1526000e5241602affc3d70ef506da48a27ea57140102b439e655ed__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24811:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24826:4:12",
"type": ""
}
],
"src": "24660:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25256:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25266:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25278:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25289:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25274:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25274:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25266:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25313:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25324:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25309:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25309:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25332:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25338:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25328:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25328:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25302:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25302:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "25302:47:12"
},
{
"nodeType": "YulAssignment",
"src": "25358:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25492:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25366:124:12"
},
"nodeType": "YulFunctionCall",
"src": "25366:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25358:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0587cccad73a80a7f013db13c596f4febc1968dc77e1d3589d5e7a509a3d6503__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25236:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25251:4:12",
"type": ""
}
],
"src": "25085:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25681:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25691:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25703:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25714:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25699:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25699:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25691:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25738:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25749:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25734:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25734:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25757:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25763:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25753:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25753:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25727:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25727:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "25727:47:12"
},
{
"nodeType": "YulAssignment",
"src": "25783:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25917:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1f4de6a436172e7f7b1540476031cb037fc18ede9cc346a56da1697cbd352aa9_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25791:124:12"
},
"nodeType": "YulFunctionCall",
"src": "25791:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25783:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1f4de6a436172e7f7b1540476031cb037fc18ede9cc346a56da1697cbd352aa9__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25661:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25676:4:12",
"type": ""
}
],
"src": "25510:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26106:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26116:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26128:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26139:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26124:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26124:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26116:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26163:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26174:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26159:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26159:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26182:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26188:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26178:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26178:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26152:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26152:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "26152:47:12"
},
{
"nodeType": "YulAssignment",
"src": "26208:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26342:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_354d3a2bf1dd0fc46106e8ee78e67ef57a4fc29e5dfc4bb2235cc920c55661ed_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26216:124:12"
},
"nodeType": "YulFunctionCall",
"src": "26216:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26208:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_354d3a2bf1dd0fc46106e8ee78e67ef57a4fc29e5dfc4bb2235cc920c55661ed__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26086:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26101:4:12",
"type": ""
}
],
"src": "25935:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26531:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26541:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26553:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26564:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26549:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26549:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26541:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26588:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26599:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26584:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26584:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26607:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26613:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26603:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26603:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26577:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26577:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "26577:47:12"
},
{
"nodeType": "YulAssignment",
"src": "26633:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26767:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_394ac917f53b95ee25db2a5da5874c5b1f0af95a4fdf34992ff8b19c458f239a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26641:124:12"
},
"nodeType": "YulFunctionCall",
"src": "26641:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26633:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_394ac917f53b95ee25db2a5da5874c5b1f0af95a4fdf34992ff8b19c458f239a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26511:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26526:4:12",
"type": ""
}
],
"src": "26360:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26956:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26966:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26978:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26989:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26974:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26974:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26966:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27013:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27024:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27009:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27009:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27032:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27038:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27028:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27028:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27002:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27002:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "27002:47:12"
},
{
"nodeType": "YulAssignment",
"src": "27058:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27192:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27066:124:12"
},
"nodeType": "YulFunctionCall",
"src": "27066:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27058:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6faf1c67f278b07c6771dcf4c315a89c21c0eaed11d9ab3d51774da1cfef545d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26936:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26951:4:12",
"type": ""
}
],
"src": "26785:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27381:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27391:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27403:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27414:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27399:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27399:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27391:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27438:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27449:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27434:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27434:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27457:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27463:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27453:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27453:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27427:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27427:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "27427:47:12"
},
{
"nodeType": "YulAssignment",
"src": "27483:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27617:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_70a41c66829f5508884cda9ef3d2f72551b34f23e4035be97941681123d2d686_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27491:124:12"
},
"nodeType": "YulFunctionCall",
"src": "27491:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27483:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_70a41c66829f5508884cda9ef3d2f72551b34f23e4035be97941681123d2d686__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27361:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27376:4:12",
"type": ""
}
],
"src": "27210:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27806:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27816:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27828:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27839:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27824:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27824:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27816:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27863:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27874:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27859:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27859:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27882:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27888:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27878:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27878:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27852:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27852:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "27852:47:12"
},
{
"nodeType": "YulAssignment",
"src": "27908:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28042:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_743b4fe51332212f5b34a00c349604aa807a9ce1a8cc274a0eac695acf57b0aa_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27916:124:12"
},
"nodeType": "YulFunctionCall",
"src": "27916:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27908:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_743b4fe51332212f5b34a00c349604aa807a9ce1a8cc274a0eac695acf57b0aa__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27786:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27801:4:12",
"type": ""
}
],
"src": "27635:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28231:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28241:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28253:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28264:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28249:3:12"
},
"nodeType": "YulFunctionCall",
"src": "28249:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28241:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28288:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28299:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28284:3:12"
},
"nodeType": "YulFunctionCall",
"src": "28284:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28307:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28313:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28303:3:12"
},
"nodeType": "YulFunctionCall",
"src": "28303:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28277:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28277:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "28277:47:12"
},
{
"nodeType": "YulAssignment",
"src": "28333:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28467:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28341:124:12"
},
"nodeType": "YulFunctionCall",
"src": "28341:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28333:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8ac7e9556b567c1c94bb4daaa3c3a65be5ac686579615210cb910fb8cb8d65bf__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28211:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28226:4:12",
"type": ""
}
],
"src": "28060:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28656:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28666:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28678:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28689:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28674:3:12"
},
"nodeType": "YulFunctionCall",
"src": "28674:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28666:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28713:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28724:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28709:3:12"
},
"nodeType": "YulFunctionCall",
"src": "28709:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28732:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28738:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28728:3:12"
},
"nodeType": "YulFunctionCall",
"src": "28728:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28702:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28702:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "28702:47:12"
},
{
"nodeType": "YulAssignment",
"src": "28758:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28892:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8b826dcacc9411c465f8733bada1e4209e88321d9111fae8e6ab503edef54ba5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28766:124:12"
},
"nodeType": "YulFunctionCall",
"src": "28766:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28758:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8b826dcacc9411c465f8733bada1e4209e88321d9111fae8e6ab503edef54ba5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28636:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28651:4:12",
"type": ""
}
],
"src": "28485:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29081:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29091:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29103:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29114:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29099:3:12"
},
"nodeType": "YulFunctionCall",
"src": "29099:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29091:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29138:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29149:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29134:3:12"
},
"nodeType": "YulFunctionCall",
"src": "29134:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29157:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29163:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29153:3:12"
},
"nodeType": "YulFunctionCall",
"src": "29153:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29127:6:12"
},
"nodeType": "YulFunctionCall",
"src": "29127:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "29127:47:12"
},
{
"nodeType": "YulAssignment",
"src": "29183:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29317:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9f3d166dc6b82cfe4aa8de78d13cd099f4d19554c710f60fe2021d86e5d49f9d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29191:124:12"
},
"nodeType": "YulFunctionCall",
"src": "29191:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29183:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9f3d166dc6b82cfe4aa8de78d13cd099f4d19554c710f60fe2021d86e5d49f9d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29061:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29076:4:12",
"type": ""
}
],
"src": "28910:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29506:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29516:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29528:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29539:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29524:3:12"
},
"nodeType": "YulFunctionCall",
"src": "29524:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29516:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29563:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29574:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29559:3:12"
},
"nodeType": "YulFunctionCall",
"src": "29559:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29582:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29588:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29578:3:12"
},
"nodeType": "YulFunctionCall",
"src": "29578:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29552:6:12"
},
"nodeType": "YulFunctionCall",
"src": "29552:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "29552:47:12"
},
{
"nodeType": "YulAssignment",
"src": "29608:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29742:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a37a17591d27013222ae475796718e5ded813c3ecdd32833c900103e1f334886_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29616:124:12"
},
"nodeType": "YulFunctionCall",
"src": "29616:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29608:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a37a17591d27013222ae475796718e5ded813c3ecdd32833c900103e1f334886__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29486:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29501:4:12",
"type": ""
}
],
"src": "29335:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29931:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29941:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29953:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29964:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29949:3:12"
},
"nodeType": "YulFunctionCall",
"src": "29949:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29941:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29988:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29999:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29984:3:12"
},
"nodeType": "YulFunctionCall",
"src": "29984:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30007:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30013:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "30003:3:12"
},
"nodeType": "YulFunctionCall",
"src": "30003:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29977:6:12"
},
"nodeType": "YulFunctionCall",
"src": "29977:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "29977:47:12"
},
{
"nodeType": "YulAssignment",
"src": "30033:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30167:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_cd7b096b4ed4bc09e358718c48c1d6deebf5a197fe5a0d32be8ac57ebee99f58_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30041:124:12"
},
"nodeType": "YulFunctionCall",
"src": "30041:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30033:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_cd7b096b4ed4bc09e358718c48c1d6deebf5a197fe5a0d32be8ac57ebee99f58__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29911:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29926:4:12",
"type": ""
}
],
"src": "29760:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30356:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30366:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30378:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30389:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30374:3:12"
},
"nodeType": "YulFunctionCall",
"src": "30374:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30366:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30413:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30424:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30409:3:12"
},
"nodeType": "YulFunctionCall",
"src": "30409:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30432:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30438:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "30428:3:12"
},
"nodeType": "YulFunctionCall",
"src": "30428:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30402:6:12"
},
"nodeType": "YulFunctionCall",
"src": "30402:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "30402:47:12"
},
{
"nodeType": "YulAssignment",
"src": "30458:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30592:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30466:124:12"
},
"nodeType": "YulFunctionCall",
"src": "30466:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30458:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_df9806c6dc743de602e49918a67b580590d69ab768bdb59f977c0a884a91a7c2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30336:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30351:4:12",
"type": ""
}
],
"src": "30185:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30781:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30791:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30803:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30814:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30799:3:12"
},
"nodeType": "YulFunctionCall",
"src": "30799:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30791:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30838:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30849:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"no
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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