Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mindpixel20/07847a5b91a48fdd9dab02ff759fc4ff to your computer and use it in GitHub Desktop.
Save mindpixel20/07847a5b91a48fdd9dab02ff759fc4ff to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead 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, IERC20Metadata {
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 default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two 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 override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override 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
* overridden;
*
* 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 override 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:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, 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}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, 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}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, 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) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, 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) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This 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:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, 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:
*
* - `account` 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;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(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");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - 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 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 {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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);
/**
* @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 `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_44": {
"entryPoint": null,
"id": 44,
"parameterSlots": 2,
"returnSlots": 0
},
"@_738": {
"entryPoint": null,
"id": 738,
"parameterSlots": 2,
"returnSlots": 0
},
"@_afterTokenTransfer_585": {
"entryPoint": 514,
"id": 585,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_574": {
"entryPoint": 509,
"id": 574,
"parameterSlots": 3,
"returnSlots": 0
},
"@_mint_403": {
"entryPoint": 143,
"id": 403,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 695,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 770,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 821,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 954,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 993,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1010,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1044,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1073,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1104,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1114,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1168,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1185,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1278,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 1288,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1342,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1396,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x11": {
"entryPoint": 1450,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1497,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1544,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1591,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1596,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1601,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1606,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1611,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": {
"entryPoint": 1628,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6184:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "102:326:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "112:75:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "179:6:5"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "137:41:5"
},
"nodeType": "YulFunctionCall",
"src": "137:49:5"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "121:15:5"
},
"nodeType": "YulFunctionCall",
"src": "121:66:5"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "112:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "203:5:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "210:6:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "196:6:5"
},
"nodeType": "YulFunctionCall",
"src": "196:21:5"
},
"nodeType": "YulExpressionStatement",
"src": "196:21:5"
},
{
"nodeType": "YulVariableDeclaration",
"src": "226:27:5",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "241:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "248:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "237:3:5"
},
"nodeType": "YulFunctionCall",
"src": "237:16:5"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "230:3:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "291:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "293:77:5"
},
"nodeType": "YulFunctionCall",
"src": "293:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "293:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "272:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "277:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "268:3:5"
},
"nodeType": "YulFunctionCall",
"src": "268:16:5"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "286:3:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "265:2:5"
},
"nodeType": "YulFunctionCall",
"src": "265:25:5"
},
"nodeType": "YulIf",
"src": "262:112:5"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "405:3:5"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "410:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "415:6:5"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "383:21:5"
},
"nodeType": "YulFunctionCall",
"src": "383:39:5"
},
"nodeType": "YulExpressionStatement",
"src": "383:39:5"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "75:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "80:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "88:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "96:5:5",
"type": ""
}
],
"src": "7:421:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "521:282:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "570:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "572:77:5"
},
"nodeType": "YulFunctionCall",
"src": "572:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "572:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "549:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "557:4:5",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "545:3:5"
},
"nodeType": "YulFunctionCall",
"src": "545:17:5"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "564:3:5"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "541:3:5"
},
"nodeType": "YulFunctionCall",
"src": "541:27:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "534:6:5"
},
"nodeType": "YulFunctionCall",
"src": "534:35:5"
},
"nodeType": "YulIf",
"src": "531:122:5"
},
{
"nodeType": "YulVariableDeclaration",
"src": "662:27:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "682:6:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "676:5:5"
},
"nodeType": "YulFunctionCall",
"src": "676:13:5"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "666:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "698:99:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "770:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "778:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "766:3:5"
},
"nodeType": "YulFunctionCall",
"src": "766:17:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "785:6:5"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "793:3:5"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "707:58:5"
},
"nodeType": "YulFunctionCall",
"src": "707:90:5"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "698:5:5"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "499:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "507:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "515:5:5",
"type": ""
}
],
"src": "448:355:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "923:739:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "969:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "971:77:5"
},
"nodeType": "YulFunctionCall",
"src": "971:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "971:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "944:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "953:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "940:3:5"
},
"nodeType": "YulFunctionCall",
"src": "940:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "965:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "936:3:5"
},
"nodeType": "YulFunctionCall",
"src": "936:32:5"
},
"nodeType": "YulIf",
"src": "933:119:5"
},
{
"nodeType": "YulBlock",
"src": "1062:291:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1077:38:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1101:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1112:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1097:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1097:17:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1091:5:5"
},
"nodeType": "YulFunctionCall",
"src": "1091:24:5"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1081:6:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1162:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1164:77:5"
},
"nodeType": "YulFunctionCall",
"src": "1164:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "1164:79:5"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1134:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1142:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1131:2:5"
},
"nodeType": "YulFunctionCall",
"src": "1131:30:5"
},
"nodeType": "YulIf",
"src": "1128:117:5"
},
{
"nodeType": "YulAssignment",
"src": "1259:84:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1315:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1326:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1311:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1311:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1335:7:5"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1269:41:5"
},
"nodeType": "YulFunctionCall",
"src": "1269:74:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1259:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1363:292:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1378:39:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1402:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1413:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1398:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1398:18:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1392:5:5"
},
"nodeType": "YulFunctionCall",
"src": "1392:25:5"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1382:6:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1464:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1466:77:5"
},
"nodeType": "YulFunctionCall",
"src": "1466:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "1466:79:5"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1436:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1444:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1433:2:5"
},
"nodeType": "YulFunctionCall",
"src": "1433:30:5"
},
"nodeType": "YulIf",
"src": "1430:117:5"
},
{
"nodeType": "YulAssignment",
"src": "1561:84:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1617:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1628:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1613:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1613:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1637:7:5"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1571:41:5"
},
"nodeType": "YulFunctionCall",
"src": "1571:74:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1561:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "885:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "896:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "908:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "916:6:5",
"type": ""
}
],
"src": "809:853:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1814:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1824:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1890:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1895:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1831:58:5"
},
"nodeType": "YulFunctionCall",
"src": "1831:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1824:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1996:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "1907:88:5"
},
"nodeType": "YulFunctionCall",
"src": "1907:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "1907:93:5"
},
{
"nodeType": "YulAssignment",
"src": "2009:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2020:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2025:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2016:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2016:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2009:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1802:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1810:3:5",
"type": ""
}
],
"src": "1668:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2105:53:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2122:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2145:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2127:17:5"
},
"nodeType": "YulFunctionCall",
"src": "2127:24:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2115:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2115:37:5"
},
"nodeType": "YulExpressionStatement",
"src": "2115:37:5"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2093:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2100:3:5",
"type": ""
}
],
"src": "2040:118:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2335:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2345:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2357:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2368:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2353:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2353:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2345:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2392:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2403:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2388:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2388:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2411:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2417:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2407:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2407:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2381:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2381:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "2381:47:5"
},
{
"nodeType": "YulAssignment",
"src": "2437:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2571:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2445:124:5"
},
"nodeType": "YulFunctionCall",
"src": "2445:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2437:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2315:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2330:4:5",
"type": ""
}
],
"src": "2164:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2687:124:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2697:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2709:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2720:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2705:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2705:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2697:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2777:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2790:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2801:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2786:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2786:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2733:43:5"
},
"nodeType": "YulFunctionCall",
"src": "2733:71:5"
},
"nodeType": "YulExpressionStatement",
"src": "2733:71:5"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2659:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2671:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2682:4:5",
"type": ""
}
],
"src": "2589:222:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2858:88:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2868:30:5",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "2878:18:5"
},
"nodeType": "YulFunctionCall",
"src": "2878:20:5"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2868:6:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2927:6:5"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2935:4:5"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "2907:19:5"
},
"nodeType": "YulFunctionCall",
"src": "2907:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "2907:33:5"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2842:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2851:6:5",
"type": ""
}
],
"src": "2817:129:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2992:35:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3002:19:5",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3018:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3012:5:5"
},
"nodeType": "YulFunctionCall",
"src": "3012:9:5"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3002:6:5"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2985:6:5",
"type": ""
}
],
"src": "2952:75:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3100:241:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3205:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3207:16:5"
},
"nodeType": "YulFunctionCall",
"src": "3207:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "3207:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3177:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3185:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3174:2:5"
},
"nodeType": "YulFunctionCall",
"src": "3174:30:5"
},
"nodeType": "YulIf",
"src": "3171:56:5"
},
{
"nodeType": "YulAssignment",
"src": "3237:37:5",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3267:6:5"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3245:21:5"
},
"nodeType": "YulFunctionCall",
"src": "3245:29:5"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3237:4:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3311:23:5",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3323:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3329:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3319:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3319:15:5"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3311:4:5"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3084:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3095:4:5",
"type": ""
}
],
"src": "3033:308:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3443:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3460:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3465:6:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3453:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3453:19:5"
},
"nodeType": "YulExpressionStatement",
"src": "3453:19:5"
},
{
"nodeType": "YulAssignment",
"src": "3481:29:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3500:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3505:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3496:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3496:14:5"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "3481:11:5"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3415:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3420:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "3431:11:5",
"type": ""
}
],
"src": "3347:169:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3566:261:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3576:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3599:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3581:17:5"
},
"nodeType": "YulFunctionCall",
"src": "3581:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3576:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3610:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3633:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3615:17:5"
},
"nodeType": "YulFunctionCall",
"src": "3615:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3610:1:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3773:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3775:16:5"
},
"nodeType": "YulFunctionCall",
"src": "3775:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "3775:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3694:1:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3701:66:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3769:1:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3697:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3697:74:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3691:2:5"
},
"nodeType": "YulFunctionCall",
"src": "3691:81:5"
},
"nodeType": "YulIf",
"src": "3688:107:5"
},
{
"nodeType": "YulAssignment",
"src": "3805:16:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3816:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3819:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3812:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3812:9:5"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "3805:3:5"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "3553:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "3556:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "3562:3:5",
"type": ""
}
],
"src": "3522:305:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3878:32:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3888:16:5",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3899:5:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3888:7:5"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3860:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3870:7:5",
"type": ""
}
],
"src": "3833:77:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3965:258:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3975:10:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3984:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "3979:1:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4044:63:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4069:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4074:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4065:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4065:11:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4088:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4093:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4084:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4084:11:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4078:5:5"
},
"nodeType": "YulFunctionCall",
"src": "4078:18:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4058:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4058:39:5"
},
"nodeType": "YulExpressionStatement",
"src": "4058:39:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4005:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4008:6:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4002:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4002:13:5"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4016:19:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4018:15:5",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4027:1:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4030:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4023:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4023:10:5"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4018:1:5"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "3998:3:5",
"statements": []
},
"src": "3994:113:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4141:76:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4191:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4196:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4187:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4187:16:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4205:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4180:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4180:27:5"
},
"nodeType": "YulExpressionStatement",
"src": "4180:27:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4122:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4125:6:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4119:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4119:13:5"
},
"nodeType": "YulIf",
"src": "4116:101:5"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3947:3:5",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3952:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3957:6:5",
"type": ""
}
],
"src": "3916:307:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4280:269:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4290:22:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4304:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4310:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4300:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4300:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4290:6:5"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4321:38:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4351:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4357:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4347:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4347:12:5"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "4325:18:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4398:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4412:27:5",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4426:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4434:4:5",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4422:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4422:17:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4412:6:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4378:18:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4371:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4371:26:5"
},
"nodeType": "YulIf",
"src": "4368:81:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4501:42:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "4515:16:5"
},
"nodeType": "YulFunctionCall",
"src": "4515:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "4515:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4465:18:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4488:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4496:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4485:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4485:14:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4462:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4462:38:5"
},
"nodeType": "YulIf",
"src": "4459:84:5"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "4264:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4273:6:5",
"type": ""
}
],
"src": "4229:320:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4598:238:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4608:58:5",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4630:6:5"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4660:4:5"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4638:21:5"
},
"nodeType": "YulFunctionCall",
"src": "4638:27:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4626:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4626:40:5"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "4612:10:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4777:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4779:16:5"
},
"nodeType": "YulFunctionCall",
"src": "4779:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "4779:18:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4720:10:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4732:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4717:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4717:34:5"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4756:10:5"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4768:6:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4753:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4753:22:5"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "4714:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4714:62:5"
},
"nodeType": "YulIf",
"src": "4711:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4815:2:5",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4819:10:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4808:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4808:22:5"
},
"nodeType": "YulExpressionStatement",
"src": "4808:22:5"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4584:6:5",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4592:4:5",
"type": ""
}
],
"src": "4555:281:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4870:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4887:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4890:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4880:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4880:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "4880:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4984:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4987:4:5",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4977:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4977:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "4977:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5008:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5011:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5001:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5001:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "5001:15:5"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "4842:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5056:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5073:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5076:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5066:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5066:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "5066:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5170:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5173:4:5",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5163:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5163:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "5163:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5194:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5197:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5187:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5187:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "5187:15:5"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "5028:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5242:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5259:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5262:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5252:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5252:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "5252:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5356:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5359:4:5",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5349:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5349:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "5349:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5380:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5383:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5373:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5373:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "5373:15:5"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "5214:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5489:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5506:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5509:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5499:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5499:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "5499:12:5"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "5400:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5612:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5629:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5632:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5622:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5622:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "5622:12:5"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "5523:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5735:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5752:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5755:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5745:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5745:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "5745:12:5"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "5646:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5858:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5875:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5878:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5868:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5868:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "5868:12:5"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "5769:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5940:54:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5950:38:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5968:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5975:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5964:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5964:14:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5984:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5980:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5980:7:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5960:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5960:28:5"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "5950:6:5"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5923:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "5933:6:5",
"type": ""
}
],
"src": "5892:102:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6106:75:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6128:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6136:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6124:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6124:14:5"
},
{
"hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6140:33:5",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6117:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6117:57:5"
},
"nodeType": "YulExpressionStatement",
"src": "6117:57:5"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6098:6:5",
"type": ""
}
],
"src": "6000:181:5"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_memory_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\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 store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_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 allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_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 copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function 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 panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n}\n",
"id": 5,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5060405162001b9938038062001b99833981810160405281019062000037919062000335565b818181600390805190602001906200005192919062000207565b5080600490805190602001906200006a92919062000207565b5050506200008733678ac7230489e800006200008f60201b60201c565b505062000685565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000102576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000f990620003f2565b60405180910390fd5b6200011660008383620001fd60201b60201c565b80600260008282546200012a9190620004a1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620001dd919062000414565b60405180910390a3620001f9600083836200020260201b60201c565b5050565b505050565b505050565b82805462000215906200053e565b90600052602060002090601f01602090048101928262000239576000855562000285565b82601f106200025457805160ff191683800117855562000285565b8280016001018555821562000285579182015b828111156200028457825182559160200191906001019062000267565b5b50905062000294919062000298565b5090565b5b80821115620002b357600081600090555060010162000299565b5090565b6000620002ce620002c8846200045a565b62000431565b905082815260208101848484011115620002ed57620002ec6200063c565b5b620002fa84828562000508565b509392505050565b600082601f8301126200031a576200031962000637565b5b81516200032c848260208601620002b7565b91505092915050565b600080604083850312156200034f576200034e62000646565b5b600083015167ffffffffffffffff81111562000370576200036f62000641565b5b6200037e8582860162000302565b925050602083015167ffffffffffffffff811115620003a257620003a162000641565b5b620003b08582860162000302565b9150509250929050565b6000620003c9601f8362000490565b9150620003d6826200065c565b602082019050919050565b620003ec81620004fe565b82525050565b600060208201905081810360008301526200040d81620003ba565b9050919050565b60006020820190506200042b6000830184620003e1565b92915050565b60006200043d62000450565b90506200044b828262000574565b919050565b6000604051905090565b600067ffffffffffffffff82111562000478576200047762000608565b5b62000483826200064b565b9050602081019050919050565b600082825260208201905092915050565b6000620004ae82620004fe565b9150620004bb83620004fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004f357620004f2620005aa565b5b828201905092915050565b6000819050919050565b60005b83811015620005285780820151818401526020810190506200050b565b8381111562000538576000848401525b50505050565b600060028204905060018216806200055757607f821691505b602082108114156200056e576200056d620005d9565b5b50919050565b6200057f826200064b565b810181811067ffffffffffffffff82111715620005a157620005a062000608565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61150480620006956000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ec2565b60405180910390f35b6100e660048036038101906100e19190610ce9565b610308565b6040516100f39190610ea7565b60405180910390f35b61010461032b565b6040516101119190610fe4565b60405180910390f35b610134600480360381019061012f9190610c96565b610335565b6040516101419190610ea7565b60405180910390f35b610152610364565b60405161015f9190610fff565b60405180910390f35b610182600480360381019061017d9190610ce9565b61036d565b60405161018f9190610ea7565b60405180910390f35b6101b260048036038101906101ad9190610c29565b6103a4565b6040516101bf9190610fe4565b60405180910390f35b6101d06103ec565b6040516101dd9190610ec2565b60405180910390f35b61020060048036038101906101fb9190610ce9565b61047e565b60405161020d9190610ea7565b60405180910390f35b610230600480360381019061022b9190610ce9565b6104f5565b60405161023d9190610ea7565b60405180910390f35b610260600480360381019061025b9190610c56565b610540565b60405161026d9190610fe4565b60405180910390f35b6060600380546102859061119f565b80601f01602080910402602001604051908101604052809291908181526020018280546102b19061119f565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b6000806103136105c7565b90506103208185856105cf565b600191505092915050565b6000600254905090565b6000806103406105c7565b905061034d85828561079a565b610358858585610826565b60019150509392505050565b60006012905090565b6000806103786105c7565b905061039981858561038a8589610540565b6103949190611036565b6105cf565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb9061119f565b80601f01602080910402602001604051908101604052809291908181526020018280546104279061119f565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b6000806104896105c7565b905060006104978286610540565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610fa4565b60405180910390fd5b6104e982868684036105cf565b60019250505092915050565b6000806105006105c7565b905060006062606485610513919061108c565b61051d91906110bd565b90506105298282610a9e565b610534828686610826565b60019250505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561063f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063690610f84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156106af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a690610f04565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161078d9190610fe4565b60405180910390a3505050565b60006107a68484610540565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108205781811015610812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080990610f24565b60405180910390fd5b61081f84848484036105cf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088d90610f64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd90610ee4565b60405180910390fd5b610911838383610bf5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90610f44565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a859190610fe4565b60405180910390a3610a98848484610bfa565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590610fc4565b60405180910390fd5b610b1a60008383610bf5565b8060026000828254610b2c9190611036565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bdd9190610fe4565b60405180910390a3610bf160008383610bfa565b5050565b505050565b505050565b600081359050610c0e816114a0565b92915050565b600081359050610c23816114b7565b92915050565b600060208284031215610c3f57610c3e61125e565b5b6000610c4d84828501610bff565b91505092915050565b60008060408385031215610c6d57610c6c61125e565b5b6000610c7b85828601610bff565b9250506020610c8c85828601610bff565b9150509250929050565b600080600060608486031215610caf57610cae61125e565b5b6000610cbd86828701610bff565b9350506020610cce86828701610bff565b9250506040610cdf86828701610c14565b9150509250925092565b60008060408385031215610d0057610cff61125e565b5b6000610d0e85828601610bff565b9250506020610d1f85828601610c14565b9150509250929050565b610d3281611129565b82525050565b6000610d438261101a565b610d4d8185611025565b9350610d5d81856020860161116c565b610d6681611263565b840191505092915050565b6000610d7e602383611025565b9150610d8982611274565b604082019050919050565b6000610da1602283611025565b9150610dac826112c3565b604082019050919050565b6000610dc4601d83611025565b9150610dcf82611312565b602082019050919050565b6000610de7602683611025565b9150610df28261133b565b604082019050919050565b6000610e0a602583611025565b9150610e158261138a565b604082019050919050565b6000610e2d602483611025565b9150610e38826113d9565b604082019050919050565b6000610e50602583611025565b9150610e5b82611428565b604082019050919050565b6000610e73601f83611025565b9150610e7e82611477565b602082019050919050565b610e9281611155565b82525050565b610ea18161115f565b82525050565b6000602082019050610ebc6000830184610d29565b92915050565b60006020820190508181036000830152610edc8184610d38565b905092915050565b60006020820190508181036000830152610efd81610d71565b9050919050565b60006020820190508181036000830152610f1d81610d94565b9050919050565b60006020820190508181036000830152610f3d81610db7565b9050919050565b60006020820190508181036000830152610f5d81610dda565b9050919050565b60006020820190508181036000830152610f7d81610dfd565b9050919050565b60006020820190508181036000830152610f9d81610e20565b9050919050565b60006020820190508181036000830152610fbd81610e43565b9050919050565b60006020820190508181036000830152610fdd81610e66565b9050919050565b6000602082019050610ff96000830184610e89565b92915050565b60006020820190506110146000830184610e98565b92915050565b600081519050919050565b600082825260208201905092915050565b600061104182611155565b915061104c83611155565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611081576110806111d1565b5b828201905092915050565b600061109782611155565b91506110a283611155565b9250826110b2576110b1611200565b5b828204905092915050565b60006110c882611155565b91506110d383611155565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561110c5761110b6111d1565b5b828202905092915050565b600061112282611135565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561118a57808201518184015260208101905061116f565b83811115611199576000848401525b50505050565b600060028204905060018216806111b757607f821691505b602082108114156111cb576111ca61122f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6114a981611117565b81146114b457600080fd5b50565b6114c081611155565b81146114cb57600080fd5b5056fea2646970667358221220f2645573348db327b2b75e64f5faceb95c332ed208233e89696ac0b0d6413ee264736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x1B99 CODESIZE SUB DUP1 PUSH3 0x1B99 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x335 JUMP JUMPDEST DUP2 DUP2 DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x51 SWAP3 SWAP2 SWAP1 PUSH3 0x207 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x6A SWAP3 SWAP2 SWAP1 PUSH3 0x207 JUMP JUMPDEST POP POP POP PUSH3 0x87 CALLER PUSH8 0x8AC7230489E80000 PUSH3 0x8F PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP PUSH3 0x685 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x102 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xF9 SWAP1 PUSH3 0x3F2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x116 PUSH1 0x0 DUP4 DUP4 PUSH3 0x1FD PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x12A SWAP2 SWAP1 PUSH3 0x4A1 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 ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x1DD SWAP2 SWAP1 PUSH3 0x414 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH3 0x1F9 PUSH1 0x0 DUP4 DUP4 PUSH3 0x202 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x215 SWAP1 PUSH3 0x53E JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x239 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x285 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x254 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x285 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x285 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x284 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x267 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x294 SWAP2 SWAP1 PUSH3 0x298 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x2B3 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x299 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2CE PUSH3 0x2C8 DUP5 PUSH3 0x45A JUMP JUMPDEST PUSH3 0x431 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x2ED JUMPI PUSH3 0x2EC PUSH3 0x63C JUMP JUMPDEST JUMPDEST PUSH3 0x2FA DUP5 DUP3 DUP6 PUSH3 0x508 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x31A JUMPI PUSH3 0x319 PUSH3 0x637 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x32C DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x2B7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x34F JUMPI PUSH3 0x34E PUSH3 0x646 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x370 JUMPI PUSH3 0x36F PUSH3 0x641 JUMP JUMPDEST JUMPDEST PUSH3 0x37E DUP6 DUP3 DUP7 ADD PUSH3 0x302 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x3A2 JUMPI PUSH3 0x3A1 PUSH3 0x641 JUMP JUMPDEST JUMPDEST PUSH3 0x3B0 DUP6 DUP3 DUP7 ADD PUSH3 0x302 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3C9 PUSH1 0x1F DUP4 PUSH3 0x490 JUMP JUMPDEST SWAP2 POP PUSH3 0x3D6 DUP3 PUSH3 0x65C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x3EC DUP2 PUSH3 0x4FE 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 0x40D DUP2 PUSH3 0x3BA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x42B PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x3E1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x43D PUSH3 0x450 JUMP JUMPDEST SWAP1 POP PUSH3 0x44B DUP3 DUP3 PUSH3 0x574 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x478 JUMPI PUSH3 0x477 PUSH3 0x608 JUMP JUMPDEST JUMPDEST PUSH3 0x483 DUP3 PUSH3 0x64B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 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 PUSH3 0x4AE DUP3 PUSH3 0x4FE JUMP JUMPDEST SWAP2 POP PUSH3 0x4BB DUP4 PUSH3 0x4FE JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x4F3 JUMPI PUSH3 0x4F2 PUSH3 0x5AA 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x528 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x50B JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x538 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 PUSH3 0x557 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x56E JUMPI PUSH3 0x56D PUSH3 0x5D9 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x57F DUP3 PUSH3 0x64B JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x5A1 JUMPI PUSH3 0x5A0 PUSH3 0x608 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 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 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x1504 DUP1 PUSH3 0x695 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 0xEC2 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 0xCE9 JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xEA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x32B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0xFE4 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 0xC96 JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xEA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x152 PUSH2 0x364 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xFFF 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 0xCE9 JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xEA7 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 0xC29 JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D0 PUSH2 0x3EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP2 SWAP1 PUSH2 0xEC2 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 0xCE9 JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xEA7 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 0xCE9 JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xEA7 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 0xC56 JUMP JUMPDEST PUSH2 0x540 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0x119F 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 0x119F 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 DUP1 PUSH2 0x313 PUSH2 0x5C7 JUMP JUMPDEST SWAP1 POP PUSH2 0x320 DUP2 DUP6 DUP6 PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x340 PUSH2 0x5C7 JUMP JUMPDEST SWAP1 POP PUSH2 0x34D DUP6 DUP3 DUP6 PUSH2 0x79A JUMP JUMPDEST PUSH2 0x358 DUP6 DUP6 DUP6 PUSH2 0x826 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 DUP1 PUSH2 0x378 PUSH2 0x5C7 JUMP JUMPDEST SWAP1 POP PUSH2 0x399 DUP2 DUP6 DUP6 PUSH2 0x38A DUP6 DUP10 PUSH2 0x540 JUMP JUMPDEST PUSH2 0x394 SWAP2 SWAP1 PUSH2 0x1036 JUMP JUMPDEST PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x1 SWAP2 POP 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 0x3FB SWAP1 PUSH2 0x119F 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 0x427 SWAP1 PUSH2 0x119F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x474 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x449 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x474 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 0x457 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x489 PUSH2 0x5C7 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x497 DUP3 DUP7 PUSH2 0x540 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0xFA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E9 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x500 PUSH2 0x5C7 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x62 PUSH1 0x64 DUP6 PUSH2 0x513 SWAP2 SWAP1 PUSH2 0x108C JUMP JUMPDEST PUSH2 0x51D SWAP2 SWAP1 PUSH2 0x10BD JUMP JUMPDEST SWAP1 POP PUSH2 0x529 DUP3 DUP3 PUSH2 0xA9E JUMP JUMPDEST PUSH2 0x534 DUP3 DUP7 DUP7 PUSH2 0x826 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP 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 0x63F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x636 SWAP1 PUSH2 0xF84 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x6AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6A6 SWAP1 PUSH2 0xF04 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 0x78D SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7A6 DUP5 DUP5 PUSH2 0x540 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x820 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x812 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x809 SWAP1 PUSH2 0xF24 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x81F DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x5CF JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x896 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x88D SWAP1 PUSH2 0xF64 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x906 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8FD SWAP1 PUSH2 0xEE4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x911 DUP4 DUP4 DUP4 PUSH2 0xBF5 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 0x997 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x98E SWAP1 PUSH2 0xF44 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB 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 ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA85 SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA98 DUP5 DUP5 DUP5 PUSH2 0xBFA JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xB0E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB05 SWAP1 PUSH2 0xFC4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB1A PUSH1 0x0 DUP4 DUP4 PUSH2 0xBF5 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xB2C SWAP2 SWAP1 PUSH2 0x1036 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 ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xBDD SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xBF1 PUSH1 0x0 DUP4 DUP4 PUSH2 0xBFA JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC0E DUP2 PUSH2 0x14A0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC23 DUP2 PUSH2 0x14B7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xC3F JUMPI PUSH2 0xC3E PUSH2 0x125E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC4D DUP5 DUP3 DUP6 ADD PUSH2 0xBFF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xC6D JUMPI PUSH2 0xC6C PUSH2 0x125E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC7B DUP6 DUP3 DUP7 ADD PUSH2 0xBFF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xC8C DUP6 DUP3 DUP7 ADD PUSH2 0xBFF 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 0xCAF JUMPI PUSH2 0xCAE PUSH2 0x125E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xCBD DUP7 DUP3 DUP8 ADD PUSH2 0xBFF JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xCCE DUP7 DUP3 DUP8 ADD PUSH2 0xBFF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xCDF DUP7 DUP3 DUP8 ADD PUSH2 0xC14 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD00 JUMPI PUSH2 0xCFF PUSH2 0x125E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD0E DUP6 DUP3 DUP7 ADD PUSH2 0xBFF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xD1F DUP6 DUP3 DUP7 ADD PUSH2 0xC14 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xD32 DUP2 PUSH2 0x1129 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD43 DUP3 PUSH2 0x101A JUMP JUMPDEST PUSH2 0xD4D DUP2 DUP6 PUSH2 0x1025 JUMP JUMPDEST SWAP4 POP PUSH2 0xD5D DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x116C JUMP JUMPDEST PUSH2 0xD66 DUP2 PUSH2 0x1263 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD7E PUSH1 0x23 DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xD89 DUP3 PUSH2 0x1274 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDA1 PUSH1 0x22 DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xDAC DUP3 PUSH2 0x12C3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDC4 PUSH1 0x1D DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xDCF DUP3 PUSH2 0x1312 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDE7 PUSH1 0x26 DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xDF2 DUP3 PUSH2 0x133B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE0A PUSH1 0x25 DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xE15 DUP3 PUSH2 0x138A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE2D PUSH1 0x24 DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xE38 DUP3 PUSH2 0x13D9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE50 PUSH1 0x25 DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xE5B DUP3 PUSH2 0x1428 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE73 PUSH1 0x1F DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xE7E DUP3 PUSH2 0x1477 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE92 DUP2 PUSH2 0x1155 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xEA1 DUP2 PUSH2 0x115F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEBC PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xD29 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 0xEDC DUP2 DUP5 PUSH2 0xD38 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 0xEFD DUP2 PUSH2 0xD71 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 0xF1D DUP2 PUSH2 0xD94 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 0xF3D DUP2 PUSH2 0xDB7 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 0xF5D DUP2 PUSH2 0xDDA 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 0xF7D DUP2 PUSH2 0xDFD 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 0xF9D DUP2 PUSH2 0xE20 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 0xFBD DUP2 PUSH2 0xE43 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 0xFDD DUP2 PUSH2 0xE66 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFF9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE89 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1014 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE98 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 0x1041 DUP3 PUSH2 0x1155 JUMP JUMPDEST SWAP2 POP PUSH2 0x104C DUP4 PUSH2 0x1155 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1081 JUMPI PUSH2 0x1080 PUSH2 0x11D1 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1097 DUP3 PUSH2 0x1155 JUMP JUMPDEST SWAP2 POP PUSH2 0x10A2 DUP4 PUSH2 0x1155 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x10B2 JUMPI PUSH2 0x10B1 PUSH2 0x1200 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10C8 DUP3 PUSH2 0x1155 JUMP JUMPDEST SWAP2 POP PUSH2 0x10D3 DUP4 PUSH2 0x1155 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x110C JUMPI PUSH2 0x110B PUSH2 0x11D1 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1122 DUP3 PUSH2 0x1135 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 0x118A JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x116F JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1199 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 0x11B7 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x11CB JUMPI PUSH2 0x11CA PUSH2 0x122F JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x14A9 DUP2 PUSH2 0x1117 JUMP JUMPDEST DUP2 EQ PUSH2 0x14B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x14C0 DUP2 PUSH2 0x1155 JUMP JUMPDEST DUP2 EQ PUSH2 0x14CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLCODE PUSH5 0x5573348DB3 0x27 0xB2 0xB7 0x5E PUSH5 0xF5FACEB95C CALLER 0x2E 0xD2 ADDMOD 0x23 RETURNDATACOPY DUP10 PUSH10 0x6AC0B0D6413EE264736F PUSH13 0x63430008070033000000000000 ",
"sourceMap": "209:531:4:-:0;;;240:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;302:5;309:7;2050:5:0;2042;:13;;;;;;;;;;;;:::i;:::-;;2075:7;2065;:17;;;;;;;;;;;;:::i;:::-;;1976:113;;329:32:4::1;335:10;347:13;329:5;;;:32;;:::i;:::-;240:129:::0;;209:531;;8507:535:0;8609:1;8590:21;;:7;:21;;;;8582:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8658:49;8687:1;8691:7;8700:6;8658:20;;;:49;;:::i;:::-;8734:6;8718:12;;:22;;;;;;;:::i;:::-;;;;;;;;8908:6;8886:9;:18;8896:7;8886:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;8960:7;8939:37;;8956:1;8939:37;;;8969:6;8939:37;;;;;;:::i;:::-;;;;;;;;8987:48;9015:1;9019:7;9028:6;8987:19;;;:48;;:::i;:::-;8507:535;;:::o;12060:91::-;;;;:::o;12739:90::-;;;;:::o;209:531:4:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:421:5:-;96:5;121:66;137:49;179:6;137:49;:::i;:::-;121:66;:::i;:::-;112:75;;210:6;203:5;196:21;248:4;241:5;237:16;286:3;277:6;272:3;268:16;265:25;262:112;;;293:79;;:::i;:::-;262:112;383:39;415:6;410:3;405;383:39;:::i;:::-;102:326;7:421;;;;;:::o;448:355::-;515:5;564:3;557:4;549:6;545:17;541:27;531:122;;572:79;;:::i;:::-;531:122;682:6;676:13;707:90;793:3;785:6;778:4;770:6;766:17;707:90;:::i;:::-;698:99;;521:282;448:355;;;;:::o;809:853::-;908:6;916;965:2;953:9;944:7;940:23;936:32;933:119;;;971:79;;:::i;:::-;933:119;1112:1;1101:9;1097:17;1091:24;1142:18;1134:6;1131:30;1128:117;;;1164:79;;:::i;:::-;1128:117;1269:74;1335:7;1326:6;1315:9;1311:22;1269:74;:::i;:::-;1259:84;;1062:291;1413:2;1402:9;1398:18;1392:25;1444:18;1436:6;1433:30;1430:117;;;1466:79;;:::i;:::-;1430:117;1571:74;1637:7;1628:6;1617:9;1613:22;1571:74;:::i;:::-;1561:84;;1363:292;809:853;;;;;:::o;1668:366::-;1810:3;1831:67;1895:2;1890:3;1831:67;:::i;:::-;1824:74;;1907:93;1996:3;1907:93;:::i;:::-;2025:2;2020:3;2016:12;2009:19;;1668:366;;;:::o;2040:118::-;2127:24;2145:5;2127:24;:::i;:::-;2122:3;2115:37;2040:118;;:::o;2164:419::-;2330:4;2368:2;2357:9;2353:18;2345:26;;2417:9;2411:4;2407:20;2403:1;2392:9;2388:17;2381:47;2445:131;2571:4;2445:131;:::i;:::-;2437:139;;2164:419;;;:::o;2589:222::-;2682:4;2720:2;2709:9;2705:18;2697:26;;2733:71;2801:1;2790:9;2786:17;2777:6;2733:71;:::i;:::-;2589:222;;;;:::o;2817:129::-;2851:6;2878:20;;:::i;:::-;2868:30;;2907:33;2935:4;2927:6;2907:33;:::i;:::-;2817:129;;;:::o;2952:75::-;2985:6;3018:2;3012:9;3002:19;;2952:75;:::o;3033:308::-;3095:4;3185:18;3177:6;3174:30;3171:56;;;3207:18;;:::i;:::-;3171:56;3245:29;3267:6;3245:29;:::i;:::-;3237:37;;3329:4;3323;3319:15;3311:23;;3033:308;;;:::o;3347:169::-;3431:11;3465:6;3460:3;3453:19;3505:4;3500:3;3496:14;3481:29;;3347:169;;;;:::o;3522:305::-;3562:3;3581:20;3599:1;3581:20;:::i;:::-;3576:25;;3615:20;3633:1;3615:20;:::i;:::-;3610:25;;3769:1;3701:66;3697:74;3694:1;3691:81;3688:107;;;3775:18;;:::i;:::-;3688:107;3819:1;3816;3812:9;3805:16;;3522:305;;;;:::o;3833:77::-;3870:7;3899:5;3888:16;;3833:77;;;:::o;3916:307::-;3984:1;3994:113;4008:6;4005:1;4002:13;3994:113;;;4093:1;4088:3;4084:11;4078:18;4074:1;4069:3;4065:11;4058:39;4030:2;4027:1;4023:10;4018:15;;3994:113;;;4125:6;4122:1;4119:13;4116:101;;;4205:1;4196:6;4191:3;4187:16;4180:27;4116:101;3965:258;3916:307;;;:::o;4229:320::-;4273:6;4310:1;4304:4;4300:12;4290:22;;4357:1;4351:4;4347:12;4378:18;4368:81;;4434:4;4426:6;4422:17;4412:27;;4368:81;4496:2;4488:6;4485:14;4465:18;4462:38;4459:84;;;4515:18;;:::i;:::-;4459:84;4280:269;4229:320;;;:::o;4555:281::-;4638:27;4660:4;4638:27;:::i;:::-;4630:6;4626:40;4768:6;4756:10;4753:22;4732:18;4720:10;4717:34;4714:62;4711:88;;;4779:18;;:::i;:::-;4711:88;4819:10;4815:2;4808:22;4598:238;4555:281;;:::o;4842:180::-;4890:77;4887:1;4880:88;4987:4;4984:1;4977:15;5011:4;5008:1;5001:15;5028:180;5076:77;5073:1;5066:88;5173:4;5170:1;5163:15;5197:4;5194:1;5187:15;5214:180;5262:77;5259:1;5252:88;5359:4;5356:1;5349:15;5383:4;5380:1;5373:15;5400:117;5509:1;5506;5499:12;5523:117;5632:1;5629;5622:12;5646:117;5755:1;5752;5745:12;5769:117;5878:1;5875;5868:12;5892:102;5933:6;5984:2;5980:7;5975:2;5968:5;5964:14;5960:28;5950:38;;5892:102;;;:::o;6000:181::-;6140:33;6136:1;6128:6;6124:14;6117:57;6000:181;:::o;209:531:4:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_585": {
"entryPoint": 3066,
"id": 585,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_520": {
"entryPoint": 1487,
"id": 520,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_574": {
"entryPoint": 3061,
"id": 574,
"parameterSlots": 3,
"returnSlots": 0
},
"@_mint_403": {
"entryPoint": 2718,
"id": 403,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_701": {
"entryPoint": 1479,
"id": 701,
"parameterSlots": 0,
"returnSlots": 1
},
"@_spendAllowance_563": {
"entryPoint": 1946,
"id": 563,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_346": {
"entryPoint": 2086,
"id": 346,
"parameterSlots": 3,
"returnSlots": 0
},
"@allowance_141": {
"entryPoint": 1344,
"id": 141,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_166": {
"entryPoint": 776,
"id": 166,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_98": {
"entryPoint": 932,
"id": 98,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_74": {
"entryPoint": 868,
"id": 74,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_269": {
"entryPoint": 1150,
"id": 269,
"parameterSlots": 2,
"returnSlots": 1
},
"@increaseAllowance_228": {
"entryPoint": 877,
"id": 228,
"parameterSlots": 2,
"returnSlots": 1
},
"@name_54": {
"entryPoint": 630,
"id": 54,
"parameterSlots": 0,
"returnSlots": 1
},
"@symbol_64": {
"entryPoint": 1004,
"id": 64,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_84": {
"entryPoint": 811,
"id": 84,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_199": {
"entryPoint": 821,
"id": 199,
"parameterSlots": 3,
"returnSlots": 1
},
"@transfer_780": {
"entryPoint": 1269,
"id": 780,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 3071,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 3092,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 3113,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 3158,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 3222,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 3305,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 3369,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3384,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3441,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3476,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3511,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3546,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3581,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3616,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3651,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3686,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 3721,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 3736,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 3751,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3778,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3812,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3844,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3876,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3908,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3940,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3972,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4004,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4036,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 4068,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 4095,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 4122,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 4133,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 4150,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 4236,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 4285,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 4375,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 4393,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 4405,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 4437,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 4447,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 4460,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 4511,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 4561,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 4608,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 4655,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 4702,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 4707,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": {
"entryPoint": 4724,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": {
"entryPoint": 4803,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe": {
"entryPoint": 4882,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": {
"entryPoint": 4923,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": {
"entryPoint": 5002,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": {
"entryPoint": 5081,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": {
"entryPoint": 5160,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": {
"entryPoint": 5239,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 5280,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 5303,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:15576:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:5"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:5"
},
"nodeType": "YulFunctionCall",
"src": "78:20:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:5"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:5"
},
"nodeType": "YulFunctionCall",
"src": "107:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:5"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:5",
"type": ""
}
],
"src": "7:139:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:5"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:5"
},
"nodeType": "YulFunctionCall",
"src": "223:20:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:5"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "252:26:5"
},
"nodeType": "YulFunctionCall",
"src": "252:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:5"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:5",
"type": ""
}
],
"src": "152:139:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:263:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "409:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "411:77:5"
},
"nodeType": "YulFunctionCall",
"src": "411:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "411:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "384:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "393:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "380:3:5"
},
"nodeType": "YulFunctionCall",
"src": "380:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "376:3:5"
},
"nodeType": "YulFunctionCall",
"src": "376:32:5"
},
"nodeType": "YulIf",
"src": "373:119:5"
},
{
"nodeType": "YulBlock",
"src": "502:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "517:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "531:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "521:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "546:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "581:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "592:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "577:3:5"
},
"nodeType": "YulFunctionCall",
"src": "577:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "601:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "556:20:5"
},
"nodeType": "YulFunctionCall",
"src": "556:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "546:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "333:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "344:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "356:6:5",
"type": ""
}
],
"src": "297:329:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "715:391:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "761:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "763:77:5"
},
"nodeType": "YulFunctionCall",
"src": "763:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "763:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "736:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "745:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "732:3:5"
},
"nodeType": "YulFunctionCall",
"src": "732:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "757:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "728:3:5"
},
"nodeType": "YulFunctionCall",
"src": "728:32:5"
},
"nodeType": "YulIf",
"src": "725:119:5"
},
{
"nodeType": "YulBlock",
"src": "854:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "869:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "883:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "873:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "898:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "933:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "944:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "929:3:5"
},
"nodeType": "YulFunctionCall",
"src": "929:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "953:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "908:20:5"
},
"nodeType": "YulFunctionCall",
"src": "908:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "898:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "981:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "996:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1010:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1000:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1026:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1061:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1072:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1057:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1057:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1081:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1036:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1036:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1026:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "677:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "688:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "700:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "708:6:5",
"type": ""
}
],
"src": "632:474:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1212:519:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1258:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1260:77:5"
},
"nodeType": "YulFunctionCall",
"src": "1260:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "1260:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1233:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1242:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1229:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1229:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1254:2:5",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1225:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1225:32:5"
},
"nodeType": "YulIf",
"src": "1222:119:5"
},
{
"nodeType": "YulBlock",
"src": "1351:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1366:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1380:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1370:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1395:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1430:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1441:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1426:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1426:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1450:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1405:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1405:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1395:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1478:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1493:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1507:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1497:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1523:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1558:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1569:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1554:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1554:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1578:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1533:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1533:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1523:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1606:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1621:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1635:2:5",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1625:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1651:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1686:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1697:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1682:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1682:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1706:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1661:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1661:53:5"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1651:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1166:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1177:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1189:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1197:6:5",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1205:6:5",
"type": ""
}
],
"src": "1112:619:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1820:391:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1866:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1868:77:5"
},
"nodeType": "YulFunctionCall",
"src": "1868:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "1868:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1841:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1850:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1837:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1837:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1862:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1833:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1833:32:5"
},
"nodeType": "YulIf",
"src": "1830:119:5"
},
{
"nodeType": "YulBlock",
"src": "1959:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1974:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1988:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1978:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2003:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2038:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2049:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2034:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2034:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2058:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2013:20:5"
},
"nodeType": "YulFunctionCall",
"src": "2013:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2003:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2086:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2101:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2115:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2105:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2131:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2166:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2177:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2162:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2162:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2186:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2141:20:5"
},
"nodeType": "YulFunctionCall",
"src": "2141:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2131:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1782:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1793:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1805:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1813:6:5",
"type": ""
}
],
"src": "1737:474:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2276:50:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2293:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2313:5:5"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2298:14:5"
},
"nodeType": "YulFunctionCall",
"src": "2298:21:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2286:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2286:34:5"
},
"nodeType": "YulExpressionStatement",
"src": "2286:34:5"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2264:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2271:3:5",
"type": ""
}
],
"src": "2217:109:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2424:272:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2434:53:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2481:5:5"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2448:32:5"
},
"nodeType": "YulFunctionCall",
"src": "2448:39:5"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2438:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2496:78:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2562:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2567:6:5"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2503:58:5"
},
"nodeType": "YulFunctionCall",
"src": "2503:71:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2496:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2609:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2616:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2605:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2605:16:5"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2623:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2628:6:5"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2583:21:5"
},
"nodeType": "YulFunctionCall",
"src": "2583:52:5"
},
"nodeType": "YulExpressionStatement",
"src": "2583:52:5"
},
{
"nodeType": "YulAssignment",
"src": "2644:46:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2655:3:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2682:6:5"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2660:21:5"
},
"nodeType": "YulFunctionCall",
"src": "2660:29:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2651:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2651:39:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2644:3:5"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2405:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2412:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2420:3:5",
"type": ""
}
],
"src": "2332:364:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2848:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2858:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2924:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2929:2:5",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2865:58:5"
},
"nodeType": "YulFunctionCall",
"src": "2865:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2858:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3030:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulIdentifier",
"src": "2941:88:5"
},
"nodeType": "YulFunctionCall",
"src": "2941:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "2941:93:5"
},
{
"nodeType": "YulAssignment",
"src": "3043:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3054:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3059:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3050:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3050:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3043:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2836:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2844:3:5",
"type": ""
}
],
"src": "2702:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3220:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3230:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3296:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3301:2:5",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3237:58:5"
},
"nodeType": "YulFunctionCall",
"src": "3237:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3230:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3402:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulIdentifier",
"src": "3313:88:5"
},
"nodeType": "YulFunctionCall",
"src": "3313:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "3313:93:5"
},
{
"nodeType": "YulAssignment",
"src": "3415:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3426:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3431:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3422:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3422:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3415:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3208:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3216:3:5",
"type": ""
}
],
"src": "3074:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3592:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3602:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3668:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3673:2:5",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3609:58:5"
},
"nodeType": "YulFunctionCall",
"src": "3609:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3602:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3774:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nodeType": "YulIdentifier",
"src": "3685:88:5"
},
"nodeType": "YulFunctionCall",
"src": "3685:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "3685:93:5"
},
{
"nodeType": "YulAssignment",
"src": "3787:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3798:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3803:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3794:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3794:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3787:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3580:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3588:3:5",
"type": ""
}
],
"src": "3446:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3964:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3974:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4040:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4045:2:5",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3981:58:5"
},
"nodeType": "YulFunctionCall",
"src": "3981:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3974:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4146:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulIdentifier",
"src": "4057:88:5"
},
"nodeType": "YulFunctionCall",
"src": "4057:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "4057:93:5"
},
{
"nodeType": "YulAssignment",
"src": "4159:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4170:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4175:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4166:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4166:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4159:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3952:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3960:3:5",
"type": ""
}
],
"src": "3818:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4336:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4346:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4412:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4417:2:5",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4353:58:5"
},
"nodeType": "YulFunctionCall",
"src": "4353:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4346:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4518:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulIdentifier",
"src": "4429:88:5"
},
"nodeType": "YulFunctionCall",
"src": "4429:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "4429:93:5"
},
{
"nodeType": "YulAssignment",
"src": "4531:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4542:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4547:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4538:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4538:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4531:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4324:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4332:3:5",
"type": ""
}
],
"src": "4190:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4708:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4718:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4784:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4789:2:5",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4725:58:5"
},
"nodeType": "YulFunctionCall",
"src": "4725:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4718:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4890:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulIdentifier",
"src": "4801:88:5"
},
"nodeType": "YulFunctionCall",
"src": "4801:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "4801:93:5"
},
{
"nodeType": "YulAssignment",
"src": "4903:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4914:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4919:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4910:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4910:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4903:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4696:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4704:3:5",
"type": ""
}
],
"src": "4562:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5080:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5090:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5156:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5161:2:5",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5097:58:5"
},
"nodeType": "YulFunctionCall",
"src": "5097:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5090:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5262:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulIdentifier",
"src": "5173:88:5"
},
"nodeType": "YulFunctionCall",
"src": "5173:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "5173:93:5"
},
{
"nodeType": "YulAssignment",
"src": "5275:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5286:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5291:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5282:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5282:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5275:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5068:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5076:3:5",
"type": ""
}
],
"src": "4934:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5452:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5462:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5528:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5533:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5469:58:5"
},
"nodeType": "YulFunctionCall",
"src": "5469:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5462:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5634:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "5545:88:5"
},
"nodeType": "YulFunctionCall",
"src": "5545:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "5545:93:5"
},
{
"nodeType": "YulAssignment",
"src": "5647:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5658:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5663:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5654:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5654:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5647:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5440:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5448:3:5",
"type": ""
}
],
"src": "5306:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5743:53:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5760:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5783:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5765:17:5"
},
"nodeType": "YulFunctionCall",
"src": "5765:24:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5753:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5753:37:5"
},
"nodeType": "YulExpressionStatement",
"src": "5753:37:5"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5731:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5738:3:5",
"type": ""
}
],
"src": "5678:118:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5863:51:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5880:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5901:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "5885:15:5"
},
"nodeType": "YulFunctionCall",
"src": "5885:22:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5873:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5873:35:5"
},
"nodeType": "YulExpressionStatement",
"src": "5873:35:5"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5851:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5858:3:5",
"type": ""
}
],
"src": "5802:112:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6012:118:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6022:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6034:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6045:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6030:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6030:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6022:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6096:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6109:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6120:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6105:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6105:17:5"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "6058:37:5"
},
"nodeType": "YulFunctionCall",
"src": "6058:65:5"
},
"nodeType": "YulExpressionStatement",
"src": "6058:65:5"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5984:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5996:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6007:4:5",
"type": ""
}
],
"src": "5920:210:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6254:195:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6264:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6276:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6287:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6272:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6272:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6264:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6311:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6322:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6307:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6307:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6330:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6336:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6326:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6326:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6300:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6300:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "6300:47:5"
},
{
"nodeType": "YulAssignment",
"src": "6356:86:5",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6428:6:5"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6437:4:5"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6364:63:5"
},
"nodeType": "YulFunctionCall",
"src": "6364:78:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6356:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6226:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6238:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6249:4:5",
"type": ""
}
],
"src": "6136:313:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6626:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6636:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6648:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6659:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6644:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6644:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6636:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6683:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6694:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6679:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6679:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6702:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6708:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6698:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6698:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6672:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6672:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "6672:47:5"
},
{
"nodeType": "YulAssignment",
"src": "6728:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6862:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6736:124:5"
},
"nodeType": "YulFunctionCall",
"src": "6736:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6728:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6606:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6621:4:5",
"type": ""
}
],
"src": "6455:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7051:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7061:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7073:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7084:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7069:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7069:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7061:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7108:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7119:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7104:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7104:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7127:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7133:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7123:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7123:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7097:6:5"
},
"nodeType": "YulFunctionCall",
"src": "7097:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "7097:47:5"
},
{
"nodeType": "YulAssignment",
"src": "7153:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7287:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7161:124:5"
},
"nodeType": "YulFunctionCall",
"src": "7161:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7153:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7031:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7046:4:5",
"type": ""
}
],
"src": "6880:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7476:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7486:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7498:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7509:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7494:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7494:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7486:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7533:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7544:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7529:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7529:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7552:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7558:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7548:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7548:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7522:6:5"
},
"nodeType": "YulFunctionCall",
"src": "7522:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "7522:47:5"
},
{
"nodeType": "YulAssignment",
"src": "7578:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7712:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7586:124:5"
},
"nodeType": "YulFunctionCall",
"src": "7586:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7578:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7456:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7471:4:5",
"type": ""
}
],
"src": "7305:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7901:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7911:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7923:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7934:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7919:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7919:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7911:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7958:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7969:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7954:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7954:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7977:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7983:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7973:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7973:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7947:6:5"
},
"nodeType": "YulFunctionCall",
"src": "7947:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "7947:47:5"
},
{
"nodeType": "YulAssignment",
"src": "8003:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8137:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8011:124:5"
},
"nodeType": "YulFunctionCall",
"src": "8011:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8003:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7881:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7896:4:5",
"type": ""
}
],
"src": "7730:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8326:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8336:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8348:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8359:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8344:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8344:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8336:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8383:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8394:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8379:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8379:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8402:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8408:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8398:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8398:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8372:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8372:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "8372:47:5"
},
{
"nodeType": "YulAssignment",
"src": "8428:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8562:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8436:124:5"
},
"nodeType": "YulFunctionCall",
"src": "8436:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8428:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8306:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8321:4:5",
"type": ""
}
],
"src": "8155:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8751:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8761:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8773:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8784:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8769:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8769:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8761:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8808:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8819:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8804:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8804:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8827:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8833:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8823:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8823:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8797:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8797:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "8797:47:5"
},
{
"nodeType": "YulAssignment",
"src": "8853:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8987:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8861:124:5"
},
"nodeType": "YulFunctionCall",
"src": "8861:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8853:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8731:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8746:4:5",
"type": ""
}
],
"src": "8580:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9176:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9186:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9198:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9209:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9194:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9194:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9186:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9233:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9244:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9229:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9229:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9252:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9258:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9248:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9248:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9222:6:5"
},
"nodeType": "YulFunctionCall",
"src": "9222:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "9222:47:5"
},
{
"nodeType": "YulAssignment",
"src": "9278:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9412:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9286:124:5"
},
"nodeType": "YulFunctionCall",
"src": "9286:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9278:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9156:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9171:4:5",
"type": ""
}
],
"src": "9005:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9601:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9611:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9623:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9634:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9619:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9619:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9611:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9658:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9669:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9654:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9654:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9677:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9683:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9673:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9673:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9647:6:5"
},
"nodeType": "YulFunctionCall",
"src": "9647:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "9647:47:5"
},
{
"nodeType": "YulAssignment",
"src": "9703:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9837:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9711:124:5"
},
"nodeType": "YulFunctionCall",
"src": "9711:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9703:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9581:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9596:4:5",
"type": ""
}
],
"src": "9430:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9953:124:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9963:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9975:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9986:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9971:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9971:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9963:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10043:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10056:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10067:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10052:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10052:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "9999:43:5"
},
"nodeType": "YulFunctionCall",
"src": "9999:71:5"
},
"nodeType": "YulExpressionStatement",
"src": "9999:71:5"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9925:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9937:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9948:4:5",
"type": ""
}
],
"src": "9855:222:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10177:120:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10187:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10199:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10210:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10195:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10195:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10187:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10263:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10276:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10287:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10272:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10272:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "10223:39:5"
},
"nodeType": "YulFunctionCall",
"src": "10223:67:5"
},
"nodeType": "YulExpressionStatement",
"src": "10223:67:5"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10149:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10161:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10172:4:5",
"type": ""
}
],
"src": "10083:214:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10343:35:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10353:19:5",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10369:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10363:5:5"
},
"nodeType": "YulFunctionCall",
"src": "10363:9:5"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10353:6:5"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "10336:6:5",
"type": ""
}
],
"src": "10303:75:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10443:40:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10454:22:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10470:5:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10464:5:5"
},
"nodeType": "YulFunctionCall",
"src": "10464:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10454:6:5"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10426:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10436:6:5",
"type": ""
}
],
"src": "10384:99:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10585:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10602:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10607:6:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10595:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10595:19:5"
},
"nodeType": "YulExpressionStatement",
"src": "10595:19:5"
},
{
"nodeType": "YulAssignment",
"src": "10623:29:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10642:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10647:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10638:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10638:14:5"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "10623:11:5"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10557:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10562:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "10573:11:5",
"type": ""
}
],
"src": "10489:169:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10708:261:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10718:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10741:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10723:17:5"
},
"nodeType": "YulFunctionCall",
"src": "10723:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10718:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10752:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10775:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10757:17:5"
},
"nodeType": "YulFunctionCall",
"src": "10757:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10752:1:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10915:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "10917:16:5"
},
"nodeType": "YulFunctionCall",
"src": "10917:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "10917:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10836:1:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10843:66:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10911:1:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10839:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10839:74:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10833:2:5"
},
"nodeType": "YulFunctionCall",
"src": "10833:81:5"
},
"nodeType": "YulIf",
"src": "10830:107:5"
},
{
"nodeType": "YulAssignment",
"src": "10947:16:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10958:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10961:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10954:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10954:9:5"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "10947:3:5"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "10695:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "10698:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "10704:3:5",
"type": ""
}
],
"src": "10664:305:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11017:143:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11027:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11050:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11032:17:5"
},
"nodeType": "YulFunctionCall",
"src": "11032:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11027:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11061:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11084:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11066:17:5"
},
"nodeType": "YulFunctionCall",
"src": "11066:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11061:1:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11108:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "11110:16:5"
},
"nodeType": "YulFunctionCall",
"src": "11110:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "11110:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11105:1:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11098:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11098:9:5"
},
"nodeType": "YulIf",
"src": "11095:35:5"
},
{
"nodeType": "YulAssignment",
"src": "11140:14:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11149:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11152:1:5"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "11145:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11145:9:5"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "11140:1:5"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "11006:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "11009:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "11015:1:5",
"type": ""
}
],
"src": "10975:185:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11214:300:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11224:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11247:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11229:17:5"
},
"nodeType": "YulFunctionCall",
"src": "11229:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11224:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11258:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11281:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11263:17:5"
},
"nodeType": "YulFunctionCall",
"src": "11263:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11258:1:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11456:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "11458:16:5"
},
"nodeType": "YulFunctionCall",
"src": "11458:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "11458:18:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11368:1:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11361:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11361:9:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11354:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11354:17:5"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11376:1:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11383:66:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11451:1:5"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "11379:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11379:74:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "11373:2:5"
},
"nodeType": "YulFunctionCall",
"src": "11373:81:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11350:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11350:105:5"
},
"nodeType": "YulIf",
"src": "11347:131:5"
},
{
"nodeType": "YulAssignment",
"src": "11488:20:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11503:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11506:1:5"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "11499:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11499:9:5"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "11488:7:5"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "11197:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "11200:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "11206:7:5",
"type": ""
}
],
"src": "11166:348:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11565:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11575:35:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11604:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "11586:17:5"
},
"nodeType": "YulFunctionCall",
"src": "11586:24:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "11575:7:5"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11547:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "11557:7:5",
"type": ""
}
],
"src": "11520:96:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11664:48:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11674:32:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11699:5:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11692:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11692:13:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11685:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11685:21:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "11674:7:5"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11646:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "11656:7:5",
"type": ""
}
],
"src": "11622:90:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11763:81:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11773:65:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11788:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11795:42:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11784:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11784:54:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "11773:7:5"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11745:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "11755:7:5",
"type": ""
}
],
"src": "11718:126:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11895:32:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11905:16:5",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "11916:5:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "11905:7:5"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11877:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "11887:7:5",
"type": ""
}
],
"src": "11850:77:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11976:43:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11986:27:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12001:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12008:4:5",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11997:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11997:16:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "11986:7:5"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11958:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "11968:7:5",
"type": ""
}
],
"src": "11933:86:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12074:258:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "12084:10:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "12093:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "12088:1:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12153:63:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "12178:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "12183:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12174:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12174:11:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "12197:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "12202:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12193:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12193:11:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "12187:5:5"
},
"nodeType": "YulFunctionCall",
"src": "12187:18:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12167:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12167:39:5"
},
"nodeType": "YulExpressionStatement",
"src": "12167:39:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "12114:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12117:6:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "12111:2:5"
},
"nodeType": "YulFunctionCall",
"src": "12111:13:5"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "12125:19:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12127:15:5",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "12136:1:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12139:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12132:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12132:10:5"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "12127:1:5"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "12107:3:5",
"statements": []
},
"src": "12103:113:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12250:76:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "12300:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12305:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12296:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12296:16:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12314:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12289:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12289:27:5"
},
"nodeType": "YulExpressionStatement",
"src": "12289:27:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "12231:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12234:6:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "12228:2:5"
},
"nodeType": "YulFunctionCall",
"src": "12228:13:5"
},
"nodeType": "YulIf",
"src": "12225:101:5"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "12056:3:5",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "12061:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12066:6:5",
"type": ""
}
],
"src": "12025:307:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12389:269:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12399:22:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "12413:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12419:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "12409:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12409:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12399:6:5"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "12430:38:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "12460:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12466:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12456:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12456:12:5"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "12434:18:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12507:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12521:27:5",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12535:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12543:4:5",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12531:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12531:17:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12521:6:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "12487:18:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12480:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12480:26:5"
},
"nodeType": "YulIf",
"src": "12477:81:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12610:42:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "12624:16:5"
},
"nodeType": "YulFunctionCall",
"src": "12624:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "12624:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "12574:18:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12597:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12605:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "12594:2:5"
},
"nodeType": "YulFunctionCall",
"src": "12594:14:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "12571:2:5"
},
"nodeType": "YulFunctionCall",
"src": "12571:38:5"
},
"nodeType": "YulIf",
"src": "12568:84:5"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "12373:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12382:6:5",
"type": ""
}
],
"src": "12338:320:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12692:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12709:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12712:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12702:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12702:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "12702:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12806:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12809:4:5",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12799:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12799:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "12799:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12830:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12833:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12823:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12823:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "12823:15:5"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "12664:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12878:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12895:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12898:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12888:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12888:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "12888:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12992:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12995:4:5",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12985:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12985:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "12985:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13016:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13019:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "13009:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13009:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "13009:15:5"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "12850:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13064:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13081:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13084:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13074:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13074:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "13074:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13178:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13181:4:5",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13171:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13171:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "13171:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13202:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13205:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "13195:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13195:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "13195:15:5"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "13036:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13311:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13328:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13331:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "13321:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13321:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "13321:12:5"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "13222:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13434:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13451:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13454:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "13444:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13444:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "13444:12:5"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "13345:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13516:54:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13526:38:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13544:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13551:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13540:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13540:14:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13560:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "13556:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13556:7:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "13536:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13536:28:5"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "13526:6:5"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13499:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "13509:6:5",
"type": ""
}
],
"src": "13468:102:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13682:116:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13704:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13712:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13700:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13700:14:5"
},
{
"hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13716:34:5",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13693:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13693:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "13693:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13772:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13780:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13768:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13768:15:5"
},
{
"hexValue": "657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13785:5:5",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13761:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13761:30:5"
},
"nodeType": "YulExpressionStatement",
"src": "13761:30:5"
}
]
},
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13674:6:5",
"type": ""
}
],
"src": "13576:222:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13910:115:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13932:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13940:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13928:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13928:14:5"
},
{
"hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13944:34:5",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13921:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13921:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "13921:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14000:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14008:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13996:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13996:15:5"
},
{
"hexValue": "7373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14013:4:5",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13989:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13989:29:5"
},
"nodeType": "YulExpressionStatement",
"src": "13989:29:5"
}
]
},
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13902:6:5",
"type": ""
}
],
"src": "13804:221:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14137:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14159:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14167:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14155:3:5"
},
"nodeType": "YulFunctionCall",
"src": "14155:14:5"
},
{
"hexValue": "45524332303a20696e73756666696369656e7420616c6c6f77616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14171:31:5",
"type": "",
"value": "ERC20: insufficient allowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14148:6:5"
},
"nodeType": "YulFunctionCall",
"src": "14148:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "14148:55:5"
}
]
},
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14129:6:5",
"type": ""
}
],
"src": "14031:179:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14322:119:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14344:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14352:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14340:3:5"
},
"nodeType": "YulFunctionCall",
"src": "14340:14:5"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14356:34:5",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14333:6:5"
},
"nodeType": "YulFunctionCall",
"src": "14333:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "14333:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14412:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14420:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14408:3:5"
},
"nodeType": "YulFunctionCall",
"src": "14408:15:5"
},
{
"hexValue": "616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14425:8:5",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14401:6:5"
},
"nodeType": "YulFunctionCall",
"src": "14401:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "14401:33:5"
}
]
},
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14314:6:5",
"type": ""
}
],
"src": "14216:225:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14553:118:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14575:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14583:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14571:3:5"
},
"nodeType": "YulFunctionCall",
"src": "14571:14:5"
},
{
"hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14587:34:5",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14564:6:5"
},
"nodeType": "YulFunctionCall",
"src": "14564:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "14564:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14643:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14651:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14639:3:5"
},
"nodeType": "YulFunctionCall",
"src": "14639:15:5"
},
{
"hexValue": "6472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14656:7:5",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14632:6:5"
},
"nodeType": "YulFunctionCall",
"src": "14632:32:5"
},
"nodeType": "YulExpressionStatement",
"src": "14632:32:5"
}
]
},
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14545:6:5",
"type": ""
}
],
"src": "14447:224:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14783:117:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14805:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14813:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14801:3:5"
},
"nodeType": "YulFunctionCall",
"src": "14801:14:5"
},
{
"hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14817:34:5",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14794:6:5"
},
"nodeType": "YulFunctionCall",
"src": "14794:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "14794:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14873:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14881:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14869:3:5"
},
"nodeType": "YulFunctionCall",
"src": "14869:15:5"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14886:6:5",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14862:6:5"
},
"nodeType": "YulFunctionCall",
"src": "14862:31:5"
},
"nodeType": "YulExpressionStatement",
"src": "14862:31:5"
}
]
},
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14775:6:5",
"type": ""
}
],
"src": "14677:223:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15012:118:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15034:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15042:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15030:3:5"
},
"nodeType": "YulFunctionCall",
"src": "15030:14:5"
},
{
"hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15046:34:5",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15023:6:5"
},
"nodeType": "YulFunctionCall",
"src": "15023:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "15023:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15102:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15110:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15098:3:5"
},
"nodeType": "YulFunctionCall",
"src": "15098:15:5"
},
{
"hexValue": "207a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15115:7:5",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15091:6:5"
},
"nodeType": "YulFunctionCall",
"src": "15091:32:5"
},
"nodeType": "YulExpressionStatement",
"src": "15091:32:5"
}
]
},
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15004:6:5",
"type": ""
}
],
"src": "14906:224:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15242:75:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15264:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15272:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15260:3:5"
},
"nodeType": "YulFunctionCall",
"src": "15260:14:5"
},
{
"hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15276:33:5",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15253:6:5"
},
"nodeType": "YulFunctionCall",
"src": "15253:57:5"
},
"nodeType": "YulExpressionStatement",
"src": "15253:57:5"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15234:6:5",
"type": ""
}
],
"src": "15136:181:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15366:79:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "15423:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15432:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15435:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "15425:6:5"
},
"nodeType": "YulFunctionCall",
"src": "15425:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "15425:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15389:5:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15414:5:5"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "15396:17:5"
},
"nodeType": "YulFunctionCall",
"src": "15396:24:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "15386:2:5"
},
"nodeType": "YulFunctionCall",
"src": "15386:35:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "15379:6:5"
},
"nodeType": "YulFunctionCall",
"src": "15379:43:5"
},
"nodeType": "YulIf",
"src": "15376:63:5"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15359:5:5",
"type": ""
}
],
"src": "15323:122:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15494:79:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "15551:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15560:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15563:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "15553:6:5"
},
"nodeType": "YulFunctionCall",
"src": "15553:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "15553:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15517:5:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15542:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15524:17:5"
},
"nodeType": "YulFunctionCall",
"src": "15524:24:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "15514:2:5"
},
"nodeType": "YulFunctionCall",
"src": "15514:35:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "15507:6:5"
},
"nodeType": "YulFunctionCall",
"src": "15507:43:5"
},
"nodeType": "YulIf",
"src": "15504:63:5"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15487:5:5",
"type": ""
}
],
"src": "15451:122:5"
}
]
},
"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_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_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 store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\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 store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(pos)\n end := add(pos, 32)\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 store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\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 store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\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 store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\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 store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\n }\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 store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_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_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__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_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_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_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_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 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 allocate_unbounded() -> memPtr {\n memPtr := mload(64)\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_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function cleanup_t_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_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: insufficient allowance\")\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 5,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ec2565b60405180910390f35b6100e660048036038101906100e19190610ce9565b610308565b6040516100f39190610ea7565b60405180910390f35b61010461032b565b6040516101119190610fe4565b60405180910390f35b610134600480360381019061012f9190610c96565b610335565b6040516101419190610ea7565b60405180910390f35b610152610364565b60405161015f9190610fff565b60405180910390f35b610182600480360381019061017d9190610ce9565b61036d565b60405161018f9190610ea7565b60405180910390f35b6101b260048036038101906101ad9190610c29565b6103a4565b6040516101bf9190610fe4565b60405180910390f35b6101d06103ec565b6040516101dd9190610ec2565b60405180910390f35b61020060048036038101906101fb9190610ce9565b61047e565b60405161020d9190610ea7565b60405180910390f35b610230600480360381019061022b9190610ce9565b6104f5565b60405161023d9190610ea7565b60405180910390f35b610260600480360381019061025b9190610c56565b610540565b60405161026d9190610fe4565b60405180910390f35b6060600380546102859061119f565b80601f01602080910402602001604051908101604052809291908181526020018280546102b19061119f565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b6000806103136105c7565b90506103208185856105cf565b600191505092915050565b6000600254905090565b6000806103406105c7565b905061034d85828561079a565b610358858585610826565b60019150509392505050565b60006012905090565b6000806103786105c7565b905061039981858561038a8589610540565b6103949190611036565b6105cf565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb9061119f565b80601f01602080910402602001604051908101604052809291908181526020018280546104279061119f565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b6000806104896105c7565b905060006104978286610540565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610fa4565b60405180910390fd5b6104e982868684036105cf565b60019250505092915050565b6000806105006105c7565b905060006062606485610513919061108c565b61051d91906110bd565b90506105298282610a9e565b610534828686610826565b60019250505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561063f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063690610f84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156106af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a690610f04565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161078d9190610fe4565b60405180910390a3505050565b60006107a68484610540565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108205781811015610812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080990610f24565b60405180910390fd5b61081f84848484036105cf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088d90610f64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd90610ee4565b60405180910390fd5b610911838383610bf5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90610f44565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a859190610fe4565b60405180910390a3610a98848484610bfa565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590610fc4565b60405180910390fd5b610b1a60008383610bf5565b8060026000828254610b2c9190611036565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bdd9190610fe4565b60405180910390a3610bf160008383610bfa565b5050565b505050565b505050565b600081359050610c0e816114a0565b92915050565b600081359050610c23816114b7565b92915050565b600060208284031215610c3f57610c3e61125e565b5b6000610c4d84828501610bff565b91505092915050565b60008060408385031215610c6d57610c6c61125e565b5b6000610c7b85828601610bff565b9250506020610c8c85828601610bff565b9150509250929050565b600080600060608486031215610caf57610cae61125e565b5b6000610cbd86828701610bff565b9350506020610cce86828701610bff565b9250506040610cdf86828701610c14565b9150509250925092565b60008060408385031215610d0057610cff61125e565b5b6000610d0e85828601610bff565b9250506020610d1f85828601610c14565b9150509250929050565b610d3281611129565b82525050565b6000610d438261101a565b610d4d8185611025565b9350610d5d81856020860161116c565b610d6681611263565b840191505092915050565b6000610d7e602383611025565b9150610d8982611274565b604082019050919050565b6000610da1602283611025565b9150610dac826112c3565b604082019050919050565b6000610dc4601d83611025565b9150610dcf82611312565b602082019050919050565b6000610de7602683611025565b9150610df28261133b565b604082019050919050565b6000610e0a602583611025565b9150610e158261138a565b604082019050919050565b6000610e2d602483611025565b9150610e38826113d9565b604082019050919050565b6000610e50602583611025565b9150610e5b82611428565b604082019050919050565b6000610e73601f83611025565b9150610e7e82611477565b602082019050919050565b610e9281611155565b82525050565b610ea18161115f565b82525050565b6000602082019050610ebc6000830184610d29565b92915050565b60006020820190508181036000830152610edc8184610d38565b905092915050565b60006020820190508181036000830152610efd81610d71565b9050919050565b60006020820190508181036000830152610f1d81610d94565b9050919050565b60006020820190508181036000830152610f3d81610db7565b9050919050565b60006020820190508181036000830152610f5d81610dda565b9050919050565b60006020820190508181036000830152610f7d81610dfd565b9050919050565b60006020820190508181036000830152610f9d81610e20565b9050919050565b60006020820190508181036000830152610fbd81610e43565b9050919050565b60006020820190508181036000830152610fdd81610e66565b9050919050565b6000602082019050610ff96000830184610e89565b92915050565b60006020820190506110146000830184610e98565b92915050565b600081519050919050565b600082825260208201905092915050565b600061104182611155565b915061104c83611155565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611081576110806111d1565b5b828201905092915050565b600061109782611155565b91506110a283611155565b9250826110b2576110b1611200565b5b828204905092915050565b60006110c882611155565b91506110d383611155565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561110c5761110b6111d1565b5b828202905092915050565b600061112282611135565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561118a57808201518184015260208101905061116f565b83811115611199576000848401525b50505050565b600060028204905060018216806111b757607f821691505b602082108114156111cb576111ca61122f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6114a981611117565b81146114b457600080fd5b50565b6114c081611155565b81146114cb57600080fd5b5056fea2646970667358221220f2645573348db327b2b75e64f5faceb95c332ed208233e89696ac0b0d6413ee264736f6c63430008070033",
"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 0xEC2 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 0xCE9 JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xEA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x32B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0xFE4 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 0xC96 JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xEA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x152 PUSH2 0x364 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xFFF 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 0xCE9 JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xEA7 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 0xC29 JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D0 PUSH2 0x3EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP2 SWAP1 PUSH2 0xEC2 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 0xCE9 JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xEA7 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 0xCE9 JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xEA7 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 0xC56 JUMP JUMPDEST PUSH2 0x540 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0x119F 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 0x119F 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 DUP1 PUSH2 0x313 PUSH2 0x5C7 JUMP JUMPDEST SWAP1 POP PUSH2 0x320 DUP2 DUP6 DUP6 PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x340 PUSH2 0x5C7 JUMP JUMPDEST SWAP1 POP PUSH2 0x34D DUP6 DUP3 DUP6 PUSH2 0x79A JUMP JUMPDEST PUSH2 0x358 DUP6 DUP6 DUP6 PUSH2 0x826 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 DUP1 PUSH2 0x378 PUSH2 0x5C7 JUMP JUMPDEST SWAP1 POP PUSH2 0x399 DUP2 DUP6 DUP6 PUSH2 0x38A DUP6 DUP10 PUSH2 0x540 JUMP JUMPDEST PUSH2 0x394 SWAP2 SWAP1 PUSH2 0x1036 JUMP JUMPDEST PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x1 SWAP2 POP 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 0x3FB SWAP1 PUSH2 0x119F 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 0x427 SWAP1 PUSH2 0x119F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x474 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x449 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x474 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 0x457 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x489 PUSH2 0x5C7 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x497 DUP3 DUP7 PUSH2 0x540 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0xFA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E9 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x500 PUSH2 0x5C7 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x62 PUSH1 0x64 DUP6 PUSH2 0x513 SWAP2 SWAP1 PUSH2 0x108C JUMP JUMPDEST PUSH2 0x51D SWAP2 SWAP1 PUSH2 0x10BD JUMP JUMPDEST SWAP1 POP PUSH2 0x529 DUP3 DUP3 PUSH2 0xA9E JUMP JUMPDEST PUSH2 0x534 DUP3 DUP7 DUP7 PUSH2 0x826 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP 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 0x63F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x636 SWAP1 PUSH2 0xF84 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x6AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6A6 SWAP1 PUSH2 0xF04 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 0x78D SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7A6 DUP5 DUP5 PUSH2 0x540 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x820 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x812 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x809 SWAP1 PUSH2 0xF24 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x81F DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x5CF JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x896 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x88D SWAP1 PUSH2 0xF64 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x906 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8FD SWAP1 PUSH2 0xEE4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x911 DUP4 DUP4 DUP4 PUSH2 0xBF5 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 0x997 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x98E SWAP1 PUSH2 0xF44 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB 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 ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA85 SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA98 DUP5 DUP5 DUP5 PUSH2 0xBFA JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xB0E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB05 SWAP1 PUSH2 0xFC4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB1A PUSH1 0x0 DUP4 DUP4 PUSH2 0xBF5 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xB2C SWAP2 SWAP1 PUSH2 0x1036 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 ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xBDD SWAP2 SWAP1 PUSH2 0xFE4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xBF1 PUSH1 0x0 DUP4 DUP4 PUSH2 0xBFA JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC0E DUP2 PUSH2 0x14A0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC23 DUP2 PUSH2 0x14B7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xC3F JUMPI PUSH2 0xC3E PUSH2 0x125E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC4D DUP5 DUP3 DUP6 ADD PUSH2 0xBFF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xC6D JUMPI PUSH2 0xC6C PUSH2 0x125E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC7B DUP6 DUP3 DUP7 ADD PUSH2 0xBFF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xC8C DUP6 DUP3 DUP7 ADD PUSH2 0xBFF 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 0xCAF JUMPI PUSH2 0xCAE PUSH2 0x125E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xCBD DUP7 DUP3 DUP8 ADD PUSH2 0xBFF JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xCCE DUP7 DUP3 DUP8 ADD PUSH2 0xBFF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xCDF DUP7 DUP3 DUP8 ADD PUSH2 0xC14 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD00 JUMPI PUSH2 0xCFF PUSH2 0x125E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD0E DUP6 DUP3 DUP7 ADD PUSH2 0xBFF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xD1F DUP6 DUP3 DUP7 ADD PUSH2 0xC14 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xD32 DUP2 PUSH2 0x1129 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD43 DUP3 PUSH2 0x101A JUMP JUMPDEST PUSH2 0xD4D DUP2 DUP6 PUSH2 0x1025 JUMP JUMPDEST SWAP4 POP PUSH2 0xD5D DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x116C JUMP JUMPDEST PUSH2 0xD66 DUP2 PUSH2 0x1263 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD7E PUSH1 0x23 DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xD89 DUP3 PUSH2 0x1274 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDA1 PUSH1 0x22 DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xDAC DUP3 PUSH2 0x12C3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDC4 PUSH1 0x1D DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xDCF DUP3 PUSH2 0x1312 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDE7 PUSH1 0x26 DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xDF2 DUP3 PUSH2 0x133B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE0A PUSH1 0x25 DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xE15 DUP3 PUSH2 0x138A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE2D PUSH1 0x24 DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xE38 DUP3 PUSH2 0x13D9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE50 PUSH1 0x25 DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xE5B DUP3 PUSH2 0x1428 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE73 PUSH1 0x1F DUP4 PUSH2 0x1025 JUMP JUMPDEST SWAP2 POP PUSH2 0xE7E DUP3 PUSH2 0x1477 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE92 DUP2 PUSH2 0x1155 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xEA1 DUP2 PUSH2 0x115F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEBC PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xD29 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 0xEDC DUP2 DUP5 PUSH2 0xD38 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 0xEFD DUP2 PUSH2 0xD71 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 0xF1D DUP2 PUSH2 0xD94 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 0xF3D DUP2 PUSH2 0xDB7 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 0xF5D DUP2 PUSH2 0xDDA 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 0xF7D DUP2 PUSH2 0xDFD 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 0xF9D DUP2 PUSH2 0xE20 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 0xFBD DUP2 PUSH2 0xE43 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 0xFDD DUP2 PUSH2 0xE66 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFF9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE89 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1014 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE98 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 0x1041 DUP3 PUSH2 0x1155 JUMP JUMPDEST SWAP2 POP PUSH2 0x104C DUP4 PUSH2 0x1155 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1081 JUMPI PUSH2 0x1080 PUSH2 0x11D1 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1097 DUP3 PUSH2 0x1155 JUMP JUMPDEST SWAP2 POP PUSH2 0x10A2 DUP4 PUSH2 0x1155 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x10B2 JUMPI PUSH2 0x10B1 PUSH2 0x1200 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10C8 DUP3 PUSH2 0x1155 JUMP JUMPDEST SWAP2 POP PUSH2 0x10D3 DUP4 PUSH2 0x1155 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x110C JUMPI PUSH2 0x110B PUSH2 0x11D1 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1122 DUP3 PUSH2 0x1135 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 0x118A JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x116F JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1199 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 0x11B7 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x11CB JUMPI PUSH2 0x11CA PUSH2 0x122F JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x14A9 DUP2 PUSH2 0x1117 JUMP JUMPDEST DUP2 EQ PUSH2 0x14B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x14C0 DUP2 PUSH2 0x1155 JUMP JUMPDEST DUP2 EQ PUSH2 0x14CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLCODE PUSH5 0x5573348DB3 0x27 0xB2 0xB7 0x5E PUSH5 0xF5FACEB95C CALLER 0x2E 0xD2 ADDMOD 0x23 RETURNDATACOPY DUP10 PUSH10 0x6AC0B0D6413EE264736F PUSH13 0x63430008070033000000000000 ",
"sourceMap": "209:531:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4431:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3242:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5190:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3091:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5841:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3406:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2365:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6562:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;381:356:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3974:149:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2154:98;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4431:197::-;4514:4;4530:13;4546:12;:10;:12::i;:::-;4530:28;;4568:32;4577:5;4584:7;4593:6;4568:8;:32::i;:::-;4617:4;4610:11;;;4431:197;;;;:::o;3242:106::-;3303:7;3329:12;;3322:19;;3242:106;:::o;5190:256::-;5287:4;5303:15;5321:12;:10;:12::i;:::-;5303:30;;5343:38;5359:4;5365:7;5374:6;5343:15;:38::i;:::-;5391:27;5401:4;5407:2;5411:6;5391:9;:27::i;:::-;5435:4;5428:11;;;5190:256;;;;;:::o;3091:91::-;3149:5;3173:2;3166:9;;3091:91;:::o;5841:234::-;5929:4;5945:13;5961:12;:10;:12::i;:::-;5945:28;;5983:64;5992:5;5999:7;6036:10;6008:25;6018:5;6025:7;6008:9;:25::i;:::-;:38;;;;:::i;:::-;5983:8;:64::i;:::-;6064:4;6057:11;;;5841:234;;;;:::o;3406:125::-;3480:7;3506:9;:18;3516:7;3506:18;;;;;;;;;;;;;;;;3499:25;;3406:125;;;:::o;2365:102::-;2421:13;2453:7;2446:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2365:102;:::o;6562:427::-;6655:4;6671:13;6687:12;:10;:12::i;:::-;6671:28;;6709:24;6736:25;6746:5;6753:7;6736:9;:25::i;:::-;6709:52;;6799:15;6779:16;:35;;6771:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6890:60;6899:5;6906:7;6934:15;6915:16;:34;6890:8;:60::i;:::-;6978:4;6971:11;;;;6562:427;;;;:::o;381:356:4:-;460:4;487:13;503:12;:10;:12::i;:::-;487:28;;526:23;597:2;590:3;581:6;:12;;;;:::i;:::-;580:19;;;;:::i;:::-;561:39;;638:29;644:5;651:15;638:5;:29::i;:::-;679:28;689:5;696:2;700:6;679:9;:28::i;:::-;725:4;718:11;;;;381:356;;;;:::o;3974:149:0:-;4063:7;4089:11;:18;4101:5;4089:18;;;;;;;;;;;;;;;:27;4108:7;4089:27;;;;;;;;;;;;;;;;4082:34;;3974:149;;;;:::o;640:96:3:-;693:7;719:10;712:17;;640:96;:::o;10444:340:0:-;10562:1;10545:19;;:5;:19;;;;10537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10642:1;10623:21;;:7;:21;;;;10615:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10724:6;10694:11;:18;10706:5;10694:18;;;;;;;;;;;;;;;:27;10713:7;10694:27;;;;;;;;;;;;;;;:36;;;;10761:7;10745:32;;10754:5;10745:32;;;10770:6;10745:32;;;;;;:::i;:::-;;;;;;;;10444:340;;;:::o;11065:411::-;11165:24;11192:25;11202:5;11209:7;11192:9;:25::i;:::-;11165:52;;11251:17;11231:16;:37;11227:243;;11312:6;11292:16;:26;;11284:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11394:51;11403:5;11410:7;11438:6;11419:16;:25;11394:8;:51::i;:::-;11227:243;11155:321;11065:411;;;:::o;7443:788::-;7555:1;7539:18;;:4;:18;;;;7531:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7631:1;7617:16;;:2;:16;;;;7609:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7684:38;7705:4;7711:2;7715:6;7684:20;:38::i;:::-;7733:19;7755:9;:15;7765:4;7755:15;;;;;;;;;;;;;;;;7733:37;;7803:6;7788:11;:21;;7780:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7918:6;7904:11;:20;7886:9;:15;7896:4;7886:15;;;;;;;;;;;;;;;:38;;;;8118:6;8101:9;:13;8111:2;8101:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8165:2;8150:26;;8159:4;8150:26;;;8169:6;8150:26;;;;;;:::i;:::-;;;;;;;;8187:37;8207:4;8213:2;8217:6;8187:19;:37::i;:::-;7521:710;7443:788;;;:::o;8507:535::-;8609:1;8590:21;;:7;:21;;;;8582:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8658:49;8687:1;8691:7;8700:6;8658:20;:49::i;:::-;8734:6;8718:12;;:22;;;;;;;:::i;:::-;;;;;;;;8908:6;8886:9;:18;8896:7;8886:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;8960:7;8939:37;;8956:1;8939:37;;;8969:6;8939:37;;;;;;:::i;:::-;;;;;;;;8987:48;9015:1;9019:7;9028:6;8987:19;:48::i;:::-;8507:535;;:::o;12060:91::-;;;;:::o;12739:90::-;;;;:::o;7:139:5:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:109::-;2298:21;2313:5;2298:21;:::i;:::-;2293:3;2286:34;2217:109;;:::o;2332:364::-;2420:3;2448:39;2481:5;2448:39;:::i;:::-;2503:71;2567:6;2562:3;2503:71;:::i;:::-;2496:78;;2583:52;2628:6;2623:3;2616:4;2609:5;2605:16;2583:52;:::i;:::-;2660:29;2682:6;2660:29;:::i;:::-;2655:3;2651:39;2644:46;;2424:272;2332:364;;;;:::o;2702:366::-;2844:3;2865:67;2929:2;2924:3;2865:67;:::i;:::-;2858:74;;2941:93;3030:3;2941:93;:::i;:::-;3059:2;3054:3;3050:12;3043:19;;2702:366;;;:::o;3074:::-;3216:3;3237:67;3301:2;3296:3;3237:67;:::i;:::-;3230:74;;3313:93;3402:3;3313:93;:::i;:::-;3431:2;3426:3;3422:12;3415:19;;3074:366;;;:::o;3446:::-;3588:3;3609:67;3673:2;3668:3;3609:67;:::i;:::-;3602:74;;3685:93;3774:3;3685:93;:::i;:::-;3803:2;3798:3;3794:12;3787:19;;3446:366;;;:::o;3818:::-;3960:3;3981:67;4045:2;4040:3;3981:67;:::i;:::-;3974:74;;4057:93;4146:3;4057:93;:::i;:::-;4175:2;4170:3;4166:12;4159:19;;3818:366;;;:::o;4190:::-;4332:3;4353:67;4417:2;4412:3;4353:67;:::i;:::-;4346:74;;4429:93;4518:3;4429:93;:::i;:::-;4547:2;4542:3;4538:12;4531:19;;4190:366;;;:::o;4562:::-;4704:3;4725:67;4789:2;4784:3;4725:67;:::i;:::-;4718:74;;4801:93;4890:3;4801:93;:::i;:::-;4919:2;4914:3;4910:12;4903:19;;4562:366;;;:::o;4934:::-;5076:3;5097:67;5161:2;5156:3;5097:67;:::i;:::-;5090:74;;5173:93;5262:3;5173:93;:::i;:::-;5291:2;5286:3;5282:12;5275:19;;4934:366;;;:::o;5306:::-;5448:3;5469:67;5533:2;5528:3;5469:67;:::i;:::-;5462:74;;5545:93;5634:3;5545:93;:::i;:::-;5663:2;5658:3;5654:12;5647:19;;5306:366;;;:::o;5678:118::-;5765:24;5783:5;5765:24;:::i;:::-;5760:3;5753:37;5678:118;;:::o;5802:112::-;5885:22;5901:5;5885:22;:::i;:::-;5880:3;5873:35;5802:112;;:::o;5920:210::-;6007:4;6045:2;6034:9;6030:18;6022:26;;6058:65;6120:1;6109:9;6105:17;6096:6;6058:65;:::i;:::-;5920:210;;;;:::o;6136:313::-;6249:4;6287:2;6276:9;6272:18;6264:26;;6336:9;6330:4;6326:20;6322:1;6311:9;6307:17;6300:47;6364:78;6437:4;6428:6;6364:78;:::i;:::-;6356:86;;6136:313;;;;:::o;6455:419::-;6621:4;6659:2;6648:9;6644:18;6636:26;;6708:9;6702:4;6698:20;6694:1;6683:9;6679:17;6672:47;6736:131;6862:4;6736:131;:::i;:::-;6728:139;;6455:419;;;:::o;6880:::-;7046:4;7084:2;7073:9;7069:18;7061:26;;7133:9;7127:4;7123:20;7119:1;7108:9;7104:17;7097:47;7161:131;7287:4;7161:131;:::i;:::-;7153:139;;6880:419;;;:::o;7305:::-;7471:4;7509:2;7498:9;7494:18;7486:26;;7558:9;7552:4;7548:20;7544:1;7533:9;7529:17;7522:47;7586:131;7712:4;7586:131;:::i;:::-;7578:139;;7305:419;;;:::o;7730:::-;7896:4;7934:2;7923:9;7919:18;7911:26;;7983:9;7977:4;7973:20;7969:1;7958:9;7954:17;7947:47;8011:131;8137:4;8011:131;:::i;:::-;8003:139;;7730:419;;;:::o;8155:::-;8321:4;8359:2;8348:9;8344:18;8336:26;;8408:9;8402:4;8398:20;8394:1;8383:9;8379:17;8372:47;8436:131;8562:4;8436:131;:::i;:::-;8428:139;;8155:419;;;:::o;8580:::-;8746:4;8784:2;8773:9;8769:18;8761:26;;8833:9;8827:4;8823:20;8819:1;8808:9;8804:17;8797:47;8861:131;8987:4;8861:131;:::i;:::-;8853:139;;8580:419;;;:::o;9005:::-;9171:4;9209:2;9198:9;9194:18;9186:26;;9258:9;9252:4;9248:20;9244:1;9233:9;9229:17;9222:47;9286:131;9412:4;9286:131;:::i;:::-;9278:139;;9005:419;;;:::o;9430:::-;9596:4;9634:2;9623:9;9619:18;9611:26;;9683:9;9677:4;9673:20;9669:1;9658:9;9654:17;9647:47;9711:131;9837:4;9711:131;:::i;:::-;9703:139;;9430:419;;;:::o;9855:222::-;9948:4;9986:2;9975:9;9971:18;9963:26;;9999:71;10067:1;10056:9;10052:17;10043:6;9999:71;:::i;:::-;9855:222;;;;:::o;10083:214::-;10172:4;10210:2;10199:9;10195:18;10187:26;;10223:67;10287:1;10276:9;10272:17;10263:6;10223:67;:::i;:::-;10083:214;;;;:::o;10384:99::-;10436:6;10470:5;10464:12;10454:22;;10384:99;;;:::o;10489:169::-;10573:11;10607:6;10602:3;10595:19;10647:4;10642:3;10638:14;10623:29;;10489:169;;;;:::o;10664:305::-;10704:3;10723:20;10741:1;10723:20;:::i;:::-;10718:25;;10757:20;10775:1;10757:20;:::i;:::-;10752:25;;10911:1;10843:66;10839:74;10836:1;10833:81;10830:107;;;10917:18;;:::i;:::-;10830:107;10961:1;10958;10954:9;10947:16;;10664:305;;;;:::o;10975:185::-;11015:1;11032:20;11050:1;11032:20;:::i;:::-;11027:25;;11066:20;11084:1;11066:20;:::i;:::-;11061:25;;11105:1;11095:35;;11110:18;;:::i;:::-;11095:35;11152:1;11149;11145:9;11140:14;;10975:185;;;;:::o;11166:348::-;11206:7;11229:20;11247:1;11229:20;:::i;:::-;11224:25;;11263:20;11281:1;11263:20;:::i;:::-;11258:25;;11451:1;11383:66;11379:74;11376:1;11373:81;11368:1;11361:9;11354:17;11350:105;11347:131;;;11458:18;;:::i;:::-;11347:131;11506:1;11503;11499:9;11488:20;;11166:348;;;;:::o;11520:96::-;11557:7;11586:24;11604:5;11586:24;:::i;:::-;11575:35;;11520:96;;;:::o;11622:90::-;11656:7;11699:5;11692:13;11685:21;11674:32;;11622:90;;;:::o;11718:126::-;11755:7;11795:42;11788:5;11784:54;11773:65;;11718:126;;;:::o;11850:77::-;11887:7;11916:5;11905:16;;11850:77;;;:::o;11933:86::-;11968:7;12008:4;12001:5;11997:16;11986:27;;11933:86;;;:::o;12025:307::-;12093:1;12103:113;12117:6;12114:1;12111:13;12103:113;;;12202:1;12197:3;12193:11;12187:18;12183:1;12178:3;12174:11;12167:39;12139:2;12136:1;12132:10;12127:15;;12103:113;;;12234:6;12231:1;12228:13;12225:101;;;12314:1;12305:6;12300:3;12296:16;12289:27;12225:101;12074:258;12025:307;;;:::o;12338:320::-;12382:6;12419:1;12413:4;12409:12;12399:22;;12466:1;12460:4;12456:12;12487:18;12477:81;;12543:4;12535:6;12531:17;12521:27;;12477:81;12605:2;12597:6;12594:14;12574:18;12571:38;12568:84;;;12624:18;;:::i;:::-;12568:84;12389:269;12338:320;;;:::o;12664:180::-;12712:77;12709:1;12702:88;12809:4;12806:1;12799:15;12833:4;12830:1;12823:15;12850:180;12898:77;12895:1;12888:88;12995:4;12992:1;12985:15;13019:4;13016:1;13009:15;13036:180;13084:77;13081:1;13074:88;13181:4;13178:1;13171:15;13205:4;13202:1;13195:15;13345:117;13454:1;13451;13444:12;13468:102;13509:6;13560:2;13556:7;13551:2;13544:5;13540:14;13536:28;13526:38;;13468:102;;;:::o;13576:222::-;13716:34;13712:1;13704:6;13700:14;13693:58;13785:5;13780:2;13772:6;13768:15;13761:30;13576:222;:::o;13804:221::-;13944:34;13940:1;13932:6;13928:14;13921:58;14013:4;14008:2;14000:6;13996:15;13989:29;13804:221;:::o;14031:179::-;14171:31;14167:1;14159:6;14155:14;14148:55;14031:179;:::o;14216:225::-;14356:34;14352:1;14344:6;14340:14;14333:58;14425:8;14420:2;14412:6;14408:15;14401:33;14216:225;:::o;14447:224::-;14587:34;14583:1;14575:6;14571:14;14564:58;14656:7;14651:2;14643:6;14639:15;14632:32;14447:224;:::o;14677:223::-;14817:34;14813:1;14805:6;14801:14;14794:58;14886:6;14881:2;14873:6;14869:15;14862:31;14677:223;:::o;14906:224::-;15046:34;15042:1;15034:6;15030:14;15023:58;15115:7;15110:2;15102:6;15098:15;15091:32;14906:224;:::o;15136:181::-;15276:33;15272:1;15264:6;15260:14;15253:57;15136:181;:::o;15323:122::-;15396:24;15414:5;15396:24;:::i;:::-;15389:5;15386:35;15376:63;;15435:1;15432;15425:12;15376:63;15323:122;:::o;15451:::-;15524:24;15542:5;15524:24;:::i;:::-;15517:5;15514:35;15504:63;;15563:1;15560;15553:12;15504:63;15451:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1076000",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2863",
"decimals()": "432",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "2482",
"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": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "string",
"name": "_symbol",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "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": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "string",
"name": "_symbol",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "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": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"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}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. 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 overridden; 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: - `to` 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}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"kenny.sol": "Kenny"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0x67a07b380f7b27f7824de365346e0a9e3c82404ac303b8c23ae58d6641ffe4db",
"license": "MIT",
"urls": [
"bzz-raw://f60590296924325335e9892a7536fd3d1e55b413d25ccef0eea2886adfb46624",
"dweb:/ipfs/QmUb3Jrhu166uKULUG3WpvXbPmRYj2JJwqMNo34SHHf2t4"
]
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0x00c839ff53d07d19db2e7cfa1e5133f9ee90a8d64b0e2e57f50446a2d1a3a0e0",
"license": "MIT",
"urls": [
"bzz-raw://3dac621d015a68a5251b1e5d41dda0faf252699bf6e8bcf46a958b29964d9dd1",
"dweb:/ipfs/QmP9axjgZv4cezAhALoTemM62sdLtMDJ9MGTxECnNwHgSJ"
]
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca",
"license": "MIT",
"urls": [
"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd",
"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8"
]
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"kenny.sol": {
"keccak256": "0x0838f60c107fee234756852d341d66bd1ece4b03dd33c576e8588d149dfda9ad",
"license": "MIT",
"urls": [
"bzz-raw://c7f357fb55b182d1ee8babc5387b3ea038e30eee42d36f2dec1d77764c2b0386",
"dweb:/ipfs/QmXMZKurU2inq1tvyvGPwz3deJQjrPht4VmLnyoE9VAy5q"
]
}
},
"version": 1
}
This file has been truncated, but you can view the full file.
{
"id": "e225916ceda419c8b1e9727a636234e0",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"kenny.sol": {
"content": "// ERC-20 with simple reflection \r\n\r\n// SPDX-License-Identifier: MIT\r\npragma solidity ^0.8.0;\r\n\r\nimport \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\";\r\n\r\ncontract Kenny is ERC20 {\r\n constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {\r\n _mint(msg.sender, 10 * 10 ** 18);\r\n }\r\n\r\n function transfer(address to, uint256 amount) public virtual override returns (bool) \r\n {\r\n address owner = _msgSender();\r\n uint256 reflectedAmount; \r\n reflectedAmount = ((amount / 100) * 98); //two percent back! woo! \r\n _mint(owner, reflectedAmount); \r\n _transfer(owner, to, amount);\r\n return true;\r\n }\r\n}"
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC20.sol\";\nimport \"./extensions/IERC20Metadata.sol\";\nimport \"../../utils/Context.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC20\n * applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20 is Context, IERC20, IERC20Metadata {\n mapping(address => uint256) private _balances;\n\n mapping(address => mapping(address => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * The default value of {decimals} is 18. To select a different value for\n * {decimals} you should overload it.\n *\n * All two of these values are immutable: they can only be set once during\n * construction.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the value {ERC20} uses, unless this function is\n * overridden;\n *\n * NOTE: This information is only used for _display_ purposes: it in\n * no way affects any of the arithmetic of the contract, including\n * {IERC20-balanceOf} and {IERC20-transfer}.\n */\n function decimals() public view virtual override returns (uint8) {\n return 18;\n }\n\n /**\n * @dev See {IERC20-totalSupply}.\n */\n function totalSupply() public view virtual override returns (uint256) {\n return _totalSupply;\n }\n\n /**\n * @dev See {IERC20-balanceOf}.\n */\n function balanceOf(address account) public view virtual override returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - the caller must have a balance of at least `amount`.\n */\n function transfer(address to, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _transfer(owner, to, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-allowance}.\n */\n function allowance(address owner, address spender) public view virtual override returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on\n * `transferFrom`. This is semantically equivalent to an infinite approval.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function approve(address spender, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Emits an {Approval} event indicating the updated allowance. This is not\n * required by the EIP. See the note at the beginning of {ERC20}.\n *\n * NOTE: Does not update the allowance if the current allowance\n * is the maximum `uint256`.\n *\n * Requirements:\n *\n * - `from` and `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n * - the caller must have allowance for ``from``'s tokens of at least\n * `amount`.\n */\n function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {\n address spender = _msgSender();\n _spendAllowance(from, spender, amount);\n _transfer(from, to, amount);\n return true;\n }\n\n /**\n * @dev Atomically increases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, allowance(owner, spender) + addedValue);\n return true;\n }\n\n /**\n * @dev Atomically decreases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `spender` must have allowance for the caller of at least\n * `subtractedValue`.\n */\n function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\n address owner = _msgSender();\n uint256 currentAllowance = allowance(owner, spender);\n require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n unchecked {\n _approve(owner, spender, currentAllowance - subtractedValue);\n }\n\n return true;\n }\n\n /**\n * @dev Moves `amount` of tokens from `from` to `to`.\n *\n * This internal function is equivalent to {transfer}, and can be used to\n * e.g. implement automatic token fees, slashing mechanisms, etc.\n *\n * Emits a {Transfer} event.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n */\n function _transfer(address from, address to, uint256 amount) internal virtual {\n require(from != address(0), \"ERC20: transfer from the zero address\");\n require(to != address(0), \"ERC20: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, amount);\n\n uint256 fromBalance = _balances[from];\n require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n unchecked {\n _balances[from] = fromBalance - amount;\n // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\n // decrementing then incrementing.\n _balances[to] += amount;\n }\n\n emit Transfer(from, to, amount);\n\n _afterTokenTransfer(from, to, amount);\n }\n\n /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n * the total supply.\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n */\n function _mint(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: mint to the zero address\");\n\n _beforeTokenTransfer(address(0), account, amount);\n\n _totalSupply += amount;\n unchecked {\n // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\n _balances[account] += amount;\n }\n emit Transfer(address(0), account, amount);\n\n _afterTokenTransfer(address(0), account, amount);\n }\n\n /**\n * @dev Destroys `amount` tokens from `account`, reducing the\n * total supply.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n * - `account` must have at least `amount` tokens.\n */\n function _burn(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: burn from the zero address\");\n\n _beforeTokenTransfer(account, address(0), amount);\n\n uint256 accountBalance = _balances[account];\n require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n unchecked {\n _balances[account] = accountBalance - amount;\n // Overflow not possible: amount <= accountBalance <= totalSupply.\n _totalSupply -= amount;\n }\n\n emit Transfer(account, address(0), amount);\n\n _afterTokenTransfer(account, address(0), amount);\n }\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n *\n * This internal function is equivalent to `approve`, and can be used to\n * e.g. set automatic allowances for certain subsystems, etc.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `owner` cannot be the zero address.\n * - `spender` cannot be the zero address.\n */\n function _approve(address owner, address spender, uint256 amount) internal virtual {\n require(owner != address(0), \"ERC20: approve from the zero address\");\n require(spender != address(0), \"ERC20: approve to the zero address\");\n\n _allowances[owner][spender] = amount;\n emit Approval(owner, spender, amount);\n }\n\n /**\n * @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n *\n * Does not update the allowance amount in case of infinite allowance.\n * Revert if not enough allowance is available.\n *\n * Might emit an {Approval} event.\n */\n function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {\n uint256 currentAllowance = allowance(owner, spender);\n if (currentAllowance != type(uint256).max) {\n require(currentAllowance >= amount, \"ERC20: insufficient allowance\");\n unchecked {\n _approve(owner, spender, currentAllowance - amount);\n }\n }\n }\n\n /**\n * @dev Hook that is called before any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * will be transferred to `to`.\n * - when `from` is zero, `amount` tokens will be minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n\n /**\n * @dev Hook that is called after any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * has been transferred to `to`.\n * - when `from` is zero, `amount` tokens have been minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n}\n"
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n *\n * _Available since v4.1._\n */\ninterface IERC20Metadata is IERC20 {\n /**\n * @dev Returns the name of the token.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the symbol of the token.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the decimals places of the token.\n */\n function decimals() external view returns (uint8);\n}\n"
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol": {
"ERC20": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "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": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. We have followed general OpenZeppelin Contracts guidelines: functions revert instead 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}.",
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"constructor": {
"details": "Sets the values for {name} and {symbol}. The default value of {decimals} is 18. To select a different value for {decimals} you should overload it. All two of these values are immutable: they can only be set once during construction."
},
"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 overridden; 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: - `to` 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}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`."
}
},
"version": 1
},
"evm": {
"assembly": " /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":1401:12831 contract ERC20 is Context, IERC20, IERC20Metadata {... */\n mstore(0x40, 0x80)\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":1976:2089 constructor(string memory name_, string memory symbol_) {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n dup2\n add\n 0x40\n mstore\n dup2\n add\n swap1\n tag_2\n swap2\n swap1\n tag_3\n jump\t// in\ntag_2:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2050:2055 name_ */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2042:2047 _name */\n 0x03\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2042:2055 _name = name_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_6\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2075:2082 symbol_ */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2065:2072 _symbol */\n 0x04\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2065:2082 _symbol = symbol_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_8\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":1976:2089 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":1401:12831 contract ERC20 is Context, IERC20, IERC20Metadata {... */\n jump(tag_9)\ntag_7:\n dup3\n dup1\n sload\n tag_10\n swap1\n tag_11\n jump\t// in\ntag_10:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_13\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_12)\ntag_13:\n dup3\n 0x1f\n lt\n tag_14\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_12)\ntag_14:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_12\n jumpi\n swap2\n dup3\n add\ntag_15:\n dup3\n dup2\n gt\n iszero\n tag_16\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_15)\ntag_16:\ntag_12:\n pop\n swap1\n pop\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\ntag_17:\n pop\n swap1\n jump\t// out\ntag_18:\ntag_19:\n dup1\n dup3\n gt\n iszero\n tag_20\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_19)\ntag_20:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:428 */\ntag_22:\n /* \"#utility.yul\":96:101 */\n 0x00\n /* \"#utility.yul\":121:187 */\n tag_24\n /* \"#utility.yul\":137:186 */\n tag_25\n /* \"#utility.yul\":179:185 */\n dup5\n /* \"#utility.yul\":137:186 */\n tag_26\n jump\t// in\ntag_25:\n /* \"#utility.yul\":121:187 */\n tag_27\n jump\t// in\ntag_24:\n /* \"#utility.yul\":112:187 */\n swap1\n pop\n /* \"#utility.yul\":210:216 */\n dup3\n /* \"#utility.yul\":203:208 */\n dup2\n /* \"#utility.yul\":196:217 */\n mstore\n /* \"#utility.yul\":248:252 */\n 0x20\n /* \"#utility.yul\":241:246 */\n dup2\n /* \"#utility.yul\":237:253 */\n add\n /* \"#utility.yul\":286:289 */\n dup5\n /* \"#utility.yul\":277:283 */\n dup5\n /* \"#utility.yul\":272:275 */\n dup5\n /* \"#utility.yul\":268:284 */\n add\n /* \"#utility.yul\":265:290 */\n gt\n /* \"#utility.yul\":262:374 */\n iszero\n tag_28\n jumpi\n /* \"#utility.yul\":293:372 */\n tag_29\n tag_30\n jump\t// in\ntag_29:\n /* \"#utility.yul\":262:374 */\ntag_28:\n /* \"#utility.yul\":383:422 */\n tag_31\n /* \"#utility.yul\":415:421 */\n dup5\n /* \"#utility.yul\":410:413 */\n dup3\n /* \"#utility.yul\":405:408 */\n dup6\n /* \"#utility.yul\":383:422 */\n tag_32\n jump\t// in\ntag_31:\n /* \"#utility.yul\":102:428 */\n pop\n /* \"#utility.yul\":7:428 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":448:803 */\ntag_33:\n /* \"#utility.yul\":515:520 */\n 0x00\n /* \"#utility.yul\":564:567 */\n dup3\n /* \"#utility.yul\":557:561 */\n 0x1f\n /* \"#utility.yul\":549:555 */\n dup4\n /* \"#utility.yul\":545:562 */\n add\n /* \"#utility.yul\":541:568 */\n slt\n /* \"#utility.yul\":531:653 */\n tag_35\n jumpi\n /* \"#utility.yul\":572:651 */\n tag_36\n tag_37\n jump\t// in\ntag_36:\n /* \"#utility.yul\":531:653 */\ntag_35:\n /* \"#utility.yul\":682:688 */\n dup2\n /* \"#utility.yul\":676:689 */\n mload\n /* \"#utility.yul\":707:797 */\n tag_38\n /* \"#utility.yul\":793:796 */\n dup5\n /* \"#utility.yul\":785:791 */\n dup3\n /* \"#utility.yul\":778:782 */\n 0x20\n /* \"#utility.yul\":770:776 */\n dup7\n /* \"#utility.yul\":766:783 */\n add\n /* \"#utility.yul\":707:797 */\n tag_22\n jump\t// in\ntag_38:\n /* \"#utility.yul\":698:797 */\n swap2\n pop\n /* \"#utility.yul\":521:803 */\n pop\n /* \"#utility.yul\":448:803 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":809:1662 */\ntag_3:\n /* \"#utility.yul\":908:914 */\n 0x00\n /* \"#utility.yul\":916:922 */\n dup1\n /* \"#utility.yul\":965:967 */\n 0x40\n /* \"#utility.yul\":953:962 */\n dup4\n /* \"#utility.yul\":944:951 */\n dup6\n /* \"#utility.yul\":940:963 */\n sub\n /* \"#utility.yul\":936:968 */\n slt\n /* \"#utility.yul\":933:1052 */\n iszero\n tag_40\n jumpi\n /* \"#utility.yul\":971:1050 */\n tag_41\n tag_42\n jump\t// in\ntag_41:\n /* \"#utility.yul\":933:1052 */\ntag_40:\n /* \"#utility.yul\":1112:1113 */\n 0x00\n /* \"#utility.yul\":1101:1110 */\n dup4\n /* \"#utility.yul\":1097:1114 */\n add\n /* \"#utility.yul\":1091:1115 */\n mload\n /* \"#utility.yul\":1142:1160 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1134:1140 */\n dup2\n /* \"#utility.yul\":1131:1161 */\n gt\n /* \"#utility.yul\":1128:1245 */\n iszero\n tag_43\n jumpi\n /* \"#utility.yul\":1164:1243 */\n tag_44\n tag_45\n jump\t// in\ntag_44:\n /* \"#utility.yul\":1128:1245 */\ntag_43:\n /* \"#utility.yul\":1269:1343 */\n tag_46\n /* \"#utility.yul\":1335:1342 */\n dup6\n /* \"#utility.yul\":1326:1332 */\n dup3\n /* \"#utility.yul\":1315:1324 */\n dup7\n /* \"#utility.yul\":1311:1333 */\n add\n /* \"#utility.yul\":1269:1343 */\n tag_33\n jump\t// in\ntag_46:\n /* \"#utility.yul\":1259:1343 */\n swap3\n pop\n /* \"#utility.yul\":1062:1353 */\n pop\n /* \"#utility.yul\":1413:1415 */\n 0x20\n /* \"#utility.yul\":1402:1411 */\n dup4\n /* \"#utility.yul\":1398:1416 */\n add\n /* \"#utility.yul\":1392:1417 */\n mload\n /* \"#utility.yul\":1444:1462 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1436:1442 */\n dup2\n /* \"#utility.yul\":1433:1463 */\n gt\n /* \"#utility.yul\":1430:1547 */\n iszero\n tag_47\n jumpi\n /* \"#utility.yul\":1466:1545 */\n tag_48\n tag_45\n jump\t// in\ntag_48:\n /* \"#utility.yul\":1430:1547 */\ntag_47:\n /* \"#utility.yul\":1571:1645 */\n tag_49\n /* \"#utility.yul\":1637:1644 */\n dup6\n /* \"#utility.yul\":1628:1634 */\n dup3\n /* \"#utility.yul\":1617:1626 */\n dup7\n /* \"#utility.yul\":1613:1635 */\n add\n /* \"#utility.yul\":1571:1645 */\n tag_33\n jump\t// in\ntag_49:\n /* \"#utility.yul\":1561:1645 */\n swap2\n pop\n /* \"#utility.yul\":1363:1655 */\n pop\n /* \"#utility.yul\":809:1662 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1668:1797 */\ntag_27:\n /* \"#utility.yul\":1702:1708 */\n 0x00\n /* \"#utility.yul\":1729:1749 */\n tag_51\n tag_52\n jump\t// in\ntag_51:\n /* \"#utility.yul\":1719:1749 */\n swap1\n pop\n /* \"#utility.yul\":1758:1791 */\n tag_53\n /* \"#utility.yul\":1786:1790 */\n dup3\n /* \"#utility.yul\":1778:1784 */\n dup3\n /* \"#utility.yul\":1758:1791 */\n tag_54\n jump\t// in\ntag_53:\n /* \"#utility.yul\":1668:1797 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1803:1878 */\ntag_52:\n /* \"#utility.yul\":1836:1842 */\n 0x00\n /* \"#utility.yul\":1869:1871 */\n 0x40\n /* \"#utility.yul\":1863:1872 */\n mload\n /* \"#utility.yul\":1853:1872 */\n swap1\n pop\n /* \"#utility.yul\":1803:1878 */\n swap1\n jump\t// out\n /* \"#utility.yul\":1884:2192 */\ntag_26:\n /* \"#utility.yul\":1946:1950 */\n 0x00\n /* \"#utility.yul\":2036:2054 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2028:2034 */\n dup3\n /* \"#utility.yul\":2025:2055 */\n gt\n /* \"#utility.yul\":2022:2078 */\n iszero\n tag_57\n jumpi\n /* \"#utility.yul\":2058:2076 */\n tag_58\n tag_59\n jump\t// in\ntag_58:\n /* \"#utility.yul\":2022:2078 */\ntag_57:\n /* \"#utility.yul\":2096:2125 */\n tag_60\n /* \"#utility.yul\":2118:2124 */\n dup3\n /* \"#utility.yul\":2096:2125 */\n tag_61\n jump\t// in\ntag_60:\n /* \"#utility.yul\":2088:2125 */\n swap1\n pop\n /* \"#utility.yul\":2180:2184 */\n 0x20\n /* \"#utility.yul\":2174:2178 */\n dup2\n /* \"#utility.yul\":2170:2185 */\n add\n /* \"#utility.yul\":2162:2185 */\n swap1\n pop\n /* \"#utility.yul\":1884:2192 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2198:2505 */\ntag_32:\n /* \"#utility.yul\":2266:2267 */\n 0x00\n /* \"#utility.yul\":2276:2389 */\ntag_63:\n /* \"#utility.yul\":2290:2296 */\n dup4\n /* \"#utility.yul\":2287:2288 */\n dup2\n /* \"#utility.yul\":2284:2297 */\n lt\n /* \"#utility.yul\":2276:2389 */\n iszero\n tag_65\n jumpi\n /* \"#utility.yul\":2375:2376 */\n dup1\n /* \"#utility.yul\":2370:2373 */\n dup3\n /* \"#utility.yul\":2366:2377 */\n add\n /* \"#utility.yul\":2360:2378 */\n mload\n /* \"#utility.yul\":2356:2357 */\n dup2\n /* \"#utility.yul\":2351:2354 */\n dup5\n /* \"#utility.yul\":2347:2358 */\n add\n /* \"#utility.yul\":2340:2379 */\n mstore\n /* \"#utility.yul\":2312:2314 */\n 0x20\n /* \"#utility.yul\":2309:2310 */\n dup2\n /* \"#utility.yul\":2305:2315 */\n add\n /* \"#utility.yul\":2300:2315 */\n swap1\n pop\n /* \"#utility.yul\":2276:2389 */\n jump(tag_63)\ntag_65:\n /* \"#utility.yul\":2407:2413 */\n dup4\n /* \"#utility.yul\":2404:2405 */\n dup2\n /* \"#utility.yul\":2401:2414 */\n gt\n /* \"#utility.yul\":2398:2499 */\n iszero\n tag_66\n jumpi\n /* \"#utility.yul\":2487:2488 */\n 0x00\n /* \"#utility.yul\":2478:2484 */\n dup5\n /* \"#utility.yul\":2473:2476 */\n dup5\n /* \"#utility.yul\":2469:2485 */\n add\n /* \"#utility.yul\":2462:2489 */\n mstore\n /* \"#utility.yul\":2398:2499 */\ntag_66:\n /* \"#utility.yul\":2247:2505 */\n pop\n /* \"#utility.yul\":2198:2505 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2511:2831 */\ntag_11:\n /* \"#utility.yul\":2555:2561 */\n 0x00\n /* \"#utility.yul\":2592:2593 */\n 0x02\n /* \"#utility.yul\":2586:2590 */\n dup3\n /* \"#utility.yul\":2582:2594 */\n div\n /* \"#utility.yul\":2572:2594 */\n swap1\n pop\n /* \"#utility.yul\":2639:2640 */\n 0x01\n /* \"#utility.yul\":2633:2637 */\n dup3\n /* \"#utility.yul\":2629:2641 */\n and\n /* \"#utility.yul\":2660:2678 */\n dup1\n /* \"#utility.yul\":2650:2731 */\n tag_68\n jumpi\n /* \"#utility.yul\":2716:2720 */\n 0x7f\n /* \"#utility.yul\":2708:2714 */\n dup3\n /* \"#utility.yul\":2704:2721 */\n and\n /* \"#utility.yul\":2694:2721 */\n swap2\n pop\n /* \"#utility.yul\":2650:2731 */\ntag_68:\n /* \"#utility.yul\":2778:2780 */\n 0x20\n /* \"#utility.yul\":2770:2776 */\n dup3\n /* \"#utility.yul\":2767:2781 */\n lt\n /* \"#utility.yul\":2747:2765 */\n dup2\n /* \"#utility.yul\":2744:2782 */\n eq\n /* \"#utility.yul\":2741:2825 */\n iszero\n tag_69\n jumpi\n /* \"#utility.yul\":2797:2815 */\n tag_70\n tag_71\n jump\t// in\ntag_70:\n /* \"#utility.yul\":2741:2825 */\ntag_69:\n /* \"#utility.yul\":2562:2831 */\n pop\n /* \"#utility.yul\":2511:2831 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2837:3118 */\ntag_54:\n /* \"#utility.yul\":2920:2947 */\n tag_73\n /* \"#utility.yul\":2942:2946 */\n dup3\n /* \"#utility.yul\":2920:2947 */\n tag_61\n jump\t// in\ntag_73:\n /* \"#utility.yul\":2912:2918 */\n dup2\n /* \"#utility.yul\":2908:2948 */\n add\n /* \"#utility.yul\":3050:3056 */\n dup2\n /* \"#utility.yul\":3038:3048 */\n dup2\n /* \"#utility.yul\":3035:3057 */\n lt\n /* \"#utility.yul\":3014:3032 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3002:3012 */\n dup3\n /* \"#utility.yul\":2999:3033 */\n gt\n /* \"#utility.yul\":2996:3058 */\n or\n /* \"#utility.yul\":2993:3081 */\n iszero\n tag_74\n jumpi\n /* \"#utility.yul\":3061:3079 */\n tag_75\n tag_59\n jump\t// in\ntag_75:\n /* \"#utility.yul\":2993:3081 */\ntag_74:\n /* \"#utility.yul\":3101:3111 */\n dup1\n /* \"#utility.yul\":3097:3099 */\n 0x40\n /* \"#utility.yul\":3090:3112 */\n mstore\n /* \"#utility.yul\":2880:3118 */\n pop\n /* \"#utility.yul\":2837:3118 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3124:3304 */\ntag_71:\n /* \"#utility.yul\":3172:3249 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3169:3170 */\n 0x00\n /* \"#utility.yul\":3162:3250 */\n mstore\n /* \"#utility.yul\":3269:3273 */\n 0x22\n /* \"#utility.yul\":3266:3267 */\n 0x04\n /* \"#utility.yul\":3259:3274 */\n mstore\n /* \"#utility.yul\":3293:3297 */\n 0x24\n /* \"#utility.yul\":3290:3291 */\n 0x00\n /* \"#utility.yul\":3283:3298 */\n revert\n /* \"#utility.yul\":3310:3490 */\ntag_59:\n /* \"#utility.yul\":3358:3435 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3355:3356 */\n 0x00\n /* \"#utility.yul\":3348:3436 */\n mstore\n /* \"#utility.yul\":3455:3459 */\n 0x41\n /* \"#utility.yul\":3452:3453 */\n 0x04\n /* \"#utility.yul\":3445:3460 */\n mstore\n /* \"#utility.yul\":3479:3483 */\n 0x24\n /* \"#utility.yul\":3476:3477 */\n 0x00\n /* \"#utility.yul\":3469:3484 */\n revert\n /* \"#utility.yul\":3496:3613 */\ntag_37:\n /* \"#utility.yul\":3605:3606 */\n 0x00\n /* \"#utility.yul\":3602:3603 */\n dup1\n /* \"#utility.yul\":3595:3607 */\n revert\n /* \"#utility.yul\":3619:3736 */\ntag_30:\n /* \"#utility.yul\":3728:3729 */\n 0x00\n /* \"#utility.yul\":3725:3726 */\n dup1\n /* \"#utility.yul\":3718:3730 */\n revert\n /* \"#utility.yul\":3742:3859 */\ntag_45:\n /* \"#utility.yul\":3851:3852 */\n 0x00\n /* \"#utility.yul\":3848:3849 */\n dup1\n /* \"#utility.yul\":3841:3853 */\n revert\n /* \"#utility.yul\":3865:3982 */\ntag_42:\n /* \"#utility.yul\":3974:3975 */\n 0x00\n /* \"#utility.yul\":3971:3972 */\n dup1\n /* \"#utility.yul\":3964:3976 */\n revert\n /* \"#utility.yul\":3988:4090 */\ntag_61:\n /* \"#utility.yul\":4029:4035 */\n 0x00\n /* \"#utility.yul\":4080:4082 */\n 0x1f\n /* \"#utility.yul\":4076:4083 */\n not\n /* \"#utility.yul\":4071:4073 */\n 0x1f\n /* \"#utility.yul\":4064:4069 */\n dup4\n /* \"#utility.yul\":4060:4074 */\n add\n /* \"#utility.yul\":4056:4084 */\n and\n /* \"#utility.yul\":4046:4084 */\n swap1\n pop\n /* \"#utility.yul\":3988:4090 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":1401:12831 contract ERC20 is Context, IERC20, IERC20Metadata {... */\ntag_9:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":1401:12831 contract ERC20 is Context, IERC20, IERC20Metadata {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x39509351\n gt\n tag_14\n jumpi\n dup1\n 0x39509351\n eq\n tag_8\n jumpi\n dup1\n 0x70a08231\n eq\n tag_9\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_10\n jumpi\n dup1\n 0xa457c2d7\n eq\n tag_11\n jumpi\n dup1\n 0xa9059cbb\n eq\n tag_12\n jumpi\n dup1\n 0xdd62ed3e\n eq\n tag_13\n jumpi\n jump(tag_2)\n tag_14:\n dup1\n 0x06fdde03\n eq\n tag_3\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_4\n jumpi\n dup1\n 0x18160ddd\n eq\n tag_5\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_6\n jumpi\n dup1\n 0x313ce567\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2154:2252 function name() public view virtual override returns (string memory) {... */\n tag_3:\n tag_15\n tag_16\n jump\t// in\n tag_15:\n mload(0x40)\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\n tag_17:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4431:4628 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_4:\n tag_19\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_20\n swap2\n swap1\n tag_21\n jump\t// in\n tag_20:\n tag_22\n jump\t// in\n tag_19:\n mload(0x40)\n tag_23\n swap2\n swap1\n tag_24\n jump\t// in\n tag_23:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3242:3348 function totalSupply() public view virtual override returns (uint256) {... */\n tag_5:\n tag_25\n tag_26\n jump\t// in\n tag_25:\n mload(0x40)\n tag_27\n swap2\n swap1\n tag_28\n jump\t// in\n tag_27:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5190:5446 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {... */\n tag_6:\n tag_29\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_30\n swap2\n swap1\n tag_31\n jump\t// in\n tag_30:\n tag_32\n jump\t// in\n tag_29:\n mload(0x40)\n tag_33\n swap2\n swap1\n tag_24\n jump\t// in\n tag_33:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3091:3182 function decimals() public view virtual override returns (uint8) {... */\n tag_7:\n tag_34\n tag_35\n jump\t// in\n tag_34:\n mload(0x40)\n tag_36\n swap2\n swap1\n tag_37\n jump\t// in\n tag_36:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5841:6075 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_8:\n tag_38\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_39\n swap2\n swap1\n tag_21\n jump\t// in\n tag_39:\n tag_40\n jump\t// in\n tag_38:\n mload(0x40)\n tag_41\n swap2\n swap1\n tag_24\n jump\t// in\n tag_41:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3406:3531 function balanceOf(address account) public view virtual override returns (uint256) {... */\n tag_9:\n tag_42\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_43\n swap2\n swap1\n tag_44\n jump\t// in\n tag_43:\n tag_45\n jump\t// in\n tag_42:\n mload(0x40)\n tag_46\n swap2\n swap1\n tag_28\n jump\t// in\n tag_46:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2365:2467 function symbol() public view virtual override returns (string memory) {... */\n tag_10:\n tag_47\n tag_48\n jump\t// in\n tag_47:\n mload(0x40)\n tag_49\n swap2\n swap1\n tag_18\n jump\t// in\n tag_49:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6562:6989 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_11:\n tag_50\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_51\n swap2\n swap1\n tag_21\n jump\t// in\n tag_51:\n tag_52\n jump\t// in\n tag_50:\n mload(0x40)\n tag_53\n swap2\n swap1\n tag_24\n jump\t// in\n tag_53:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3727:3916 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n tag_12:\n tag_54\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_55\n swap2\n swap1\n tag_21\n jump\t// in\n tag_55:\n tag_56\n jump\t// in\n tag_54:\n mload(0x40)\n tag_57\n swap2\n swap1\n tag_24\n jump\t// in\n tag_57:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3974:4123 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_13:\n tag_58\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_59\n swap2\n swap1\n tag_60\n jump\t// in\n tag_59:\n tag_61\n jump\t// in\n tag_58:\n mload(0x40)\n tag_62\n swap2\n swap1\n tag_28\n jump\t// in\n tag_62:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2154:2252 function name() public view virtual override returns (string memory) {... */\n tag_16:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2208:2221 string memory */\n 0x60\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2240:2245 _name */\n 0x03\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2233:2245 return _name */\n dup1\n sload\n tag_64\n swap1\n tag_65\n jump\t// in\n tag_64:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_66\n swap1\n tag_65\n jump\t// in\n tag_66:\n dup1\n iszero\n tag_67\n jumpi\n dup1\n 0x1f\n lt\n tag_68\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_67)\n tag_68:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_69:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_69\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_67:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2154:2252 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4431:4628 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_22:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4514:4518 bool */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4530:4543 address owner */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4546:4558 _msgSender() */\n tag_71\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4546:4556 _msgSender */\n tag_72\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4546:4558 _msgSender() */\n jump\t// in\n tag_71:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4530:4558 address owner = _msgSender() */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4568:4600 _approve(owner, spender, amount) */\n tag_73\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4577:4582 owner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4584:4591 spender */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4593:4599 amount */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4568:4576 _approve */\n tag_74\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4568:4600 _approve(owner, spender, amount) */\n jump\t// in\n tag_73:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4617:4621 true */\n 0x01\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4610:4621 return true */\n swap2\n pop\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4431:4628 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3242:3348 function totalSupply() public view virtual override returns (uint256) {... */\n tag_26:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3303:3310 uint256 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3329:3341 _totalSupply */\n sload(0x02)\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3322:3341 return _totalSupply */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3242:3348 function totalSupply() public view virtual override returns (uint256) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5190:5446 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {... */\n tag_32:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5287:5291 bool */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5303:5318 address spender */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5321:5333 _msgSender() */\n tag_77\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5321:5331 _msgSender */\n tag_72\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5321:5333 _msgSender() */\n jump\t// in\n tag_77:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5303:5333 address spender = _msgSender() */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5343:5381 _spendAllowance(from, spender, amount) */\n tag_78\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5359:5363 from */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5365:5372 spender */\n dup3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5374:5380 amount */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5343:5358 _spendAllowance */\n tag_79\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5343:5381 _spendAllowance(from, spender, amount) */\n jump\t// in\n tag_78:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5391:5418 _transfer(from, to, amount) */\n tag_80\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5401:5405 from */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5407:5409 to */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5411:5417 amount */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5391:5400 _transfer */\n tag_81\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5391:5418 _transfer(from, to, amount) */\n jump\t// in\n tag_80:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5435:5439 true */\n 0x01\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5428:5439 return true */\n swap2\n pop\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5190:5446 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {... */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3091:3182 function decimals() public view virtual override returns (uint8) {... */\n tag_35:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3149:3154 uint8 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3173:3175 18 */\n 0x12\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3166:3175 return 18 */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3091:3182 function decimals() public view virtual override returns (uint8) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5841:6075 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_40:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5929:5933 bool */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5945:5958 address owner */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5961:5973 _msgSender() */\n tag_84\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5961:5971 _msgSender */\n tag_72\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5961:5973 _msgSender() */\n jump\t// in\n tag_84:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5945:5973 address owner = _msgSender() */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5983:6047 _approve(owner, spender, allowance(owner, spender) + addedValue) */\n tag_85\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5992:5997 owner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5999:6006 spender */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6036:6046 addedValue */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6008:6033 allowance(owner, spender) */\n tag_86\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6018:6023 owner */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6025:6032 spender */\n dup10\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6008:6017 allowance */\n tag_61\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6008:6033 allowance(owner, spender) */\n jump\t// in\n tag_86:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6008:6046 allowance(owner, spender) + addedValue */\n tag_87\n swap2\n swap1\n tag_88\n jump\t// in\n tag_87:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5983:5991 _approve */\n tag_74\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5983:6047 _approve(owner, spender, allowance(owner, spender) + addedValue) */\n jump\t// in\n tag_85:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6064:6068 true */\n 0x01\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6057:6068 return true */\n swap2\n pop\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":5841:6075 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3406:3531 function balanceOf(address account) public view virtual override returns (uint256) {... */\n tag_45:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3480:3487 uint256 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3506:3515 _balances */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3506:3524 _balances[account] */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3516:3523 account */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3506:3524 _balances[account] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3499:3524 return _balances[account] */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3406:3531 function balanceOf(address account) public view virtual override returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2365:2467 function symbol() public view virtual override returns (string memory) {... */\n tag_48:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2421:2434 string memory */\n 0x60\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2453:2460 _symbol */\n 0x04\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2446:2460 return _symbol */\n dup1\n sload\n tag_91\n swap1\n tag_65\n jump\t// in\n tag_91:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_92\n swap1\n tag_65\n jump\t// in\n tag_92:\n dup1\n iszero\n tag_93\n jumpi\n dup1\n 0x1f\n lt\n tag_94\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_93)\n tag_94:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_95:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_95\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_93:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":2365:2467 function symbol() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6562:6989 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_52:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6655:6659 bool */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6671:6684 address owner */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6687:6699 _msgSender() */\n tag_97\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6687:6697 _msgSender */\n tag_72\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6687:6699 _msgSender() */\n jump\t// in\n tag_97:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6671:6699 address owner = _msgSender() */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6709:6733 uint256 currentAllowance */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6736:6761 allowance(owner, spender) */\n tag_98\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6746:6751 owner */\n dup3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6753:6760 spender */\n dup7\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6736:6745 allowance */\n tag_61\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6736:6761 allowance(owner, spender) */\n jump\t// in\n tag_98:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6709:6761 uint256 currentAllowance = allowance(owner, spender) */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6799:6814 subtractedValue */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6779:6795 currentAllowance */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6779:6814 currentAllowance >= subtractedValue */\n lt\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6771:6856 require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\") */\n tag_99\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_100\n swap1\n tag_101\n jump\t// in\n tag_100:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_99:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6890:6950 _approve(owner, spender, currentAllowance - subtractedValue) */\n tag_102\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6899:6904 owner */\n dup3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6906:6913 spender */\n dup7\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6934:6949 subtractedValue */\n dup7\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6915:6931 currentAllowance */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6915:6949 currentAllowance - subtractedValue */\n sub\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6890:6898 _approve */\n tag_74\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6890:6950 _approve(owner, spender, currentAllowance - subtractedValue) */\n jump\t// in\n tag_102:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6978:6982 true */\n 0x01\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6971:6982 return true */\n swap3\n pop\n pop\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":6562:6989 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3727:3916 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n tag_56:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3806:3810 bool */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3822:3835 address owner */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3838:3850 _msgSender() */\n tag_104\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3838:3848 _msgSender */\n tag_72\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3838:3850 _msgSender() */\n jump\t// in\n tag_104:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3822:3850 address owner = _msgSender() */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3860:3888 _transfer(owner, to, amount) */\n tag_105\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3870:3875 owner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3877:3879 to */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3881:3887 amount */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3860:3869 _transfer */\n tag_81\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3860:3888 _transfer(owner, to, amount) */\n jump\t// in\n tag_105:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3905:3909 true */\n 0x01\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3898:3909 return true */\n swap2\n pop\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3727:3916 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3974:4123 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_61:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4063:4070 uint256 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4089:4100 _allowances */\n 0x01\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4089:4107 _allowances[owner] */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4101:4106 owner */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4089:4107 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4089:4116 _allowances[owner][spender] */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4108:4115 spender */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4089:4116 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":4082:4116 return _allowances[owner][spender] */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":3974:4123 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_72:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10444:10784 function _approve(address owner, address spender, uint256 amount) internal virtual {... */\n tag_74:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10562:10563 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10545:10564 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10545:10550 owner */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10545:10564 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10537:10605 require(owner != address(0), \"ERC20: approve from the zero address\") */\n tag_109\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_110\n swap1\n tag_111\n jump\t// in\n tag_110:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_109:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10642:10643 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10623:10644 spender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10623:10630 spender */\n dup3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10623:10644 spender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10615:10683 require(spender != address(0), \"ERC20: approve to the zero address\") */\n tag_112\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_113\n swap1\n tag_114\n jump\t// in\n tag_113:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_112:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10724:10730 amount */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10694:10705 _allowances */\n 0x01\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10694:10712 _allowances[owner] */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10706:10711 owner */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10694:10712 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10694:10721 _allowances[owner][spender] */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10713:10720 spender */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10694:10721 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10694:10730 _allowances[owner][spender] = amount */\n dup2\n swap1\n sstore\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10761:10768 spender */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10745:10777 Approval(owner, spender, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10754:10759 owner */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10745:10777 Approval(owner, spender, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10770:10776 amount */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10745:10777 Approval(owner, spender, amount) */\n mload(0x40)\n tag_115\n swap2\n swap1\n tag_28\n jump\t// in\n tag_115:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":10444:10784 function _approve(address owner, address spender, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11065:11476 function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {... */\n tag_79:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11165:11189 uint256 currentAllowance */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11192:11217 allowance(owner, spender) */\n tag_117\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11202:11207 owner */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11209:11216 spender */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11192:11201 allowance */\n tag_61\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11192:11217 allowance(owner, spender) */\n jump\t// in\n tag_117:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11165:11217 uint256 currentAllowance = allowance(owner, spender) */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11251:11268 type(uint256).max */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11231:11247 currentAllowance */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11231:11268 currentAllowance != type(uint256).max */\n eq\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11227:11470 if (currentAllowance != type(uint256).max) {... */\n tag_118\n jumpi\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11312:11318 amount */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11292:11308 currentAllowance */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11292:11318 currentAllowance >= amount */\n lt\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11284:11352 require(currentAllowance >= amount, \"ERC20: insufficient allowance\") */\n tag_119\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_120\n swap1\n tag_121\n jump\t// in\n tag_120:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_119:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11394:11445 _approve(owner, spender, currentAllowance - amount) */\n tag_122\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11403:11408 owner */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11410:11417 spender */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11438:11444 amount */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11419:11435 currentAllowance */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11419:11444 currentAllowance - amount */\n sub\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11394:11402 _approve */\n tag_74\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11394:11445 _approve(owner, spender, currentAllowance - amount) */\n jump\t// in\n tag_122:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11227:11470 if (currentAllowance != type(uint256).max) {... */\n tag_118:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11155:11476 {... */\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":11065:11476 function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7443:8231 function _transfer(address from, address to, uint256 amount) internal virtual {... */\n tag_81:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7555:7556 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7539:7557 from != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7539:7543 from */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7539:7557 from != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7531:7599 require(from != address(0), \"ERC20: transfer from the zero address\") */\n tag_124\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_125\n swap1\n tag_126\n jump\t// in\n tag_125:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_124:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7631:7632 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7617:7633 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7617:7619 to */\n dup3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7617:7633 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7609:7673 require(to != address(0), \"ERC20: transfer to the zero address\") */\n tag_127\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_128\n swap1\n tag_129\n jump\t// in\n tag_128:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_127:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7684:7722 _beforeTokenTransfer(from, to, amount) */\n tag_130\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7705:7709 from */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7711:7713 to */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7715:7721 amount */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7684:7704 _beforeTokenTransfer */\n tag_131\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7684:7722 _beforeTokenTransfer(from, to, amount) */\n jump\t// in\n tag_130:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7733:7752 uint256 fromBalance */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7755:7764 _balances */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7755:7770 _balances[from] */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7765:7769 from */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7755:7770 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7733:7770 uint256 fromBalance = _balances[from] */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7803:7809 amount */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7788:7799 fromBalance */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7788:7809 fromBalance >= amount */\n lt\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7780:7852 require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\") */\n tag_132\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_133\n swap1\n tag_134\n jump\t// in\n tag_133:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_132:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7918:7924 amount */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7904:7915 fromBalance */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7904:7924 fromBalance - amount */\n sub\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7886:7895 _balances */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7886:7901 _balances[from] */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7896:7900 from */\n dup7\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7886:7901 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7886:7924 _balances[from] = fromBalance - amount */\n dup2\n swap1\n sstore\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8118:8124 amount */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8101:8110 _balances */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8101:8114 _balances[to] */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8111:8113 to */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8101:8114 _balances[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8101:8124 _balances[to] += amount */\n dup3\n dup3\n sload\n add\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8165:8167 to */\n dup3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8150:8176 Transfer(from, to, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8159:8163 from */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8150:8176 Transfer(from, to, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8169:8175 amount */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8150:8176 Transfer(from, to, amount) */\n mload(0x40)\n tag_135\n swap2\n swap1\n tag_28\n jump\t// in\n tag_135:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8187:8224 _afterTokenTransfer(from, to, amount) */\n tag_136\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8207:8211 from */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8213:8215 to */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8217:8223 amount */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8187:8206 _afterTokenTransfer */\n tag_137\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":8187:8224 _afterTokenTransfer(from, to, amount) */\n jump\t// in\n tag_136:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7521:8231 {... */\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":7443:8231 function _transfer(address from, address to, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":12060:12151 function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} */\n tag_131:\n pop\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol\":12739:12829 function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} */\n tag_137:\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7:146 */\n tag_141:\n /* \"#utility.yul\":53:58 */\n 0x00\n /* \"#utility.yul\":91:97 */\n dup2\n /* \"#utility.yul\":78:98 */\n calldataload\n /* \"#utility.yul\":69:98 */\n swap1\n pop\n /* \"#utility.yul\":107:140 */\n tag_143\n /* \"#utility.yul\":134:139 */\n dup2\n /* \"#utility.yul\":107:140 */\n tag_144\n jump\t// in\n tag_143:\n /* \"#utility.yul\":7:146 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":152:291 */\n tag_145:\n /* \"#utility.yul\":198:203 */\n 0x00\n /* \"#utility.yul\":236:242 */\n dup2\n /* \"#utility.yul\":223:243 */\n calldataload\n /* \"#utility.yul\":214:243 */\n swap1\n pop\n /* \"#utility.yul\":252:285 */\n tag_147\n /* \"#utility.yul\":279:284 */\n dup2\n /* \"#utility.yul\":252:285 */\n tag_148\n jump\t// in\n tag_147:\n /* \"#utility.yul\":152:291 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":297:626 */\n tag_44:\n /* \"#utility.yul\":356:362 */\n 0x00\n /* \"#utility.yul\":405:407 */\n 0x20\n /* \"#utility.yul\":393:402 */\n dup3\n /* \"#utility.yul\":384:391 */\n dup5\n /* \"#utility.yul\":380:403 */\n sub\n /* \"#utility.yul\":376:408 */\n slt\n /* \"#utility.yul\":373:492 */\n iszero\n tag_150\n jumpi\n /* \"#utility.yul\":411:490 */\n tag_151\n tag_152\n jump\t// in\n tag_151:\n /* \"#utility.yul\":373:492 */\n tag_150:\n /* \"#utility.yul\":531:532 */\n 0x00\n /* \"#utility.yul\":556:609 */\n tag_153\n /* \"#utility.yul\":601:608 */\n dup5\n /* \"#utility.yul\":592:598 */\n dup3\n /* \"#utility.yul\":581:590 */\n dup6\n /* \"#utility.yul\":577:599 */\n add\n /* \"#utility.yul\":556:609 */\n tag_141\n jump\t// in\n tag_153:\n /* \"#utility.yul\":546:609 */\n swap2\n pop\n /* \"#utility.yul\":502:619 */\n pop\n /* \"#utility.yul\":297:626 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":632:1106 */\n tag_60:\n /* \"#utility.yul\":700:706 */\n 0x00\n /* \"#utility.yul\":708:714 */\n dup1\n /* \"#utility.yul\":757:759 */\n 0x40\n /* \"#utility.yul\":745:754 */\n dup4\n /* \"#utility.yul\":736:743 */\n dup6\n /* \"#utility.yul\":732:755 */\n sub\n /* \"#utility.yul\":728:760 */\n slt\n /* \"#utility.yul\":725:844 */\n iszero\n tag_155\n jumpi\n /* \"#utility.yul\":763:842 */\n tag_156\n tag_152\n jump\t// in\n tag_156:\n /* \"#utility.yul\":725:844 */\n tag_155:\n /* \"#utility.yul\":883:884 */\n 0x00\n /* \"#utility.yul\":908:961 */\n tag_157\n /* \"#utility.yul\":953:960 */\n dup6\n /* \"#utility.yul\":944:950 */\n dup3\n /* \"#utility.yul\":933:942 */\n dup7\n /* \"#utility.yul\":929:951 */\n add\n /* \"#utility.yul\":908:961 */\n tag_141\n jump\t// in\n tag_157:\n /* \"#utility.yul\":898:961 */\n swap3\n pop\n /* \"#utility.yul\":854:971 */\n pop\n /* \"#utility.yul\":1010:1012 */\n 0x20\n /* \"#utility.yul\":1036:1089 */\n tag_158\n /* \"#utility.yul\":1081:1088 */\n dup6\n /* \"#utility.yul\":1072:1078 */\n dup3\n /* \"#utility.yul\":1061:1070 */\n dup7\n /* \"#utility.yul\":1057:1079 */\n add\n /* \"#utility.yul\":1036:1089 */\n tag_141\n jump\t// in\n tag_158:\n /* \"#utility.yul\":1026:1089 */\n swap2\n pop\n /* \"#utility.yul\":981:1099 */\n pop\n /* \"#utility.yul\":632:1106 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1112:1731 */\n tag_31:\n /* \"#utility.yul\":1189:1195 */\n 0x00\n /* \"#utility.yul\":1197:1203 */\n dup1\n /* \"#utility.yul\":1205:1211 */\n 0x00\n /* \"#utility.yul\":1254:1256 */\n 0x60\n /* \"#utility.yul\":1242:1251 */\n dup5\n /* \"#utility.yul\":1233:1240 */\n dup7\n /* \"#utility.yul\":1229:1252 */\n sub\n /* \"#utility.yul\":1225:1257 */\n slt\n /* \"#utility.yul\":1222:1341 */\n iszero\n tag_160\n jumpi\n /* \"#utility.yul\":1260:1339 */\n tag_161\n tag_152\n jump\t// in\n tag_161:\n /* \"#utility.yul\":1222:1341 */\n tag_160:\n /* \"#utility.yul\":1380:1381 */\n 0x00\n /* \"#utility.yul\":1405:1458 */\n tag_162\n /* \"#utility.yul\":1450:1457 */\n dup7\n /* \"#utility.yul\":1441:1447 */\n dup3\n /* \"#utility.yul\":1430:1439 */\n dup8\n /* \"#utility.yul\":1426:1448 */\n add\n /* \"#utility.yul\":1405:1458 */\n tag_141\n jump\t// in\n tag_162:\n /* \"#utility.yul\":1395:1458 */\n swap4\n pop\n /* \"#utility.yul\":1351:1468 */\n pop\n /* \"#utility.yul\":1507:1509 */\n 0x20\n /* \"#utility.yul\":1533:1586 */\n tag_163\n /* \"#utility.yul\":1578:1585 */\n dup7\n /* \"#utility.yul\":1569:1575 */\n dup3\n /* \"#utility.yul\":1558:1567 */\n dup8\n /* \"#utility.yul\":1554:1576 */\n add\n /* \"#utility.yul\":1533:1586 */\n tag_141\n jump\t// in\n tag_163:\n /* \"#utility.yul\":1523:1586 */\n swap3\n pop\n /* \"#utility.yul\":1478:1596 */\n pop\n /* \"#utility.yul\":1635:1637 */\n 0x40\n /* \"#utility.yul\":1661:1714 */\n tag_164\n /* \"#utility.yul\":1706:1713 */\n dup7\n /* \"#utility.yul\":1697:1703 */\n dup3\n /* \"#utility.yul\":1686:1695 */\n dup8\n /* \"#utility.yul\":1682:1704 */\n add\n /* \"#utility.yul\":1661:1714 */\n tag_145\n jump\t// in\n tag_164:\n /* \"#utility.yul\":1651:1714 */\n swap2\n pop\n /* \"#utility.yul\":1606:1724 */\n pop\n /* \"#utility.yul\":1112:1731 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":1737:2211 */\n tag_21:\n /* \"#utility.yul\":1805:1811 */\n 0x00\n /* \"#utility.yul\":1813:1819 */\n dup1\n /* \"#utility.yul\":1862:1864 */\n 0x40\n /* \"#utility.yul\":1850:1859 */\n dup4\n /* \"#utility.yul\":1841:1848 */\n dup6\n /* \"#utility.yul\":1837:1860 */\n sub\n /* \"#utility.yul\":1833:1865 */\n slt\n /* \"#utility.yul\":1830:1949 */\n iszero\n tag_166\n jumpi\n /* \"#utility.yul\":1868:1947 */\n tag_167\n tag_152\n jump\t// in\n tag_167:\n /* \"#utility.yul\":1830:1949 */\n tag_166:\n /* \"#utility.yul\":1988:1989 */\n 0x00\n /* \"#utility.yul\":2013:2066 */\n tag_168\n /* \"#utility.yul\":2058:2065 */\n dup6\n /* \"#utility.yul\":2049:2055 */\n dup3\n /* \"#utility.yul\":2038:2047 */\n dup7\n /* \"#utility.yul\":2034:2056 */\n add\n /* \"#utility.yul\":2013:2066 */\n tag_141\n jump\t// in\n tag_168:\n /* \"#utility.yul\":2003:2066 */\n swap3\n pop\n /* \"#utility.yul\":1959:2076 */\n pop\n /* \"#utility.yul\":2115:2117 */\n 0x20\n /* \"#utility.yul\":2141:2194 */\n tag_169\n /* \"#utility.yul\":2186:2193 */\n dup6\n /* \"#utility.yul\":2177:2183 */\n dup3\n /* \"#utility.yul\":2166:2175 */\n dup7\n /* \"#utility.yul\":2162:2184 */\n add\n /* \"#utility.yul\":2141:2194 */\n tag_145\n jump\t// in\n tag_169:\n /* \"#utility.yul\":2131:2194 */\n swap2\n pop\n /* \"#utility.yul\":2086:2204 */\n pop\n /* \"#utility.yul\":1737:2211 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2217:2326 */\n tag_170:\n /* \"#utility.yul\":2298:2319 */\n tag_172\n /* \"#utility.yul\":2313:2318 */\n dup2\n /* \"#utility.yul\":2298:2319 */\n tag_173\n jump\t// in\n tag_172:\n /* \"#utility.yul\":2293:2296 */\n dup3\n /* \"#utility.yul\":2286:2320 */\n mstore\n /* \"#utility.yul\":2217:2326 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2332:2696 */\n tag_174:\n /* \"#utility.yul\":2420:2423 */\n 0x00\n /* \"#utility.yul\":2448:2487 */\n tag_176\n /* \"#utility.yul\":2481:2486 */\n dup3\n /* \"#utility.yul\":2448:2487 */\n tag_177\n jump\t// in\n tag_176:\n /* \"#utility.yul\":2503:2574 */\n tag_178\n /* \"#utility.yul\":2567:2573 */\n dup2\n /* \"#utility.yul\":2562:2565 */\n dup6\n /* \"#utility.yul\":2503:2574 */\n tag_179\n jump\t// in\n tag_178:\n /* \"#utility.yul\":2496:2574 */\n swap4\n pop\n /* \"#utility.yul\":2583:2635 */\n tag_180\n /* \"#utility.yul\":2628:2634 */\n dup2\n /* \"#utility.yul\":2623:2626 */\n dup6\n /* \"#utility.yul\":2616:2620 */\n 0x20\n /* \"#utility.yul\":2609:2614 */\n dup7\n /* \"#utility.yul\":2605:2621 */\n add\n /* \"#utility.yul\":2583:2635 */\n tag_181\n jump\t// in\n tag_180:\n /* \"#utility.yul\":2660:2689 */\n tag_182\n /* \"#utility.yul\":2682:2688 */\n dup2\n /* \"#utility.yul\":2660:2689 */\n tag_183\n jump\t// in\n tag_182:\n /* \"#utility.yul\":2655:2658 */\n dup5\n /* \"#utility.yul\":2651:2690 */\n add\n /* \"#utility.yul\":2644:2690 */\n swap2\n pop\n /* \"#utility.yul\":2424:2696 */\n pop\n /* \"#utility.yul\":2332:2696 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2702:3068 */\n tag_184:\n /* \"#utility.yul\":2844:2847 */\n 0x00\n /* \"#utility.yul\":2865:2932 */\n tag_186\n /* \"#utility.yul\":2929:2931 */\n 0x23\n /* \"#utility.yul\":2924:2927 */\n dup4\n /* \"#utility.yul\":2865:2932 */\n tag_179\n jump\t// in\n tag_186:\n /* \"#utility.yul\":2858:2932 */\n swap2\n pop\n /* \"#utility.yul\":2941:3034 */\n tag_187\n /* \"#utility.yul\":3030:3033 */\n dup3\n /* \"#utility.yul\":2941:3034 */\n tag_188\n jump\t// in\n tag_187:\n /* \"#utility.yul\":3059:3061 */\n 0x40\n /* \"#utility.yul\":3054:3057 */\n dup3\n /* \"#utility.yul\":3050:3062 */\n add\n /* \"#utility.yul\":3043:3062 */\n swap1\n pop\n /* \"#utility.yul\":2702:3068 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3074:3440 */\n tag_189:\n /* \"#utility.yul\":3216:3219 */\n 0x00\n /* \"#utility.yul\":3237:3304 */\n tag_191\n /* \"#utility.yul\":3301:3303 */\n 0x22\n /* \"#utility.yul\":3296:3299 */\n dup4\n /* \"#utility.yul\":3237:3304 */\n tag_179\n jump\t// in\n tag_191:\n /* \"#utility.yul\":3230:3304 */\n swap2\n pop\n /* \"#utility.yul\":3313:3406 */\n tag_192\n /* \"#utility.yul\":3402:3405 */\n dup3\n /* \"#utility.yul\":3313:3406 */\n tag_193\n jump\t// in\n tag_192:\n /* \"#utility.yul\":3431:3433 */\n 0x40\n /* \"#utility.yul\":3426:3429 */\n dup3\n /* \"#utility.yul\":3422:3434 */\n add\n /* \"#utility.yul\":3415:3434 */\n swap1\n pop\n /* \"#utility.yul\":3074:3440 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3446:3812 */\n tag_194:\n /* \"#utility.yul\":3588:3591 */\n 0x00\n /* \"#utility.yul\":3609:3676 */\n tag_196\n /* \"#utility.yul\":3673:3675 */\n 0x1d\n /* \"#utility.yul\":3668:3671 */\n dup4\n /* \"#utility.yul\":3609:3676 */\n tag_179\n jump\t// in\n tag_196:\n /* \"#utility.yul\":3602:3676 */\n swap2\n pop\n /* \"#utility.yul\":3685:3778 */\n tag_197\n /* \"#utility.yul\":3774:3777 */\n dup3\n /* \"#utility.yul\":3685:3778 */\n tag_198\n jump\t// in\n tag_197:\n /* \"#utility.yul\":3803:3805 */\n 0x20\n /* \"#utility.yul\":3798:3801 */\n dup3\n /* \"#utility.yul\":3794:3806 */\n add\n /* \"#utility.yul\":3787:3806 */\n swap1\n pop\n /* \"#utility.yul\":3446:3812 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3818:4184 */\n tag_199:\n /* \"#utility.yul\":3960:3963 */\n 0x00\n /* \"#utility.yul\":3981:4048 */\n tag_201\n /* \"#utility.yul\":4045:4047 */\n 0x26\n /* \"#utility.yul\":4040:4043 */\n dup4\n /* \"#utility.yul\":3981:4048 */\n tag_179\n jump\t// in\n tag_201:\n /* \"#utility.yul\":3974:4048 */\n swap2\n pop\n /* \"#utility.yul\":4057:4150 */\n tag_202\n /* \"#utility.yul\":4146:4149 */\n dup3\n /* \"#utility.yul\":4057:4150 */\n tag_203\n jump\t// in\n tag_202:\n /* \"#utility.yul\":4175:4177 */\n 0x40\n /* \"#utility.yul\":4170:4173 */\n dup3\n /* \"#utility.yul\":4166:4178 */\n add\n /* \"#utility.yul\":4159:4178 */\n swap1\n pop\n /* \"#utility.yul\":3818:4184 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4190:4556 */\n tag_204:\n /* \"#utility.yul\":4332:4335 */\n 0x00\n /* \"#utility.yul\":4353:4420 */\n tag_206\n /* \"#utility.yul\":4417:4419 */\n 0x25\n /* \"#utility.yul\":4412:4415 */\n dup4\n /* \"#utility.yul\":4353:4420 */\n tag_179\n jump\t// in\n tag_206:\n /* \"#utility.yul\":4346:4420 */\n swap2\n pop\n /* \"#utility.yul\":4429:4522 */\n tag_207\n /* \"#utility.yul\":4518:4521 */\n dup3\n /* \"#utility.yul\":4429:4522 */\n tag_208\n jump\t// in\n tag_207:\n /* \"#utility.yul\":4547:4549 */\n 0x40\n /* \"#utility.yul\":4542:4545 */\n dup3\n /* \"#utility.yul\":4538:4550 */\n add\n /* \"#utility.yul\":4531:4550 */\n swap1\n pop\n /* \"#utility.yul\":4190:4556 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4562:4928 */\n tag_209:\n /* \"#utility.yul\":4704:4707 */\n 0x00\n /* \"#utility.yul\":4725:4792 */\n tag_211\n /* \"#utility.yul\":4789:4791 */\n 0x24\n /* \"#utility.yul\":4784:4787 */\n dup4\n /* \"#utility.yul\":4725:4792 */\n tag_179\n jump\t// in\n tag_211:\n /* \"#utility.yul\":4718:4792 */\n swap2\n pop\n /* \"#utility.yul\":4801:4894 */\n tag_212\n /* \"#utility.yul\":4890:4893 */\n dup3\n /* \"#utility.yul\":4801:4894 */\n tag_213\n jump\t// in\n tag_212:\n /* \"#utility.yul\":4919:4921 */\n 0x40\n /* \"#utility.yul\":4914:4917 */\n dup3\n /* \"#utility.yul\":4910:4922 */\n add\n /* \"#utility.yul\":4903:4922 */\n swap1\n pop\n /* \"#utility.yul\":4562:4928 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4934:5300 */\n tag_214:\n /* \"#utility.yul\":5076:5079 */\n 0x00\n /* \"#utility.yul\":5097:5164 */\n tag_216\n /* \"#utility.yul\":5161:5163 */\n 0x25\n /* \"#utility.yul\":5156:5159 */\n dup4\n /* \"#utility.yul\":5097:5164 */\n tag_179\n jump\t// in\n tag_216:\n /* \"#utility.yul\":5090:5164 */\n swap2\n pop\n /* \"#utility.yul\":5173:5266 */\n tag_217\n /* \"#utility.yul\":5262:5265 */\n dup3\n /* \"#utility.yul\":5173:5266 */\n tag_218\n jump\t// in\n tag_217:\n /* \"#utility.yul\":5291:5293 */\n 0x40\n /* \"#utility.yul\":5286:5289 */\n dup3\n /* \"#utility.yul\":5282:5294 */\n add\n /* \"#utility.yul\":5275:5294 */\n swap1\n pop\n /* \"#utility.yul\":4934:5300 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5306:5424 */\n tag_219:\n /* \"#utility.yul\":5393:5417 */\n tag_221\n /* \"#utility.yul\":5411:5416 */\n dup2\n /* \"#utility.yul\":5393:5417 */\n tag_222\n jump\t// in\n tag_221:\n /* \"#utility.yul\":5388:5391 */\n dup3\n /* \"#utility.yul\":5381:5418 */\n mstore\n /* \"#utility.yul\":5306:5424 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5430:5542 */\n tag_223:\n /* \"#utility.yul\":5513:5535 */\n tag_225\n /* \"#utility.yul\":5529:5534 */\n dup2\n /* \"#utility.yul\":5513:5535 */\n tag_226\n jump\t// in\n tag_225:\n /* \"#utility.yul\":5508:5511 */\n dup3\n /* \"#utility.yul\":5501:5536 */\n mstore\n /* \"#utility.yul\":5430:5542 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5548:5758 */\n tag_24:\n /* \"#utility.yul\":5635:5639 */\n 0x00\n /* \"#utility.yul\":5673:5675 */\n 0x20\n /* \"#utility.yul\":5662:5671 */\n dup3\n /* \"#utility.yul\":5658:5676 */\n add\n /* \"#utility.yul\":5650:5676 */\n swap1\n pop\n /* \"#utility.yul\":5686:5751 */\n tag_228\n /* \"#utility.yul\":5748:5749 */\n 0x00\n /* \"#utility.yul\":5737:5746 */\n dup4\n /* \"#utility.yul\":5733:5750 */\n add\n /* \"#utility.yul\":5724:5730 */\n dup5\n /* \"#utility.yul\":5686:5751 */\n tag_170\n jump\t// in\n tag_228:\n /* \"#utility.yul\":5548:5758 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5764:6077 */\n tag_18:\n /* \"#utility.yul\":5877:5881 */\n 0x00\n /* \"#utility.yul\":5915:5917 */\n 0x20\n /* \"#utility.yul\":5904:5913 */\n dup3\n /* \"#utility.yul\":5900:5918 */\n add\n /* \"#utility.yul\":5892:5918 */\n swap1\n pop\n /* \"#utility.yul\":5964:5973 */\n dup2\n /* \"#utility.yul\":5958:5962 */\n dup2\n /* \"#utility.yul\":5954:5974 */\n sub\n /* \"#utility.yul\":5950:5951 */\n 0x00\n /* \"#utility.yul\":5939:5948 */\n dup4\n /* \"#utility.yul\":5935:5952 */\n add\n /* \"#utility.yul\":5928:5975 */\n mstore\n /* \"#utility.yul\":5992:6070 */\n tag_230\n /* \"#utility.yul\":6065:6069 */\n dup2\n /* \"#utility.yul\":6056:6062 */\n dup5\n /* \"#utility.yul\":5992:6070 */\n tag_174\n jump\t// in\n tag_230:\n /* \"#utility.yul\":5984:6070 */\n swap1\n pop\n /* \"#utility.yul\":5764:6077 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6083:6502 */\n tag_129:\n /* \"#utility.yul\":6249:6253 */\n 0x00\n /* \"#utility.yul\":6287:6289 */\n 0x20\n /* \"#utility.yul\":6276:6285 */\n dup3\n /* \"#utility.yul\":6272:6290 */\n add\n /* \"#utility.yul\":6264:6290 */\n swap1\n pop\n /* \"#utility.yul\":6336:6345 */\n dup2\n /* \"#utility.yul\":6330:6334 */\n dup2\n /* \"#utility.yul\":6326:6346 */\n sub\n /* \"#utility.yul\":6322:6323 */\n 0x00\n /* \"#utility.yul\":6311:6320 */\n dup4\n /* \"#utility.yul\":6307:6324 */\n add\n /* \"#utility.yul\":6300:6347 */\n mstore\n /* \"#utility.yul\":6364:6495 */\n tag_232\n /* \"#utility.yul\":6490:6494 */\n dup2\n /* \"#utility.yul\":6364:6495 */\n tag_184\n jump\t// in\n tag_232:\n /* \"#utility.yul\":6356:6495 */\n swap1\n pop\n /* \"#utility.yul\":6083:6502 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6508:6927 */\n tag_114:\n /* \"#utility.yul\":6674:6678 */\n 0x00\n /* \"#utility.yul\":6712:6714 */\n 0x20\n /* \"#utility.yul\":6701:6710 */\n dup3\n /* \"#utility.yul\":6697:6715 */\n add\n /* \"#utility.yul\":6689:6715 */\n swap1\n pop\n /* \"#utility.yul\":6761:6770 */\n dup2\n /* \"#utility.yul\":6755:6759 */\n dup2\n /* \"#utility.yul\":6751:6771 */\n sub\n /* \"#utility.yul\":6747:6748 */\n 0x00\n /* \"#utility.yul\":6736:6745 */\n dup4\n /* \"#utility.yul\":6732:6749 */\n add\n /* \"#utility.yul\":6725:6772 */\n mstore\n /* \"#utility.yul\":6789:6920 */\n tag_234\n /* \"#utility.yul\":6915:6919 */\n dup2\n /* \"#utility.yul\":6789:6920 */\n tag_189\n jump\t// in\n tag_234:\n /* \"#utility.yul\":6781:6920 */\n swap1\n pop\n /* \"#utility.yul\":6508:6927 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6933:7352 */\n tag_121:\n /* \"#utility.yul\":7099:7103 */\n 0x00\n /* \"#utility.yul\":7137:7139 */\n 0x20\n /* \"#utility.yul\":7126:7135 */\n dup3\n /* \"#utility.yul\":7122:7140 */\n add\n /* \"#utility.yul\":7114:7140 */\n swap1\n pop\n /* \"#utility.yul\":7186:7195 */\n dup2\n /* \"#utility.yul\":7180:7184 */\n dup2\n /* \"#utility.yul\":7176:7196 */\n sub\n /* \"#utility.yul\":7172:7173 */\n 0x00\n /* \"#utility.yul\":7161:7170 */\n dup4\n /* \"#utility.yul\":7157:7174 */\n add\n /* \"#utility.yul\":7150:7197 */\n mstore\n /* \"#utility.yul\":7214:7345 */\n tag_236\n /* \"#utility.yul\":7340:7344 */\n dup2\n /* \"#utility.yul\":7214:7345 */\n tag_194\n jump\t// in\n tag_236:\n /* \"#utility.yul\":7206:7345 */\n swap1\n pop\n /* \"#utility.yul\":6933:7352 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7358:7777 */\n tag_134:\n /* \"#utility.yul\":7524:7528 */\n 0x00\n /* \"#utility.yul\":7562:7564 */\n 0x20\n /* \"#utility.yul\":7551:7560 */\n dup3\n /* \"#utility.yul\":7547:7565 */\n add\n /* \"#utility.yul\":7539:7565 */\n swap1\n pop\n /* \"#utility.yul\":7611:7620 */\n dup2\n /* \"#utility.yul\":7605:7609 */\n dup2\n /* \"#utility.yul\":7601:7621 */\n sub\n /* \"#utility.yul\":7597:7598 */\n 0x00\n /* \"#utility.yul\":7586:7595 */\n dup4\n /* \"#utility.yul\":7582:7599 */\n add\n /* \"#utility.yul\":7575:7622 */\n mstore\n /* \"#utility.yul\":7639:7770 */\n tag_238\n /* \"#utility.yul\":7765:7769 */\n dup2\n /* \"#utility.yul\":7639:7770 */\n tag_199\n jump\t// in\n tag_238:\n /* \"#utility.yul\":7631:7770 */\n swap1\n pop\n /* \"#utility.yul\":7358:7777 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7783:8202 */\n tag_126:\n /* \"#utility.yul\":7949:7953 */\n 0x00\n /* \"#utility.yul\":7987:7989 */\n 0x20\n /* \"#utility.yul\":7976:7985 */\n dup3\n /* \"#utility.yul\":7972:7990 */\n add\n /* \"#utility.yul\":7964:7990 */\n swap1\n pop\n /* \"#utility.yul\":8036:8045 */\n dup2\n /* \"#utility.yul\":8030:8034 */\n dup2\n /* \"#utility.yul\":8026:8046 */\n sub\n /* \"#utility.yul\":8022:8023 */\n 0x00\n /* \"#utility.yul\":8011:8020 */\n dup4\n /* \"#utility.yul\":8007:8024 */\n add\n /* \"#utility.yul\":8000:8047 */\n mstore\n /* \"#utility.yul\":8064:8195 */\n tag_240\n /* \"#utility.yul\":8190:8194 */\n dup2\n /* \"#utility.yul\":8064:8195 */\n tag_204\n jump\t// in\n tag_240:\n /* \"#utility.yul\":8056:8195 */\n swap1\n pop\n /* \"#utility.yul\":7783:8202 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8208:8627 */\n tag_111:\n /* \"#utility.yul\":8374:8378 */\n 0x00\n /* \"#utility.yul\":8412:8414 */\n 0x20\n /* \"#utility.yul\":8401:8410 */\n dup3\n /* \"#utility.yul\":8397:8415 */\n add\n /* \"#utility.yul\":8389:8415 */\n swap1\n pop\n /* \"#utility.yul\":8461:8470 */\n dup2\n /* \"#utility.yul\":8455:8459 */\n dup2\n /* \"#utility.yul\":8451:8471 */\n sub\n /* \"#utility.yul\":8447:8448 */\n 0x00\n /* \"#utility.yul\":8436:8445 */\n dup4\n /* \"#utility.yul\":8432:8449 */\n add\n /* \"#utility.yul\":8425:8472 */\n mstore\n /* \"#utility.yul\":8489:8620 */\n tag_242\n /* \"#utility.yul\":8615:8619 */\n dup2\n /* \"#utility.yul\":8489:8620 */\n tag_209\n jump\t// in\n tag_242:\n /* \"#utility.yul\":8481:8620 */\n swap1\n pop\n /* \"#utility.yul\":8208:8627 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8633:9052 */\n tag_101:\n /* \"#utility.yul\":8799:8803 */\n 0x00\n /* \"#utility.yul\":8837:8839 */\n 0x20\n /* \"#utility.yul\":8826:8835 */\n dup3\n /* \"#utility.yul\":8822:8840 */\n add\n /* \"#utility.yul\":8814:8840 */\n swap1\n pop\n /* \"#utility.yul\":8886:8895 */\n dup2\n /* \"#utility.yul\":8880:8884 */\n dup2\n /* \"#utility.yul\":8876:8896 */\n sub\n /* \"#utility.yul\":8872:8873 */\n 0x00\n /* \"#utility.yul\":8861:8870 */\n dup4\n /* \"#utility.yul\":8857:8874 */\n add\n /* \"#utility.yul\":8850:8897 */\n mstore\n /* \"#utility.yul\":8914:9045 */\n tag_244\n /* \"#utility.yul\":9040:9044 */\n dup2\n /* \"#utility.yul\":8914:9045 */\n tag_214\n jump\t// in\n tag_244:\n /* \"#utility.yul\":8906:9045 */\n swap1\n pop\n /* \"#utility.yul\":8633:9052 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9058:9280 */\n tag_28:\n /* \"#utility.yul\":9151:9155 */\n 0x00\n /* \"#utility.yul\":9189:9191 */\n 0x20\n /* \"#utility.yul\":9178:9187 */\n dup3\n /* \"#utility.yul\":9174:9192 */\n add\n /* \"#utility.yul\":9166:9192 */\n swap1\n pop\n /* \"#utility.yul\":9202:9273 */\n tag_246\n /* \"#utility.yul\":9270:9271 */\n 0x00\n /* \"#utility.yul\":9259:9268 */\n dup4\n /* \"#utility.yul\":9255:9272 */\n add\n /* \"#utility.yul\":9246:9252 */\n dup5\n /* \"#utility.yul\":9202:9273 */\n tag_219\n jump\t// in\n tag_246:\n /* \"#utility.yul\":9058:9280 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9286:9500 */\n tag_37:\n /* \"#utility.yul\":9375:9379 */\n 0x00\n /* \"#utility.yul\":9413:9415 */\n 0x20\n /* \"#utility.yul\":9402:9411 */\n dup3\n /* \"#utility.yul\":9398:9416 */\n add\n /* \"#utility.yul\":9390:9416 */\n swap1\n pop\n /* \"#utility.yul\":9426:9493 */\n tag_248\n /* \"#utility.yul\":9490:9491 */\n 0x00\n /* \"#utility.yul\":9479:9488 */\n dup4\n /* \"#utility.yul\":9475:9492 */\n add\n /* \"#utility.yul\":9466:9472 */\n dup5\n /* \"#utility.yul\":9426:9493 */\n tag_223\n jump\t// in\n tag_248:\n /* \"#utility.yul\":9286:9500 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9587:9686 */\n tag_177:\n /* \"#utility.yul\":9639:9645 */\n 0x00\n /* \"#utility.yul\":9673:9678 */\n dup2\n /* \"#utility.yul\":9667:9679 */\n mload\n /* \"#utility.yul\":9657:9679 */\n swap1\n pop\n /* \"#utility.yul\":9587:9686 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9692:9861 */\n tag_179:\n /* \"#utility.yul\":9776:9787 */\n 0x00\n /* \"#utility.yul\":9810:9816 */\n dup3\n /* \"#utility.yul\":9805:9808 */\n dup3\n /* \"#utility.yul\":9798:9817 */\n mstore\n /* \"#utility.yul\":9850:9854 */\n 0x20\n /* \"#utility.yul\":9845:9848 */\n dup3\n /* \"#utility.yul\":9841:9855 */\n add\n /* \"#utility.yul\":9826:9855 */\n swap1\n pop\n /* \"#utility.yul\":9692:9861 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9867:10172 */\n tag_88:\n /* \"#utility.yul\":9907:9910 */\n 0x00\n /* \"#utility.yul\":9926:9946 */\n tag_254\n /* \"#utility.yul\":9944:9945 */\n dup3\n /* \"#utility.yul\":9926:9946 */\n tag_222\n jump\t// in\n tag_254:\n /* \"#utility.yul\":9921:9946 */\n swap2\n pop\n /* \"#utility.yul\":9960:9980 */\n tag_255\n /* \"#utility.yul\":9978:9979 */\n dup4\n /* \"#utility.yul\":9960:9980 */\n tag_222\n jump\t// in\n tag_255:\n /* \"#utility.yul\":9955:9980 */\n swap3\n pop\n /* \"#utility.yul\":10114:10115 */\n dup3\n /* \"#utility.yul\":10046:10112 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":10042:10116 */\n sub\n /* \"#utility.yul\":10039:10040 */\n dup3\n /* \"#utility.yul\":10036:10117 */\n gt\n /* \"#utility.yul\":10033:10140 */\n iszero\n tag_256\n jumpi\n /* \"#utility.yul\":10120:10138 */\n tag_257\n tag_258\n jump\t// in\n tag_257:\n /* \"#utility.yul\":10033:10140 */\n tag_256:\n /* \"#utility.yul\":10164:10165 */\n dup3\n /* \"#utility.yul\":10161:10162 */\n dup3\n /* \"#utility.yul\":10157:10166 */\n add\n /* \"#utility.yul\":10150:10166 */\n swap1\n pop\n /* \"#utility.yul\":9867:10172 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":10178:10274 */\n tag_259:\n /* \"#utility.yul\":10215:10222 */\n 0x00\n /* \"#utility.yul\":10244:10268 */\n tag_261\n /* \"#utility.yul\":10262:10267 */\n dup3\n /* \"#utility.yul\":10244:10268 */\n tag_262\n jump\t// in\n tag_261:\n /* \"#utility.yul\":10233:10268 */\n swap1\n pop\n /* \"#utility.yul\":10178:10274 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10280:10370 */\n tag_173:\n /* \"#utility.yul\":10314:10321 */\n 0x00\n /* \"#utility.yul\":10357:10362 */\n dup2\n /* \"#utility.yul\":10350:10363 */\n iszero\n /* \"#utility.yul\":10343:10364 */\n iszero\n /* \"#utility.yul\":10332:10364 */\n swap1\n pop\n /* \"#utility.yul\":10280:10370 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10376:10502 */\n tag_262:\n /* \"#utility.yul\":10413:10420 */\n 0x00\n /* \"#utility.yul\":10453:10495 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":10446:10451 */\n dup3\n /* \"#utility.yul\":10442:10496 */\n and\n /* \"#utility.yul\":10431:10496 */\n swap1\n pop\n /* \"#utility.yul\":10376:10502 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10508:10585 */\n tag_222:\n /* \"#utility.yul\":10545:10552 */\n 0x00\n /* \"#utility.yul\":10574:10579 */\n dup2\n /* \"#utility.yul\":10563:10579 */\n swap1\n pop\n /* \"#utility.yul\":10508:10585 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10591:10677 */\n tag_226:\n /* \"#utility.yul\":10626:10633 */\n 0x00\n /* \"#utility.yul\":10666:10670 */\n 0xff\n /* \"#utility.yul\":10659:10664 */\n dup3\n /* \"#utility.yul\":10655:10671 */\n and\n /* \"#utility.yul\":10644:10671 */\n swap1\n pop\n /* \"#utility.yul\":10591:10677 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10683:10990 */\n tag_181:\n /* \"#utility.yul\":10751:10752 */\n 0x00\n /* \"#utility.yul\":10761:10874 */\n tag_268:\n /* \"#utility.yul\":10775:10781 */\n dup4\n /* \"#utility.yul\":10772:10773 */\n dup2\n /* \"#utility.yul\":10769:10782 */\n lt\n /* \"#utility.yul\":10761:10874 */\n iszero\n tag_270\n jumpi\n /* \"#utility.yul\":10860:10861 */\n dup1\n /* \"#utility.yul\":10855:10858 */\n dup3\n /* \"#utility.yul\":10851:10862 */\n add\n /* \"#utility.yul\":10845:10863 */\n mload\n /* \"#utility.yul\":10841:10842 */\n dup2\n /* \"#utility.yul\":10836:10839 */\n dup5\n /* \"#utility.yul\":10832:10843 */\n add\n /* \"#utility.yul\":10825:10864 */\n mstore\n /* \"#utility.yul\":10797:10799 */\n 0x20\n /* \"#utility.yul\":10794:10795 */\n dup2\n /* \"#utility.yul\":10790:10800 */\n add\n /* \"#utility.yul\":10785:10800 */\n swap1\n pop\n /* \"#utility.yul\":10761:10874 */\n jump(tag_268)\n tag_270:\n /* \"#utility.yul\":10892:10898 */\n dup4\n /* \"#utility.yul\":10889:10890 */\n dup2\n /* \"#utility.yul\":10886:10899 */\n gt\n /* \"#utility.yul\":10883:10984 */\n iszero\n tag_271\n jumpi\n /* \"#utility.yul\":10972:10973 */\n 0x00\n /* \"#utility.yul\":10963:10969 */\n dup5\n /* \"#utility.yul\":10958:10961 */\n dup5\n /* \"#utility.yul\":10954:10970 */\n add\n /* \"#utility.yul\":10947:10974 */\n mstore\n /* \"#utility.yul\":10883:10984 */\n tag_271:\n /* \"#utility.yul\":10732:10990 */\n pop\n /* \"#utility.yul\":10683:10990 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":10996:11316 */\n tag_65:\n /* \"#utility.yul\":11040:11046 */\n 0x00\n /* \"#utility.yul\":11077:11078 */\n 0x02\n /* \"#utility.yul\":11071:11075 */\n dup3\n /* \"#utility.yul\":11067:11079 */\n div\n /* \"#utility.yul\":11057:11079 */\n swap1\n pop\n /* \"#utility.yul\":11124:11125 */\n 0x01\n /* \"#utility.yul\":11118:11122 */\n dup3\n /* \"#utility.yul\":11114:11126 */\n and\n /* \"#utility.yul\":11145:11163 */\n dup1\n /* \"#utility.yul\":11135:11216 */\n tag_273\n jumpi\n /* \"#utility.yul\":11201:11205 */\n 0x7f\n /* \"#utility.yul\":11193:11199 */\n dup3\n /* \"#utility.yul\":11189:11206 */\n and\n /* \"#utility.yul\":11179:11206 */\n swap2\n pop\n /* \"#utility.yul\":11135:11216 */\n tag_273:\n /* \"#utility.yul\":11263:11265 */\n 0x20\n /* \"#utility.yul\":11255:11261 */\n dup3\n /* \"#utility.yul\":11252:11266 */\n lt\n /* \"#utility.yul\":11232:11250 */\n dup2\n /* \"#utility.yul\":11229:11267 */\n eq\n /* \"#utility.yul\":11226:11310 */\n iszero\n tag_274\n jumpi\n /* \"#utility.yul\":11282:11300 */\n tag_275\n tag_276\n jump\t// in\n tag_275:\n /* \"#utility.yul\":11226:11310 */\n tag_274:\n /* \"#utility.yul\":11047:11316 */\n pop\n /* \"#utility.yul\":10996:11316 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11322:11502 */\n tag_258:\n /* \"#utility.yul\":11370:11447 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":11367:11368 */\n 0x00\n /* \"#utility.yul\":11360:11448 */\n mstore\n /* \"#utility.yul\":11467:11471 */\n 0x11\n /* \"#utility.yul\":11464:11465 */\n 0x04\n /* \"#utility.yul\":11457:11472 */\n mstore\n /* \"#utility.yul\":11491:11495 */\n 0x24\n /* \"#utility.yul\":11488:11489 */\n 0x00\n /* \"#utility.yul\":11481:11496 */\n revert\n /* \"#utility.yul\":11508:11688 */\n tag_276:\n /* \"#utility.yul\":11556:11633 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":11553:11554 */\n 0x00\n /* \"#utility.yul\":11546:11634 */\n mstore\n /* \"#utility.yul\":11653:11657 */\n 0x22\n /* \"#utility.yul\":11650:11651 */\n 0x04\n /* \"#utility.yul\":11643:11658 */\n mstore\n /* \"#utility.yul\":11677:11681 */\n 0x24\n /* \"#utility.yul\":11674:11675 */\n 0x00\n /* \"#utility.yul\":11667:11682 */\n revert\n /* \"#utility.yul\":11817:11934 */\n tag_152:\n /* \"#utility.yul\":11926:11927 */\n 0x00\n /* \"#utility.yul\":11923:11924 */\n dup1\n /* \"#utility.yul\":11916:11928 */\n revert\n /* \"#utility.yul\":11940:12042 */\n tag_183:\n /* \"#utility.yul\":11981:11987 */\n 0x00\n /* \"#utility.yul\":12032:12034 */\n 0x1f\n /* \"#utility.yul\":12028:12035 */\n not\n /* \"#utility.yul\":12023:12025 */\n 0x1f\n /* \"#utility.yul\":12016:12021 */\n dup4\n /* \"#utility.yul\":12012:12026 */\n add\n /* \"#utility.yul\":12008:12036 */\n and\n /* \"#utility.yul\":11998:12036 */\n swap1\n pop\n /* \"#utility.yul\":11940:12042 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12048:12270 */\n tag_188:\n /* \"#utility.yul\":12188:12222 */\n 0x45524332303a207472616e7366657220746f20746865207a65726f2061646472\n /* \"#utility.yul\":12184:12185 */\n 0x00\n /* \"#utility.yul\":12176:12182 */\n dup3\n /* \"#utility.yul\":12172:12186 */\n add\n /* \"#utility.yul\":12165:12223 */\n mstore\n /* \"#utility.yul\":12257:12262 */\n 0x6573730000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":12252:12254 */\n 0x20\n /* \"#utility.yul\":12244:12250 */\n dup3\n /* \"#utility.yul\":12240:12255 */\n add\n /* \"#utility.yul\":12233:12263 */\n mstore\n /* \"#utility.yul\":12048:12270 */\n pop\n jump\t// out\n /* \"#utility.yul\":12276:12497 */\n tag_193:\n /* \"#utility.yul\":12416:12450 */\n 0x45524332303a20617070726f766520746f20746865207a65726f206164647265\n /* \"#utility.yul\":12412:12413 */\n 0x00\n /* \"#utility.yul\":12404:12410 */\n dup3\n /* \"#utility.yul\":12400:12414 */\n add\n /* \"#utility.yul\":12393:12451 */\n mstore\n /* \"#utility.yul\":12485:12489 */\n 0x7373000000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":12480:12482 */\n 0x20\n /* \"#utility.yul\":12472:12478 */\n dup3\n /* \"#utility.yul\":12468:12483 */\n add\n /* \"#utility.yul\":12461:12490 */\n mstore\n /* \"#utility.yul\":12276:12497 */\n pop\n jump\t// out\n /* \"#utility.yul\":12503:12682 */\n tag_198:\n /* \"#utility.yul\":12643:12674 */\n 0x45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000\n /* \"#utility.yul\":12639:12640 */\n 0x00\n /* \"#utility.yul\":12631:12637 */\n dup3\n /* \"#utility.yul\":12627:12641 */\n add\n /* \"#utility.yul\":12620:12675 */\n mstore\n /* \"#utility.yul\":12503:12682 */\n pop\n jump\t// out\n /* \"#utility.yul\":12688:12913 */\n tag_203:\n /* \"#utility.yul\":12828:12862 */\n 0x45524332303a207472616e7366657220616d6f756e7420657863656564732062\n /* \"#utility.yul\":12824:12825 */\n 0x00\n /* \"#utility.yul\":12816:12822 */\n dup3\n /* \"#utility.yul\":12812:12826 */\n add\n /* \"#utility.yul\":12805:12863 */\n mstore\n /* \"#utility.yul\":12897:12905 */\n 0x616c616e63650000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":12892:12894 */\n 0x20\n /* \"#utility.yul\":12884:12890 */\n dup3\n /* \"#utility.yul\":12880:12895 */\n add\n /* \"#utility.yul\":12873:12906 */\n mstore\n /* \"#utility.yul\":12688:12913 */\n pop\n jump\t// out\n /* \"#utility.yul\":12919:13143 */\n tag_208:\n /* \"#utility.yul\":13059:13093 */\n 0x45524332303a207472616e736665722066726f6d20746865207a65726f206164\n /* \"#utility.yul\":13055:13056 */\n 0x00\n /* \"#utility.yul\":13047:13053 */\n dup3\n /* \"#utility.yul\":13043:13057 */\n add\n /* \"#utility.yul\":13036:13094 */\n mstore\n /* \"#utility.yul\":13128:13135 */\n 0x6472657373000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":13123:13125 */\n 0x20\n /* \"#utility.yul\":13115:13121 */\n dup3\n /* \"#utility.yul\":13111:13126 */\n add\n /* \"#utility.yul\":13104:13136 */\n mstore\n /* \"#utility.yul\":12919:13143 */\n pop\n jump\t// out\n /* \"#utility.yul\":13149:13372 */\n tag_213:\n /* \"#utility.yul\":13289:13323 */\n 0x45524332303a20617070726f76652066726f6d20746865207a65726f20616464\n /* \"#utility.yul\":13285:13286 */\n 0x00\n /* \"#utility.yul\":13277:13283 */\n dup3\n /* \"#utility.yul\":13273:13287 */\n add\n /* \"#utility.yul\":13266:13324 */\n mstore\n /* \"#utility.yul\":13358:13364 */\n 0x7265737300000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":13353:13355 */\n 0x20\n /* \"#utility.yul\":13345:13351 */\n dup3\n /* \"#utility.yul\":13341:13356 */\n add\n /* \"#utility.yul\":13334:13365 */\n mstore\n /* \"#utility.yul\":13149:13372 */\n pop\n jump\t// out\n /* \"#utility.yul\":13378:13602 */\n tag_218:\n /* \"#utility.yul\":13518:13552 */\n 0x45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77\n /* \"#utility.yul\":13514:13515 */\n 0x00\n /* \"#utility.yul\":13506:13512 */\n dup3\n /* \"#utility.yul\":13502:13516 */\n add\n /* \"#utility.yul\":13495:13553 */\n mstore\n /* \"#utility.yul\":13587:13594 */\n 0x207a65726f000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":13582:13584 */\n 0x20\n /* \"#utility.yul\":13574:13580 */\n dup3\n /* \"#utility.yul\":13570:13585 */\n add\n /* \"#utility.yul\":13563:13595 */\n mstore\n /* \"#utility.yul\":13378:13602 */\n pop\n jump\t// out\n /* \"#utility.yul\":13608:13730 */\n tag_144:\n /* \"#utility.yul\":13681:13705 */\n tag_291\n /* \"#utility.yul\":13699:13704 */\n dup2\n /* \"#utility.yul\":13681:13705 */\n tag_259\n jump\t// in\n tag_291:\n /* \"#utility.yul\":13674:13679 */\n dup2\n /* \"#utility.yul\":13671:13706 */\n eq\n /* \"#utility.yul\":13661:13724 */\n tag_292\n jumpi\n /* \"#utility.yul\":13720:13721 */\n 0x00\n /* \"#utility.yul\":13717:13718 */\n dup1\n /* \"#utility.yul\":13710:13722 */\n revert\n /* \"#utility.yul\":13661:13724 */\n tag_292:\n /* \"#utility.yul\":13608:13730 */\n pop\n jump\t// out\n /* \"#utility.yul\":13736:13858 */\n tag_148:\n /* \"#utility.yul\":13809:13833 */\n tag_294\n /* \"#utility.yul\":13827:13832 */\n dup2\n /* \"#utility.yul\":13809:13833 */\n tag_222\n jump\t// in\n tag_294:\n /* \"#utility.yul\":13802:13807 */\n dup2\n /* \"#utility.yul\":13799:13834 */\n eq\n /* \"#utility.yul\":13789:13852 */\n tag_295\n jumpi\n /* \"#utility.yul\":13848:13849 */\n 0x00\n /* \"#utility.yul\":13845:13846 */\n dup1\n /* \"#utility.yul\":13838:13850 */\n revert\n /* \"#utility.yul\":13789:13852 */\n tag_295:\n /* \"#utility.yul\":13736:13858 */\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220c8ac3c9b8908b1ba2a54b4e924062657d1e16e9062677b12ecce6589d98bfe4264736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {
"@_44": {
"entryPoint": null,
"id": 44,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 289,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 364,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 415,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"allocate_memory": {
"entryPoint": 548,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 579,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 589,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 643,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 697,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 751,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 805,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 852,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 899,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 904,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 909,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 914,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 919,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4093:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "102:326:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "112:75:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "179:6:5"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "137:41:5"
},
"nodeType": "YulFunctionCall",
"src": "137:49:5"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "121:15:5"
},
"nodeType": "YulFunctionCall",
"src": "121:66:5"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "112:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "203:5:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "210:6:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "196:6:5"
},
"nodeType": "YulFunctionCall",
"src": "196:21:5"
},
"nodeType": "YulExpressionStatement",
"src": "196:21:5"
},
{
"nodeType": "YulVariableDeclaration",
"src": "226:27:5",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "241:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "248:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "237:3:5"
},
"nodeType": "YulFunctionCall",
"src": "237:16:5"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "230:3:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "291:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "293:77:5"
},
"nodeType": "YulFunctionCall",
"src": "293:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "293:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "272:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "277:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "268:3:5"
},
"nodeType": "YulFunctionCall",
"src": "268:16:5"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "286:3:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "265:2:5"
},
"nodeType": "YulFunctionCall",
"src": "265:25:5"
},
"nodeType": "YulIf",
"src": "262:112:5"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "405:3:5"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "410:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "415:6:5"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "383:21:5"
},
"nodeType": "YulFunctionCall",
"src": "383:39:5"
},
"nodeType": "YulExpressionStatement",
"src": "383:39:5"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "75:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "80:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "88:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "96:5:5",
"type": ""
}
],
"src": "7:421:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "521:282:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "570:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "572:77:5"
},
"nodeType": "YulFunctionCall",
"src": "572:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "572:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "549:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "557:4:5",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "545:3:5"
},
"nodeType": "YulFunctionCall",
"src": "545:17:5"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "564:3:5"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "541:3:5"
},
"nodeType": "YulFunctionCall",
"src": "541:27:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "534:6:5"
},
"nodeType": "YulFunctionCall",
"src": "534:35:5"
},
"nodeType": "YulIf",
"src": "531:122:5"
},
{
"nodeType": "YulVariableDeclaration",
"src": "662:27:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "682:6:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "676:5:5"
},
"nodeType": "YulFunctionCall",
"src": "676:13:5"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "666:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "698:99:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "770:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "778:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "766:3:5"
},
"nodeType": "YulFunctionCall",
"src": "766:17:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "785:6:5"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "793:3:5"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "707:58:5"
},
"nodeType": "YulFunctionCall",
"src": "707:90:5"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "698:5:5"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "499:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "507:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "515:5:5",
"type": ""
}
],
"src": "448:355:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "923:739:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "969:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "971:77:5"
},
"nodeType": "YulFunctionCall",
"src": "971:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "971:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "944:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "953:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "940:3:5"
},
"nodeType": "YulFunctionCall",
"src": "940:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "965:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "936:3:5"
},
"nodeType": "YulFunctionCall",
"src": "936:32:5"
},
"nodeType": "YulIf",
"src": "933:119:5"
},
{
"nodeType": "YulBlock",
"src": "1062:291:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1077:38:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1101:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1112:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1097:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1097:17:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1091:5:5"
},
"nodeType": "YulFunctionCall",
"src": "1091:24:5"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1081:6:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1162:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1164:77:5"
},
"nodeType": "YulFunctionCall",
"src": "1164:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "1164:79:5"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1134:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1142:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1131:2:5"
},
"nodeType": "YulFunctionCall",
"src": "1131:30:5"
},
"nodeType": "YulIf",
"src": "1128:117:5"
},
{
"nodeType": "YulAssignment",
"src": "1259:84:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1315:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1326:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1311:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1311:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1335:7:5"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1269:41:5"
},
"nodeType": "YulFunctionCall",
"src": "1269:74:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1259:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1363:292:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1378:39:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1402:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1413:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1398:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1398:18:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1392:5:5"
},
"nodeType": "YulFunctionCall",
"src": "1392:25:5"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1382:6:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1464:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1466:77:5"
},
"nodeType": "YulFunctionCall",
"src": "1466:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "1466:79:5"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1436:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1444:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1433:2:5"
},
"nodeType": "YulFunctionCall",
"src": "1433:30:5"
},
"nodeType": "YulIf",
"src": "1430:117:5"
},
{
"nodeType": "YulAssignment",
"src": "1561:84:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1617:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1628:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1613:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1613:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1637:7:5"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1571:41:5"
},
"nodeType": "YulFunctionCall",
"src": "1571:74:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1561:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "885:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "896:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "908:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "916:6:5",
"type": ""
}
],
"src": "809:853:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1709:88:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1719:30:5",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1729:18:5"
},
"nodeType": "YulFunctionCall",
"src": "1729:20:5"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1719:6:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1778:6:5"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1786:4:5"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1758:19:5"
},
"nodeType": "YulFunctionCall",
"src": "1758:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "1758:33:5"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1693:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1702:6:5",
"type": ""
}
],
"src": "1668:129:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1843:35:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1853:19:5",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1869:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1863:5:5"
},
"nodeType": "YulFunctionCall",
"src": "1863:9:5"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1853:6:5"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1836:6:5",
"type": ""
}
],
"src": "1803:75:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1951:241:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2056:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2058:16:5"
},
"nodeType": "YulFunctionCall",
"src": "2058:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "2058:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2028:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2036:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2025:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2025:30:5"
},
"nodeType": "YulIf",
"src": "2022:56:5"
},
{
"nodeType": "YulAssignment",
"src": "2088:37:5",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2118:6:5"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2096:21:5"
},
"nodeType": "YulFunctionCall",
"src": "2096:29:5"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2088:4:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2162:23:5",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2174:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2180:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2170:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2170:15:5"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2162:4:5"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1935:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1946:4:5",
"type": ""
}
],
"src": "1884:308:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2247:258:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2257:10:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2266:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "2261:1:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2326:63:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2351:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2356:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2347:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2347:11:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2370:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2375:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2366:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2366:11:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2360:5:5"
},
"nodeType": "YulFunctionCall",
"src": "2360:18:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2340:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2340:39:5"
},
"nodeType": "YulExpressionStatement",
"src": "2340:39:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2287:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2290:6:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2284:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2284:13:5"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2298:19:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2300:15:5",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2309:1:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2312:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2305:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2305:10:5"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2300:1:5"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2280:3:5",
"statements": []
},
"src": "2276:113:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2423:76:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2473:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2478:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2469:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2469:16:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2487:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2462:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2462:27:5"
},
"nodeType": "YulExpressionStatement",
"src": "2462:27:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2404:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2407:6:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2401:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2401:13:5"
},
"nodeType": "YulIf",
"src": "2398:101:5"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2229:3:5",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2234:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2239:6:5",
"type": ""
}
],
"src": "2198:307:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2562:269:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2572:22:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2586:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2592:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2582:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2582:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2572:6:5"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2603:38:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2633:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2639:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2629:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2629:12:5"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "2607:18:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2680:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2694:27:5",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2708:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2716:4:5",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2704:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2704:17:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2694:6:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2660:18:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2653:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2653:26:5"
},
"nodeType": "YulIf",
"src": "2650:81:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2783:42:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "2797:16:5"
},
"nodeType": "YulFunctionCall",
"src": "2797:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "2797:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2747:18:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2770:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2778:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2767:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2767:14:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2744:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2744:38:5"
},
"nodeType": "YulIf",
"src": "2741:84:5"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2546:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2555:6:5",
"type": ""
}
],
"src": "2511:320:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2880:238:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2890:58:5",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2912:6:5"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2942:4:5"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2920:21:5"
},
"nodeType": "YulFunctionCall",
"src": "2920:27:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2908:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2908:40:5"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "2894:10:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3059:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3061:16:5"
},
"nodeType": "YulFunctionCall",
"src": "3061:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "3061:18:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3002:10:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3014:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2999:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2999:34:5"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3038:10:5"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3050:6:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3035:2:5"
},
"nodeType": "YulFunctionCall",
"src": "3035:22:5"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "2996:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2996:62:5"
},
"nodeType": "YulIf",
"src": "2993:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3097:2:5",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3101:10:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3090:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3090:22:5"
},
"nodeType": "YulExpressionStatement",
"src": "3090:22:5"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2866:6:5",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2874:4:5",
"type": ""
}
],
"src": "2837:281:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3152:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3169:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3172:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3162:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3162:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "3162:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3266:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3269:4:5",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3259:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3259:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "3259:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3290:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3293:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3283:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3283:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "3283:15:5"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "3124:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3338:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3355:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3358:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3348:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3348:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "3348:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3452:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3455:4:5",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3445:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3445:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "3445:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3476:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3479:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3469:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3469:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "3469:15:5"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "3310:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3585:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3602:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3605:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3595:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3595:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "3595:12:5"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "3496:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3708:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3725:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3728:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3718:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3718:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "3718:12:5"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "3619:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3831:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3848:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3851:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3841:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3841:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "3841:12:5"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "3742:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3954:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3971:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3974:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3964:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3964:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "3964:12:5"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "3865:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4036:54:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4046:38:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4064:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4071:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4060:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4060:14:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4080:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4076:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4076:7:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4056:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4056:28:5"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "4046:6:5"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4019:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "4029:6:5",
"type": ""
}
],
"src": "3988:102:5"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_memory_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n}\n",
"id": 5,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b50604051620016173803806200161783398181016040528101906200003791906200019f565b81600390805190602001906200004f92919062000071565b5080600490805190602001906200006892919062000071565b505050620003a8565b8280546200007f90620002b9565b90600052602060002090601f016020900481019282620000a35760008555620000ef565b82601f10620000be57805160ff1916838001178555620000ef565b82800160010185558215620000ef579182015b82811115620000ee578251825591602001919060010190620000d1565b5b509050620000fe919062000102565b5090565b5b808211156200011d57600081600090555060010162000103565b5090565b60006200013862000132846200024d565b62000224565b90508281526020810184848401111562000157576200015662000388565b5b6200016484828562000283565b509392505050565b600082601f83011262000184576200018362000383565b5b81516200019684826020860162000121565b91505092915050565b60008060408385031215620001b957620001b862000392565b5b600083015167ffffffffffffffff811115620001da57620001d96200038d565b5b620001e8858286016200016c565b925050602083015167ffffffffffffffff8111156200020c576200020b6200038d565b5b6200021a858286016200016c565b9150509250929050565b60006200023062000243565b90506200023e8282620002ef565b919050565b6000604051905090565b600067ffffffffffffffff8211156200026b576200026a62000354565b5b620002768262000397565b9050602081019050919050565b60005b83811015620002a357808201518184015260208101905062000286565b83811115620002b3576000848401525b50505050565b60006002820490506001821680620002d257607f821691505b60208210811415620002e957620002e862000325565b5b50919050565b620002fa8262000397565b810181811067ffffffffffffffff821117156200031c576200031b62000354565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61125f80620003b86000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610d20565b60405180910390f35b6100e660048036038101906100e19190610b6a565b610308565b6040516100f39190610d05565b60405180910390f35b61010461032b565b6040516101119190610e22565b60405180910390f35b610134600480360381019061012f9190610b17565b610335565b6040516101419190610d05565b60405180910390f35b610152610364565b60405161015f9190610e3d565b60405180910390f35b610182600480360381019061017d9190610b6a565b61036d565b60405161018f9190610d05565b60405180910390f35b6101b260048036038101906101ad9190610aaa565b6103a4565b6040516101bf9190610e22565b60405180910390f35b6101d06103ec565b6040516101dd9190610d20565b60405180910390f35b61020060048036038101906101fb9190610b6a565b61047e565b60405161020d9190610d05565b60405180910390f35b610230600480360381019061022b9190610b6a565b6104f5565b60405161023d9190610d05565b60405180910390f35b610260600480360381019061025b9190610ad7565b610518565b60405161026d9190610e22565b60405180910390f35b60606003805461028590610f52565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610f52565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610772565b6103588585856107fe565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b6103949190610e74565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb90610f52565b80601f016020809104026020016040519081016040528092919081815260200182805461042790610f52565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610e02565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fe565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e90610de2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e90610d62565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107659190610e22565b60405180910390a3505050565b600061077e8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f857818110156107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190610d82565b60405180910390fd5b6107f784848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086590610dc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590610d42565b60405180910390fd5b6108e9838383610a76565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690610da2565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a5d9190610e22565b60405180910390a3610a70848484610a7b565b50505050565b505050565b505050565b600081359050610a8f816111fb565b92915050565b600081359050610aa481611212565b92915050565b600060208284031215610ac057610abf610fe2565b5b6000610ace84828501610a80565b91505092915050565b60008060408385031215610aee57610aed610fe2565b5b6000610afc85828601610a80565b9250506020610b0d85828601610a80565b9150509250929050565b600080600060608486031215610b3057610b2f610fe2565b5b6000610b3e86828701610a80565b9350506020610b4f86828701610a80565b9250506040610b6086828701610a95565b9150509250925092565b60008060408385031215610b8157610b80610fe2565b5b6000610b8f85828601610a80565b9250506020610ba085828601610a95565b9150509250929050565b610bb381610edc565b82525050565b6000610bc482610e58565b610bce8185610e63565b9350610bde818560208601610f1f565b610be781610fe7565b840191505092915050565b6000610bff602383610e63565b9150610c0a82610ff8565b604082019050919050565b6000610c22602283610e63565b9150610c2d82611047565b604082019050919050565b6000610c45601d83610e63565b9150610c5082611096565b602082019050919050565b6000610c68602683610e63565b9150610c73826110bf565b604082019050919050565b6000610c8b602583610e63565b9150610c968261110e565b604082019050919050565b6000610cae602483610e63565b9150610cb98261115d565b604082019050919050565b6000610cd1602583610e63565b9150610cdc826111ac565b604082019050919050565b610cf081610f08565b82525050565b610cff81610f12565b82525050565b6000602082019050610d1a6000830184610baa565b92915050565b60006020820190508181036000830152610d3a8184610bb9565b905092915050565b60006020820190508181036000830152610d5b81610bf2565b9050919050565b60006020820190508181036000830152610d7b81610c15565b9050919050565b60006020820190508181036000830152610d9b81610c38565b9050919050565b60006020820190508181036000830152610dbb81610c5b565b9050919050565b60006020820190508181036000830152610ddb81610c7e565b9050919050565b60006020820190508181036000830152610dfb81610ca1565b9050919050565b60006020820190508181036000830152610e1b81610cc4565b9050919050565b6000602082019050610e376000830184610ce7565b92915050565b6000602082019050610e526000830184610cf6565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610e7f82610f08565b9150610e8a83610f08565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610ebf57610ebe610f84565b5b828201905092915050565b6000610ed582610ee8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015610f3d578082015181840152602081019050610f22565b83811115610f4c576000848401525b50505050565b60006002820490506001821680610f6a57607f821691505b60208210811415610f7e57610f7d610fb3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61120481610eca565b811461120f57600080fd5b50565b61121b81610f08565b811461122657600080fd5b5056fea2646970667358221220c8ac3c9b8908b1ba2a54b4e924062657d1e16e9062677b12ecce6589d98bfe4264736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x1617 CODESIZE SUB DUP1 PUSH3 0x1617 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x19F JUMP JUMPDEST DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x4F SWAP3 SWAP2 SWAP1 PUSH3 0x71 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x68 SWAP3 SWAP2 SWAP1 PUSH3 0x71 JUMP JUMPDEST POP POP POP PUSH3 0x3A8 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x7F SWAP1 PUSH3 0x2B9 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xA3 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xEF JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xBE JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xEF JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xEF JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xEE JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xD1 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0xFE SWAP2 SWAP1 PUSH3 0x102 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x11D JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x103 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x138 PUSH3 0x132 DUP5 PUSH3 0x24D JUMP JUMPDEST PUSH3 0x224 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x157 JUMPI PUSH3 0x156 PUSH3 0x388 JUMP JUMPDEST JUMPDEST PUSH3 0x164 DUP5 DUP3 DUP6 PUSH3 0x283 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x184 JUMPI PUSH3 0x183 PUSH3 0x383 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x196 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x121 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1B9 JUMPI PUSH3 0x1B8 PUSH3 0x392 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x1DA JUMPI PUSH3 0x1D9 PUSH3 0x38D JUMP JUMPDEST JUMPDEST PUSH3 0x1E8 DUP6 DUP3 DUP7 ADD PUSH3 0x16C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x20C JUMPI PUSH3 0x20B PUSH3 0x38D JUMP JUMPDEST JUMPDEST PUSH3 0x21A DUP6 DUP3 DUP7 ADD PUSH3 0x16C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x230 PUSH3 0x243 JUMP JUMPDEST SWAP1 POP PUSH3 0x23E DUP3 DUP3 PUSH3 0x2EF JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x26B JUMPI PUSH3 0x26A PUSH3 0x354 JUMP JUMPDEST JUMPDEST PUSH3 0x276 DUP3 PUSH3 0x397 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x2A3 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x286 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x2B3 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 PUSH3 0x2D2 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x2E9 JUMPI PUSH3 0x2E8 PUSH3 0x325 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x2FA DUP3 PUSH3 0x397 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x31C JUMPI PUSH3 0x31B PUSH3 0x354 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP 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 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x125F DUP1 PUSH3 0x3B8 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 0xD20 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 0xB6A JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xD05 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x32B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0xE22 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 0xB17 JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xD05 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x152 PUSH2 0x364 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xE3D 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 0xB6A JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xD05 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 0xAAA JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xE22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D0 PUSH2 0x3EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP2 SWAP1 PUSH2 0xD20 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 0xB6A JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xD05 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 0xB6A JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xD05 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 0xAD7 JUMP JUMPDEST PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xE22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0xF52 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 0xF52 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 DUP1 PUSH2 0x313 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x320 DUP2 DUP6 DUP6 PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x340 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x34D DUP6 DUP3 DUP6 PUSH2 0x772 JUMP JUMPDEST PUSH2 0x358 DUP6 DUP6 DUP6 PUSH2 0x7FE 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 DUP1 PUSH2 0x378 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x399 DUP2 DUP6 DUP6 PUSH2 0x38A DUP6 DUP10 PUSH2 0x518 JUMP JUMPDEST PUSH2 0x394 SWAP2 SWAP1 PUSH2 0xE74 JUMP JUMPDEST PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP 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 0x3FB SWAP1 PUSH2 0xF52 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 0x427 SWAP1 PUSH2 0xF52 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x474 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x449 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x474 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 0x457 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x489 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x497 DUP3 DUP7 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0xE02 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E9 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x500 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x50D DUP2 DUP6 DUP6 PUSH2 0x7FE JUMP JUMPDEST PUSH1 0x1 SWAP2 POP 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 0x617 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x60E SWAP1 PUSH2 0xDE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x687 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67E SWAP1 PUSH2 0xD62 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 0x765 SWAP2 SWAP1 PUSH2 0xE22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77E DUP5 DUP5 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7F8 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7EA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7E1 SWAP1 PUSH2 0xD82 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7F7 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x86E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x865 SWAP1 PUSH2 0xDC2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x8DE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8D5 SWAP1 PUSH2 0xD42 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8E9 DUP4 DUP4 DUP4 PUSH2 0xA76 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 0x96F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x966 SWAP1 PUSH2 0xDA2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB 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 ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA5D SWAP2 SWAP1 PUSH2 0xE22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA70 DUP5 DUP5 DUP5 PUSH2 0xA7B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xA8F DUP2 PUSH2 0x11FB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAA4 DUP2 PUSH2 0x1212 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAC0 JUMPI PUSH2 0xABF PUSH2 0xFE2 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xACE DUP5 DUP3 DUP6 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xAEE JUMPI PUSH2 0xAED PUSH2 0xFE2 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xAFC DUP6 DUP3 DUP7 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB0D DUP6 DUP3 DUP7 ADD PUSH2 0xA80 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 0xB30 JUMPI PUSH2 0xB2F PUSH2 0xFE2 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xB3E DUP7 DUP3 DUP8 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xB4F DUP7 DUP3 DUP8 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xB60 DUP7 DUP3 DUP8 ADD PUSH2 0xA95 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB81 JUMPI PUSH2 0xB80 PUSH2 0xFE2 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xB8F DUP6 DUP3 DUP7 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBA0 DUP6 DUP3 DUP7 ADD PUSH2 0xA95 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xBB3 DUP2 PUSH2 0xEDC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBC4 DUP3 PUSH2 0xE58 JUMP JUMPDEST PUSH2 0xBCE DUP2 DUP6 PUSH2 0xE63 JUMP JUMPDEST SWAP4 POP PUSH2 0xBDE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xF1F JUMP JUMPDEST PUSH2 0xBE7 DUP2 PUSH2 0xFE7 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBFF PUSH1 0x23 DUP4 PUSH2 0xE63 JUMP JUMPDEST SWAP2 POP PUSH2 0xC0A DUP3 PUSH2 0xFF8 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC22 PUSH1 0x22 DUP4 PUSH2 0xE63 JUMP JUMPDEST SWAP2 POP PUSH2 0xC2D DUP3 PUSH2 0x1047 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC45 PUSH1 0x1D DUP4 PUSH2 0xE63 JUMP JUMPDEST SWAP2 POP PUSH2 0xC50 DUP3 PUSH2 0x1096 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC68 PUSH1 0x26 DUP4 PUSH2 0xE63 JUMP JUMPDEST SWAP2 POP PUSH2 0xC73 DUP3 PUSH2 0x10BF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC8B PUSH1 0x25 DUP4 PUSH2 0xE63 JUMP JUMPDEST SWAP2 POP PUSH2 0xC96 DUP3 PUSH2 0x110E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCAE PUSH1 0x24 DUP4 PUSH2 0xE63 JUMP JUMPDEST SWAP2 POP PUSH2 0xCB9 DUP3 PUSH2 0x115D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCD1 PUSH1 0x25 DUP4 PUSH2 0xE63 JUMP JUMPDEST SWAP2 POP PUSH2 0xCDC DUP3 PUSH2 0x11AC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCF0 DUP2 PUSH2 0xF08 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xCFF DUP2 PUSH2 0xF12 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xD1A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xBAA 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 0xD3A DUP2 DUP5 PUSH2 0xBB9 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 0xD5B DUP2 PUSH2 0xBF2 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 0xD7B DUP2 PUSH2 0xC15 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 0xD9B DUP2 PUSH2 0xC38 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 0xDBB DUP2 PUSH2 0xC5B 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 0xDDB DUP2 PUSH2 0xC7E 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 0xDFB DUP2 PUSH2 0xCA1 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 0xE1B DUP2 PUSH2 0xCC4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xE37 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCE7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xE52 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCF6 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 0xE7F DUP3 PUSH2 0xF08 JUMP JUMPDEST SWAP2 POP PUSH2 0xE8A DUP4 PUSH2 0xF08 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xEBF JUMPI PUSH2 0xEBE PUSH2 0xF84 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xED5 DUP3 PUSH2 0xEE8 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 0xF3D JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xF22 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xF4C 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 0xF6A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xF7E JUMPI PUSH2 0xF7D PUSH2 0xFB3 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 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x1204 DUP2 PUSH2 0xECA JUMP JUMPDEST DUP2 EQ PUSH2 0x120F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x121B DUP2 PUSH2 0xF08 JUMP JUMPDEST DUP2 EQ PUSH2 0x1226 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC8 0xAC EXTCODECOPY SWAP12 DUP10 ADDMOD 0xB1 0xBA 0x2A SLOAD 0xB4 0xE9 0x24 MOD 0x26 JUMPI 0xD1 0xE1 PUSH15 0x9062677B12ECCE6589D98BFE426473 PUSH16 0x6C634300080700330000000000000000 ",
"sourceMap": "1401:11430:0:-:0;;;1976:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2050:5;2042;:13;;;;;;;;;;;;:::i;:::-;;2075:7;2065;:17;;;;;;;;;;;;:::i;:::-;;1976:113;;1401:11430;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:421:5:-;96:5;121:66;137:49;179:6;137:49;:::i;:::-;121:66;:::i;:::-;112:75;;210:6;203:5;196:21;248:4;241:5;237:16;286:3;277:6;272:3;268:16;265:25;262:112;;;293:79;;:::i;:::-;262:112;383:39;415:6;410:3;405;383:39;:::i;:::-;102:326;7:421;;;;;:::o;448:355::-;515:5;564:3;557:4;549:6;545:17;541:27;531:122;;572:79;;:::i;:::-;531:122;682:6;676:13;707:90;793:3;785:6;778:4;770:6;766:17;707:90;:::i;:::-;698:99;;521:282;448:355;;;;:::o;809:853::-;908:6;916;965:2;953:9;944:7;940:23;936:32;933:119;;;971:79;;:::i;:::-;933:119;1112:1;1101:9;1097:17;1091:24;1142:18;1134:6;1131:30;1128:117;;;1164:79;;:::i;:::-;1128:117;1269:74;1335:7;1326:6;1315:9;1311:22;1269:74;:::i;:::-;1259:84;;1062:291;1413:2;1402:9;1398:18;1392:25;1444:18;1436:6;1433:30;1430:117;;;1466:79;;:::i;:::-;1430:117;1571:74;1637:7;1628:6;1617:9;1613:22;1571:74;:::i;:::-;1561:84;;1363:292;809:853;;;;;:::o;1668:129::-;1702:6;1729:20;;:::i;:::-;1719:30;;1758:33;1786:4;1778:6;1758:33;:::i;:::-;1668:129;;;:::o;1803:75::-;1836:6;1869:2;1863:9;1853:19;;1803:75;:::o;1884:308::-;1946:4;2036:18;2028:6;2025:30;2022:56;;;2058:18;;:::i;:::-;2022:56;2096:29;2118:6;2096:29;:::i;:::-;2088:37;;2180:4;2174;2170:15;2162:23;;1884:308;;;:::o;2198:307::-;2266:1;2276:113;2290:6;2287:1;2284:13;2276:113;;;2375:1;2370:3;2366:11;2360:18;2356:1;2351:3;2347:11;2340:39;2312:2;2309:1;2305:10;2300:15;;2276:113;;;2407:6;2404:1;2401:13;2398:101;;;2487:1;2478:6;2473:3;2469:16;2462:27;2398:101;2247:258;2198:307;;;:::o;2511:320::-;2555:6;2592:1;2586:4;2582:12;2572:22;;2639:1;2633:4;2629:12;2660:18;2650:81;;2716:4;2708:6;2704:17;2694:27;;2650:81;2778:2;2770:6;2767:14;2747:18;2744:38;2741:84;;;2797:18;;:::i;:::-;2741:84;2562:269;2511:320;;;:::o;2837:281::-;2920:27;2942:4;2920:27;:::i;:::-;2912:6;2908:40;3050:6;3038:10;3035:22;3014:18;3002:10;2999:34;2996:62;2993:88;;;3061:18;;:::i;:::-;2993:88;3101:10;3097:2;3090:22;2880:238;2837:281;;:::o;3124:180::-;3172:77;3169:1;3162:88;3269:4;3266:1;3259:15;3293:4;3290:1;3283:15;3310:180;3358:77;3355:1;3348:88;3455:4;3452:1;3445:15;3479:4;3476:1;3469:15;3496:117;3605:1;3602;3595:12;3619:117;3728:1;3725;3718:12;3742:117;3851:1;3848;3841:12;3865:117;3974:1;3971;3964:12;3988:102;4029:6;4080:2;4076:7;4071:2;4064:5;4060:14;4056:28;4046:38;;3988:102;;;:::o;1401:11430:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_585": {
"entryPoint": 2683,
"id": 585,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_520": {
"entryPoint": 1447,
"id": 520,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_574": {
"entryPoint": 2678,
"id": 574,
"parameterSlots": 3,
"returnSlots": 0
},
"@_msgSender_701": {
"entryPoint": 1439,
"id": 701,
"parameterSlots": 0,
"returnSlots": 1
},
"@_spendAllowance_563": {
"entryPoint": 1906,
"id": 563,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_346": {
"entryPoint": 2046,
"id": 346,
"parameterSlots": 3,
"returnSlots": 0
},
"@allowance_141": {
"entryPoint": 1304,
"id": 141,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_166": {
"entryPoint": 776,
"id": 166,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_98": {
"entryPoint": 932,
"id": 98,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_74": {
"entryPoint": 868,
"id": 74,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_269": {
"entryPoint": 1150,
"id": 269,
"parameterSlots": 2,
"returnSlots": 1
},
"@increaseAllowance_228": {
"entryPoint": 877,
"id": 228,
"parameterSlots": 2,
"returnSlots": 1
},
"@name_54": {
"entryPoint": 630,
"id": 54,
"parameterSlots": 0,
"returnSlots": 1
},
"@symbol_64": {
"entryPoint": 1004,
"id": 64,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_84": {
"entryPoint": 811,
"id": 84,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_199": {
"entryPoint": 821,
"id": 199,
"parameterSlots": 3,
"returnSlots": 1
},
"@transfer_123": {
"entryPoint": 1269,
"id": 123,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 2688,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 2709,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 2730,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 2775,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 2839,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 2922,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 2986,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3001,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3058,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3093,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3128,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3163,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3198,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3233,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3268,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 3303,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 3318,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 3333,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3360,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3394,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3426,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3458,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3490,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3522,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3554,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3586,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 3618,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 3645,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 3672,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 3683,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 3700,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 3786,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 3804,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 3816,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 3848,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 3858,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 3871,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 3922,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 3972,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 4019,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 4066,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 4071,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": {
"entryPoint": 4088,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": {
"entryPoint": 4167,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe": {
"entryPoint": 4246,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": {
"entryPoint": 4287,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": {
"entryPoint": 4366,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": {
"entryPoint": 4445,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": {
"entryPoint": 4524,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 4603,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 4626,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:13861:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:5"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:5"
},
"nodeType": "YulFunctionCall",
"src": "78:20:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:5"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:5"
},
"nodeType": "YulFunctionCall",
"src": "107:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:5"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:5",
"type": ""
}
],
"src": "7:139:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:5"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:5"
},
"nodeType": "YulFunctionCall",
"src": "223:20:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:5"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "252:26:5"
},
"nodeType": "YulFunctionCall",
"src": "252:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:5"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:5",
"type": ""
}
],
"src": "152:139:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:263:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "409:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "411:77:5"
},
"nodeType": "YulFunctionCall",
"src": "411:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "411:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "384:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "393:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "380:3:5"
},
"nodeType": "YulFunctionCall",
"src": "380:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "376:3:5"
},
"nodeType": "YulFunctionCall",
"src": "376:32:5"
},
"nodeType": "YulIf",
"src": "373:119:5"
},
{
"nodeType": "YulBlock",
"src": "502:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "517:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "531:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "521:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "546:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "581:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "592:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "577:3:5"
},
"nodeType": "YulFunctionCall",
"src": "577:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "601:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "556:20:5"
},
"nodeType": "YulFunctionCall",
"src": "556:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "546:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "333:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "344:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "356:6:5",
"type": ""
}
],
"src": "297:329:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "715:391:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "761:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "763:77:5"
},
"nodeType": "YulFunctionCall",
"src": "763:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "763:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "736:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "745:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "732:3:5"
},
"nodeType": "YulFunctionCall",
"src": "732:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "757:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "728:3:5"
},
"nodeType": "YulFunctionCall",
"src": "728:32:5"
},
"nodeType": "YulIf",
"src": "725:119:5"
},
{
"nodeType": "YulBlock",
"src": "854:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "869:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "883:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "873:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "898:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "933:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "944:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "929:3:5"
},
"nodeType": "YulFunctionCall",
"src": "929:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "953:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "908:20:5"
},
"nodeType": "YulFunctionCall",
"src": "908:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "898:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "981:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "996:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1010:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1000:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1026:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1061:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1072:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1057:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1057:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1081:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1036:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1036:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1026:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "677:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "688:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "700:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "708:6:5",
"type": ""
}
],
"src": "632:474:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1212:519:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1258:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1260:77:5"
},
"nodeType": "YulFunctionCall",
"src": "1260:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "1260:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1233:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1242:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1229:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1229:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1254:2:5",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1225:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1225:32:5"
},
"nodeType": "YulIf",
"src": "1222:119:5"
},
{
"nodeType": "YulBlock",
"src": "1351:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1366:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1380:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1370:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1395:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1430:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1441:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1426:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1426:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1450:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1405:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1405:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1395:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1478:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1493:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1507:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1497:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1523:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1558:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1569:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1554:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1554:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1578:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1533:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1533:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1523:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1606:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1621:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1635:2:5",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1625:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1651:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1686:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1697:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1682:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1682:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1706:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1661:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1661:53:5"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1651:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1166:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1177:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1189:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1197:6:5",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1205:6:5",
"type": ""
}
],
"src": "1112:619:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1820:391:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1866:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1868:77:5"
},
"nodeType": "YulFunctionCall",
"src": "1868:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "1868:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1841:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1850:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1837:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1837:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1862:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1833:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1833:32:5"
},
"nodeType": "YulIf",
"src": "1830:119:5"
},
{
"nodeType": "YulBlock",
"src": "1959:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1974:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1988:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1978:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2003:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2038:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2049:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2034:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2034:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2058:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2013:20:5"
},
"nodeType": "YulFunctionCall",
"src": "2013:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2003:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2086:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2101:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2115:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2105:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2131:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2166:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2177:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2162:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2162:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2186:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2141:20:5"
},
"nodeType": "YulFunctionCall",
"src": "2141:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2131:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1782:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1793:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1805:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1813:6:5",
"type": ""
}
],
"src": "1737:474:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2276:50:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2293:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2313:5:5"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2298:14:5"
},
"nodeType": "YulFunctionCall",
"src": "2298:21:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2286:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2286:34:5"
},
"nodeType": "YulExpressionStatement",
"src": "2286:34:5"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2264:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2271:3:5",
"type": ""
}
],
"src": "2217:109:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2424:272:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2434:53:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2481:5:5"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2448:32:5"
},
"nodeType": "YulFunctionCall",
"src": "2448:39:5"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2438:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2496:78:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2562:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2567:6:5"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2503:58:5"
},
"nodeType": "YulFunctionCall",
"src": "2503:71:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2496:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2609:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2616:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2605:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2605:16:5"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2623:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2628:6:5"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2583:21:5"
},
"nodeType": "YulFunctionCall",
"src": "2583:52:5"
},
"nodeType": "YulExpressionStatement",
"src": "2583:52:5"
},
{
"nodeType": "YulAssignment",
"src": "2644:46:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2655:3:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2682:6:5"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2660:21:5"
},
"nodeType": "YulFunctionCall",
"src": "2660:29:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2651:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2651:39:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2644:3:5"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2405:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2412:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2420:3:5",
"type": ""
}
],
"src": "2332:364:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2848:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2858:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2924:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2929:2:5",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2865:58:5"
},
"nodeType": "YulFunctionCall",
"src": "2865:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2858:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3030:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulIdentifier",
"src": "2941:88:5"
},
"nodeType": "YulFunctionCall",
"src": "2941:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "2941:93:5"
},
{
"nodeType": "YulAssignment",
"src": "3043:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3054:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3059:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3050:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3050:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3043:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2836:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2844:3:5",
"type": ""
}
],
"src": "2702:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3220:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3230:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3296:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3301:2:5",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3237:58:5"
},
"nodeType": "YulFunctionCall",
"src": "3237:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3230:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3402:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulIdentifier",
"src": "3313:88:5"
},
"nodeType": "YulFunctionCall",
"src": "3313:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "3313:93:5"
},
{
"nodeType": "YulAssignment",
"src": "3415:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3426:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3431:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3422:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3422:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3415:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3208:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3216:3:5",
"type": ""
}
],
"src": "3074:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3592:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3602:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3668:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3673:2:5",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3609:58:5"
},
"nodeType": "YulFunctionCall",
"src": "3609:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3602:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3774:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nodeType": "YulIdentifier",
"src": "3685:88:5"
},
"nodeType": "YulFunctionCall",
"src": "3685:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "3685:93:5"
},
{
"nodeType": "YulAssignment",
"src": "3787:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3798:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3803:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3794:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3794:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3787:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3580:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3588:3:5",
"type": ""
}
],
"src": "3446:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3964:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3974:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4040:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4045:2:5",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3981:58:5"
},
"nodeType": "YulFunctionCall",
"src": "3981:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3974:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4146:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulIdentifier",
"src": "4057:88:5"
},
"nodeType": "YulFunctionCall",
"src": "4057:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "4057:93:5"
},
{
"nodeType": "YulAssignment",
"src": "4159:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4170:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4175:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4166:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4166:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4159:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3952:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3960:3:5",
"type": ""
}
],
"src": "3818:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4336:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4346:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4412:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4417:2:5",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4353:58:5"
},
"nodeType": "YulFunctionCall",
"src": "4353:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4346:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4518:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulIdentifier",
"src": "4429:88:5"
},
"nodeType": "YulFunctionCall",
"src": "4429:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "4429:93:5"
},
{
"nodeType": "YulAssignment",
"src": "4531:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4542:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4547:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4538:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4538:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4531:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4324:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4332:3:5",
"type": ""
}
],
"src": "4190:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4708:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4718:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4784:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4789:2:5",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4725:58:5"
},
"nodeType": "YulFunctionCall",
"src": "4725:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4718:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4890:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulIdentifier",
"src": "4801:88:5"
},
"nodeType": "YulFunctionCall",
"src": "4801:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "4801:93:5"
},
{
"nodeType": "YulAssignment",
"src": "4903:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4914:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4919:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4910:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4910:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4903:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4696:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4704:3:5",
"type": ""
}
],
"src": "4562:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5080:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5090:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5156:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5161:2:5",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5097:58:5"
},
"nodeType": "YulFunctionCall",
"src": "5097:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5090:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5262:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulIdentifier",
"src": "5173:88:5"
},
"nodeType": "YulFunctionCall",
"src": "5173:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "5173:93:5"
},
{
"nodeType": "YulAssignment",
"src": "5275:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5286:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5291:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5282:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5282:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5275:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5068:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5076:3:5",
"type": ""
}
],
"src": "4934:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5371:53:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5388:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5411:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5393:17:5"
},
"nodeType": "YulFunctionCall",
"src": "5393:24:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5381:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5381:37:5"
},
"nodeType": "YulExpressionStatement",
"src": "5381:37:5"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5359:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5366:3:5",
"type": ""
}
],
"src": "5306:118:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5491:51:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5508:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5529:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "5513:15:5"
},
"nodeType": "YulFunctionCall",
"src": "5513:22:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5501:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5501:35:5"
},
"nodeType": "YulExpressionStatement",
"src": "5501:35:5"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5479:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5486:3:5",
"type": ""
}
],
"src": "5430:112:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5640:118:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5650:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5662:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5673:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5658:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5658:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5650:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5724:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5737:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5748:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5733:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5733:17:5"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "5686:37:5"
},
"nodeType": "YulFunctionCall",
"src": "5686:65:5"
},
"nodeType": "YulExpressionStatement",
"src": "5686:65:5"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5612:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5624:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5635:4:5",
"type": ""
}
],
"src": "5548:210:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5882:195:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5892:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5904:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5915:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5900:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5900:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5892:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5939:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5950:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5935:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5935:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5958:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5964:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5954:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5954:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5928:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5928:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "5928:47:5"
},
{
"nodeType": "YulAssignment",
"src": "5984:86:5",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6056:6:5"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6065:4:5"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5992:63:5"
},
"nodeType": "YulFunctionCall",
"src": "5992:78:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5984:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5854:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5866:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5877:4:5",
"type": ""
}
],
"src": "5764:313:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6254:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6264:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6276:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6287:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6272:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6272:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6264:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6311:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6322:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6307:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6307:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6330:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6336:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6326:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6326:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6300:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6300:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "6300:47:5"
},
{
"nodeType": "YulAssignment",
"src": "6356:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6490:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6364:124:5"
},
"nodeType": "YulFunctionCall",
"src": "6364:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6356:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6234:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6249:4:5",
"type": ""
}
],
"src": "6083:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6679:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6689:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6701:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6712:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6697:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6697:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6689:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6736:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6747:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6732:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6732:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6755:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6761:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6751:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6751:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6725:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6725:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "6725:47:5"
},
{
"nodeType": "YulAssignment",
"src": "6781:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6915:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6789:124:5"
},
"nodeType": "YulFunctionCall",
"src": "6789:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6781:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6659:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6674:4:5",
"type": ""
}
],
"src": "6508:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7104:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7114:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7126:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7137:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7122:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7122:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7114:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7161:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7172:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7157:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7157:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7180:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7186:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7176:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7176:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7150:6:5"
},
"nodeType": "YulFunctionCall",
"src": "7150:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "7150:47:5"
},
{
"nodeType": "YulAssignment",
"src": "7206:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7340:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7214:124:5"
},
"nodeType": "YulFunctionCall",
"src": "7214:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7206:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7084:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7099:4:5",
"type": ""
}
],
"src": "6933:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7529:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7539:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7551:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7562:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7547:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7547:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7539:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7586:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7597:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7582:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7582:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7605:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7611:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7601:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7601:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7575:6:5"
},
"nodeType": "YulFunctionCall",
"src": "7575:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "7575:47:5"
},
{
"nodeType": "YulAssignment",
"src": "7631:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7765:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7639:124:5"
},
"nodeType": "YulFunctionCall",
"src": "7639:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7631:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7509:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7524:4:5",
"type": ""
}
],
"src": "7358:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7954:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7964:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7976:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7987:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7972:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7972:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7964:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8011:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8022:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8007:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8007:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8030:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8036:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8026:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8026:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8000:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8000:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "8000:47:5"
},
{
"nodeType": "YulAssignment",
"src": "8056:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8190:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8064:124:5"
},
"nodeType": "YulFunctionCall",
"src": "8064:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8056:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7934:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7949:4:5",
"type": ""
}
],
"src": "7783:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8379:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8389:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8401:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8412:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8397:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8397:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8389:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8436:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8447:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8432:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8432:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8455:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8461:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8451:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8451:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8425:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8425:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "8425:47:5"
},
{
"nodeType": "YulAssignment",
"src": "8481:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8615:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8489:124:5"
},
"nodeType": "YulFunctionCall",
"src": "8489:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8481:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8359:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8374:4:5",
"type": ""
}
],
"src": "8208:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8804:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8814:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8826:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8837:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8822:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8822:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8814:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8861:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8872:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8857:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8857:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8880:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8886:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8876:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8876:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8850:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8850:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "8850:47:5"
},
{
"nodeType": "YulAssignment",
"src": "8906:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9040:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8914:124:5"
},
"nodeType": "YulFunctionCall",
"src": "8914:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8906:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8784:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8799:4:5",
"type": ""
}
],
"src": "8633:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9156:124:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9166:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9178:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9189:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9174:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9174:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9166:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9246:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9259:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9270:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9255:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9255:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "9202:43:5"
},
"nodeType": "YulFunctionCall",
"src": "9202:71:5"
},
"nodeType": "YulExpressionStatement",
"src": "9202:71:5"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9128:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9140:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9151:4:5",
"type": ""
}
],
"src": "9058:222:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9380:120:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9390:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9402:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9413:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9398:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9398:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9390:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9466:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9479:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9490:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9475:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9475:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "9426:39:5"
},
"nodeType": "YulFunctionCall",
"src": "9426:67:5"
},
"nodeType": "YulExpressionStatement",
"src": "9426:67:5"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9352:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9364:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9375:4:5",
"type": ""
}
],
"src": "9286:214:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9546:35:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9556:19:5",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9572:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "9566:5:5"
},
"nodeType": "YulFunctionCall",
"src": "9566:9:5"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9556:6:5"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "9539:6:5",
"type": ""
}
],
"src": "9506:75:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9646:40:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9657:22:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9673:5:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "9667:5:5"
},
"nodeType": "YulFunctionCall",
"src": "9667:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9657:6:5"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9629:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9639:6:5",
"type": ""
}
],
"src": "9587:99:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9788:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9805:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9810:6:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9798:6:5"
},
"nodeType": "YulFunctionCall",
"src": "9798:19:5"
},
"nodeType": "YulExpressionStatement",
"src": "9798:19:5"
},
{
"nodeType": "YulAssignment",
"src": "9826:29:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9845:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9850:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9841:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9841:14:5"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "9826:11:5"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9760:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9765:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "9776:11:5",
"type": ""
}
],
"src": "9692:169:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9911:261:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9921:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9944:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9926:17:5"
},
"nodeType": "YulFunctionCall",
"src": "9926:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9921:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9955:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9978:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9960:17:5"
},
"nodeType": "YulFunctionCall",
"src": "9960:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9955:1:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10118:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "10120:16:5"
},
"nodeType": "YulFunctionCall",
"src": "10120:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "10120:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10039:1:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10046:66:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10114:1:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10042:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10042:74:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10036:2:5"
},
"nodeType": "YulFunctionCall",
"src": "10036:81:5"
},
"nodeType": "YulIf",
"src": "10033:107:5"
},
{
"nodeType": "YulAssignment",
"src": "10150:16:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10161:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10164:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10157:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10157:9:5"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "10150:3:5"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "9898:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "9901:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "9907:3:5",
"type": ""
}
],
"src": "9867:305:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10223:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10233:35:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10262:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "10244:17:5"
},
"nodeType": "YulFunctionCall",
"src": "10244:24:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10233:7:5"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10205:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10215:7:5",
"type": ""
}
],
"src": "10178:96:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10322:48:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10332:32:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10357:5:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10350:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10350:13:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10343:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10343:21:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10332:7:5"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10304:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10314:7:5",
"type": ""
}
],
"src": "10280:90:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10421:81:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10431:65:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10446:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10453:42:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10442:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10442:54:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10431:7:5"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10403:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10413:7:5",
"type": ""
}
],
"src": "10376:126:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10553:32:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10563:16:5",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "10574:5:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10563:7:5"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10535:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10545:7:5",
"type": ""
}
],
"src": "10508:77:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10634:43:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10644:27:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10659:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10666:4:5",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10655:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10655:16:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10644:7:5"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10616:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10626:7:5",
"type": ""
}
],
"src": "10591:86:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10732:258:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10742:10:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10751:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "10746:1:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10811:63:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10836:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10841:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10832:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10832:11:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10855:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10860:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10851:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10851:11:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10845:5:5"
},
"nodeType": "YulFunctionCall",
"src": "10845:18:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10825:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10825:39:5"
},
"nodeType": "YulExpressionStatement",
"src": "10825:39:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10772:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10775:6:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10769:2:5"
},
"nodeType": "YulFunctionCall",
"src": "10769:13:5"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "10783:19:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10785:15:5",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10794:1:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10797:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10790:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10790:10:5"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10785:1:5"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "10765:3:5",
"statements": []
},
"src": "10761:113:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10908:76:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10958:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10963:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10954:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10954:16:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10972:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10947:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10947:27:5"
},
"nodeType": "YulExpressionStatement",
"src": "10947:27:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10889:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10892:6:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10886:2:5"
},
"nodeType": "YulFunctionCall",
"src": "10886:13:5"
},
"nodeType": "YulIf",
"src": "10883:101:5"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "10714:3:5",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "10719:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10724:6:5",
"type": ""
}
],
"src": "10683:307:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11047:269:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11057:22:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "11071:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11077:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "11067:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11067:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11057:6:5"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "11088:38:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "11118:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11124:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11114:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11114:12:5"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "11092:18:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11165:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11179:27:5",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11193:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11201:4:5",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11189:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11189:17:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11179:6:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "11145:18:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11138:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11138:26:5"
},
"nodeType": "YulIf",
"src": "11135:81:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11268:42:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "11282:16:5"
},
"nodeType": "YulFunctionCall",
"src": "11282:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "11282:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "11232:18:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11255:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11263:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "11252:2:5"
},
"nodeType": "YulFunctionCall",
"src": "11252:14:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11229:2:5"
},
"nodeType": "YulFunctionCall",
"src": "11229:38:5"
},
"nodeType": "YulIf",
"src": "11226:84:5"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "11031:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11040:6:5",
"type": ""
}
],
"src": "10996:320:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11350:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11367:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11370:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11360:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11360:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "11360:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11464:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11467:4:5",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11457:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11457:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "11457:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11488:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11491:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11481:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11481:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "11481:15:5"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "11322:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11536:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11553:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11556:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11546:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11546:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "11546:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11650:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11653:4:5",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11643:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11643:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "11643:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11674:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11677:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11667:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11667:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "11667:15:5"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "11508:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11783:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11800:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11803:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11793:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11793:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "11793:12:5"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "11694:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11906:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11923:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11926:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11916:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11916:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "11916:12:5"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "11817:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11988:54:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11998:38:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12016:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12023:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12012:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12012:14:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12032:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "12028:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12028:7:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12008:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12008:28:5"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "11998:6:5"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11971:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "11981:6:5",
"type": ""
}
],
"src": "11940:102:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12154:116:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12176:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12184:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12172:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12172:14:5"
},
{
"hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12188:34:5",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12165:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12165:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "12165:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12244:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12252:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12240:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12240:15:5"
},
{
"hexValue": "657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12257:5:5",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12233:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12233:30:5"
},
"nodeType": "YulExpressionStatement",
"src": "12233:30:5"
}
]
},
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12146:6:5",
"type": ""
}
],
"src": "12048:222:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12382:115:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12404:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12412:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12400:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12400:14:5"
},
{
"hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12416:34:5",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12393:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12393:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "12393:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12472:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12480:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12468:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12468:15:5"
},
{
"hexValue": "7373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12485:4:5",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12461:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12461:29:5"
},
"nodeType": "YulExpressionStatement",
"src": "12461:29:5"
}
]
},
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12374:6:5",
"type": ""
}
],
"src": "12276:221:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12609:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12631:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12639:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12627:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12627:14:5"
},
{
"hexValue": "45524332303a20696e73756666696369656e7420616c6c6f77616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12643:31:5",
"type": "",
"value": "ERC20: insufficient allowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12620:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12620:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "12620:55:5"
}
]
},
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12601:6:5",
"type": ""
}
],
"src": "12503:179:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12794:119:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12816:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12824:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12812:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12812:14:5"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12828:34:5",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12805:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12805:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "12805:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12884:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12892:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12880:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12880:15:5"
},
{
"hexValue": "616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12897:8:5",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12873:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12873:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "12873:33:5"
}
]
},
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12786:6:5",
"type": ""
}
],
"src": "12688:225:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13025:118:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13047:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13055:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13043:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13043:14:5"
},
{
"hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13059:34:5",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13036:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13036:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "13036:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13115:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13123:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13111:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13111:15:5"
},
{
"hexValue": "6472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13128:7:5",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13104:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13104:32:5"
},
"nodeType": "YulExpressionStatement",
"src": "13104:32:5"
}
]
},
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13017:6:5",
"type": ""
}
],
"src": "12919:224:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13255:117:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13277:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13285:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13273:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13273:14:5"
},
{
"hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13289:34:5",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13266:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13266:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "13266:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13345:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13353:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13341:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13341:15:5"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13358:6:5",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13334:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13334:31:5"
},
"nodeType": "YulExpressionStatement",
"src": "13334:31:5"
}
]
},
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13247:6:5",
"type": ""
}
],
"src": "13149:223:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13484:118:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13506:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13514:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13502:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13502:14:5"
},
{
"hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13518:34:5",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13495:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13495:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "13495:58:5"
},
{
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