Skip to content

Instantly share code, notes, and snippets.

@asciitohex
Created April 26, 2021 13:27
Show Gist options
  • Save asciitohex/e609d93353d6d05493c443e9ef489448 to your computer and use it in GitHub Desktop.
Save asciitohex/e609d93353d6d05493c443e9ef489448 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.0+commit.c7dfd78e.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor () {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20 {
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The defaut value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overloaded;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
_approve(sender, _msgSender(), currentAllowance - amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
_balances[sender] = senderBalance - amount;
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
_balances[account] = accountBalance - amount;
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"DOMAIN_SEPARATOR()": "3644e515",
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"increaseAllowance(address,uint256)": "39509351",
"name()": "06fdde03",
"nonces(address)": "7ecebe00",
"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "d505accf",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"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": [],
"name": "DOMAIN_SEPARATOR",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"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": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "nonces",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "v",
"type": "uint8"
},
{
"internalType": "bytes32",
"name": "r",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "permit",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"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": [],
"name": "DOMAIN_SEPARATOR",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"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": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "nonces",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "v",
"type": "uint8"
},
{
"internalType": "bytes32",
"name": "r",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "permit",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all. _Available since v3.4._",
"kind": "dev",
"methods": {
"DOMAIN_SEPARATOR()": {
"details": "See {IERC20Permit-DOMAIN_SEPARATOR}."
},
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"constructor": {
"details": "Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`. It's a good idea to use the same `name` that is defined as the ERC20 token name."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5,05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overloaded; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"nonces(address)": {
"details": "See {IERC20Permit-nonces}."
},
"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": {
"details": "See {IERC20Permit-permit}."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"/.deps/npm/@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol": "ERC20Permit"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"/.deps/npm/@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0x21d8a5dd396bee41e4a039d150af08b66b6d09eef416daf8e5edf13ef219084e",
"license": "MIT",
"urls": [
"bzz-raw://682f1e9c20780070df3c8b52bf3b48d2aa6debcdff5a924e212d78bbaedb945f",
"dweb:/ipfs/QmXGhsAPeemtVQ8ip5CsParvX3sgpMm4Lq8EccS3YaTtwA"
]
},
"/.deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0xf8e8d118a7a8b2e134181f7da655f6266aa3a0f9134b2605747139fcb0c5d835",
"license": "MIT",
"urls": [
"bzz-raw://9ec48567e7ad06acb670980d5cdf3fd7f3949bf12894f02d68c3bb43e75aa84f",
"dweb:/ipfs/QmaG3R2J9cz92YT77vFjYrjMNU2wHp4ypwYD62HqDUqS5U"
]
},
"/.deps/npm/@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol": {
"keccak256": "0xcb5593edb924ab46dcc937875620d4ddee4ee34b729be60d112ebca6c5af2e7c",
"license": "MIT",
"urls": [
"bzz-raw://17d28164c0af9d72924c2671449f5850b58bf9ae9b1d190af30e74fd2782fe11",
"dweb:/ipfs/QmVjJewet5dZQqBVjbGPgu3MQ4nwaKBjDdLGrbYHTvXk77"
]
},
"/.deps/npm/@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol": {
"keccak256": "0x44300341eb97e8790e56e0823e8c3d09695fc2ee80555a83a9585f307381f324",
"license": "MIT",
"urls": [
"bzz-raw://fef226efeb89359aa20c577531a59c9fd8ad7abc22060364234269d5546b8f93",
"dweb:/ipfs/QmXzNH1GMb7NxiEUFisywBAidE9vVcjAiGRE2gh4cZQKPQ"
]
},
"/.deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xf930d2df426bfcfc1f7415be724f04081c96f4fb9ec8d0e3a521c07692dface0",
"license": "MIT",
"urls": [
"bzz-raw://fc2bfdea0d2562c76fb3c4cf70a86c6ba25c5a30e8f8515c95aafdf8383f8395",
"dweb:/ipfs/QmTbFya18786ckJfLYUoWau9jBTKfmWnWm5XSViWvB7PXN"
]
},
"/.deps/npm/@openzeppelin/contracts/utils/Counters.sol": {
"keccak256": "0x62d306ff0499a11913bc60b5939eec619509b5c67b30e86ebf8b8bda0b7a7fee",
"license": "MIT",
"urls": [
"bzz-raw://6712ca27a06062db31465b1470e6207553553a9bb0b4358d918b35bdae5b4ffe",
"dweb:/ipfs/QmZ92pU9DJ3h1qREMFvDQhArSy6fh6zA983NeLFHRs1qKJ"
]
},
"/.deps/npm/@openzeppelin/contracts/utils/cryptography/ECDSA.sol": {
"keccak256": "0x752ac2a89da774de5c98f8ca1adcad306ce00d0ebb547ad7be8ba7e95468aa73",
"license": "MIT",
"urls": [
"bzz-raw://4d684ee425c1b73399887ee6776e45686067b2ed1a20717df71cda6be5406c82",
"dweb:/ipfs/QmQhfMHrfNYMiHhtNqh95qD55sh4hTed9drMxCVW38CYEA"
]
},
"/.deps/npm/@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol": {
"keccak256": "0x75800223458de145e6088276ab661222e22557d7518459e1ffc57bb5b0496542",
"license": "MIT",
"urls": [
"bzz-raw://504433dd10f0037339624055d52df67de43408a4d429eb546c6cb17e5c5a6ae6",
"dweb:/ipfs/QmQfRTjvbsn9kCc7MNC2E7X4tzpYw4sEPPMpdyWVi5QQNj"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./draft-IERC20Permit.sol";
import "../ERC20.sol";
import "../../../utils/cryptography/draft-EIP712.sol";
import "../../../utils/cryptography/ECDSA.sol";
import "../../../utils/Counters.sol";
/**
* @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* _Available since v3.4._
*/
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
using Counters for Counters.Counter;
mapping (address => Counters.Counter) private _nonces;
// solhint-disable-next-line var-name-mixedcase
bytes32 private immutable _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
/**
* @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
*
* It's a good idea to use the same `name` that is defined as the ERC20 token name.
*/
constructor(string memory name) EIP712(name, "1") {
}
/**
* @dev See {IERC20Permit-permit}.
*/
function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public virtual override {
// solhint-disable-next-line not-rely-on-time
require(block.timestamp <= deadline, "ERC20Permit: expired deadline");
bytes32 structHash = keccak256(
abi.encode(
_PERMIT_TYPEHASH,
owner,
spender,
value,
_nonces[owner].current(),
deadline
)
);
bytes32 hash = _hashTypedDataV4(structHash);
address signer = ECDSA.recover(hash, v, r, s);
require(signer == owner, "ERC20Permit: invalid signature");
_nonces[owner].increment();
_approve(owner, spender, value);
}
/**
* @dev See {IERC20Permit-nonces}.
*/
function nonces(address owner) public view override returns (uint256) {
return _nonces[owner].current();
}
/**
* @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view override returns (bytes32) {
return _domainSeparatorV4();
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over `owner`'s tokens,
* given `owner`'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for `permit`, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
uint256 currentAllowance = allowance(account, _msgSender());
require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
_approve(account, _msgSender(), currentAllowance - amount);
_burn(account, amount);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Arrays.sol";
import "../../../utils/Counters.sol";
/**
* @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
* total supply at the time are recorded for later access.
*
* This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
* In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
* accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
* used to create an efficient ERC20 forking mechanism.
*
* Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
* snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
* id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
* and the account address.
*
* ==== Gas Costs
*
* Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
* n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
* smaller since identical balances in subsequent snapshots are stored as a single entry.
*
* There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
* only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
* transfers will have normal cost until the next snapshot, and so on.
*/
abstract contract ERC20Snapshot is ERC20 {
// Inspired by Jordi Baylina's MiniMeToken to record historical balances:
// https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol
using Arrays for uint256[];
using Counters for Counters.Counter;
// Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
// Snapshot struct, but that would impede usage of functions that work on an array.
struct Snapshots {
uint256[] ids;
uint256[] values;
}
mapping (address => Snapshots) private _accountBalanceSnapshots;
Snapshots private _totalSupplySnapshots;
// Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
Counters.Counter private _currentSnapshotId;
/**
* @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
*/
event Snapshot(uint256 id);
/**
* @dev Creates a new snapshot and returns its snapshot id.
*
* Emits a {Snapshot} event that contains the same id.
*
* {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
* set of accounts, for example using {AccessControl}, or it may be open to the public.
*
* [WARNING]
* ====
* While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
* you must consider that it can potentially be used by attackers in two ways.
*
* First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
* logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
* specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
* section above.
*
* We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
* ====
*/
function _snapshot() internal virtual returns (uint256) {
_currentSnapshotId.increment();
uint256 currentId = _currentSnapshotId.current();
emit Snapshot(currentId);
return currentId;
}
/**
* @dev Retrieves the balance of `account` at the time `snapshotId` was created.
*/
function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
(bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);
return snapshotted ? value : balanceOf(account);
}
/**
* @dev Retrieves the total supply at the time `snapshotId` was created.
*/
function totalSupplyAt(uint256 snapshotId) public view virtual returns(uint256) {
(bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);
return snapshotted ? value : totalSupply();
}
// Update balance and/or total supply snapshots before the values are modified. This is implemented
// in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
super._beforeTokenTransfer(from, to, amount);
if (from == address(0)) {
// mint
_updateAccountSnapshot(to);
_updateTotalSupplySnapshot();
} else if (to == address(0)) {
// burn
_updateAccountSnapshot(from);
_updateTotalSupplySnapshot();
} else {
// transfer
_updateAccountSnapshot(from);
_updateAccountSnapshot(to);
}
}
function _valueAt(uint256 snapshotId, Snapshots storage snapshots)
private view returns (bool, uint256)
{
require(snapshotId > 0, "ERC20Snapshot: id is 0");
// solhint-disable-next-line max-line-length
require(snapshotId <= _currentSnapshotId.current(), "ERC20Snapshot: nonexistent id");
// When a valid snapshot is queried, there are three possibilities:
// a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
// created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
// to this id is the current one.
// b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
// requested id, and its value is the one to return.
// c) More snapshots were created after the requested one, and the queried value was later modified. There will be
// no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
// larger than the requested one.
//
// In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
// it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
// exactly this.
uint256 index = snapshots.ids.findUpperBound(snapshotId);
if (index == snapshots.ids.length) {
return (false, 0);
} else {
return (true, snapshots.values[index]);
}
}
function _updateAccountSnapshot(address account) private {
_updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
}
function _updateTotalSupplySnapshot() private {
_updateSnapshot(_totalSupplySnapshots, totalSupply());
}
function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
uint256 currentId = _currentSnapshotId.current();
if (_lastSnapshotId(snapshots.ids) < currentId) {
snapshots.ids.push(currentId);
snapshots.values.push(currentValue);
}
}
function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
if (ids.length == 0) {
return 0;
} else {
return ids[ids.length - 1];
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./math/Math.sol";
/**
* @dev Collection of functions related to array types.
*/
library Arrays {
/**
* @dev Searches a sorted `array` and returns the first index that contains
* a value greater or equal to `element`. If no such index exists (i.e. all
* values in the array are strictly less than `element`), the array length is
* returned. Time complexity O(log n).
*
* `array` is expected to be sorted in ascending order, and to contain no
* repeated elements.
*/
function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
if (array.length == 0) {
return 0;
}
uint256 low = 0;
uint256 high = array.length;
while (low < high) {
uint256 mid = Math.average(low, high);
// Note that mid will always be strictly less than high (i.e. it will be a valid array index)
// because Math.average rounds down (it does integer division with truncation).
if (array[mid] > element) {
high = mid;
} else {
low = mid + 1;
}
}
// At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
if (low > 0 && array[low - 1] == element) {
return low - 1;
} else {
return low;
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ECDSA.sol";
/**
* @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
*
* The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
* thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
* they need in their contracts using a combination of `abi.encode` and `keccak256`.
*
* This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
* ({_hashTypedDataV4}).
*
* The implementation of the domain separator was designed to be as efficient as possible while still properly updating
* the chain id to protect against replay attacks on an eventual fork of the chain.
*
* NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
*
* _Available since v3.4._
*/
abstract contract EIP712 {
/* solhint-disable var-name-mixedcase */
// Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
// invalidate the cached domain separator if the chain id changes.
bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
uint256 private immutable _CACHED_CHAIN_ID;
bytes32 private immutable _HASHED_NAME;
bytes32 private immutable _HASHED_VERSION;
bytes32 private immutable _TYPE_HASH;
/* solhint-enable var-name-mixedcase */
/**
* @dev Initializes the domain separator and parameter caches.
*
* The meaning of `name` and `version` is specified in
* https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
*
* - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
* - `version`: the current major version of the signing domain.
*
* NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
* contract upgrade].
*/
constructor(string memory name, string memory version) {
bytes32 hashedName = keccak256(bytes(name));
bytes32 hashedVersion = keccak256(bytes(version));
bytes32 typeHash = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
_HASHED_NAME = hashedName;
_HASHED_VERSION = hashedVersion;
_CACHED_CHAIN_ID = block.chainid;
_CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
_TYPE_HASH = typeHash;
}
/**
* @dev Returns the domain separator for the current chain.
*/
function _domainSeparatorV4() internal view returns (bytes32) {
if (block.chainid == _CACHED_CHAIN_ID) {
return _CACHED_DOMAIN_SEPARATOR;
} else {
return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
}
}
function _buildDomainSeparator(bytes32 typeHash, bytes32 name, bytes32 version) private view returns (bytes32) {
return keccak256(
abi.encode(
typeHash,
name,
version,
block.chainid,
address(this)
)
);
}
/**
* @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
* function returns the hash of the fully encoded EIP712 message for this domain.
*
* This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
*
* ```solidity
* bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
* keccak256("Mail(address to,string contents)"),
* mailTo,
* keccak256(bytes(mailContents))
* )));
* address signer = ECDSA.recover(digest, signature);
* ```
*/
function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
// Check the signature length
if (signature.length != 65) {
revert("ECDSA: invalid signature length");
}
// Divide the signature in r, s and v variables
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
// solhint-disable-next-line no-inline-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return recover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value");
require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
require(signer != address(0), "ECDSA: invalid signature");
return signer;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow, so we distribute
return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"allPairs(uint256)": "1e3dd18b",
"allPairsLength()": "574f2ba3",
"createPair(address,address)": "c9c65396",
"feeTo()": "017e7e58",
"feeToSetter()": "094b7415",
"getPair(address,address)": "e6a43905",
"setFeeTo(address)": "f46901ed",
"setFeeToSetter(address)": "a2e74af6"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "token0",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "token1",
"type": "address"
},
{
"indexed": false,
"internalType": "address",
"name": "pair",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "PairCreated",
"type": "event"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "allPairs",
"outputs": [
{
"internalType": "address",
"name": "pair",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "allPairsLength",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "tokenA",
"type": "address"
},
{
"internalType": "address",
"name": "tokenB",
"type": "address"
}
],
"name": "createPair",
"outputs": [
{
"internalType": "address",
"name": "pair",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "feeTo",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "feeToSetter",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "tokenA",
"type": "address"
},
{
"internalType": "address",
"name": "tokenB",
"type": "address"
}
],
"name": "getPair",
"outputs": [
{
"internalType": "address",
"name": "pair",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "setFeeTo",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "setFeeToSetter",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "token0",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "token1",
"type": "address"
},
{
"indexed": false,
"internalType": "address",
"name": "pair",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "PairCreated",
"type": "event"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "allPairs",
"outputs": [
{
"internalType": "address",
"name": "pair",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "allPairsLength",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "tokenA",
"type": "address"
},
{
"internalType": "address",
"name": "tokenB",
"type": "address"
}
],
"name": "createPair",
"outputs": [
{
"internalType": "address",
"name": "pair",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "feeTo",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "feeToSetter",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "tokenA",
"type": "address"
},
{
"internalType": "address",
"name": "tokenB",
"type": "address"
}
],
"name": "getPair",
"outputs": [
{
"internalType": "address",
"name": "pair",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "setFeeTo",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "setFeeToSetter",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"/.deps/npm/@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol": "IUniswapV2Factory"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"/.deps/npm/@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol": {
"keccak256": "0xe5905c0989cf5a865ed9bb7b9252536ca011c5b744017a82a7d4443b9c00a891",
"urls": [
"bzz-raw://5d2a90a0a796491507462a3da18c3f8819721d571572d765a2207c35bf0a0389",
"dweb:/ipfs/Qmf9ACYiT3qzjgsYuhm866FBdiBpRMXAPpQhSFbgqcyhHt"
]
}
},
"version": 1
}
pragma solidity >=0.5.0;
interface IUniswapV2ERC20 {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
}
pragma solidity >=0.5.0;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
pragma solidity >=0.5.0;
interface IUniswapV2Pair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
function price0CumulativeLast() external view returns (uint);
function price1CumulativeLast() external view returns (uint);
function kLast() external view returns (uint);
function mint(address to) external returns (uint liquidity);
function burn(address to) external returns (uint amount0, uint amount1);
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}
pragma solidity >=0.6.2;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
pragma solidity >=0.6.2;
import './IUniswapV2Router01.sol';
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7334:15",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "72:53:15",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "89:3:15"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "112:5:15"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "94:17:15"
},
"nodeType": "YulFunctionCall",
"src": "94:24:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "82:6:15"
},
"nodeType": "YulFunctionCall",
"src": "82:37:15"
},
"nodeType": "YulExpressionStatement",
"src": "82:37:15"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "60:5:15",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "67:3:15",
"type": ""
}
],
"src": "7:118:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "196:53:15",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "213:3:15"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "236:5:15"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "218:17:15"
},
"nodeType": "YulFunctionCall",
"src": "218:24:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "206:6:15"
},
"nodeType": "YulFunctionCall",
"src": "206:37:15"
},
"nodeType": "YulExpressionStatement",
"src": "206:37:15"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "184:5:15",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "191:3:15",
"type": ""
}
],
"src": "131:118:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "401:168:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "411:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "477:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "482:2:15",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "418:58:15"
},
"nodeType": "YulFunctionCall",
"src": "418:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "411:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "506:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "511:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "502:3:15"
},
"nodeType": "YulFunctionCall",
"src": "502:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "515:18:15",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "495:6:15"
},
"nodeType": "YulFunctionCall",
"src": "495:39:15"
},
"nodeType": "YulExpressionStatement",
"src": "495:39:15"
},
{
"nodeType": "YulAssignment",
"src": "544:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "555:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "560:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "551:3:15"
},
"nodeType": "YulFunctionCall",
"src": "551:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "544:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "389:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "397:3:15",
"type": ""
}
],
"src": "255:314:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "721:183:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "731:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "797:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "802:2:15",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "738:58:15"
},
"nodeType": "YulFunctionCall",
"src": "738:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "731:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "826:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "831:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "822:3:15"
},
"nodeType": "YulFunctionCall",
"src": "822:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "835:33:15",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "815:6:15"
},
"nodeType": "YulFunctionCall",
"src": "815:54:15"
},
"nodeType": "YulExpressionStatement",
"src": "815:54:15"
},
{
"nodeType": "YulAssignment",
"src": "879:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "890:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "895:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "886:3:15"
},
"nodeType": "YulFunctionCall",
"src": "886:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "879:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "709:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "717:3:15",
"type": ""
}
],
"src": "575:329:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "975:53:15",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "992:3:15"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1015:5:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "997:17:15"
},
"nodeType": "YulFunctionCall",
"src": "997:24:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "985:6:15"
},
"nodeType": "YulFunctionCall",
"src": "985:37:15"
},
"nodeType": "YulExpressionStatement",
"src": "985:37:15"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "963:5:15",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "970:3:15",
"type": ""
}
],
"src": "910:118:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1244:454:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1254:27:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1266:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1277:3:15",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1262:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1262:19:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1254:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1335:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1348:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1359:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1344:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1344:17:15"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "1291:43:15"
},
"nodeType": "YulFunctionCall",
"src": "1291:71:15"
},
"nodeType": "YulExpressionStatement",
"src": "1291:71:15"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1416:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1429:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1440:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1425:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1425:18:15"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "1372:43:15"
},
"nodeType": "YulFunctionCall",
"src": "1372:72:15"
},
"nodeType": "YulExpressionStatement",
"src": "1372:72:15"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1498:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1511:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1522:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1507:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1507:18:15"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "1454:43:15"
},
"nodeType": "YulFunctionCall",
"src": "1454:72:15"
},
"nodeType": "YulExpressionStatement",
"src": "1454:72:15"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "1580:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1593:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1604:2:15",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1589:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1589:18:15"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1536:43:15"
},
"nodeType": "YulFunctionCall",
"src": "1536:72:15"
},
"nodeType": "YulExpressionStatement",
"src": "1536:72:15"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1662:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1675:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1686:3:15",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1671:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1671:19:15"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "1618:43:15"
},
"nodeType": "YulFunctionCall",
"src": "1618:73:15"
},
"nodeType": "YulExpressionStatement",
"src": "1618:73:15"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1184:9:15",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "1196:6:15",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1204:6:15",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1212:6:15",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1220:6:15",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1228:6:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1239:4:15",
"type": ""
}
],
"src": "1034:664:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1875:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1885:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1897:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1908:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1893:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1893:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1885:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1932:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1943:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1928:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1928:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1951:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1957:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1947:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1947:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1921:6:15"
},
"nodeType": "YulFunctionCall",
"src": "1921:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "1921:47:15"
},
{
"nodeType": "YulAssignment",
"src": "1977:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2111:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1985:124:15"
},
"nodeType": "YulFunctionCall",
"src": "1985:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1977:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1855:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1870:4:15",
"type": ""
}
],
"src": "1704:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2300:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2310:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2322:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2333:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2318:3:15"
},
"nodeType": "YulFunctionCall",
"src": "2318:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2310:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2357:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2368:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2353:3:15"
},
"nodeType": "YulFunctionCall",
"src": "2353:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2376:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2382:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2372:3:15"
},
"nodeType": "YulFunctionCall",
"src": "2372:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2346:6:15"
},
"nodeType": "YulFunctionCall",
"src": "2346:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "2346:47:15"
},
{
"nodeType": "YulAssignment",
"src": "2402:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2536:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2410:124:15"
},
"nodeType": "YulFunctionCall",
"src": "2410:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2402:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2280:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2295:4:15",
"type": ""
}
],
"src": "2129:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2652:124:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2662:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2674:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2685:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2670:3:15"
},
"nodeType": "YulFunctionCall",
"src": "2670:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2662:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2742:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2755:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2766:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2751:3:15"
},
"nodeType": "YulFunctionCall",
"src": "2751:17:15"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2698:43:15"
},
"nodeType": "YulFunctionCall",
"src": "2698:71:15"
},
"nodeType": "YulExpressionStatement",
"src": "2698:71:15"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2624:9:15",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2636:6:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2647:4:15",
"type": ""
}
],
"src": "2554:222:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2878:73:15",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2895:3:15"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2900:6:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2888:6:15"
},
"nodeType": "YulFunctionCall",
"src": "2888:19:15"
},
"nodeType": "YulExpressionStatement",
"src": "2888:19:15"
},
{
"nodeType": "YulAssignment",
"src": "2916:29:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2935:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2940:4:15",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2931:3:15"
},
"nodeType": "YulFunctionCall",
"src": "2931:14:15"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2916:11:15"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2850:3:15",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2855:6:15",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2866:11:15",
"type": ""
}
],
"src": "2782:169:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3001:261:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3011:25:15",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3034:1:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3016:17:15"
},
"nodeType": "YulFunctionCall",
"src": "3016:20:15"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3011:1:15"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3045:25:15",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3068:1:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3050:17:15"
},
"nodeType": "YulFunctionCall",
"src": "3050:20:15"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3045:1:15"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3208:22:15",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3210:16:15"
},
"nodeType": "YulFunctionCall",
"src": "3210:18:15"
},
"nodeType": "YulExpressionStatement",
"src": "3210:18:15"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3129:1:15"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3136:66:15",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3204:1:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3132:3:15"
},
"nodeType": "YulFunctionCall",
"src": "3132:74:15"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3126:2:15"
},
"nodeType": "YulFunctionCall",
"src": "3126:81:15"
},
"nodeType": "YulIf",
"src": "3123:2:15"
},
{
"nodeType": "YulAssignment",
"src": "3240:16:15",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3251:1:15"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3254:1:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3247:3:15"
},
"nodeType": "YulFunctionCall",
"src": "3247:9:15"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "3240:3:15"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2988:1:15",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2991:1:15",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "2997:3:15",
"type": ""
}
],
"src": "2957:305:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3341:775:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3351:15:15",
"value": {
"name": "_power",
"nodeType": "YulIdentifier",
"src": "3360:6:15"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3351:5:15"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3375:14:15",
"value": {
"name": "_base",
"nodeType": "YulIdentifier",
"src": "3384:5:15"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3375:4:15"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3433:677:15",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3521:22:15",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3523:16:15"
},
"nodeType": "YulFunctionCall",
"src": "3523:18:15"
},
"nodeType": "YulExpressionStatement",
"src": "3523:18:15"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3499:4:15"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "3509:3:15"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3514:4:15"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3505:3:15"
},
"nodeType": "YulFunctionCall",
"src": "3505:14:15"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3496:2:15"
},
"nodeType": "YulFunctionCall",
"src": "3496:24:15"
},
"nodeType": "YulIf",
"src": "3493:2:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3588:419:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3968:25:15",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3981:5:15"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3988:4:15"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3977:3:15"
},
"nodeType": "YulFunctionCall",
"src": "3977:16:15"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3968:5:15"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3563:8:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3573:1:15",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3559:3:15"
},
"nodeType": "YulFunctionCall",
"src": "3559:16:15"
},
"nodeType": "YulIf",
"src": "3556:2:15"
},
{
"nodeType": "YulAssignment",
"src": "4020:23:15",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4032:4:15"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4038:4:15"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4028:3:15"
},
"nodeType": "YulFunctionCall",
"src": "4028:15:15"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4020:4:15"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4056:44:15",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4091:8:15"
}
],
"functionName": {
"name": "shift_right_1_unsigned",
"nodeType": "YulIdentifier",
"src": "4068:22:15"
},
"nodeType": "YulFunctionCall",
"src": "4068:32:15"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4056:8:15"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3409:8:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3419:1:15",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3406:2:15"
},
"nodeType": "YulFunctionCall",
"src": "3406:15:15"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3422:2:15",
"statements": []
},
"pre": {
"nodeType": "YulBlock",
"src": "3402:3:15",
"statements": []
},
"src": "3398:712:15"
}
]
},
"name": "checked_exp_helper",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "_power",
"nodeType": "YulTypedName",
"src": "3296:6:15",
"type": ""
},
{
"name": "_base",
"nodeType": "YulTypedName",
"src": "3304:5:15",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "3311:8:15",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "3321:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "3329:5:15",
"type": ""
},
{
"name": "base",
"nodeType": "YulTypedName",
"src": "3336:4:15",
"type": ""
}
],
"src": "3268:848:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4186:217:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4196:31:15",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4222:4:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4204:17:15"
},
"nodeType": "YulFunctionCall",
"src": "4204:23:15"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4196:4:15"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4236:37:15",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4264:8:15"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "4248:15:15"
},
"nodeType": "YulFunctionCall",
"src": "4248:25:15"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4236:8:15"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4283:113:15",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4313:4:15"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4319:8:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4329:66:15",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "checked_exp_unsigned",
"nodeType": "YulIdentifier",
"src": "4292:20:15"
},
"nodeType": "YulFunctionCall",
"src": "4292:104:15"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4283:5:15"
}
]
}
]
},
"name": "checked_exp_t_uint256_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "4161:4:15",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "4167:8:15",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "4180:5:15",
"type": ""
}
],
"src": "4122:281:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4469:1013:15",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4664:20:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4666:10:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4675:1:15",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4666:5:15"
}
]
},
{
"nodeType": "YulLeave",
"src": "4677:5:15"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4654:8:15"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4647:6:15"
},
"nodeType": "YulFunctionCall",
"src": "4647:16:15"
},
"nodeType": "YulIf",
"src": "4644:2:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4709:20:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4711:10:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4720:1:15",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4711:5:15"
}
]
},
{
"nodeType": "YulLeave",
"src": "4722:5:15"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4703:4:15"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4696:6:15"
},
"nodeType": "YulFunctionCall",
"src": "4696:12:15"
},
"nodeType": "YulIf",
"src": "4693:2:15"
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "4839:20:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4841:10:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4850:1:15",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4841:5:15"
}
]
},
{
"nodeType": "YulLeave",
"src": "4852:5:15"
}
]
},
"nodeType": "YulCase",
"src": "4832:27:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4837:1:15",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "4883:176:15",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4918:22:15",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4920:16:15"
},
"nodeType": "YulFunctionCall",
"src": "4920:18:15"
},
"nodeType": "YulExpressionStatement",
"src": "4920:18:15"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4903:8:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4913:3:15",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4900:2:15"
},
"nodeType": "YulFunctionCall",
"src": "4900:17:15"
},
"nodeType": "YulIf",
"src": "4897:2:15"
},
{
"nodeType": "YulAssignment",
"src": "4953:25:15",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4966:1:15",
"type": "",
"value": "2"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4969:8:15"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "4962:3:15"
},
"nodeType": "YulFunctionCall",
"src": "4962:16:15"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4953:5:15"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5009:22:15",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5011:16:15"
},
"nodeType": "YulFunctionCall",
"src": "5011:18:15"
},
"nodeType": "YulExpressionStatement",
"src": "5011:18:15"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "4997:5:15"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "5004:3:15"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4994:2:15"
},
"nodeType": "YulFunctionCall",
"src": "4994:14:15"
},
"nodeType": "YulIf",
"src": "4991:2:15"
},
{
"nodeType": "YulLeave",
"src": "5044:5:15"
}
]
},
"nodeType": "YulCase",
"src": "4868:191:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4873:1:15",
"type": "",
"value": "2"
}
}
],
"expression": {
"name": "base",
"nodeType": "YulIdentifier",
"src": "4789:4:15"
},
"nodeType": "YulSwitch",
"src": "4782:277:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5191:123:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5205:28:15",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "5218:4:15"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "5224:8:15"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "5214:3:15"
},
"nodeType": "YulFunctionCall",
"src": "5214:19:15"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "5205:5:15"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5264:22:15",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5266:16:15"
},
"nodeType": "YulFunctionCall",
"src": "5266:18:15"
},
"nodeType": "YulExpressionStatement",
"src": "5266:18:15"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "5252:5:15"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "5259:3:15"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5249:2:15"
},
"nodeType": "YulFunctionCall",
"src": "5249:14:15"
},
"nodeType": "YulIf",
"src": "5246:2:15"
},
{
"nodeType": "YulLeave",
"src": "5299:5:15"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "5094:4:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5100:2:15",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5091:2:15"
},
"nodeType": "YulFunctionCall",
"src": "5091:12:15"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "5108:8:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5118:2:15",
"type": "",
"value": "78"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5105:2:15"
},
"nodeType": "YulFunctionCall",
"src": "5105:16:15"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5087:3:15"
},
"nodeType": "YulFunctionCall",
"src": "5087:35:15"
},
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "5143:4:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5149:3:15",
"type": "",
"value": "307"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5140:2:15"
},
"nodeType": "YulFunctionCall",
"src": "5140:13:15"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "5158:8:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5168:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5155:2:15"
},
"nodeType": "YulFunctionCall",
"src": "5155:16:15"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5136:3:15"
},
"nodeType": "YulFunctionCall",
"src": "5136:36:15"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "5071:2:15"
},
"nodeType": "YulFunctionCall",
"src": "5071:111:15"
},
"nodeType": "YulIf",
"src": "5068:2:15"
},
{
"nodeType": "YulAssignment",
"src": "5324:57:15",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5358:1:15",
"type": "",
"value": "1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "5361:4:15"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "5367:8:15"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "5377:3:15"
}
],
"functionName": {
"name": "checked_exp_helper",
"nodeType": "YulIdentifier",
"src": "5339:18:15"
},
"nodeType": "YulFunctionCall",
"src": "5339:42:15"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "5324:5:15"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "5331:4:15"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5420:22:15",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5422:16:15"
},
"nodeType": "YulFunctionCall",
"src": "5422:18:15"
},
"nodeType": "YulExpressionStatement",
"src": "5422:18:15"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "5397:5:15"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "5408:3:15"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "5413:4:15"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5404:3:15"
},
"nodeType": "YulFunctionCall",
"src": "5404:14:15"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5394:2:15"
},
"nodeType": "YulFunctionCall",
"src": "5394:25:15"
},
"nodeType": "YulIf",
"src": "5391:2:15"
},
{
"nodeType": "YulAssignment",
"src": "5451:25:15",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "5464:5:15"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "5471:4:15"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "5460:3:15"
},
"nodeType": "YulFunctionCall",
"src": "5460:16:15"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "5451:5:15"
}
]
}
]
},
"name": "checked_exp_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "4439:4:15",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "4445:8:15",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "4455:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "4463:5:15",
"type": ""
}
],
"src": "4409:1073:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5536:300:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5546:25:15",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5569:1:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5551:17:15"
},
"nodeType": "YulFunctionCall",
"src": "5551:20:15"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5546:1:15"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5580:25:15",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5603:1:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5585:17:15"
},
"nodeType": "YulFunctionCall",
"src": "5585:20:15"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5580:1:15"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5778:22:15",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5780:16:15"
},
"nodeType": "YulFunctionCall",
"src": "5780:18:15"
},
"nodeType": "YulExpressionStatement",
"src": "5780:18:15"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5690:1:15"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5683:6:15"
},
"nodeType": "YulFunctionCall",
"src": "5683:9:15"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5676:6:15"
},
"nodeType": "YulFunctionCall",
"src": "5676:17:15"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5698:1:15"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5705:66:15",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5773:1:15"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5701:3:15"
},
"nodeType": "YulFunctionCall",
"src": "5701:74:15"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5695:2:15"
},
"nodeType": "YulFunctionCall",
"src": "5695:81:15"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5672:3:15"
},
"nodeType": "YulFunctionCall",
"src": "5672:105:15"
},
"nodeType": "YulIf",
"src": "5669:2:15"
},
{
"nodeType": "YulAssignment",
"src": "5810:20:15",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5825:1:15"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5828:1:15"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "5821:3:15"
},
"nodeType": "YulFunctionCall",
"src": "5821:9:15"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "5810:7:15"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5519:1:15",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5522:1:15",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "5528:7:15",
"type": ""
}
],
"src": "5488:348:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5887:146:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5897:25:15",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5920:1:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5902:17:15"
},
"nodeType": "YulFunctionCall",
"src": "5902:20:15"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5897:1:15"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5931:25:15",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5954:1:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5936:17:15"
},
"nodeType": "YulFunctionCall",
"src": "5936:20:15"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5931:1:15"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5978:22:15",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5980:16:15"
},
"nodeType": "YulFunctionCall",
"src": "5980:18:15"
},
"nodeType": "YulExpressionStatement",
"src": "5980:18:15"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5972:1:15"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5975:1:15"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5969:2:15"
},
"nodeType": "YulFunctionCall",
"src": "5969:8:15"
},
"nodeType": "YulIf",
"src": "5966:2:15"
},
{
"nodeType": "YulAssignment",
"src": "6010:17:15",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6022:1:15"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6025:1:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6018:3:15"
},
"nodeType": "YulFunctionCall",
"src": "6018:9:15"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "6010:4:15"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5873:1:15",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5876:1:15",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "5882:4:15",
"type": ""
}
],
"src": "5842:191:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6084:51:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6094:35:15",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6123:5:15"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "6105:17:15"
},
"nodeType": "YulFunctionCall",
"src": "6105:24:15"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6094:7:15"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6066:5:15",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6076:7:15",
"type": ""
}
],
"src": "6039:96:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6186:32:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6196:16:15",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "6207:5:15"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6196:7:15"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6168:5:15",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6178:7:15",
"type": ""
}
],
"src": "6141:77:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6269:81:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6279:65:15",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6294:5:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6301:42:15",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6290:3:15"
},
"nodeType": "YulFunctionCall",
"src": "6290:54:15"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6279:7:15"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6251:5:15",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6261:7:15",
"type": ""
}
],
"src": "6224:126:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6401:32:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6411:16:15",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "6422:5:15"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6411:7:15"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6383:5:15",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6393:7:15",
"type": ""
}
],
"src": "6356:77:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6482:43:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6492:27:15",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6507:5:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6514:4:15",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6503:3:15"
},
"nodeType": "YulFunctionCall",
"src": "6503:16:15"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6492:7:15"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6464:5:15",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6474:7:15",
"type": ""
}
],
"src": "6439:86:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6582:269:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6592:22:15",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6606:4:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6612:1:15",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6602:3:15"
},
"nodeType": "YulFunctionCall",
"src": "6602:12:15"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6592:6:15"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6623:38:15",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6653:4:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6659:1:15",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6649:3:15"
},
"nodeType": "YulFunctionCall",
"src": "6649:12:15"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "6627:18:15",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6700:51:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6714:27:15",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6728:6:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6736:4:15",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6724:3:15"
},
"nodeType": "YulFunctionCall",
"src": "6724:17:15"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6714:6:15"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6680:18:15"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6673:6:15"
},
"nodeType": "YulFunctionCall",
"src": "6673:26:15"
},
"nodeType": "YulIf",
"src": "6670:2:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6803:42:15",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6817:16:15"
},
"nodeType": "YulFunctionCall",
"src": "6817:18:15"
},
"nodeType": "YulExpressionStatement",
"src": "6817:18:15"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6767:18:15"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6790:6:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6798:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6787:2:15"
},
"nodeType": "YulFunctionCall",
"src": "6787:14:15"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6764:2:15"
},
"nodeType": "YulFunctionCall",
"src": "6764:38:15"
},
"nodeType": "YulIf",
"src": "6761:2:15"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6566:4:15",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6575:6:15",
"type": ""
}
],
"src": "6531:320:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6885:152:15",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6902:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6905:77:15",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6895:6:15"
},
"nodeType": "YulFunctionCall",
"src": "6895:88:15"
},
"nodeType": "YulExpressionStatement",
"src": "6895:88:15"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6999:1:15",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7002:4:15",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6992:6:15"
},
"nodeType": "YulFunctionCall",
"src": "6992:15:15"
},
"nodeType": "YulExpressionStatement",
"src": "6992:15:15"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7023:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7026:4:15",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7016:6:15"
},
"nodeType": "YulFunctionCall",
"src": "7016:15:15"
},
"nodeType": "YulExpressionStatement",
"src": "7016:15:15"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6857:180:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7071:152:15",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7088:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7091:77:15",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7081:6:15"
},
"nodeType": "YulFunctionCall",
"src": "7081:88:15"
},
"nodeType": "YulExpressionStatement",
"src": "7081:88:15"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7185:1:15",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7188:4:15",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7178:6:15"
},
"nodeType": "YulFunctionCall",
"src": "7178:15:15"
},
"nodeType": "YulExpressionStatement",
"src": "7178:15:15"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7209:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7212:4:15",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7202:6:15"
},
"nodeType": "YulFunctionCall",
"src": "7202:15:15"
},
"nodeType": "YulExpressionStatement",
"src": "7202:15:15"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "7043:180:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7280:51:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7290:34:15",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7315:1:15",
"type": "",
"value": "1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7318:5:15"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "7311:3:15"
},
"nodeType": "YulFunctionCall",
"src": "7311:13:15"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "7290:8:15"
}
]
}
]
},
"name": "shift_right_1_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7261:5:15",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "7271:8:15",
"type": ""
}
],
"src": "7229:102:15"
}
]
},
"contents": "{\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n\n mstore(add(pos, 0), \"Pausable: paused\")\n\n end := add(pos, 32)\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\n mstore(add(pos, 0), \"ERC20: mint to the zero address\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n abi_encode_t_address_to_t_address_fromStack(value4, add(headStart, 128))\n\n }\n\n function abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__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_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_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 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_exp_helper(_power, _base, exponent, max) -> power, base {\n power := _power\n base := _base\n for { } gt(exponent, 1) {}\n {\n // overflow check for base * base\n if gt(base, div(max, base)) { panic_error_0x11() }\n if and(exponent, 1)\n {\n // No checks for power := mul(power, base) needed, because the check\n // for base * base above is sufficient, since:\n // |power| <= base (proof by induction) and thus:\n // |power * base| <= base * base <= max <= |min| (for signed)\n // (this is equally true for signed and unsigned exp)\n power := mul(power, base)\n }\n base := mul(base, base)\n exponent := shift_right_1_unsigned(exponent)\n }\n }\n\n function checked_exp_t_uint256_t_uint8(base, exponent) -> power {\n base := cleanup_t_uint256(base)\n exponent := cleanup_t_uint8(exponent)\n\n power := checked_exp_unsigned(base, exponent, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n\n }\n\n function checked_exp_unsigned(base, exponent, max) -> power {\n // This function currently cannot be inlined because of the\n // \"leave\" statements. We have to improve the optimizer.\n\n // Note that 0**0 == 1\n if iszero(exponent) { power := 1 leave }\n if iszero(base) { power := 0 leave }\n\n // Specializations for small bases\n switch base\n // 0 is handled above\n case 1 { power := 1 leave }\n case 2\n {\n if gt(exponent, 255) { panic_error_0x11() }\n power := exp(2, exponent)\n if gt(power, max) { panic_error_0x11() }\n leave\n }\n if or(\n and(lt(base, 11), lt(exponent, 78)),\n and(lt(base, 307), lt(exponent, 32))\n )\n {\n power := exp(base, exponent)\n if gt(power, max) { panic_error_0x11() }\n leave\n }\n\n power, base := checked_exp_helper(1, base, exponent, max)\n\n if gt(power, div(max, base)) { panic_error_0x11() }\n power := mul(power, base)\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 checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := 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 extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function shift_right_1_unsigned(value) -> newValue {\n newValue :=\n\n shr(1, value)\n\n }\n\n}\n",
"id": 15,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120908152503480156200003a57600080fd5b506040518060400160405280600481526020017f626e626300000000000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f626e6263000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f626e62630000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012c92919062000803565b5080600490805190602001906200014592919062000803565b50505060006200015a620002d860201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000600960146101000a81548160ff02191690831515021790555060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260c081815250508160e081815250504660a081815250506200027c818484620002e060201b60201c565b60808181525050806101008181525050505050505050620002d233620002a76200031c60201b60201c565b600a620002b5919062000af1565b633b9aca00620002c6919062000c2e565b6200032560201b60201c565b62000dc0565b600033905090565b60008383834630604051602001620002fd9594939291906200096a565b6040516020818303038152906040528051906020012090509392505050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000398576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038f90620009e9565b60405180910390fd5b620003ac600083836200048a60201b60201c565b8060026000828254620003c0919062000a39565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000417919062000a39565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200047e919062000a0b565b60405180910390a35050565b6200049a620004fa60201b60201c565b15620004dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d490620009c7565b60405180910390fd5b620004f58383836200051160201b620011c11760201c565b505050565b6000600960149054906101000a900460ff16905090565b620005298383836200060c60201b6200127b1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620005865762000570826200061160201b60201c565b620005806200067460201b60201c565b62000607565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005e357620005cd836200061160201b60201c565b620005dd6200067460201b60201c565b62000606565b620005f4836200061160201b60201c565b62000605826200061160201b60201c565b5b5b505050565b505050565b62000671600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002062000665836200069860201b60201c565b620006e060201b60201c565b50565b6200069660066200068a6200077360201b60201c565b620006e060201b60201c565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000620006f960086200077d60201b620012801760201c565b90508062000710846000016200078b60201b60201c565b10156200076e5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600254905090565b600081600001549050919050565b60008082805490501415620007a45760009050620007fe565b8160018380549050620007b8919062000c8f565b81548110620007f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b828054620008119062000d1f565b90600052602060002090601f01602090048101928262000835576000855562000881565b82601f106200085057805160ff191683800117855562000881565b8280016001018555821562000881579182015b828111156200088057825182559160200191906001019062000863565b5b50905062000890919062000894565b5090565b5b80821115620008af57600081600090555060010162000895565b5090565b620008be8162000cca565b82525050565b620008cf8162000cde565b82525050565b6000620008e460108362000a28565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b600062000926601f8362000a28565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620009648162000d08565b82525050565b600060a082019050620009816000830188620008c4565b620009906020830187620008c4565b6200099f6040830186620008c4565b620009ae606083018562000959565b620009bd6080830184620008b3565b9695505050505050565b60006020820190508181036000830152620009e281620008d5565b9050919050565b6000602082019050818103600083015262000a048162000917565b9050919050565b600060208201905062000a22600083018462000959565b92915050565b600082825260208201905092915050565b600062000a468262000d08565b915062000a538362000d08565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a8b5762000a8a62000d55565b5b828201905092915050565b6000808291508390505b600185111562000ae85780860481111562000ac05762000abf62000d55565b5b600185161562000ad05780820291505b808102905062000ae08562000db3565b945062000aa0565b94509492505050565b600062000afe8262000d08565b915062000b0b8362000d12565b925062000b3a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b42565b905092915050565b60008262000b54576001905062000c27565b8162000b64576000905062000c27565b816001811462000b7d576002811462000b885762000bbe565b600191505062000c27565b60ff84111562000b9d5762000b9c62000d55565b5b8360020a91508482111562000bb75762000bb662000d55565b5b5062000c27565b5060208310610133831016604e8410600b841016171562000bf85782820a90508381111562000bf25762000bf162000d55565b5b62000c27565b62000c07848484600162000a96565b9250905081840481111562000c215762000c2062000d55565b5b81810290505b9392505050565b600062000c3b8262000d08565b915062000c488362000d08565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000c845762000c8362000d55565b5b828202905092915050565b600062000c9c8262000d08565b915062000ca98362000d08565b92508282101562000cbf5762000cbe62000d55565b5b828203905092915050565b600062000cd78262000ce8565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000d3857607f821691505b6020821081141562000d4f5762000d4e62000d84565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b60805160a05160c05160e051610100516101205161333462000e106000396000610e0e015260006117370152600061177901526000611758015260006116e40152600061170c01526133346000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de5780639711715a11610097578063a9059cbb11610071578063a9059cbb1461042a578063d505accf1461045a578063dd62ed3e14610476578063f2fde38b146104a657610173565b80639711715a146103c0578063981b24d0146103ca578063a457c2d7146103fa57610173565b8063715018a61461032457806379cc67901461032e5780637ecebe001461034a5780638456cb591461037a5780638da5cb5b1461038457806395d89b41146103a257610173565b8063395093511161013057806339509351146102505780633f4ba83a1461028057806342966c681461028a5780634ee2cd7e146102a65780635c975abb146102d657806370a08231146102f457610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e4578063313ce567146102145780633644e51514610232575b600080fd5b6101806104c2565b60405161018d9190612d2b565b60405180910390f35b6101b060048036038101906101ab919061233c565b610554565b6040516101bd9190612bfc565b60405180910390f35b6101ce610572565b6040516101db9190612fed565b60405180910390f35b6101fe60048036038101906101f9919061224f565b61057c565b60405161020b9190612bfc565b60405180910390f35b61021c61067d565b6040516102299190613008565b60405180910390f35b61023a610686565b6040516102479190612c17565b60405180910390f35b61026a6004803603810190610265919061233c565b610695565b6040516102779190612bfc565b60405180910390f35b610288610741565b005b6102a4600480360381019061029f9190612378565b6107c7565b005b6102c060048036038101906102bb919061233c565b6107db565b6040516102cd9190612fed565b60405180910390f35b6102de61084b565b6040516102eb9190612bfc565b60405180910390f35b61030e600480360381019061030991906121ea565b610862565b60405161031b9190612fed565b60405180910390f35b61032c6108aa565b005b6103486004803603810190610343919061233c565b6109e7565b005b610364600480360381019061035f91906121ea565b610a6b565b6040516103719190612fed565b60405180910390f35b610382610abb565b005b61038c610b41565b6040516103999190612be1565b60405180910390f35b6103aa610b6b565b6040516103b79190612d2b565b60405180910390f35b6103c8610bfd565b005b6103e460048036038101906103df9190612378565b610c84565b6040516103f19190612fed565b60405180910390f35b610414600480360381019061040f919061233c565b610cb5565b6040516104219190612bfc565b60405180910390f35b610444600480360381019061043f919061233c565b610da9565b6040516104519190612bfc565b60405180910390f35b610474600480360381019061046f919061229e565b610dc7565b005b610490600480360381019061048b9190612213565b610f8e565b60405161049d9190612fed565b60405180910390f35b6104c060048036038101906104bb91906121ea565b611015565b005b6060600380546104d190613197565b80601f01602080910402602001604051908101604052809291908181526020018280546104fd90613197565b801561054a5780601f1061051f5761010080835404028352916020019161054a565b820191906000526020600020905b81548152906001019060200180831161052d57829003601f168201915b5050505050905090565b600061056861056161128e565b8484611296565b6001905092915050565b6000600254905090565b6000610589848484611461565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105d461128e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064b90612eed565b60405180910390fd5b6106718561066061128e565b858461066c91906130d1565b611296565b60019150509392505050565b60006012905090565b60006106906116e0565b905090565b60006107376106a261128e565b8484600160006106b061128e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610732919061304a565b611296565b6001905092915050565b61074961128e565b73ffffffffffffffffffffffffffffffffffffffff16610767610b41565b73ffffffffffffffffffffffffffffffffffffffff16146107bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b490612f0d565b60405180910390fd5b6107c56117a3565b565b6107d86107d261128e565b82611845565b50565b600080600061082884600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611a19565b915091508161083f5761083a85610862565b610841565b805b9250505092915050565b6000600960149054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108b261128e565b73ffffffffffffffffffffffffffffffffffffffff166108d0610b41565b73ffffffffffffffffffffffffffffffffffffffff1614610926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091d90612f0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006109fa836109f561128e565b610f8e565b905081811015610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3690612f2d565b60405180910390fd5b610a5c83610a4b61128e565b8484610a5791906130d1565b611296565b610a668383611845565b505050565b6000610ab4600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611280565b9050919050565b610ac361128e565b73ffffffffffffffffffffffffffffffffffffffff16610ae1610b41565b73ffffffffffffffffffffffffffffffffffffffff1614610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e90612f0d565b60405180910390fd5b610b3f611b37565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b7a90613197565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba690613197565b8015610bf35780601f10610bc857610100808354040283529160200191610bf3565b820191906000526020600020905b815481529060010190602001808311610bd657829003601f168201915b5050505050905090565b610c0561128e565b73ffffffffffffffffffffffffffffffffffffffff16610c23610b41565b73ffffffffffffffffffffffffffffffffffffffff1614610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090612f0d565b60405180910390fd5b610c81611bda565b50565b6000806000610c94846006611a19565b9150915081610caa57610ca5610572565b610cac565b805b92505050919050565b60008060016000610cc461128e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890612fcd565b60405180910390fd5b610d9e610d8c61128e565b858584610d9991906130d1565b611296565b600191505092915050565b6000610dbd610db661128e565b8484611461565b6001905092915050565b83421115610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190612e2d565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000888888610e77600a60008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611280565b89604051602001610e8d96959493929190612c32565b6040516020818303038152906040528051906020012090506000610eb082611c32565b90506000610ec082878787611c4c565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790612ecd565b60405180910390fd5b610f77600a60008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611dd7565b610f828a8a8a611296565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61101d61128e565b73ffffffffffffffffffffffffffffffffffffffff1661103b610b41565b73ffffffffffffffffffffffffffffffffffffffff1614611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890612f0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890612ded565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111cc83838361127b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112175761120a82611ded565b611212611e40565b611276565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112625761125583611ded565b61125d611e40565b611275565b61126b83611ded565b61127482611ded565b5b5b505050565b505050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90612f8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d90612e0d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114549190612fed565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890612f6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890612d8d565b60405180910390fd5b61154c838383611e54565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c990612e4d565b60405180910390fd5b81816115de91906130d1565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461166e919061304a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116d29190612fed565b60405180910390a350505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461415611732577f000000000000000000000000000000000000000000000000000000000000000090506117a0565b61179d7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611eac565b90505b90565b6117ab61084b565b6117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190612dad565b60405180910390fd5b6000600960146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61182e61128e565b60405161183b9190612be1565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90612f4d565b60405180910390fd5b6118c182600083611e54565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90612dcd565b60405180910390fd5b818161195391906130d1565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546119a791906130d1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a0c9190612fed565b60405180910390a3505050565b60008060008411611a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5690612fad565b60405180910390fd5b611a696008611280565b841115611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290612d6d565b60405180910390fd5b6000611ac38585600001611ee690919063ffffffff16565b90508360000180549050811415611ae1576000809250925050611b30565b6001846001018281548110611b1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b611b3f61084b565b15611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690612e8d565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611bc361128e565b604051611bd09190612be1565b60405180910390a1565b6000611be66008611dd7565b6000611bf26008611280565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611c239190612fed565b60405180910390a18091505090565b6000611c45611c3f6116e0565b8361200c565b9050919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90612e6d565b60405180910390fd5b601b8460ff161480611cc95750601c8460ff16145b611d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cff90612ead565b60405180910390fd5b600060018686868660405160008152602001604052604051611d2d9493929190612ce6565b6020604051602081039080840390855afa158015611d4f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290612d4d565b60405180910390fd5b80915050949350505050565b6001816000016000828254019250508190555050565b611e3d600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611e3883610862565b61203f565b50565b611e526006611e4d610572565b61203f565b565b611e5c61084b565b15611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390612e8d565b60405180910390fd5b611ea78383836111c1565b505050565b60008383834630604051602001611ec7959493929190612c93565b6040516020818303038152906040528051906020012090509392505050565b60008083805490501415611efd5760009050612006565b600080848054905090505b80821015611f87576000611f1c83836120bc565b905084868281548110611f58577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001541115611f7157809150611f81565b600181611f7e919061304a565b92505b50611f08565b600082118015611fe557508385600184611fa191906130d1565b81548110611fd8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b1561200057600182611ff791906130d1565b92505050612006565b81925050505b92915050565b60008282604051602001612021929190612baa565b60405160208183030381529060405280519060200120905092915050565b600061204b6008611280565b90508061205a84600001612123565b10156120b75782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600280836120cc91906131d3565b6002856120d991906131d3565b6120e3919061304a565b6120ed91906130a0565b6002836120fa91906130a0565b60028561210791906130a0565b612111919061304a565b61211b919061304a565b905092915050565b6000808280549050141561213a5760009050612191565b816001838054905061214c91906130d1565b81548110612183577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b6000813590506121a5816132a2565b92915050565b6000813590506121ba816132b9565b92915050565b6000813590506121cf816132d0565b92915050565b6000813590506121e4816132e7565b92915050565b6000602082840312156121fc57600080fd5b600061220a84828501612196565b91505092915050565b6000806040838503121561222657600080fd5b600061223485828601612196565b925050602061224585828601612196565b9150509250929050565b60008060006060848603121561226457600080fd5b600061227286828701612196565b935050602061228386828701612196565b9250506040612294868287016121c0565b9150509250925092565b600080600080600080600060e0888a0312156122b957600080fd5b60006122c78a828b01612196565b97505060206122d88a828b01612196565b96505060406122e98a828b016121c0565b95505060606122fa8a828b016121c0565b945050608061230b8a828b016121d5565b93505060a061231c8a828b016121ab565b92505060c061232d8a828b016121ab565b91505092959891949750929550565b6000806040838503121561234f57600080fd5b600061235d85828601612196565b925050602061236e858286016121c0565b9150509250929050565b60006020828403121561238a57600080fd5b6000612398848285016121c0565b91505092915050565b6123aa81613105565b82525050565b6123b981613117565b82525050565b6123c881613123565b82525050565b6123df6123da82613123565b6131c9565b82525050565b60006123f082613023565b6123fa818561302e565b935061240a818560208601613164565b61241381613291565b840191505092915050565b600061242b60188361302e565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b600061246b601d8361302e565b91507f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006000830152602082019050919050565b60006124ab60238361302e565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061251160148361302e565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b600061255160228361302e565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125b760268361302e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061261d60228361302e565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061268360028361303f565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b60006126c3601d8361302e565b91507f45524332305065726d69743a206578706972656420646561646c696e650000006000830152602082019050919050565b600061270360268361302e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061276960228361302e565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127cf60108361302e565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b600061280f60228361302e565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612875601e8361302e565b91507f45524332305065726d69743a20696e76616c6964207369676e617475726500006000830152602082019050919050565b60006128b560288361302e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061291b60208361302e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061295b60248361302e565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129c160218361302e565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a2760258361302e565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a8d60248361302e565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612af360168361302e565b91507f4552433230536e617073686f743a2069642069732030000000000000000000006000830152602082019050919050565b6000612b3360258361302e565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b612b958161314d565b82525050565b612ba481613157565b82525050565b6000612bb582612676565b9150612bc182856123ce565b602082019150612bd182846123ce565b6020820191508190509392505050565b6000602082019050612bf660008301846123a1565b92915050565b6000602082019050612c1160008301846123b0565b92915050565b6000602082019050612c2c60008301846123bf565b92915050565b600060c082019050612c4760008301896123bf565b612c5460208301886123a1565b612c6160408301876123a1565b612c6e6060830186612b8c565b612c7b6080830185612b8c565b612c8860a0830184612b8c565b979650505050505050565b600060a082019050612ca860008301886123bf565b612cb560208301876123bf565b612cc260408301866123bf565b612ccf6060830185612b8c565b612cdc60808301846123a1565b9695505050505050565b6000608082019050612cfb60008301876123bf565b612d086020830186612b9b565b612d1560408301856123bf565b612d2260608301846123bf565b95945050505050565b60006020820190508181036000830152612d4581846123e5565b905092915050565b60006020820190508181036000830152612d668161241e565b9050919050565b60006020820190508181036000830152612d868161245e565b9050919050565b60006020820190508181036000830152612da68161249e565b9050919050565b60006020820190508181036000830152612dc681612504565b9050919050565b60006020820190508181036000830152612de681612544565b9050919050565b60006020820190508181036000830152612e06816125aa565b9050919050565b60006020820190508181036000830152612e2681612610565b9050919050565b60006020820190508181036000830152612e46816126b6565b9050919050565b60006020820190508181036000830152612e66816126f6565b9050919050565b60006020820190508181036000830152612e868161275c565b9050919050565b60006020820190508181036000830152612ea6816127c2565b9050919050565b60006020820190508181036000830152612ec681612802565b9050919050565b60006020820190508181036000830152612ee681612868565b9050919050565b60006020820190508181036000830152612f06816128a8565b9050919050565b60006020820190508181036000830152612f268161290e565b9050919050565b60006020820190508181036000830152612f468161294e565b9050919050565b60006020820190508181036000830152612f66816129b4565b9050919050565b60006020820190508181036000830152612f8681612a1a565b9050919050565b60006020820190508181036000830152612fa681612a80565b9050919050565b60006020820190508181036000830152612fc681612ae6565b9050919050565b60006020820190508181036000830152612fe681612b26565b9050919050565b60006020820190506130026000830184612b8c565b92915050565b600060208201905061301d6000830184612b9b565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006130558261314d565b91506130608361314d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561309557613094613204565b5b828201905092915050565b60006130ab8261314d565b91506130b68361314d565b9250826130c6576130c5613233565b5b828204905092915050565b60006130dc8261314d565b91506130e78361314d565b9250828210156130fa576130f9613204565b5b828203905092915050565b60006131108261312d565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015613182578082015181840152602081019050613167565b83811115613191576000848401525b50505050565b600060028204905060018216806131af57607f821691505b602082108114156131c3576131c2613262565b5b50919050565b6000819050919050565b60006131de8261314d565b91506131e98361314d565b9250826131f9576131f8613233565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6132ab81613105565b81146132b657600080fd5b50565b6132c281613123565b81146132cd57600080fd5b50565b6132d98161314d565b81146132e457600080fd5b50565b6132f081613157565b81146132fb57600080fd5b5056fea2646970667358221220805e0e41733155b77615473e943d4cdbac8c9460fedc405bd9ef178f9fa8a0d864736f6c63430008000033",
"opcodes": "PUSH2 0x140 PUSH1 0x40 MSTORE PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 PUSH2 0x120 SWAP1 DUP2 MSTORE POP CALLVALUE DUP1 ISZERO PUSH3 0x3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x626E626300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3100000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x626E626300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x626E626300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x12C SWAP3 SWAP2 SWAP1 PUSH3 0x803 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x145 SWAP3 SWAP2 SWAP1 PUSH3 0x803 JUMP JUMPDEST POP POP POP PUSH1 0x0 PUSH3 0x15A PUSH3 0x2D8 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x9 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH1 0x0 PUSH1 0x9 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP3 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 DUP3 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F SWAP1 POP DUP3 PUSH1 0xC0 DUP2 DUP2 MSTORE POP POP DUP2 PUSH1 0xE0 DUP2 DUP2 MSTORE POP POP CHAINID PUSH1 0xA0 DUP2 DUP2 MSTORE POP POP PUSH3 0x27C DUP2 DUP5 DUP5 PUSH3 0x2E0 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x80 DUP2 DUP2 MSTORE POP POP DUP1 PUSH2 0x100 DUP2 DUP2 MSTORE POP POP POP POP POP POP POP POP PUSH3 0x2D2 CALLER PUSH3 0x2A7 PUSH3 0x31C PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0xA PUSH3 0x2B5 SWAP2 SWAP1 PUSH3 0xAF1 JUMP JUMPDEST PUSH4 0x3B9ACA00 PUSH3 0x2C6 SWAP2 SWAP1 PUSH3 0xC2E JUMP JUMPDEST PUSH3 0x325 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xDC0 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP4 DUP4 CHAINID ADDRESS PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH3 0x2FD SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH3 0x96A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x398 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x38F SWAP1 PUSH3 0x9E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x3AC PUSH1 0x0 DUP4 DUP4 PUSH3 0x48A PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x3C0 SWAP2 SWAP1 PUSH3 0xA39 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x417 SWAP2 SWAP1 PUSH3 0xA39 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x47E SWAP2 SWAP1 PUSH3 0xA0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH3 0x49A PUSH3 0x4FA PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST ISZERO PUSH3 0x4DD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x4D4 SWAP1 PUSH3 0x9C7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x4F5 DUP4 DUP4 DUP4 PUSH3 0x511 PUSH1 0x20 SHL PUSH3 0x11C1 OR PUSH1 0x20 SHR JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH3 0x529 DUP4 DUP4 DUP4 PUSH3 0x60C PUSH1 0x20 SHL PUSH3 0x127B OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x586 JUMPI PUSH3 0x570 DUP3 PUSH3 0x611 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x580 PUSH3 0x674 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x607 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x5E3 JUMPI PUSH3 0x5CD DUP4 PUSH3 0x611 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x5DD PUSH3 0x674 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x606 JUMP JUMPDEST PUSH3 0x5F4 DUP4 PUSH3 0x611 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x605 DUP3 PUSH3 0x611 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH3 0x671 PUSH1 0x5 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH3 0x665 DUP4 PUSH3 0x698 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x6E0 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP JUMP JUMPDEST PUSH3 0x696 PUSH1 0x6 PUSH3 0x68A PUSH3 0x773 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x6E0 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST 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 0x0 PUSH3 0x6F9 PUSH1 0x8 PUSH3 0x77D PUSH1 0x20 SHL PUSH3 0x1280 OR PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP DUP1 PUSH3 0x710 DUP5 PUSH1 0x0 ADD PUSH3 0x78B PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST LT ISZERO PUSH3 0x76E JUMPI DUP3 PUSH1 0x0 ADD DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE DUP3 PUSH1 0x1 ADD DUP3 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP1 SLOAD SWAP1 POP EQ ISZERO PUSH3 0x7A4 JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0x7FE JUMP JUMPDEST DUP2 PUSH1 0x1 DUP4 DUP1 SLOAD SWAP1 POP PUSH3 0x7B8 SWAP2 SWAP1 PUSH3 0xC8F JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH3 0x7F0 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x811 SWAP1 PUSH3 0xD1F JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x835 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x881 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x850 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x881 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x881 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x880 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x863 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x890 SWAP2 SWAP1 PUSH3 0x894 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x8AF JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x895 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH3 0x8BE DUP2 PUSH3 0xCCA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH3 0x8CF DUP2 PUSH3 0xCDE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x8E4 PUSH1 0x10 DUP4 PUSH3 0xA28 JUMP JUMPDEST SWAP2 POP PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x926 PUSH1 0x1F DUP4 PUSH3 0xA28 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x964 DUP2 PUSH3 0xD08 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH3 0x981 PUSH1 0x0 DUP4 ADD DUP9 PUSH3 0x8C4 JUMP JUMPDEST PUSH3 0x990 PUSH1 0x20 DUP4 ADD DUP8 PUSH3 0x8C4 JUMP JUMPDEST PUSH3 0x99F PUSH1 0x40 DUP4 ADD DUP7 PUSH3 0x8C4 JUMP JUMPDEST PUSH3 0x9AE PUSH1 0x60 DUP4 ADD DUP6 PUSH3 0x959 JUMP JUMPDEST PUSH3 0x9BD PUSH1 0x80 DUP4 ADD DUP5 PUSH3 0x8B3 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x9E2 DUP2 PUSH3 0x8D5 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 PUSH3 0xA04 DUP2 PUSH3 0x917 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0xA22 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x959 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xA46 DUP3 PUSH3 0xD08 JUMP JUMPDEST SWAP2 POP PUSH3 0xA53 DUP4 PUSH3 0xD08 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0xA8B JUMPI PUSH3 0xA8A PUSH3 0xD55 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 SWAP2 POP DUP4 SWAP1 POP JUMPDEST PUSH1 0x1 DUP6 GT ISZERO PUSH3 0xAE8 JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH3 0xAC0 JUMPI PUSH3 0xABF PUSH3 0xD55 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH3 0xAD0 JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH3 0xAE0 DUP6 PUSH3 0xDB3 JUMP JUMPDEST SWAP5 POP PUSH3 0xAA0 JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xAFE DUP3 PUSH3 0xD08 JUMP JUMPDEST SWAP2 POP PUSH3 0xB0B DUP4 PUSH3 0xD12 JUMP JUMPDEST SWAP3 POP PUSH3 0xB3A PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH3 0xB42 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH3 0xB54 JUMPI PUSH1 0x1 SWAP1 POP PUSH3 0xC27 JUMP JUMPDEST DUP2 PUSH3 0xB64 JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0xC27 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH3 0xB7D JUMPI PUSH1 0x2 DUP2 EQ PUSH3 0xB88 JUMPI PUSH3 0xBBE JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH3 0xC27 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH3 0xB9D JUMPI PUSH3 0xB9C PUSH3 0xD55 JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH3 0xBB7 JUMPI PUSH3 0xBB6 PUSH3 0xD55 JUMP JUMPDEST JUMPDEST POP PUSH3 0xC27 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH3 0xBF8 JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH3 0xBF2 JUMPI PUSH3 0xBF1 PUSH3 0xD55 JUMP JUMPDEST JUMPDEST PUSH3 0xC27 JUMP JUMPDEST PUSH3 0xC07 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH3 0xA96 JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH3 0xC21 JUMPI PUSH3 0xC20 PUSH3 0xD55 JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xC3B DUP3 PUSH3 0xD08 JUMP JUMPDEST SWAP2 POP PUSH3 0xC48 DUP4 PUSH3 0xD08 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0xC84 JUMPI PUSH3 0xC83 PUSH3 0xD55 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xC9C DUP3 PUSH3 0xD08 JUMP JUMPDEST SWAP2 POP PUSH3 0xCA9 DUP4 PUSH3 0xD08 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH3 0xCBF JUMPI PUSH3 0xCBE PUSH3 0xD55 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xCD7 DUP3 PUSH3 0xCE8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 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 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0xD38 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0xD4F JUMPI PUSH3 0xD4E PUSH3 0xD84 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 DUP2 PUSH1 0x1 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x3334 PUSH3 0xE10 PUSH1 0x0 CODECOPY PUSH1 0x0 PUSH2 0xE0E ADD MSTORE PUSH1 0x0 PUSH2 0x1737 ADD MSTORE PUSH1 0x0 PUSH2 0x1779 ADD MSTORE PUSH1 0x0 PUSH2 0x1758 ADD MSTORE PUSH1 0x0 PUSH2 0x16E4 ADD MSTORE PUSH1 0x0 PUSH2 0x170C ADD MSTORE PUSH2 0x3334 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 0x173 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x9711715A GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x42A JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x45A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x476 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x4A6 JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0x9711715A EQ PUSH2 0x3C0 JUMPI DUP1 PUSH4 0x981B24D0 EQ PUSH2 0x3CA JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x3FA JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x324 JUMPI DUP1 PUSH4 0x79CC6790 EQ PUSH2 0x32E JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x34A JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x37A JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x384 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x3A2 JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0x39509351 GT PUSH2 0x130 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x280 JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x28A JUMPI DUP1 PUSH4 0x4EE2CD7E EQ PUSH2 0x2A6 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x2D6 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2F4 JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x178 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x196 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1E4 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x214 JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x232 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x180 PUSH2 0x4C2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18D SWAP2 SWAP1 PUSH2 0x2D2B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AB SWAP2 SWAP1 PUSH2 0x233C JUMP JUMPDEST PUSH2 0x554 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BD SWAP2 SWAP1 PUSH2 0x2BFC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CE PUSH2 0x572 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DB SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F9 SWAP2 SWAP1 PUSH2 0x224F JUMP JUMPDEST PUSH2 0x57C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20B SWAP2 SWAP1 PUSH2 0x2BFC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x21C PUSH2 0x67D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x229 SWAP2 SWAP1 PUSH2 0x3008 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23A PUSH2 0x686 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x247 SWAP2 SWAP1 PUSH2 0x2C17 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x265 SWAP2 SWAP1 PUSH2 0x233C JUMP JUMPDEST PUSH2 0x695 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x277 SWAP2 SWAP1 PUSH2 0x2BFC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x288 PUSH2 0x741 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x29F SWAP2 SWAP1 PUSH2 0x2378 JUMP JUMPDEST PUSH2 0x7C7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2BB SWAP2 SWAP1 PUSH2 0x233C JUMP JUMPDEST PUSH2 0x7DB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2CD SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DE PUSH2 0x84B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2EB SWAP2 SWAP1 PUSH2 0x2BFC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x30E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x309 SWAP2 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH2 0x862 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x31B SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x32C PUSH2 0x8AA JUMP JUMPDEST STOP JUMPDEST PUSH2 0x348 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x343 SWAP2 SWAP1 PUSH2 0x233C JUMP JUMPDEST PUSH2 0x9E7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x364 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x35F SWAP2 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH2 0xA6B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x371 SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x382 PUSH2 0xABB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x38C PUSH2 0xB41 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x399 SWAP2 SWAP1 PUSH2 0x2BE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3AA PUSH2 0xB6B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B7 SWAP2 SWAP1 PUSH2 0x2D2B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3C8 PUSH2 0xBFD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3E4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3DF SWAP2 SWAP1 PUSH2 0x2378 JUMP JUMPDEST PUSH2 0xC84 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3F1 SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x414 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x40F SWAP2 SWAP1 PUSH2 0x233C JUMP JUMPDEST PUSH2 0xCB5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x421 SWAP2 SWAP1 PUSH2 0x2BFC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x444 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x43F SWAP2 SWAP1 PUSH2 0x233C JUMP JUMPDEST PUSH2 0xDA9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x451 SWAP2 SWAP1 PUSH2 0x2BFC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x474 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x46F SWAP2 SWAP1 PUSH2 0x229E JUMP JUMPDEST PUSH2 0xDC7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x490 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x48B SWAP2 SWAP1 PUSH2 0x2213 JUMP JUMPDEST PUSH2 0xF8E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x49D SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4BB SWAP2 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH2 0x1015 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x4D1 SWAP1 PUSH2 0x3197 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 0x4FD SWAP1 PUSH2 0x3197 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x54A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x51F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x54A 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 0x52D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x568 PUSH2 0x561 PUSH2 0x128E JUMP JUMPDEST DUP5 DUP5 PUSH2 0x1296 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x589 DUP5 DUP5 DUP5 PUSH2 0x1461 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x5D4 PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x654 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x64B SWAP1 PUSH2 0x2EED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x671 DUP6 PUSH2 0x660 PUSH2 0x128E JUMP JUMPDEST DUP6 DUP5 PUSH2 0x66C SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST PUSH2 0x1296 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x690 PUSH2 0x16E0 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x737 PUSH2 0x6A2 PUSH2 0x128E JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x6B0 PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x732 SWAP2 SWAP1 PUSH2 0x304A JUMP JUMPDEST PUSH2 0x1296 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x749 PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x767 PUSH2 0xB41 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7BD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7B4 SWAP1 PUSH2 0x2F0D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7C5 PUSH2 0x17A3 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x7D8 PUSH2 0x7D2 PUSH2 0x128E JUMP JUMPDEST DUP3 PUSH2 0x1845 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x828 DUP5 PUSH1 0x5 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH2 0x1A19 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x83F JUMPI PUSH2 0x83A DUP6 PUSH2 0x862 JUMP JUMPDEST PUSH2 0x841 JUMP JUMPDEST DUP1 JUMPDEST SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 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 PUSH2 0x8B2 PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8D0 PUSH2 0xB41 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x926 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x91D SWAP1 PUSH2 0x2F0D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9FA DUP4 PUSH2 0x9F5 PUSH2 0x128E JUMP JUMPDEST PUSH2 0xF8E JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xA3F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA36 SWAP1 PUSH2 0x2F2D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA5C DUP4 PUSH2 0xA4B PUSH2 0x128E JUMP JUMPDEST DUP5 DUP5 PUSH2 0xA57 SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST PUSH2 0x1296 JUMP JUMPDEST PUSH2 0xA66 DUP4 DUP4 PUSH2 0x1845 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAB4 PUSH1 0xA PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH2 0x1280 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xAC3 PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xAE1 PUSH2 0xB41 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xB37 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB2E SWAP1 PUSH2 0x2F0D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB3F PUSH2 0x1B37 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0xB7A SWAP1 PUSH2 0x3197 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 0xBA6 SWAP1 PUSH2 0x3197 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xBF3 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xBC8 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xBF3 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 0xBD6 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xC05 PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC23 PUSH2 0xB41 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xC79 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC70 SWAP1 PUSH2 0x2F0D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xC81 PUSH2 0x1BDA JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0xC94 DUP5 PUSH1 0x6 PUSH2 0x1A19 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xCAA JUMPI PUSH2 0xCA5 PUSH2 0x572 JUMP JUMPDEST PUSH2 0xCAC JUMP JUMPDEST DUP1 JUMPDEST SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0xCC4 PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0xD81 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD78 SWAP1 PUSH2 0x2FCD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD9E PUSH2 0xD8C PUSH2 0x128E JUMP JUMPDEST DUP6 DUP6 DUP5 PUSH2 0xD99 SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST PUSH2 0x1296 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDBD PUSH2 0xDB6 PUSH2 0x128E JUMP JUMPDEST DUP5 DUP5 PUSH2 0x1461 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0xE0A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE01 SWAP1 PUSH2 0x2E2D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0xE77 PUSH1 0xA PUSH1 0x0 DUP15 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH2 0x1280 JUMP JUMPDEST DUP10 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xE8D SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2C32 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0xEB0 DUP3 PUSH2 0x1C32 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xEC0 DUP3 DUP8 DUP8 DUP8 PUSH2 0x1C4C JUMP JUMPDEST SWAP1 POP DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xF30 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF27 SWAP1 PUSH2 0x2ECD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF77 PUSH1 0xA PUSH1 0x0 DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH2 0x1DD7 JUMP JUMPDEST PUSH2 0xF82 DUP11 DUP11 DUP11 PUSH2 0x1296 JUMP JUMPDEST POP POP POP POP POP POP POP POP 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 PUSH2 0x101D PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x103B PUSH2 0xB41 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1091 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1088 SWAP1 PUSH2 0x2F0D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1101 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10F8 SWAP1 PUSH2 0x2DED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH1 0x9 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x11CC DUP4 DUP4 DUP4 PUSH2 0x127B JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1217 JUMPI PUSH2 0x120A DUP3 PUSH2 0x1DED JUMP JUMPDEST PUSH2 0x1212 PUSH2 0x1E40 JUMP JUMPDEST PUSH2 0x1276 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1262 JUMPI PUSH2 0x1255 DUP4 PUSH2 0x1DED JUMP JUMPDEST PUSH2 0x125D PUSH2 0x1E40 JUMP JUMPDEST PUSH2 0x1275 JUMP JUMPDEST PUSH2 0x126B DUP4 PUSH2 0x1DED JUMP JUMPDEST PUSH2 0x1274 DUP3 PUSH2 0x1DED JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1306 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12FD SWAP1 PUSH2 0x2F8D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1376 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x136D SWAP1 PUSH2 0x2E0D 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 0x1454 SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x14D1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14C8 SWAP1 PUSH2 0x2F6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1541 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1538 SWAP1 PUSH2 0x2D8D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x154C DUP4 DUP4 DUP4 PUSH2 0x1E54 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 0x15D2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15C9 SWAP1 PUSH2 0x2E4D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x15DE SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x166E SWAP2 SWAP1 PUSH2 0x304A JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x16D2 SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 CHAINID EQ ISZERO PUSH2 0x1732 JUMPI PUSH32 0x0 SWAP1 POP PUSH2 0x17A0 JUMP JUMPDEST PUSH2 0x179D PUSH32 0x0 PUSH32 0x0 PUSH32 0x0 PUSH2 0x1EAC JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0x17AB PUSH2 0x84B JUMP JUMPDEST PUSH2 0x17EA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17E1 SWAP1 PUSH2 0x2DAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x9 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x182E PUSH2 0x128E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x183B SWAP2 SWAP1 PUSH2 0x2BE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x18B5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18AC SWAP1 PUSH2 0x2F4D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x18C1 DUP3 PUSH1 0x0 DUP4 PUSH2 0x1E54 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1947 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x193E SWAP1 PUSH2 0x2DCD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x1953 SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 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 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x19A7 SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1A0C SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 GT PUSH2 0x1A5F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A56 SWAP1 PUSH2 0x2FAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1A69 PUSH1 0x8 PUSH2 0x1280 JUMP JUMPDEST DUP5 GT ISZERO PUSH2 0x1AAB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AA2 SWAP1 PUSH2 0x2D6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1AC3 DUP6 DUP6 PUSH1 0x0 ADD PUSH2 0x1EE6 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x0 ADD DUP1 SLOAD SWAP1 POP DUP2 EQ ISZERO PUSH2 0x1AE1 JUMPI PUSH1 0x0 DUP1 SWAP3 POP SWAP3 POP POP PUSH2 0x1B30 JUMP JUMPDEST PUSH1 0x1 DUP5 PUSH1 0x1 ADD DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x1B1F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP3 POP SWAP3 POP POP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x1B3F PUSH2 0x84B JUMP JUMPDEST ISZERO PUSH2 0x1B7F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B76 SWAP1 PUSH2 0x2E8D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x9 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x1BC3 PUSH2 0x128E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BD0 SWAP2 SWAP1 PUSH2 0x2BE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BE6 PUSH1 0x8 PUSH2 0x1DD7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BF2 PUSH1 0x8 PUSH2 0x1280 JUMP JUMPDEST SWAP1 POP PUSH32 0x8030E83B04D87BEF53480E26263266D6CA66863AA8506ACA6F2559D18AA1CB67 DUP2 PUSH1 0x40 MLOAD PUSH2 0x1C23 SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C45 PUSH2 0x1C3F PUSH2 0x16E0 JUMP JUMPDEST DUP4 PUSH2 0x200C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP3 PUSH1 0x0 SHR GT ISZERO PUSH2 0x1CB4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CAB SWAP1 PUSH2 0x2E6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1B DUP5 PUSH1 0xFF AND EQ DUP1 PUSH2 0x1CC9 JUMPI POP PUSH1 0x1C DUP5 PUSH1 0xFF AND EQ JUMPDEST PUSH2 0x1D08 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CFF SWAP1 PUSH2 0x2EAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP7 DUP7 DUP7 DUP7 PUSH1 0x40 MLOAD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH2 0x1D2D SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2CE6 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1D4F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP PUSH1 0x20 PUSH1 0x40 MLOAD SUB MLOAD SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1DCB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1DC2 SWAP1 PUSH2 0x2D4D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x1E3D PUSH1 0x5 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH2 0x1E38 DUP4 PUSH2 0x862 JUMP JUMPDEST PUSH2 0x203F JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x1E52 PUSH1 0x6 PUSH2 0x1E4D PUSH2 0x572 JUMP JUMPDEST PUSH2 0x203F JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x1E5C PUSH2 0x84B JUMP JUMPDEST ISZERO PUSH2 0x1E9C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E93 SWAP1 PUSH2 0x2E8D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1EA7 DUP4 DUP4 DUP4 PUSH2 0x11C1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 DUP4 DUP4 CHAINID ADDRESS PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1EC7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2C93 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 DUP1 SLOAD SWAP1 POP EQ ISZERO PUSH2 0x1EFD JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x2006 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP5 DUP1 SLOAD SWAP1 POP SWAP1 POP JUMPDEST DUP1 DUP3 LT ISZERO PUSH2 0x1F87 JUMPI PUSH1 0x0 PUSH2 0x1F1C DUP4 DUP4 PUSH2 0x20BC JUMP JUMPDEST SWAP1 POP DUP5 DUP7 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x1F58 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD GT ISZERO PUSH2 0x1F71 JUMPI DUP1 SWAP2 POP PUSH2 0x1F81 JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH2 0x1F7E SWAP2 SWAP1 PUSH2 0x304A JUMP JUMPDEST SWAP3 POP JUMPDEST POP PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x0 DUP3 GT DUP1 ISZERO PUSH2 0x1FE5 JUMPI POP DUP4 DUP6 PUSH1 0x1 DUP5 PUSH2 0x1FA1 SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x1FD8 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ JUMPDEST ISZERO PUSH2 0x2000 JUMPI PUSH1 0x1 DUP3 PUSH2 0x1FF7 SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x2006 JUMP JUMPDEST DUP2 SWAP3 POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2021 SWAP3 SWAP2 SWAP1 PUSH2 0x2BAA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x204B PUSH1 0x8 PUSH2 0x1280 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x205A DUP5 PUSH1 0x0 ADD PUSH2 0x2123 JUMP JUMPDEST LT ISZERO PUSH2 0x20B7 JUMPI DUP3 PUSH1 0x0 ADD DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE DUP3 PUSH1 0x1 ADD DUP3 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 DUP4 PUSH2 0x20CC SWAP2 SWAP1 PUSH2 0x31D3 JUMP JUMPDEST PUSH1 0x2 DUP6 PUSH2 0x20D9 SWAP2 SWAP1 PUSH2 0x31D3 JUMP JUMPDEST PUSH2 0x20E3 SWAP2 SWAP1 PUSH2 0x304A JUMP JUMPDEST PUSH2 0x20ED SWAP2 SWAP1 PUSH2 0x30A0 JUMP JUMPDEST PUSH1 0x2 DUP4 PUSH2 0x20FA SWAP2 SWAP1 PUSH2 0x30A0 JUMP JUMPDEST PUSH1 0x2 DUP6 PUSH2 0x2107 SWAP2 SWAP1 PUSH2 0x30A0 JUMP JUMPDEST PUSH2 0x2111 SWAP2 SWAP1 PUSH2 0x304A JUMP JUMPDEST PUSH2 0x211B SWAP2 SWAP1 PUSH2 0x304A JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP1 SLOAD SWAP1 POP EQ ISZERO PUSH2 0x213A JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x2191 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP4 DUP1 SLOAD SWAP1 POP PUSH2 0x214C SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x2183 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x21A5 DUP2 PUSH2 0x32A2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x21BA DUP2 PUSH2 0x32B9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x21CF DUP2 PUSH2 0x32D0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x21E4 DUP2 PUSH2 0x32E7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x21FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x220A DUP5 DUP3 DUP6 ADD PUSH2 0x2196 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2226 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2234 DUP6 DUP3 DUP7 ADD PUSH2 0x2196 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2245 DUP6 DUP3 DUP7 ADD PUSH2 0x2196 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 0x2264 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2272 DUP7 DUP3 DUP8 ADD PUSH2 0x2196 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x2283 DUP7 DUP3 DUP8 ADD PUSH2 0x2196 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x2294 DUP7 DUP3 DUP8 ADD PUSH2 0x21C0 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x22B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x22C7 DUP11 DUP3 DUP12 ADD PUSH2 0x2196 JUMP JUMPDEST SWAP8 POP POP PUSH1 0x20 PUSH2 0x22D8 DUP11 DUP3 DUP12 ADD PUSH2 0x2196 JUMP JUMPDEST SWAP7 POP POP PUSH1 0x40 PUSH2 0x22E9 DUP11 DUP3 DUP12 ADD PUSH2 0x21C0 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x60 PUSH2 0x22FA DUP11 DUP3 DUP12 ADD PUSH2 0x21C0 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x80 PUSH2 0x230B DUP11 DUP3 DUP12 ADD PUSH2 0x21D5 JUMP JUMPDEST SWAP4 POP POP PUSH1 0xA0 PUSH2 0x231C DUP11 DUP3 DUP12 ADD PUSH2 0x21AB JUMP JUMPDEST SWAP3 POP POP PUSH1 0xC0 PUSH2 0x232D DUP11 DUP3 DUP12 ADD PUSH2 0x21AB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x234F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x235D DUP6 DUP3 DUP7 ADD PUSH2 0x2196 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x236E DUP6 DUP3 DUP7 ADD PUSH2 0x21C0 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x238A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2398 DUP5 DUP3 DUP6 ADD PUSH2 0x21C0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x23AA DUP2 PUSH2 0x3105 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x23B9 DUP2 PUSH2 0x3117 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x23C8 DUP2 PUSH2 0x3123 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x23DF PUSH2 0x23DA DUP3 PUSH2 0x3123 JUMP JUMPDEST PUSH2 0x31C9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x23F0 DUP3 PUSH2 0x3023 JUMP JUMPDEST PUSH2 0x23FA DUP2 DUP6 PUSH2 0x302E JUMP JUMPDEST SWAP4 POP PUSH2 0x240A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3164 JUMP JUMPDEST PUSH2 0x2413 DUP2 PUSH2 0x3291 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x242B PUSH1 0x18 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x246B PUSH1 0x1D DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433230536E617073686F743A206E6F6E6578697374656E74206964000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24AB PUSH1 0x23 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2511 PUSH1 0x14 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2551 PUSH1 0x22 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x25B7 PUSH1 0x26 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x261D PUSH1 0x22 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2683 PUSH1 0x2 DUP4 PUSH2 0x303F JUMP JUMPDEST SWAP2 POP PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x26C3 PUSH1 0x1D DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2703 PUSH1 0x26 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2769 PUSH1 0x22 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x27CF PUSH1 0x10 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x280F PUSH1 0x22 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2875 PUSH1 0x1E DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28B5 PUSH1 0x28 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x291B PUSH1 0x20 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x295B PUSH1 0x24 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A206275726E20616D6F756E74206578636565647320616C6C6F77 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x616E636500000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29C1 PUSH1 0x21 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A27 PUSH1 0x25 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A8D PUSH1 0x24 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AF3 PUSH1 0x16 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433230536E617073686F743A206964206973203000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B33 PUSH1 0x25 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2B95 DUP2 PUSH2 0x314D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2BA4 DUP2 PUSH2 0x3157 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BB5 DUP3 PUSH2 0x2676 JUMP JUMPDEST SWAP2 POP PUSH2 0x2BC1 DUP3 DUP6 PUSH2 0x23CE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x2BD1 DUP3 DUP5 PUSH2 0x23CE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2BF6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x23A1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2C11 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x23B0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2C2C PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x23BF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xC0 DUP3 ADD SWAP1 POP PUSH2 0x2C47 PUSH1 0x0 DUP4 ADD DUP10 PUSH2 0x23BF JUMP JUMPDEST PUSH2 0x2C54 PUSH1 0x20 DUP4 ADD DUP9 PUSH2 0x23A1 JUMP JUMPDEST PUSH2 0x2C61 PUSH1 0x40 DUP4 ADD DUP8 PUSH2 0x23A1 JUMP JUMPDEST PUSH2 0x2C6E PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x2B8C JUMP JUMPDEST PUSH2 0x2C7B PUSH1 0x80 DUP4 ADD DUP6 PUSH2 0x2B8C JUMP JUMPDEST PUSH2 0x2C88 PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x2B8C JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x2CA8 PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x23BF JUMP JUMPDEST PUSH2 0x2CB5 PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x23BF JUMP JUMPDEST PUSH2 0x2CC2 PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x23BF JUMP JUMPDEST PUSH2 0x2CCF PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x2B8C JUMP JUMPDEST PUSH2 0x2CDC PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x23A1 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x2CFB PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x23BF JUMP JUMPDEST PUSH2 0x2D08 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x2B9B JUMP JUMPDEST PUSH2 0x2D15 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x23BF JUMP JUMPDEST PUSH2 0x2D22 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x23BF JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2D45 DUP2 DUP5 PUSH2 0x23E5 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 0x2D66 DUP2 PUSH2 0x241E 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 0x2D86 DUP2 PUSH2 0x245E 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 0x2DA6 DUP2 PUSH2 0x249E 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 0x2DC6 DUP2 PUSH2 0x2504 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 0x2DE6 DUP2 PUSH2 0x2544 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 0x2E06 DUP2 PUSH2 0x25AA 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 0x2E26 DUP2 PUSH2 0x2610 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 0x2E46 DUP2 PUSH2 0x26B6 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 0x2E66 DUP2 PUSH2 0x26F6 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 0x2E86 DUP2 PUSH2 0x275C 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 0x2EA6 DUP2 PUSH2 0x27C2 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 0x2EC6 DUP2 PUSH2 0x2802 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 0x2EE6 DUP2 PUSH2 0x2868 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 0x2F06 DUP2 PUSH2 0x28A8 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 0x2F26 DUP2 PUSH2 0x290E 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 0x2F46 DUP2 PUSH2 0x294E 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 0x2F66 DUP2 PUSH2 0x29B4 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 0x2F86 DUP2 PUSH2 0x2A1A 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 0x2FA6 DUP2 PUSH2 0x2A80 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 0x2FC6 DUP2 PUSH2 0x2AE6 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 0x2FE6 DUP2 PUSH2 0x2B26 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3002 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2B8C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x301D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2B9B 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 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3055 DUP3 PUSH2 0x314D JUMP JUMPDEST SWAP2 POP PUSH2 0x3060 DUP4 PUSH2 0x314D JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x3095 JUMPI PUSH2 0x3094 PUSH2 0x3204 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30AB DUP3 PUSH2 0x314D JUMP JUMPDEST SWAP2 POP PUSH2 0x30B6 DUP4 PUSH2 0x314D JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x30C6 JUMPI PUSH2 0x30C5 PUSH2 0x3233 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30DC DUP3 PUSH2 0x314D JUMP JUMPDEST SWAP2 POP PUSH2 0x30E7 DUP4 PUSH2 0x314D JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x30FA JUMPI PUSH2 0x30F9 PUSH2 0x3204 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3110 DUP3 PUSH2 0x312D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 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 0x3182 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3167 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x3191 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 0x31AF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x31C3 JUMPI PUSH2 0x31C2 PUSH2 0x3262 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31DE DUP3 PUSH2 0x314D JUMP JUMPDEST SWAP2 POP PUSH2 0x31E9 DUP4 PUSH2 0x314D JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x31F9 JUMPI PUSH2 0x31F8 PUSH2 0x3233 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x32AB DUP2 PUSH2 0x3105 JUMP JUMPDEST DUP2 EQ PUSH2 0x32B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x32C2 DUP2 PUSH2 0x3123 JUMP JUMPDEST DUP2 EQ PUSH2 0x32CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x32D9 DUP2 PUSH2 0x314D JUMP JUMPDEST DUP2 EQ PUSH2 0x32E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x32F0 DUP2 PUSH2 0x3157 JUMP JUMPDEST DUP2 EQ PUSH2 0x32FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP1 0x5E 0xE COINBASE PUSH20 0x3155B77615473E943D4CDBAC8C9460FEDC405BD9 0xEF OR DUP16 SWAP16 0xA8 LOG0 0xD8 PUSH5 0x736F6C6343 STOP ADDMOD STOP STOP CALLER ",
"sourceMap": "452:640:14:-:0;;;1042:95:6;997:140;;;;;543:121:14;;;;;;;;;;1369:57:6;;;;;;;;;;;;;;;;;1408:4;2339:542:12;;;;;;;;;;;;;;;;;1842:114:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1917:5;1909;:13;;;;;;;;;;;;:::i;:::-;;1942:7;1932;:17;;;;;;;;;;;;:::i;:::-;;1842:114;;867:17:0;887:12;:10;;;:12;;:::i;:::-;867:32;;918:9;909:6;;:18;;;;;;;;;;;;;;;;;;975:9;942:43;;971:1;942:43;;;;;;;;;;;;842:150;935:5:1;925:7;;:15;;;;;;;;;;;;;;;;;;2404:18:12;2441:4;2425:22;;;;;;2404:43;;2457:21;2497:7;2481:25;;;;;;2457:49;;2516:16;2535:95;2516:114;;2655:10;2640:25;;;;;;2693:13;2675:31;;;;;;2735:13;2716:32;;;;;;2785:58;2807:8;2817:10;2829:13;2785:21;;;:58;;:::i;:::-;2758:85;;;;;;2866:8;2853:21;;;;;;2339:542;;;;;1369:57:6;609:48:14::2;615:10;646;:8;;;:10;;:::i;:::-;640:2;:16;;;;:::i;:::-;627:10;:29;;;;:::i;:::-;609:5;;;:48;;:::i;:::-;452:640:::0;;586:96:9;639:7;665:10;658:17;;586:96;:::o;3248:327:12:-;3350:7;3427:8;3453:4;3475:7;3500:13;3539:4;3399:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3376:192;;;;;;3369:199;;3248:327;;;;;:::o;2940:82:2:-;2989:5;3013:2;3006:9;;2940:82;:::o;7940:330::-;8042:1;8023:21;;:7;:21;;;;8015:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8091:49;8120:1;8124:7;8133:6;8091:20;;;:49;;:::i;:::-;8167:6;8151:12;;:22;;;;;;;:::i;:::-;;;;;;;;8205:6;8183:9;:18;8193:7;8183:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8247:7;8226:37;;8243:1;8226:37;;;8256:6;8226:37;;;;;;:::i;:::-;;;;;;;;7940:330;;:::o;875:215:14:-;1356:8:1;:6;;;:8;;:::i;:::-;1355:9;1347:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1039:44:14::1;1066:4;1072:2;1076:6;1039:26;;;;;:44;;:::i;:::-;875:215:::0;;;:::o;1042:84:1:-;1089:4;1112:7;;;;;;;;;;;1105:14;;1042:84;:::o;5022:526:5:-;5128:44;5155:4;5161:2;5165:6;5128:26;;;;;:44;;:::i;:::-;5201:1;5185:18;;:4;:18;;;5181:361;;;5231:26;5254:2;5231:22;;;:26;;:::i;:::-;5267:28;:26;;;:28;;:::i;:::-;5181:361;;;5328:1;5314:16;;:2;:16;;;5310:232;;;5358:28;5381:4;5358:22;;;:28;;:::i;:::-;5396;:26;;;:28;;:::i;:::-;5310:232;;;5469:28;5492:4;5469:22;;;:28;;:::i;:::-;5507:26;5530:2;5507:22;;;:26;;:::i;:::-;5310:232;5181:361;5022:526;;;:::o;10423:92:2:-;;;;:::o;7224:144:5:-;7291:70;7307:24;:33;7332:7;7307:33;;;;;;;;;;;;;;;7342:18;7352:7;7342:9;;;:18;;:::i;:::-;7291:15;;;:70;;:::i;:::-;7224:144;:::o;7374:116::-;7430:53;7446:21;7469:13;:11;;;:13;;:::i;:::-;7430:15;;;:53;;:::i;:::-;7374:116::o;3246:125:2:-;3320:7;3346:9;:18;3356:7;3346:18;;;;;;;;;;;;;;;;3339:25;;3246:125;;;:::o;7496:309:5:-;7590:17;7610:28;:18;:26;;;;;:28;;:::i;:::-;7590:48;;7685:9;7652:30;7668:9;:13;;7652:15;;;:30;;:::i;:::-;:42;7648:151;;;7710:9;:13;;7729:9;7710:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7753:9;:16;;7775:12;7753:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7648:151;7496:309;;;:::o;3082:106:2:-;3143:7;3169:12;;3162:19;;3082:106;:::o;773:112:10:-;838:7;864;:14;;;857:21;;773:112;;;:::o;7811:206:5:-;7881:7;7918:1;7904:3;:10;;;;:15;7900:111;;;7942:1;7935:8;;;;7900:111;7981:3;7998:1;7985:3;:10;;;;:14;;;;:::i;:::-;7981:19;;;;;;;;;;;;;;;;;;;;;;;;7974:26;;7811:206;;;;:::o;452:640:14:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:118:15:-;94:24;112:5;94:24;:::i;:::-;89:3;82:37;72:53;;:::o;131:118::-;218:24;236:5;218:24;:::i;:::-;213:3;206:37;196:53;;:::o;255:314::-;;418:67;482:2;477:3;418:67;:::i;:::-;411:74;;515:18;511:1;506:3;502:11;495:39;560:2;555:3;551:12;544:19;;401:168;;;:::o;575:329::-;;738:67;802:2;797:3;738:67;:::i;:::-;731:74;;835:33;831:1;826:3;822:11;815:54;895:2;890:3;886:12;879:19;;721:183;;;:::o;910:118::-;997:24;1015:5;997:24;:::i;:::-;992:3;985:37;975:53;;:::o;1034:664::-;;1277:3;1266:9;1262:19;1254:27;;1291:71;1359:1;1348:9;1344:17;1335:6;1291:71;:::i;:::-;1372:72;1440:2;1429:9;1425:18;1416:6;1372:72;:::i;:::-;1454;1522:2;1511:9;1507:18;1498:6;1454:72;:::i;:::-;1536;1604:2;1593:9;1589:18;1580:6;1536:72;:::i;:::-;1618:73;1686:3;1675:9;1671:19;1662:6;1618:73;:::i;:::-;1244:454;;;;;;;;:::o;1704:419::-;;1908:2;1897:9;1893:18;1885:26;;1957:9;1951:4;1947:20;1943:1;1932:9;1928:17;1921:47;1985:131;2111:4;1985:131;:::i;:::-;1977:139;;1875:248;;;:::o;2129:419::-;;2333:2;2322:9;2318:18;2310:26;;2382:9;2376:4;2372:20;2368:1;2357:9;2353:17;2346:47;2410:131;2536:4;2410:131;:::i;:::-;2402:139;;2300:248;;;:::o;2554:222::-;;2685:2;2674:9;2670:18;2662:26;;2698:71;2766:1;2755:9;2751:17;2742:6;2698:71;:::i;:::-;2652:124;;;;:::o;2782:169::-;;2900:6;2895:3;2888:19;2940:4;2935:3;2931:14;2916:29;;2878:73;;;;:::o;2957:305::-;;3016:20;3034:1;3016:20;:::i;:::-;3011:25;;3050:20;3068:1;3050:20;:::i;:::-;3045:25;;3204:1;3136:66;3132:74;3129:1;3126:81;3123:2;;;3210:18;;:::i;:::-;3123:2;3254:1;3251;3247:9;3240:16;;3001:261;;;;:::o;3268:848::-;;;3360:6;3351:15;;3384:5;3375:14;;3398:712;3419:1;3409:8;3406:15;3398:712;;;3514:4;3509:3;3505:14;3499:4;3496:24;3493:2;;;3523:18;;:::i;:::-;3493:2;3573:1;3563:8;3559:16;3556:2;;;3988:4;3981:5;3977:16;3968:25;;3556:2;4038:4;4032;4028:15;4020:23;;4068:32;4091:8;4068:32;:::i;:::-;4056:44;;3398:712;;;3341:775;;;;;;;:::o;4122:281::-;;4204:23;4222:4;4204:23;:::i;:::-;4196:31;;4248:25;4264:8;4248:25;:::i;:::-;4236:37;;4292:104;4329:66;4319:8;4313:4;4292:104;:::i;:::-;4283:113;;4186:217;;;;:::o;4409:1073::-;;4654:8;4644:2;;4675:1;4666:10;;4677:5;;4644:2;4703:4;4693:2;;4720:1;4711:10;;4722:5;;4693:2;4789:4;4837:1;4832:27;;;;4873:1;4868:191;;;;4782:277;;4832:27;4850:1;4841:10;;4852:5;;;4868:191;4913:3;4903:8;4900:17;4897:2;;;4920:18;;:::i;:::-;4897:2;4969:8;4966:1;4962:16;4953:25;;5004:3;4997:5;4994:14;4991:2;;;5011:18;;:::i;:::-;4991:2;5044:5;;;4782:277;;5168:2;5158:8;5155:16;5149:3;5143:4;5140:13;5136:36;5118:2;5108:8;5105:16;5100:2;5094:4;5091:12;5087:35;5071:111;5068:2;;;5224:8;5218:4;5214:19;5205:28;;5259:3;5252:5;5249:14;5246:2;;;5266:18;;:::i;:::-;5246:2;5299:5;;5068:2;5339:42;5377:3;5367:8;5361:4;5358:1;5339:42;:::i;:::-;5324:57;;;;5413:4;5408:3;5404:14;5397:5;5394:25;5391:2;;;5422:18;;:::i;:::-;5391:2;5471:4;5464:5;5460:16;5451:25;;4469:1013;;;;;;:::o;5488:348::-;;5551:20;5569:1;5551:20;:::i;:::-;5546:25;;5585:20;5603:1;5585:20;:::i;:::-;5580:25;;5773:1;5705:66;5701:74;5698:1;5695:81;5690:1;5683:9;5676:17;5672:105;5669:2;;;5780:18;;:::i;:::-;5669:2;5828:1;5825;5821:9;5810:20;;5536:300;;;;:::o;5842:191::-;;5902:20;5920:1;5902:20;:::i;:::-;5897:25;;5936:20;5954:1;5936:20;:::i;:::-;5931:25;;5975:1;5972;5969:8;5966:2;;;5980:18;;:::i;:::-;5966:2;6025:1;6022;6018:9;6010:17;;5887:146;;;;:::o;6039:96::-;;6105:24;6123:5;6105:24;:::i;:::-;6094:35;;6084:51;;;:::o;6141:77::-;;6207:5;6196:16;;6186:32;;;:::o;6224:126::-;;6301:42;6294:5;6290:54;6279:65;;6269:81;;;:::o;6356:77::-;;6422:5;6411:16;;6401:32;;;:::o;6439:86::-;;6514:4;6507:5;6503:16;6492:27;;6482:43;;;:::o;6531:320::-;;6612:1;6606:4;6602:12;6592:22;;6659:1;6653:4;6649:12;6680:18;6670:2;;6736:4;6728:6;6724:17;6714:27;;6670:2;6798;6790:6;6787:14;6767:18;6764:38;6761:2;;;6817:18;;:::i;:::-;6761:2;6582:269;;;;:::o;6857:180::-;6905:77;6902:1;6895:88;7002:4;6999:1;6992:15;7026:4;7023:1;7016:15;7043:180;7091:77;7088:1;7081:88;7188:4;7185:1;7178:15;7212:4;7209:1;7202:15;7229:102;;7318:5;7315:1;7311:13;7290:34;;7280:51;;;:::o;452:640:14:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:29508:15",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:15",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:15"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:15"
},
"nodeType": "YulFunctionCall",
"src": "78:20:15"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:15"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:15"
},
"nodeType": "YulFunctionCall",
"src": "107:33:15"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:15"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:15",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:15",
"type": ""
}
],
"src": "7:139:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:15",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:15"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:15"
},
"nodeType": "YulFunctionCall",
"src": "223:20:15"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:15"
}
],
"functionName": {
"name": "validator_revert_t_bytes32",
"nodeType": "YulIdentifier",
"src": "252:26:15"
},
"nodeType": "YulFunctionCall",
"src": "252:33:15"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:15"
}
]
},
"name": "abi_decode_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:15",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:15",
"type": ""
}
],
"src": "152:139:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "349:87:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "359:29:15",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "381:6:15"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "368:12:15"
},
"nodeType": "YulFunctionCall",
"src": "368:20:15"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "359:5:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "424:5:15"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "397:26:15"
},
"nodeType": "YulFunctionCall",
"src": "397:33:15"
},
"nodeType": "YulExpressionStatement",
"src": "397:33:15"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "327:6:15",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "335:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "343:5:15",
"type": ""
}
],
"src": "297:139:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "492:85:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "502:29:15",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "524:6:15"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "511:12:15"
},
"nodeType": "YulFunctionCall",
"src": "511:20:15"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "502:5:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "565:5:15"
}
],
"functionName": {
"name": "validator_revert_t_uint8",
"nodeType": "YulIdentifier",
"src": "540:24:15"
},
"nodeType": "YulFunctionCall",
"src": "540:31:15"
},
"nodeType": "YulExpressionStatement",
"src": "540:31:15"
}
]
},
"name": "abi_decode_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "470:6:15",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "478:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "486:5:15",
"type": ""
}
],
"src": "442:135:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "649:196:15",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "695:16:15",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "704:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "707:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "697:6:15"
},
"nodeType": "YulFunctionCall",
"src": "697:12:15"
},
"nodeType": "YulExpressionStatement",
"src": "697:12:15"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "670:7:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "679:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "666:3:15"
},
"nodeType": "YulFunctionCall",
"src": "666:23:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "691:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "662:3:15"
},
"nodeType": "YulFunctionCall",
"src": "662:32:15"
},
"nodeType": "YulIf",
"src": "659:2:15"
},
{
"nodeType": "YulBlock",
"src": "721:117:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "736:15:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "750:1:15",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "740:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "765:63:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "800:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "811:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "796:3:15"
},
"nodeType": "YulFunctionCall",
"src": "796:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "820:7:15"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "775:20:15"
},
"nodeType": "YulFunctionCall",
"src": "775:53:15"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "765:6:15"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "619:9:15",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "630:7:15",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "642:6:15",
"type": ""
}
],
"src": "583:262:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "934:324:15",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "980:16:15",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "989:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "992:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "982:6:15"
},
"nodeType": "YulFunctionCall",
"src": "982:12:15"
},
"nodeType": "YulExpressionStatement",
"src": "982:12:15"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "955:7:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "964:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "951:3:15"
},
"nodeType": "YulFunctionCall",
"src": "951:23:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "976:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "947:3:15"
},
"nodeType": "YulFunctionCall",
"src": "947:32:15"
},
"nodeType": "YulIf",
"src": "944:2:15"
},
{
"nodeType": "YulBlock",
"src": "1006:117:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1021:15:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1035:1:15",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1025:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1050:63:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1085:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1096:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1081:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1081:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1105:7:15"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1060:20:15"
},
"nodeType": "YulFunctionCall",
"src": "1060:53:15"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1050:6:15"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1133:118:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1148:16:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1162:2:15",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1152:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1178:63:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1213:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1224:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1209:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1209:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1233:7:15"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1188:20:15"
},
"nodeType": "YulFunctionCall",
"src": "1188:53:15"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1178:6:15"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "896:9:15",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "907:7:15",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "919:6:15",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "927:6:15",
"type": ""
}
],
"src": "851:407:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1364:452:15",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1410:16:15",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1419:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1422:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1412:6:15"
},
"nodeType": "YulFunctionCall",
"src": "1412:12:15"
},
"nodeType": "YulExpressionStatement",
"src": "1412:12:15"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1385:7:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1394:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1381:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1381:23:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1406:2:15",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1377:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1377:32:15"
},
"nodeType": "YulIf",
"src": "1374:2:15"
},
{
"nodeType": "YulBlock",
"src": "1436:117:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1451:15:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1465:1:15",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1455:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1480:63:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1515:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1526:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1511:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1511:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1535:7:15"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1490:20:15"
},
"nodeType": "YulFunctionCall",
"src": "1490:53:15"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1480:6:15"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1563:118:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1578:16:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:2:15",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1582:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1608:63:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1643:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1654:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1639:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1639:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1663:7:15"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1618:20:15"
},
"nodeType": "YulFunctionCall",
"src": "1618:53:15"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1608:6:15"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1691:118:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1706:16:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1720:2:15",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1710:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1736:63:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1771:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1782:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1767:3:15"
},
"nodeType": "YulFunctionCall",
"src": "1767:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1791:7:15"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1746:20:15"
},
"nodeType": "YulFunctionCall",
"src": "1746:53:15"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1736:6:15"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1318:9:15",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1329:7:15",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1341:6:15",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1349:6:15",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1357:6:15",
"type": ""
}
],
"src": "1264:552:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1988:966:15",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2035:16:15",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2044:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2047:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2037:6:15"
},
"nodeType": "YulFunctionCall",
"src": "2037:12:15"
},
"nodeType": "YulExpressionStatement",
"src": "2037:12:15"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2009:7:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2018:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2005:3:15"
},
"nodeType": "YulFunctionCall",
"src": "2005:23:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2030:3:15",
"type": "",
"value": "224"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2001:3:15"
},
"nodeType": "YulFunctionCall",
"src": "2001:33:15"
},
"nodeType": "YulIf",
"src": "1998:2:15"
},
{
"nodeType": "YulBlock",
"src": "2061:117:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2076:15:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2090:1:15",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2080:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2105:63:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2140:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2151:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2136:3:15"
},
"nodeType": "YulFunctionCall",
"src": "2136:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2160:7:15"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2115:20:15"
},
"nodeType": "YulFunctionCall",
"src": "2115:53:15"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2105:6:15"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2188:118:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2203:16:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2217:2:15",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2207:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2233:63:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2268:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2279:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2264:3:15"
},
"nodeType": "YulFunctionCall",
"src": "2264:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2288:7:15"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2243:20:15"
},
"nodeType": "YulFunctionCall",
"src": "2243:53:15"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2233:6:15"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2316:118:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2331:16:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2345:2:15",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2335:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2361:63:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2396:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2407:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2392:3:15"
},
"nodeType": "YulFunctionCall",
"src": "2392:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2416:7:15"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2371:20:15"
},
"nodeType": "YulFunctionCall",
"src": "2371:53:15"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2361:6:15"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2444:118:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2459:16:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2473:2:15",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2463:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2489:63:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2524:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2535:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2520:3:15"
},
"nodeType": "YulFunctionCall",
"src": "2520:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2544:7:15"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2499:20:15"
},
"nodeType": "YulFunctionCall",
"src": "2499:53:15"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2489:6:15"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2572:117:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2587:17:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2601:3:15",
"type": "",
"value": "128"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2591:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2618:61:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2651:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2662:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2647:3:15"
},
"nodeType": "YulFunctionCall",
"src": "2647:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2671:7:15"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "2628:18:15"
},
"nodeType": "YulFunctionCall",
"src": "2628:51:15"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "2618:6:15"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2699:119:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2714:17:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2728:3:15",
"type": "",
"value": "160"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2718:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2745:63:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2780:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2791:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2776:3:15"
},
"nodeType": "YulFunctionCall",
"src": "2776:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2800:7:15"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nodeType": "YulIdentifier",
"src": "2755:20:15"
},
"nodeType": "YulFunctionCall",
"src": "2755:53:15"
},
"variableNames": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "2745:6:15"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2828:119:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2843:17:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2857:3:15",
"type": "",
"value": "192"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2847:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2874:63:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2909:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2920:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2905:3:15"
},
"nodeType": "YulFunctionCall",
"src": "2905:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2929:7:15"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nodeType": "YulIdentifier",
"src": "2884:20:15"
},
"nodeType": "YulFunctionCall",
"src": "2884:53:15"
},
"variableNames": [
{
"name": "value6",
"nodeType": "YulIdentifier",
"src": "2874:6:15"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1910:9:15",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1921:7:15",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1933:6:15",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1941:6:15",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1949:6:15",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1957:6:15",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "1965:6:15",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "1973:6:15",
"type": ""
},
{
"name": "value6",
"nodeType": "YulTypedName",
"src": "1981:6:15",
"type": ""
}
],
"src": "1822:1132:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3043:324:15",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3089:16:15",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3098:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3101:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3091:6:15"
},
"nodeType": "YulFunctionCall",
"src": "3091:12:15"
},
"nodeType": "YulExpressionStatement",
"src": "3091:12:15"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3064:7:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3073:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3060:3:15"
},
"nodeType": "YulFunctionCall",
"src": "3060:23:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3085:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3056:3:15"
},
"nodeType": "YulFunctionCall",
"src": "3056:32:15"
},
"nodeType": "YulIf",
"src": "3053:2:15"
},
{
"nodeType": "YulBlock",
"src": "3115:117:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3130:15:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3144:1:15",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3134:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3159:63:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3194:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3205:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3190:3:15"
},
"nodeType": "YulFunctionCall",
"src": "3190:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3214:7:15"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3169:20:15"
},
"nodeType": "YulFunctionCall",
"src": "3169:53:15"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3159:6:15"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3242:118:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3257:16:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3271:2:15",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3261:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3287:63:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3322:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3333:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3318:3:15"
},
"nodeType": "YulFunctionCall",
"src": "3318:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3342:7:15"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3297:20:15"
},
"nodeType": "YulFunctionCall",
"src": "3297:53:15"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3287:6:15"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3005:9:15",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3016:7:15",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3028:6:15",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3036:6:15",
"type": ""
}
],
"src": "2960:407:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3439:196:15",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3485:16:15",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3494:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3497:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3487:6:15"
},
"nodeType": "YulFunctionCall",
"src": "3487:12:15"
},
"nodeType": "YulExpressionStatement",
"src": "3487:12:15"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3460:7:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3469:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3456:3:15"
},
"nodeType": "YulFunctionCall",
"src": "3456:23:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3481:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3452:3:15"
},
"nodeType": "YulFunctionCall",
"src": "3452:32:15"
},
"nodeType": "YulIf",
"src": "3449:2:15"
},
{
"nodeType": "YulBlock",
"src": "3511:117:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3526:15:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3540:1:15",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3530:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3555:63:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3590:9:15"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3601:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3586:3:15"
},
"nodeType": "YulFunctionCall",
"src": "3586:22:15"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3610:7:15"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3565:20:15"
},
"nodeType": "YulFunctionCall",
"src": "3565:53:15"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3555:6:15"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3409:9:15",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3420:7:15",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3432:6:15",
"type": ""
}
],
"src": "3373:262:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3706:53:15",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3723:3:15"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3746:5:15"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "3728:17:15"
},
"nodeType": "YulFunctionCall",
"src": "3728:24:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3716:6:15"
},
"nodeType": "YulFunctionCall",
"src": "3716:37:15"
},
"nodeType": "YulExpressionStatement",
"src": "3716:37:15"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3694:5:15",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3701:3:15",
"type": ""
}
],
"src": "3641:118:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3824:50:15",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3841:3:15"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3861:5:15"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "3846:14:15"
},
"nodeType": "YulFunctionCall",
"src": "3846:21:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3834:6:15"
},
"nodeType": "YulFunctionCall",
"src": "3834:34:15"
},
"nodeType": "YulExpressionStatement",
"src": "3834:34:15"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3812:5:15",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3819:3:15",
"type": ""
}
],
"src": "3765:109:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3945:53:15",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3962:3:15"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3985:5:15"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "3967:17:15"
},
"nodeType": "YulFunctionCall",
"src": "3967:24:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3955:6:15"
},
"nodeType": "YulFunctionCall",
"src": "3955:37:15"
},
"nodeType": "YulExpressionStatement",
"src": "3955:37:15"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3933:5:15",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3940:3:15",
"type": ""
}
],
"src": "3880:118:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4087:74:15",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4104:3:15"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4147:5:15"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "4129:17:15"
},
"nodeType": "YulFunctionCall",
"src": "4129:24:15"
}
],
"functionName": {
"name": "leftAlign_t_bytes32",
"nodeType": "YulIdentifier",
"src": "4109:19:15"
},
"nodeType": "YulFunctionCall",
"src": "4109:45:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4097:6:15"
},
"nodeType": "YulFunctionCall",
"src": "4097:58:15"
},
"nodeType": "YulExpressionStatement",
"src": "4097:58:15"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4075:5:15",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4082:3:15",
"type": ""
}
],
"src": "4004:157:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4259:272:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4269:53:15",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4316:5:15"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4283:32:15"
},
"nodeType": "YulFunctionCall",
"src": "4283:39:15"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4273:6:15",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4331:78:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4397:3:15"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4402:6:15"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4338:58:15"
},
"nodeType": "YulFunctionCall",
"src": "4338:71:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4331:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4444:5:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4451:4:15",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4440:3:15"
},
"nodeType": "YulFunctionCall",
"src": "4440:16:15"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4458:3:15"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4463:6:15"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "4418:21:15"
},
"nodeType": "YulFunctionCall",
"src": "4418:52:15"
},
"nodeType": "YulExpressionStatement",
"src": "4418:52:15"
},
{
"nodeType": "YulAssignment",
"src": "4479:46:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4490:3:15"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4517:6:15"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4495:21:15"
},
"nodeType": "YulFunctionCall",
"src": "4495:29:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4486:3:15"
},
"nodeType": "YulFunctionCall",
"src": "4486:39:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4479:3:15"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4240:5:15",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4247:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4255:3:15",
"type": ""
}
],
"src": "4167:364:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4683:176:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4693:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4759:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4764:2:15",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4700:58:15"
},
"nodeType": "YulFunctionCall",
"src": "4700:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4693:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4788:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4793:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4784:3:15"
},
"nodeType": "YulFunctionCall",
"src": "4784:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4797:26:15",
"type": "",
"value": "ECDSA: invalid signature"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4777:6:15"
},
"nodeType": "YulFunctionCall",
"src": "4777:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "4777:47:15"
},
{
"nodeType": "YulAssignment",
"src": "4834:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4845:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4850:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4841:3:15"
},
"nodeType": "YulFunctionCall",
"src": "4841:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4834:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4671:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4679:3:15",
"type": ""
}
],
"src": "4537:322:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5011:181:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5021:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5087:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5092:2:15",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5028:58:15"
},
"nodeType": "YulFunctionCall",
"src": "5028:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5021:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5116:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5121:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5112:3:15"
},
"nodeType": "YulFunctionCall",
"src": "5112:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "5125:31:15",
"type": "",
"value": "ERC20Snapshot: nonexistent id"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5105:6:15"
},
"nodeType": "YulFunctionCall",
"src": "5105:52:15"
},
"nodeType": "YulExpressionStatement",
"src": "5105:52:15"
},
{
"nodeType": "YulAssignment",
"src": "5167:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5178:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5183:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5174:3:15"
},
"nodeType": "YulFunctionCall",
"src": "5174:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5167:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_031e0835d070e7bbd2c8dcce466eadb8c6b9fd22432b0357ab8c37bd9a385940_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4999:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5007:3:15",
"type": ""
}
],
"src": "4865:327:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5344:221:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5354:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5420:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5425:2:15",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5361:58:15"
},
"nodeType": "YulFunctionCall",
"src": "5361:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5354:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5449:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5454:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5445:3:15"
},
"nodeType": "YulFunctionCall",
"src": "5445:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "5458:34:15",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5438:6:15"
},
"nodeType": "YulFunctionCall",
"src": "5438:55:15"
},
"nodeType": "YulExpressionStatement",
"src": "5438:55:15"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5514:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5519:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5510:3:15"
},
"nodeType": "YulFunctionCall",
"src": "5510:12:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "5524:5:15",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5503:6:15"
},
"nodeType": "YulFunctionCall",
"src": "5503:27:15"
},
"nodeType": "YulExpressionStatement",
"src": "5503:27:15"
},
{
"nodeType": "YulAssignment",
"src": "5540:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5551:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5556:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5547:3:15"
},
"nodeType": "YulFunctionCall",
"src": "5547:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5540:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5332:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5340:3:15",
"type": ""
}
],
"src": "5198:367:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5717:172:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5727:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5793:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5798:2:15",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5734:58:15"
},
"nodeType": "YulFunctionCall",
"src": "5734:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5727:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5822:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5827:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5818:3:15"
},
"nodeType": "YulFunctionCall",
"src": "5818:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "5831:22:15",
"type": "",
"value": "Pausable: not paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5811:6:15"
},
"nodeType": "YulFunctionCall",
"src": "5811:43:15"
},
"nodeType": "YulExpressionStatement",
"src": "5811:43:15"
},
{
"nodeType": "YulAssignment",
"src": "5864:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5875:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5880:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5871:3:15"
},
"nodeType": "YulFunctionCall",
"src": "5871:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5864:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5705:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5713:3:15",
"type": ""
}
],
"src": "5571:318:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6041:220:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6051:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6117:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6122:2:15",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6058:58:15"
},
"nodeType": "YulFunctionCall",
"src": "6058:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6051:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6146:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6151:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6142:3:15"
},
"nodeType": "YulFunctionCall",
"src": "6142:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6155:34:15",
"type": "",
"value": "ERC20: burn amount exceeds balan"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6135:6:15"
},
"nodeType": "YulFunctionCall",
"src": "6135:55:15"
},
"nodeType": "YulExpressionStatement",
"src": "6135:55:15"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6211:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6216:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6207:3:15"
},
"nodeType": "YulFunctionCall",
"src": "6207:12:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6221:4:15",
"type": "",
"value": "ce"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6200:6:15"
},
"nodeType": "YulFunctionCall",
"src": "6200:26:15"
},
"nodeType": "YulExpressionStatement",
"src": "6200:26:15"
},
{
"nodeType": "YulAssignment",
"src": "6236:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6247:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6252:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6243:3:15"
},
"nodeType": "YulFunctionCall",
"src": "6243:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6236:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6029:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6037:3:15",
"type": ""
}
],
"src": "5895:366:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6413:224:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6423:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6489:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6494:2:15",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6430:58:15"
},
"nodeType": "YulFunctionCall",
"src": "6430:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6423:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6518:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6523:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6514:3:15"
},
"nodeType": "YulFunctionCall",
"src": "6514:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6527:34:15",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6507:6:15"
},
"nodeType": "YulFunctionCall",
"src": "6507:55:15"
},
"nodeType": "YulExpressionStatement",
"src": "6507:55:15"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6583:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6588:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6579:3:15"
},
"nodeType": "YulFunctionCall",
"src": "6579:12:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6593:8:15",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6572:6:15"
},
"nodeType": "YulFunctionCall",
"src": "6572:30:15"
},
"nodeType": "YulExpressionStatement",
"src": "6572:30:15"
},
{
"nodeType": "YulAssignment",
"src": "6612:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6623:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6628:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6619:3:15"
},
"nodeType": "YulFunctionCall",
"src": "6619:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6612:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6401:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6409:3:15",
"type": ""
}
],
"src": "6267:370:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6789:220:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6799:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6865:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6870:2:15",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6806:58:15"
},
"nodeType": "YulFunctionCall",
"src": "6806:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6799:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6894:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6899:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6890:3:15"
},
"nodeType": "YulFunctionCall",
"src": "6890:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6903:34:15",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6883:6:15"
},
"nodeType": "YulFunctionCall",
"src": "6883:55:15"
},
"nodeType": "YulExpressionStatement",
"src": "6883:55:15"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6959:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6964:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6955:3:15"
},
"nodeType": "YulFunctionCall",
"src": "6955:12:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6969:4:15",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6948:6:15"
},
"nodeType": "YulFunctionCall",
"src": "6948:26:15"
},
"nodeType": "YulExpressionStatement",
"src": "6948:26:15"
},
{
"nodeType": "YulAssignment",
"src": "6984:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6995:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7000:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6991:3:15"
},
"nodeType": "YulFunctionCall",
"src": "6991:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6984:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6777:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6785:3:15",
"type": ""
}
],
"src": "6643:366:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7179:232:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7189:91:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7273:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7278:1:15",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "7196:76:15"
},
"nodeType": "YulFunctionCall",
"src": "7196:84:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7189:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7301:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7306:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7297:3:15"
},
"nodeType": "YulFunctionCall",
"src": "7297:11:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7310:66:15",
"type": "",
"value": "0x1901000000000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7290:6:15"
},
"nodeType": "YulFunctionCall",
"src": "7290:87:15"
},
"nodeType": "YulExpressionStatement",
"src": "7290:87:15"
},
{
"nodeType": "YulAssignment",
"src": "7387:18:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7398:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7403:1:15",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7394:3:15"
},
"nodeType": "YulFunctionCall",
"src": "7394:11:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7387:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7167:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7175:3:15",
"type": ""
}
],
"src": "7015:396:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7563:181:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7573:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7639:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7644:2:15",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7580:58:15"
},
"nodeType": "YulFunctionCall",
"src": "7580:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7573:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7668:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7673:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7664:3:15"
},
"nodeType": "YulFunctionCall",
"src": "7664:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "7677:31:15",
"type": "",
"value": "ERC20Permit: expired deadline"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7657:6:15"
},
"nodeType": "YulFunctionCall",
"src": "7657:52:15"
},
"nodeType": "YulExpressionStatement",
"src": "7657:52:15"
},
{
"nodeType": "YulAssignment",
"src": "7719:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7730:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7735:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7726:3:15"
},
"nodeType": "YulFunctionCall",
"src": "7726:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7719:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7551:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7559:3:15",
"type": ""
}
],
"src": "7417:327:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7896:224:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7906:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7972:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7977:2:15",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7913:58:15"
},
"nodeType": "YulFunctionCall",
"src": "7913:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7906:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8001:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8006:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7997:3:15"
},
"nodeType": "YulFunctionCall",
"src": "7997:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8010:34:15",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7990:6:15"
},
"nodeType": "YulFunctionCall",
"src": "7990:55:15"
},
"nodeType": "YulExpressionStatement",
"src": "7990:55:15"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8066:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8071:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8062:3:15"
},
"nodeType": "YulFunctionCall",
"src": "8062:12:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8076:8:15",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8055:6:15"
},
"nodeType": "YulFunctionCall",
"src": "8055:30:15"
},
"nodeType": "YulExpressionStatement",
"src": "8055:30:15"
},
{
"nodeType": "YulAssignment",
"src": "8095:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8106:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8111:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8102:3:15"
},
"nodeType": "YulFunctionCall",
"src": "8102:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8095:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7884:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7892:3:15",
"type": ""
}
],
"src": "7750:370:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8272:220:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8282:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8348:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8353:2:15",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8289:58:15"
},
"nodeType": "YulFunctionCall",
"src": "8289:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8282:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8377:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8382:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8373:3:15"
},
"nodeType": "YulFunctionCall",
"src": "8373:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8386:34:15",
"type": "",
"value": "ECDSA: invalid signature 's' val"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8366:6:15"
},
"nodeType": "YulFunctionCall",
"src": "8366:55:15"
},
"nodeType": "YulExpressionStatement",
"src": "8366:55:15"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8442:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8447:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8438:3:15"
},
"nodeType": "YulFunctionCall",
"src": "8438:12:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8452:4:15",
"type": "",
"value": "ue"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8431:6:15"
},
"nodeType": "YulFunctionCall",
"src": "8431:26:15"
},
"nodeType": "YulExpressionStatement",
"src": "8431:26:15"
},
{
"nodeType": "YulAssignment",
"src": "8467:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8478:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8483:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8474:3:15"
},
"nodeType": "YulFunctionCall",
"src": "8474:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8467:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8260:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8268:3:15",
"type": ""
}
],
"src": "8126:366:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8644:168:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8654:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8720:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8725:2:15",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8661:58:15"
},
"nodeType": "YulFunctionCall",
"src": "8661:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8654:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8749:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8754:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8745:3:15"
},
"nodeType": "YulFunctionCall",
"src": "8745:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8758:18:15",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8738:6:15"
},
"nodeType": "YulFunctionCall",
"src": "8738:39:15"
},
"nodeType": "YulExpressionStatement",
"src": "8738:39:15"
},
{
"nodeType": "YulAssignment",
"src": "8787:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8798:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8803:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8794:3:15"
},
"nodeType": "YulFunctionCall",
"src": "8794:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8787:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8632:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8640:3:15",
"type": ""
}
],
"src": "8498:314:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8964:220:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8974:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9040:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9045:2:15",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8981:58:15"
},
"nodeType": "YulFunctionCall",
"src": "8981:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8974:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9069:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9074:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9065:3:15"
},
"nodeType": "YulFunctionCall",
"src": "9065:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9078:34:15",
"type": "",
"value": "ECDSA: invalid signature 'v' val"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9058:6:15"
},
"nodeType": "YulFunctionCall",
"src": "9058:55:15"
},
"nodeType": "YulExpressionStatement",
"src": "9058:55:15"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9134:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9139:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9130:3:15"
},
"nodeType": "YulFunctionCall",
"src": "9130:12:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9144:4:15",
"type": "",
"value": "ue"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9123:6:15"
},
"nodeType": "YulFunctionCall",
"src": "9123:26:15"
},
"nodeType": "YulExpressionStatement",
"src": "9123:26:15"
},
{
"nodeType": "YulAssignment",
"src": "9159:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9170:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9175:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9166:3:15"
},
"nodeType": "YulFunctionCall",
"src": "9166:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9159:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8952:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8960:3:15",
"type": ""
}
],
"src": "8818:366:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9336:182:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9346:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9412:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9417:2:15",
"type": "",
"value": "30"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9353:58:15"
},
"nodeType": "YulFunctionCall",
"src": "9353:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9346:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9441:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9446:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9437:3:15"
},
"nodeType": "YulFunctionCall",
"src": "9437:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9450:32:15",
"type": "",
"value": "ERC20Permit: invalid signature"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9430:6:15"
},
"nodeType": "YulFunctionCall",
"src": "9430:53:15"
},
"nodeType": "YulExpressionStatement",
"src": "9430:53:15"
},
{
"nodeType": "YulAssignment",
"src": "9493:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9504:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9509:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9500:3:15"
},
"nodeType": "YulFunctionCall",
"src": "9500:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9493:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9324:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9332:3:15",
"type": ""
}
],
"src": "9190:328:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9670:226:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9680:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9746:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9751:2:15",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9687:58:15"
},
"nodeType": "YulFunctionCall",
"src": "9687:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9680:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9775:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9780:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9771:3:15"
},
"nodeType": "YulFunctionCall",
"src": "9771:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9784:34:15",
"type": "",
"value": "ERC20: transfer amount exceeds a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9764:6:15"
},
"nodeType": "YulFunctionCall",
"src": "9764:55:15"
},
"nodeType": "YulExpressionStatement",
"src": "9764:55:15"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9840:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9845:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9836:3:15"
},
"nodeType": "YulFunctionCall",
"src": "9836:12:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9850:10:15",
"type": "",
"value": "llowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9829:6:15"
},
"nodeType": "YulFunctionCall",
"src": "9829:32:15"
},
"nodeType": "YulExpressionStatement",
"src": "9829:32:15"
},
{
"nodeType": "YulAssignment",
"src": "9871:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9882:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9887:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9878:3:15"
},
"nodeType": "YulFunctionCall",
"src": "9878:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9871:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9658:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9666:3:15",
"type": ""
}
],
"src": "9524:372:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10048:184:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10058:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10124:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10129:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10065:58:15"
},
"nodeType": "YulFunctionCall",
"src": "10065:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10058:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10153:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10158:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10149:3:15"
},
"nodeType": "YulFunctionCall",
"src": "10149:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10162:34:15",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10142:6:15"
},
"nodeType": "YulFunctionCall",
"src": "10142:55:15"
},
"nodeType": "YulExpressionStatement",
"src": "10142:55:15"
},
{
"nodeType": "YulAssignment",
"src": "10207:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10218:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10223:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10214:3:15"
},
"nodeType": "YulFunctionCall",
"src": "10214:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10207:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10036:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10044:3:15",
"type": ""
}
],
"src": "9902:330:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10384:222:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10394:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10460:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10465:2:15",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10401:58:15"
},
"nodeType": "YulFunctionCall",
"src": "10401:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10394:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10489:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10494:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10485:3:15"
},
"nodeType": "YulFunctionCall",
"src": "10485:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10498:34:15",
"type": "",
"value": "ERC20: burn amount exceeds allow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10478:6:15"
},
"nodeType": "YulFunctionCall",
"src": "10478:55:15"
},
"nodeType": "YulExpressionStatement",
"src": "10478:55:15"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10554:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10559:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10550:3:15"
},
"nodeType": "YulFunctionCall",
"src": "10550:12:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10564:6:15",
"type": "",
"value": "ance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10543:6:15"
},
"nodeType": "YulFunctionCall",
"src": "10543:28:15"
},
"nodeType": "YulExpressionStatement",
"src": "10543:28:15"
},
{
"nodeType": "YulAssignment",
"src": "10581:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10592:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10597:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10588:3:15"
},
"nodeType": "YulFunctionCall",
"src": "10588:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10581:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10372:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10380:3:15",
"type": ""
}
],
"src": "10238:368:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10758:219:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10768:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10834:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10839:2:15",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10775:58:15"
},
"nodeType": "YulFunctionCall",
"src": "10775:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10768:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10863:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10868:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10859:3:15"
},
"nodeType": "YulFunctionCall",
"src": "10859:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10872:34:15",
"type": "",
"value": "ERC20: burn from the zero addres"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10852:6:15"
},
"nodeType": "YulFunctionCall",
"src": "10852:55:15"
},
"nodeType": "YulExpressionStatement",
"src": "10852:55:15"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10928:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10933:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10924:3:15"
},
"nodeType": "YulFunctionCall",
"src": "10924:12:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10938:3:15",
"type": "",
"value": "s"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10917:6:15"
},
"nodeType": "YulFunctionCall",
"src": "10917:25:15"
},
"nodeType": "YulExpressionStatement",
"src": "10917:25:15"
},
{
"nodeType": "YulAssignment",
"src": "10952:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10963:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10968:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10959:3:15"
},
"nodeType": "YulFunctionCall",
"src": "10959:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10952:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10746:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10754:3:15",
"type": ""
}
],
"src": "10612:365:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11129:223:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11139:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11205:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11210:2:15",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11146:58:15"
},
"nodeType": "YulFunctionCall",
"src": "11146:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11139:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11234:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11239:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11230:3:15"
},
"nodeType": "YulFunctionCall",
"src": "11230:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11243:34:15",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11223:6:15"
},
"nodeType": "YulFunctionCall",
"src": "11223:55:15"
},
"nodeType": "YulExpressionStatement",
"src": "11223:55:15"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11299:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11304:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11295:3:15"
},
"nodeType": "YulFunctionCall",
"src": "11295:12:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11309:7:15",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11288:6:15"
},
"nodeType": "YulFunctionCall",
"src": "11288:29:15"
},
"nodeType": "YulExpressionStatement",
"src": "11288:29:15"
},
{
"nodeType": "YulAssignment",
"src": "11327:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11338:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11343:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11334:3:15"
},
"nodeType": "YulFunctionCall",
"src": "11334:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11327:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11117:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11125:3:15",
"type": ""
}
],
"src": "10983:369:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11504:222:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11514:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11580:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11585:2:15",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11521:58:15"
},
"nodeType": "YulFunctionCall",
"src": "11521:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11514:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11609:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11614:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11605:3:15"
},
"nodeType": "YulFunctionCall",
"src": "11605:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11618:34:15",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11598:6:15"
},
"nodeType": "YulFunctionCall",
"src": "11598:55:15"
},
"nodeType": "YulExpressionStatement",
"src": "11598:55:15"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11674:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11679:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11670:3:15"
},
"nodeType": "YulFunctionCall",
"src": "11670:12:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11684:6:15",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11663:6:15"
},
"nodeType": "YulFunctionCall",
"src": "11663:28:15"
},
"nodeType": "YulExpressionStatement",
"src": "11663:28:15"
},
{
"nodeType": "YulAssignment",
"src": "11701:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11712:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11717:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11708:3:15"
},
"nodeType": "YulFunctionCall",
"src": "11708:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11701:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11492:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11500:3:15",
"type": ""
}
],
"src": "11358:368:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11878:174:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11888:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11954:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11959:2:15",
"type": "",
"value": "22"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11895:58:15"
},
"nodeType": "YulFunctionCall",
"src": "11895:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11888:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11983:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11988:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11979:3:15"
},
"nodeType": "YulFunctionCall",
"src": "11979:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11992:24:15",
"type": "",
"value": "ERC20Snapshot: id is 0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11972:6:15"
},
"nodeType": "YulFunctionCall",
"src": "11972:45:15"
},
"nodeType": "YulExpressionStatement",
"src": "11972:45:15"
},
{
"nodeType": "YulAssignment",
"src": "12027:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12038:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12043:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12034:3:15"
},
"nodeType": "YulFunctionCall",
"src": "12034:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12027:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d85a3cdc203c5cdc6dda93c12cd017145671a0ed9058a16c7aa00b8398a4a8e6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11866:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11874:3:15",
"type": ""
}
],
"src": "11732:320:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12204:223:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12214:74:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12280:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12285:2:15",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12221:58:15"
},
"nodeType": "YulFunctionCall",
"src": "12221:67:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12214:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12309:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12314:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12305:3:15"
},
"nodeType": "YulFunctionCall",
"src": "12305:11:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12318:34:15",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12298:6:15"
},
"nodeType": "YulFunctionCall",
"src": "12298:55:15"
},
"nodeType": "YulExpressionStatement",
"src": "12298:55:15"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12374:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12379:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12370:3:15"
},
"nodeType": "YulFunctionCall",
"src": "12370:12:15"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12384:7:15",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12363:6:15"
},
"nodeType": "YulFunctionCall",
"src": "12363:29:15"
},
"nodeType": "YulExpressionStatement",
"src": "12363:29:15"
},
{
"nodeType": "YulAssignment",
"src": "12402:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12413:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12418:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12409:3:15"
},
"nodeType": "YulFunctionCall",
"src": "12409:12:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12402:3:15"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12192:3:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12200:3:15",
"type": ""
}
],
"src": "12058:369:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12498:53:15",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12515:3:15"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12538:5:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "12520:17:15"
},
"nodeType": "YulFunctionCall",
"src": "12520:24:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12508:6:15"
},
"nodeType": "YulFunctionCall",
"src": "12508:37:15"
},
"nodeType": "YulExpressionStatement",
"src": "12508:37:15"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12486:5:15",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12493:3:15",
"type": ""
}
],
"src": "12433:118:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12618:51:15",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12635:3:15"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12656:5:15"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "12640:15:15"
},
"nodeType": "YulFunctionCall",
"src": "12640:22:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12628:6:15"
},
"nodeType": "YulFunctionCall",
"src": "12628:35:15"
},
"nodeType": "YulExpressionStatement",
"src": "12628:35:15"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12606:5:15",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12613:3:15",
"type": ""
}
],
"src": "12557:112:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12920:418:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12931:155:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13082:3:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "12938:142:15"
},
"nodeType": "YulFunctionCall",
"src": "12938:148:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12931:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13158:6:15"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13167:3:15"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "13096:61:15"
},
"nodeType": "YulFunctionCall",
"src": "13096:75:15"
},
"nodeType": "YulExpressionStatement",
"src": "13096:75:15"
},
{
"nodeType": "YulAssignment",
"src": "13180:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13191:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13196:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13187:3:15"
},
"nodeType": "YulFunctionCall",
"src": "13187:12:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13180:3:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "13271:6:15"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13280:3:15"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "13209:61:15"
},
"nodeType": "YulFunctionCall",
"src": "13209:75:15"
},
"nodeType": "YulExpressionStatement",
"src": "13209:75:15"
},
{
"nodeType": "YulAssignment",
"src": "13293:19:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13304:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13309:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13300:3:15"
},
"nodeType": "YulFunctionCall",
"src": "13300:12:15"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13293:3:15"
}
]
},
{
"nodeType": "YulAssignment",
"src": "13322:10:15",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13329:3:15"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13322:3:15"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12891:3:15",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "12897:6:15",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12905:6:15",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12916:3:15",
"type": ""
}
],
"src": "12675:663:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13442:124:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13452:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13464:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13475:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13460:3:15"
},
"nodeType": "YulFunctionCall",
"src": "13460:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13452:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13532:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13545:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13556:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13541:3:15"
},
"nodeType": "YulFunctionCall",
"src": "13541:17:15"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "13488:43:15"
},
"nodeType": "YulFunctionCall",
"src": "13488:71:15"
},
"nodeType": "YulExpressionStatement",
"src": "13488:71:15"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13414:9:15",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13426:6:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13437:4:15",
"type": ""
}
],
"src": "13344:222:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13664:118:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13674:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13686:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13697:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13682:3:15"
},
"nodeType": "YulFunctionCall",
"src": "13682:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13674:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13748:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13761:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13772:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13757:3:15"
},
"nodeType": "YulFunctionCall",
"src": "13757:17:15"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "13710:37:15"
},
"nodeType": "YulFunctionCall",
"src": "13710:65:15"
},
"nodeType": "YulExpressionStatement",
"src": "13710:65:15"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13636:9:15",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13648:6:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13659:4:15",
"type": ""
}
],
"src": "13572:210:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13886:124:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13896:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13908:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13919:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13904:3:15"
},
"nodeType": "YulFunctionCall",
"src": "13904:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13896:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13976:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13989:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14000:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13985:3:15"
},
"nodeType": "YulFunctionCall",
"src": "13985:17:15"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "13932:43:15"
},
"nodeType": "YulFunctionCall",
"src": "13932:71:15"
},
"nodeType": "YulExpressionStatement",
"src": "13932:71:15"
}
]
},
"name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13858:9:15",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13870:6:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13881:4:15",
"type": ""
}
],
"src": "13788:222:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14254:537:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14264:27:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14276:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14287:3:15",
"type": "",
"value": "192"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14272:3:15"
},
"nodeType": "YulFunctionCall",
"src": "14272:19:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14264:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "14345:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14358:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14369:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14354:3:15"
},
"nodeType": "YulFunctionCall",
"src": "14354:17:15"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "14301:43:15"
},
"nodeType": "YulFunctionCall",
"src": "14301:71:15"
},
"nodeType": "YulExpressionStatement",
"src": "14301:71:15"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "14426:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14439:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14450:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14435:3:15"
},
"nodeType": "YulFunctionCall",
"src": "14435:18:15"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "14382:43:15"
},
"nodeType": "YulFunctionCall",
"src": "14382:72:15"
},
"nodeType": "YulExpressionStatement",
"src": "14382:72:15"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "14508:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14521:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14532:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14517:3:15"
},
"nodeType": "YulFunctionCall",
"src": "14517:18:15"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "14464:43:15"
},
"nodeType": "YulFunctionCall",
"src": "14464:72:15"
},
"nodeType": "YulExpressionStatement",
"src": "14464:72:15"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "14590:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14603:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14614:2:15",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14599:3:15"
},
"nodeType": "YulFunctionCall",
"src": "14599:18:15"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "14546:43:15"
},
"nodeType": "YulFunctionCall",
"src": "14546:72:15"
},
"nodeType": "YulExpressionStatement",
"src": "14546:72:15"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "14672:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14685:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14696:3:15",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14681:3:15"
},
"nodeType": "YulFunctionCall",
"src": "14681:19:15"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "14628:43:15"
},
"nodeType": "YulFunctionCall",
"src": "14628:73:15"
},
"nodeType": "YulExpressionStatement",
"src": "14628:73:15"
},
{
"expression": {
"arguments": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "14755:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14768:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14779:3:15",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14764:3:15"
},
"nodeType": "YulFunctionCall",
"src": "14764:19:15"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "14711:43:15"
},
"nodeType": "YulFunctionCall",
"src": "14711:73:15"
},
"nodeType": "YulExpressionStatement",
"src": "14711:73:15"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14186:9:15",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "14198:6:15",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "14206:6:15",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "14214:6:15",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "14222:6:15",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "14230:6:15",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "14238:6:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14249:4:15",
"type": ""
}
],
"src": "14016:775:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15007:454:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15017:27:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15029:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15040:3:15",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15025:3:15"
},
"nodeType": "YulFunctionCall",
"src": "15025:19:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15017:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15098:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15111:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15122:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15107:3:15"
},
"nodeType": "YulFunctionCall",
"src": "15107:17:15"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "15054:43:15"
},
"nodeType": "YulFunctionCall",
"src": "15054:71:15"
},
"nodeType": "YulExpressionStatement",
"src": "15054:71:15"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "15179:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15192:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15203:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15188:3:15"
},
"nodeType": "YulFunctionCall",
"src": "15188:18:15"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "15135:43:15"
},
"nodeType": "YulFunctionCall",
"src": "15135:72:15"
},
"nodeType": "YulExpressionStatement",
"src": "15135:72:15"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "15261:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15274:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15285:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15270:3:15"
},
"nodeType": "YulFunctionCall",
"src": "15270:18:15"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "15217:43:15"
},
"nodeType": "YulFunctionCall",
"src": "15217:72:15"
},
"nodeType": "YulExpressionStatement",
"src": "15217:72:15"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "15343:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15356:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15367:2:15",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15352:3:15"
},
"nodeType": "YulFunctionCall",
"src": "15352:18:15"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "15299:43:15"
},
"nodeType": "YulFunctionCall",
"src": "15299:72:15"
},
"nodeType": "YulExpressionStatement",
"src": "15299:72:15"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "15425:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15438:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15449:3:15",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15434:3:15"
},
"nodeType": "YulFunctionCall",
"src": "15434:19:15"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "15381:43:15"
},
"nodeType": "YulFunctionCall",
"src": "15381:73:15"
},
"nodeType": "YulExpressionStatement",
"src": "15381:73:15"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14947:9:15",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "14959:6:15",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "14967:6:15",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "14975:6:15",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "14983:6:15",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "14991:6:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15002:4:15",
"type": ""
}
],
"src": "14797:664:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15645:367:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15655:27:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15667:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15678:3:15",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15663:3:15"
},
"nodeType": "YulFunctionCall",
"src": "15663:19:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15655:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15736:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15749:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15760:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15745:3:15"
},
"nodeType": "YulFunctionCall",
"src": "15745:17:15"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "15692:43:15"
},
"nodeType": "YulFunctionCall",
"src": "15692:71:15"
},
"nodeType": "YulExpressionStatement",
"src": "15692:71:15"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "15813:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15826:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15837:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15822:3:15"
},
"nodeType": "YulFunctionCall",
"src": "15822:18:15"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "15773:39:15"
},
"nodeType": "YulFunctionCall",
"src": "15773:68:15"
},
"nodeType": "YulExpressionStatement",
"src": "15773:68:15"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "15895:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15908:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15919:2:15",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15904:3:15"
},
"nodeType": "YulFunctionCall",
"src": "15904:18:15"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "15851:43:15"
},
"nodeType": "YulFunctionCall",
"src": "15851:72:15"
},
"nodeType": "YulExpressionStatement",
"src": "15851:72:15"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "15977:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15990:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16001:2:15",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15986:3:15"
},
"nodeType": "YulFunctionCall",
"src": "15986:18:15"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "15933:43:15"
},
"nodeType": "YulFunctionCall",
"src": "15933:72:15"
},
"nodeType": "YulExpressionStatement",
"src": "15933:72:15"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15593:9:15",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "15605:6:15",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "15613:6:15",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "15621:6:15",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15629:6:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15640:4:15",
"type": ""
}
],
"src": "15467:545:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16136:195:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16146:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16158:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16169:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16154:3:15"
},
"nodeType": "YulFunctionCall",
"src": "16154:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16146:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16193:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16204:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16189:3:15"
},
"nodeType": "YulFunctionCall",
"src": "16189:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16212:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16218:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16208:3:15"
},
"nodeType": "YulFunctionCall",
"src": "16208:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16182:6:15"
},
"nodeType": "YulFunctionCall",
"src": "16182:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "16182:47:15"
},
{
"nodeType": "YulAssignment",
"src": "16238:86:15",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16310:6:15"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16319:4:15"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16246:63:15"
},
"nodeType": "YulFunctionCall",
"src": "16246:78:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16238:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16108:9:15",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16120:6:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16131:4:15",
"type": ""
}
],
"src": "16018:313:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16508:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16518:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16530:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16541:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16526:3:15"
},
"nodeType": "YulFunctionCall",
"src": "16526:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16518:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16565:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16576:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16561:3:15"
},
"nodeType": "YulFunctionCall",
"src": "16561:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16584:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16590:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16580:3:15"
},
"nodeType": "YulFunctionCall",
"src": "16580:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16554:6:15"
},
"nodeType": "YulFunctionCall",
"src": "16554:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "16554:47:15"
},
{
"nodeType": "YulAssignment",
"src": "16610:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16744:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16618:124:15"
},
"nodeType": "YulFunctionCall",
"src": "16618:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16610:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16488:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16503:4:15",
"type": ""
}
],
"src": "16337:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16933:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16943:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16955:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16966:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16951:3:15"
},
"nodeType": "YulFunctionCall",
"src": "16951:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16943:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16990:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17001:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16986:3:15"
},
"nodeType": "YulFunctionCall",
"src": "16986:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17009:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17015:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17005:3:15"
},
"nodeType": "YulFunctionCall",
"src": "17005:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16979:6:15"
},
"nodeType": "YulFunctionCall",
"src": "16979:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "16979:47:15"
},
{
"nodeType": "YulAssignment",
"src": "17035:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17169:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_031e0835d070e7bbd2c8dcce466eadb8c6b9fd22432b0357ab8c37bd9a385940_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17043:124:15"
},
"nodeType": "YulFunctionCall",
"src": "17043:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17035:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_031e0835d070e7bbd2c8dcce466eadb8c6b9fd22432b0357ab8c37bd9a385940__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16913:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16928:4:15",
"type": ""
}
],
"src": "16762:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17358:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17368:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17380:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17391:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17376:3:15"
},
"nodeType": "YulFunctionCall",
"src": "17376:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17368:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17415:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17426:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17411:3:15"
},
"nodeType": "YulFunctionCall",
"src": "17411:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17434:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17440:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17430:3:15"
},
"nodeType": "YulFunctionCall",
"src": "17430:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17404:6:15"
},
"nodeType": "YulFunctionCall",
"src": "17404:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "17404:47:15"
},
{
"nodeType": "YulAssignment",
"src": "17460:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17594:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17468:124:15"
},
"nodeType": "YulFunctionCall",
"src": "17468:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17460:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17338:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17353:4:15",
"type": ""
}
],
"src": "17187:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17783:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17793:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17805:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17816:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17801:3:15"
},
"nodeType": "YulFunctionCall",
"src": "17801:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17793:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17840:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17851:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17836:3:15"
},
"nodeType": "YulFunctionCall",
"src": "17836:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17859:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17865:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17855:3:15"
},
"nodeType": "YulFunctionCall",
"src": "17855:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17829:6:15"
},
"nodeType": "YulFunctionCall",
"src": "17829:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "17829:47:15"
},
{
"nodeType": "YulAssignment",
"src": "17885:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18019:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17893:124:15"
},
"nodeType": "YulFunctionCall",
"src": "17893:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17885:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17763:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17778:4:15",
"type": ""
}
],
"src": "17612:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18208:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18218:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18230:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18241:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18226:3:15"
},
"nodeType": "YulFunctionCall",
"src": "18226:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18218:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18265:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18276:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18261:3:15"
},
"nodeType": "YulFunctionCall",
"src": "18261:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18284:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18290:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18280:3:15"
},
"nodeType": "YulFunctionCall",
"src": "18280:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18254:6:15"
},
"nodeType": "YulFunctionCall",
"src": "18254:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "18254:47:15"
},
{
"nodeType": "YulAssignment",
"src": "18310:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18444:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18318:124:15"
},
"nodeType": "YulFunctionCall",
"src": "18318:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18310:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18188:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18203:4:15",
"type": ""
}
],
"src": "18037:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18633:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18643:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18655:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18666:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18651:3:15"
},
"nodeType": "YulFunctionCall",
"src": "18651:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18643:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18690:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18701:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18686:3:15"
},
"nodeType": "YulFunctionCall",
"src": "18686:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18709:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18715:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18705:3:15"
},
"nodeType": "YulFunctionCall",
"src": "18705:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18679:6:15"
},
"nodeType": "YulFunctionCall",
"src": "18679:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "18679:47:15"
},
{
"nodeType": "YulAssignment",
"src": "18735:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18869:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18743:124:15"
},
"nodeType": "YulFunctionCall",
"src": "18743:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18735:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18613:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18628:4:15",
"type": ""
}
],
"src": "18462:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19058:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19068:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19080:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19091:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19076:3:15"
},
"nodeType": "YulFunctionCall",
"src": "19076:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19068:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19115:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19126:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19111:3:15"
},
"nodeType": "YulFunctionCall",
"src": "19111:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19134:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19140:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19130:3:15"
},
"nodeType": "YulFunctionCall",
"src": "19130:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19104:6:15"
},
"nodeType": "YulFunctionCall",
"src": "19104:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "19104:47:15"
},
{
"nodeType": "YulAssignment",
"src": "19160:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19294:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19168:124:15"
},
"nodeType": "YulFunctionCall",
"src": "19168:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19160:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19038:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19053:4:15",
"type": ""
}
],
"src": "18887:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19483:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19493:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19505:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19516:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19501:3:15"
},
"nodeType": "YulFunctionCall",
"src": "19501:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19493:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19540:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19551:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19536:3:15"
},
"nodeType": "YulFunctionCall",
"src": "19536:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19559:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19565:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19555:3:15"
},
"nodeType": "YulFunctionCall",
"src": "19555:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19529:6:15"
},
"nodeType": "YulFunctionCall",
"src": "19529:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "19529:47:15"
},
{
"nodeType": "YulAssignment",
"src": "19585:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19719:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19593:124:15"
},
"nodeType": "YulFunctionCall",
"src": "19593:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19585:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19463:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19478:4:15",
"type": ""
}
],
"src": "19312:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19908:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19918:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19930:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19941:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19926:3:15"
},
"nodeType": "YulFunctionCall",
"src": "19926:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19918:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19965:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19976:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19961:3:15"
},
"nodeType": "YulFunctionCall",
"src": "19961:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19984:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19990:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19980:3:15"
},
"nodeType": "YulFunctionCall",
"src": "19980:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19954:6:15"
},
"nodeType": "YulFunctionCall",
"src": "19954:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "19954:47:15"
},
{
"nodeType": "YulAssignment",
"src": "20010:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20144:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20018:124:15"
},
"nodeType": "YulFunctionCall",
"src": "20018:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20010:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19888:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19903:4:15",
"type": ""
}
],
"src": "19737:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20333:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20343:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20355:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20366:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20351:3:15"
},
"nodeType": "YulFunctionCall",
"src": "20351:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20343:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20390:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20401:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20386:3:15"
},
"nodeType": "YulFunctionCall",
"src": "20386:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20409:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20415:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20405:3:15"
},
"nodeType": "YulFunctionCall",
"src": "20405:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20379:6:15"
},
"nodeType": "YulFunctionCall",
"src": "20379:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "20379:47:15"
},
{
"nodeType": "YulAssignment",
"src": "20435:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20569:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20443:124:15"
},
"nodeType": "YulFunctionCall",
"src": "20443:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20435:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20313:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20328:4:15",
"type": ""
}
],
"src": "20162:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20758:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20768:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20780:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20791:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20776:3:15"
},
"nodeType": "YulFunctionCall",
"src": "20776:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20768:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20815:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20826:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20811:3:15"
},
"nodeType": "YulFunctionCall",
"src": "20811:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20834:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20840:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20830:3:15"
},
"nodeType": "YulFunctionCall",
"src": "20830:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20804:6:15"
},
"nodeType": "YulFunctionCall",
"src": "20804:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "20804:47:15"
},
{
"nodeType": "YulAssignment",
"src": "20860:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20994:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20868:124:15"
},
"nodeType": "YulFunctionCall",
"src": "20868:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20860:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20738:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20753:4:15",
"type": ""
}
],
"src": "20587:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21183:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21193:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21205:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21216:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21201:3:15"
},
"nodeType": "YulFunctionCall",
"src": "21201:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21193:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21240:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21251:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21236:3:15"
},
"nodeType": "YulFunctionCall",
"src": "21236:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21259:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21265:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21255:3:15"
},
"nodeType": "YulFunctionCall",
"src": "21255:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21229:6:15"
},
"nodeType": "YulFunctionCall",
"src": "21229:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "21229:47:15"
},
{
"nodeType": "YulAssignment",
"src": "21285:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21419:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21293:124:15"
},
"nodeType": "YulFunctionCall",
"src": "21293:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21285:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21163:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21178:4:15",
"type": ""
}
],
"src": "21012:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21608:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21618:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21630:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21641:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21626:3:15"
},
"nodeType": "YulFunctionCall",
"src": "21626:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21618:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21665:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21676:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21661:3:15"
},
"nodeType": "YulFunctionCall",
"src": "21661:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21684:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21690:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21680:3:15"
},
"nodeType": "YulFunctionCall",
"src": "21680:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21654:6:15"
},
"nodeType": "YulFunctionCall",
"src": "21654:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "21654:47:15"
},
{
"nodeType": "YulAssignment",
"src": "21710:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21844:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21718:124:15"
},
"nodeType": "YulFunctionCall",
"src": "21718:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21710:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21588:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21603:4:15",
"type": ""
}
],
"src": "21437:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22033:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22043:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22055:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22066:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22051:3:15"
},
"nodeType": "YulFunctionCall",
"src": "22051:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22043:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22090:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22101:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22086:3:15"
},
"nodeType": "YulFunctionCall",
"src": "22086:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22109:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22115:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22105:3:15"
},
"nodeType": "YulFunctionCall",
"src": "22105:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22079:6:15"
},
"nodeType": "YulFunctionCall",
"src": "22079:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "22079:47:15"
},
{
"nodeType": "YulAssignment",
"src": "22135:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22269:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22143:124:15"
},
"nodeType": "YulFunctionCall",
"src": "22143:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22135:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22013:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22028:4:15",
"type": ""
}
],
"src": "21862:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22458:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22468:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22480:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22491:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22476:3:15"
},
"nodeType": "YulFunctionCall",
"src": "22476:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22468:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22515:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22526:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22511:3:15"
},
"nodeType": "YulFunctionCall",
"src": "22511:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22534:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22540:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22530:3:15"
},
"nodeType": "YulFunctionCall",
"src": "22530:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22504:6:15"
},
"nodeType": "YulFunctionCall",
"src": "22504:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "22504:47:15"
},
{
"nodeType": "YulAssignment",
"src": "22560:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22694:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22568:124:15"
},
"nodeType": "YulFunctionCall",
"src": "22568:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22560:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22438:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22453:4:15",
"type": ""
}
],
"src": "22287:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22883:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22893:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22905:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22916:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22901:3:15"
},
"nodeType": "YulFunctionCall",
"src": "22901:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22893:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22940:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22951:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22936:3:15"
},
"nodeType": "YulFunctionCall",
"src": "22936:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22959:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22965:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22955:3:15"
},
"nodeType": "YulFunctionCall",
"src": "22955:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22929:6:15"
},
"nodeType": "YulFunctionCall",
"src": "22929:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "22929:47:15"
},
{
"nodeType": "YulAssignment",
"src": "22985:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23119:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22993:124:15"
},
"nodeType": "YulFunctionCall",
"src": "22993:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22985:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22863:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22878:4:15",
"type": ""
}
],
"src": "22712:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23308:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23318:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23330:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23341:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23326:3:15"
},
"nodeType": "YulFunctionCall",
"src": "23326:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23318:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23365:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23376:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23361:3:15"
},
"nodeType": "YulFunctionCall",
"src": "23361:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23384:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23390:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23380:3:15"
},
"nodeType": "YulFunctionCall",
"src": "23380:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23354:6:15"
},
"nodeType": "YulFunctionCall",
"src": "23354:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "23354:47:15"
},
{
"nodeType": "YulAssignment",
"src": "23410:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23544:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23418:124:15"
},
"nodeType": "YulFunctionCall",
"src": "23418:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23410:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23288:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23303:4:15",
"type": ""
}
],
"src": "23137:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23733:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23743:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23755:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23766:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23751:3:15"
},
"nodeType": "YulFunctionCall",
"src": "23751:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23743:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23790:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23801:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23786:3:15"
},
"nodeType": "YulFunctionCall",
"src": "23786:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23809:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23815:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23805:3:15"
},
"nodeType": "YulFunctionCall",
"src": "23805:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23779:6:15"
},
"nodeType": "YulFunctionCall",
"src": "23779:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "23779:47:15"
},
{
"nodeType": "YulAssignment",
"src": "23835:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23969:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23843:124:15"
},
"nodeType": "YulFunctionCall",
"src": "23843:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23835:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23713:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23728:4:15",
"type": ""
}
],
"src": "23562:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24158:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24168:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24180:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24191:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24176:3:15"
},
"nodeType": "YulFunctionCall",
"src": "24176:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24168:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24215:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24226:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24211:3:15"
},
"nodeType": "YulFunctionCall",
"src": "24211:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24234:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24240:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24230:3:15"
},
"nodeType": "YulFunctionCall",
"src": "24230:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24204:6:15"
},
"nodeType": "YulFunctionCall",
"src": "24204:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "24204:47:15"
},
{
"nodeType": "YulAssignment",
"src": "24260:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24394:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24268:124:15"
},
"nodeType": "YulFunctionCall",
"src": "24268:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24260:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24138:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24153:4:15",
"type": ""
}
],
"src": "23987:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24583:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24593:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24605:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24616:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24601:3:15"
},
"nodeType": "YulFunctionCall",
"src": "24601:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24593:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24640:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24651:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24636:3:15"
},
"nodeType": "YulFunctionCall",
"src": "24636:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24659:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24665:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24655:3:15"
},
"nodeType": "YulFunctionCall",
"src": "24655:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24629:6:15"
},
"nodeType": "YulFunctionCall",
"src": "24629:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "24629:47:15"
},
{
"nodeType": "YulAssignment",
"src": "24685:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24819:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d85a3cdc203c5cdc6dda93c12cd017145671a0ed9058a16c7aa00b8398a4a8e6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24693:124:15"
},
"nodeType": "YulFunctionCall",
"src": "24693:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24685:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d85a3cdc203c5cdc6dda93c12cd017145671a0ed9058a16c7aa00b8398a4a8e6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24563:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24578:4:15",
"type": ""
}
],
"src": "24412:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25008:248:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25018:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25030:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25041:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25026:3:15"
},
"nodeType": "YulFunctionCall",
"src": "25026:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25018:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25065:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25076:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25061:3:15"
},
"nodeType": "YulFunctionCall",
"src": "25061:17:15"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25084:4:15"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25090:9:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25080:3:15"
},
"nodeType": "YulFunctionCall",
"src": "25080:20:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25054:6:15"
},
"nodeType": "YulFunctionCall",
"src": "25054:47:15"
},
"nodeType": "YulExpressionStatement",
"src": "25054:47:15"
},
{
"nodeType": "YulAssignment",
"src": "25110:139:15",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25244:4:15"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25118:124:15"
},
"nodeType": "YulFunctionCall",
"src": "25118:131:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25110:4:15"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24988:9:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25003:4:15",
"type": ""
}
],
"src": "24837:419:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25360:124:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25370:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25382:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25393:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25378:3:15"
},
"nodeType": "YulFunctionCall",
"src": "25378:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25370:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "25450:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25463:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25474:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25459:3:15"
},
"nodeType": "YulFunctionCall",
"src": "25459:17:15"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "25406:43:15"
},
"nodeType": "YulFunctionCall",
"src": "25406:71:15"
},
"nodeType": "YulExpressionStatement",
"src": "25406:71:15"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25332:9:15",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "25344:6:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25355:4:15",
"type": ""
}
],
"src": "25262:222:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25584:120:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25594:26:15",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25606:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25617:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25602:3:15"
},
"nodeType": "YulFunctionCall",
"src": "25602:18:15"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25594:4:15"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "25670:6:15"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25683:9:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25694:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25679:3:15"
},
"nodeType": "YulFunctionCall",
"src": "25679:17:15"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "25630:39:15"
},
"nodeType": "YulFunctionCall",
"src": "25630:67:15"
},
"nodeType": "YulExpressionStatement",
"src": "25630:67:15"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25556:9:15",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "25568:6:15",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25579:4:15",
"type": ""
}
],
"src": "25490:214:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25769:40:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25780:22:15",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25796:5:15"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "25790:5:15"
},
"nodeType": "YulFunctionCall",
"src": "25790:12:15"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25780:6:15"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25752:5:15",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25762:6:15",
"type": ""
}
],
"src": "25710:99:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25911:73:15",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25928:3:15"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25933:6:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25921:6:15"
},
"nodeType": "YulFunctionCall",
"src": "25921:19:15"
},
"nodeType": "YulExpressionStatement",
"src": "25921:19:15"
},
{
"nodeType": "YulAssignment",
"src": "25949:29:15",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25968:3:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25973:4:15",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25964:3:15"
},
"nodeType": "YulFunctionCall",
"src": "25964:14:15"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "25949:11:15"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25883:3:15",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25888:6:15",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "25899:11:15",
"type": ""
}
],
"src": "25815:169:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26104:34:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26114:18:15",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26129:3:15"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "26114:11:15"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "26076:3:15",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "26081:6:15",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "26092:11:15",
"type": ""
}
],
"src": "25990:148:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26188:261:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26198:25:15",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26221:1:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26203:17:15"
},
"nodeType": "YulFunctionCall",
"src": "26203:20:15"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26198:1:15"
}
]
},
{
"nodeType": "YulAssignment",
"src": "26232:25:15",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26255:1:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26237:17:15"
},
"nodeType": "YulFunctionCall",
"src": "26237:20:15"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26232:1:15"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26395:22:15",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "26397:16:15"
},
"nodeType": "YulFunctionCall",
"src": "26397:18:15"
},
"nodeType": "YulExpressionStatement",
"src": "26397:18:15"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26316:1:15"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26323:66:15",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26391:1:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26319:3:15"
},
"nodeType": "YulFunctionCall",
"src": "26319:74:15"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "26313:2:15"
},
"nodeType": "YulFunctionCall",
"src": "26313:81:15"
},
"nodeType": "YulIf",
"src": "26310:2:15"
},
{
"nodeType": "YulAssignment",
"src": "26427:16:15",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26438:1:15"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26441:1:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26434:3:15"
},
"nodeType": "YulFunctionCall",
"src": "26434:9:15"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "26427:3:15"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "26175:1:15",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "26178:1:15",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "26184:3:15",
"type": ""
}
],
"src": "26144:305:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26497:143:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26507:25:15",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26530:1:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26512:17:15"
},
"nodeType": "YulFunctionCall",
"src": "26512:20:15"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26507:1:15"
}
]
},
{
"nodeType": "YulAssignment",
"src": "26541:25:15",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26564:1:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26546:17:15"
},
"nodeType": "YulFunctionCall",
"src": "26546:20:15"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26541:1:15"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26588:22:15",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "26590:16:15"
},
"nodeType": "YulFunctionCall",
"src": "26590:18:15"
},
"nodeType": "YulExpressionStatement",
"src": "26590:18:15"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26585:1:15"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26578:6:15"
},
"nodeType": "YulFunctionCall",
"src": "26578:9:15"
},
"nodeType": "YulIf",
"src": "26575:2:15"
},
{
"nodeType": "YulAssignment",
"src": "26620:14:15",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26629:1:15"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26632:1:15"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "26625:3:15"
},
"nodeType": "YulFunctionCall",
"src": "26625:9:15"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "26620:1:15"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "26486:1:15",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "26489:1:15",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "26495:1:15",
"type": ""
}
],
"src": "26455:185:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26691:146:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26701:25:15",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26724:1:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26706:17:15"
},
"nodeType": "YulFunctionCall",
"src": "26706:20:15"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26701:1:15"
}
]
},
{
"nodeType": "YulAssignment",
"src": "26735:25:15",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26758:1:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26740:17:15"
},
"nodeType": "YulFunctionCall",
"src": "26740:20:15"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26735:1:15"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26782:22:15",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "26784:16:15"
},
"nodeType": "YulFunctionCall",
"src": "26784:18:15"
},
"nodeType": "YulExpressionStatement",
"src": "26784:18:15"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26776:1:15"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26779:1:15"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "26773:2:15"
},
"nodeType": "YulFunctionCall",
"src": "26773:8:15"
},
"nodeType": "YulIf",
"src": "26770:2:15"
},
{
"nodeType": "YulAssignment",
"src": "26814:17:15",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26826:1:15"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26829:1:15"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26822:3:15"
},
"nodeType": "YulFunctionCall",
"src": "26822:9:15"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "26814:4:15"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "26677:1:15",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "26680:1:15",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "26686:4:15",
"type": ""
}
],
"src": "26646:191:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26888:51:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26898:35:15",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26927:5:15"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "26909:17:15"
},
"nodeType": "YulFunctionCall",
"src": "26909:24:15"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "26898:7:15"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26870:5:15",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "26880:7:15",
"type": ""
}
],
"src": "26843:96:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26987:48:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26997:32:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27022:5:15"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27015:6:15"
},
"nodeType": "YulFunctionCall",
"src": "27015:13:15"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27008:6:15"
},
"nodeType": "YulFunctionCall",
"src": "27008:21:15"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "26997:7:15"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26969:5:15",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "26979:7:15",
"type": ""
}
],
"src": "26945:90:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27086:32:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27096:16:15",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "27107:5:15"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "27096:7:15"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27068:5:15",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "27078:7:15",
"type": ""
}
],
"src": "27041:77:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27169:81:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27179:65:15",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27194:5:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27201:42:15",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "27190:3:15"
},
"nodeType": "YulFunctionCall",
"src": "27190:54:15"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "27179:7:15"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27151:5:15",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "27161:7:15",
"type": ""
}
],
"src": "27124:126:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27301:32:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27311:16:15",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "27322:5:15"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "27311:7:15"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27283:5:15",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "27293:7:15",
"type": ""
}
],
"src": "27256:77:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27382:43:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27392:27:15",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27407:5:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27414:4:15",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "27403:3:15"
},
"nodeType": "YulFunctionCall",
"src": "27403:16:15"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "27392:7:15"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27364:5:15",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "27374:7:15",
"type": ""
}
],
"src": "27339:86:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27480:258:15",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "27490:10:15",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "27499:1:15",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "27494:1:15",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27559:63:15",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "27584:3:15"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27589:1:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27580:3:15"
},
"nodeType": "YulFunctionCall",
"src": "27580:11:15"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "27603:3:15"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27608:1:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27599:3:15"
},
"nodeType": "YulFunctionCall",
"src": "27599:11:15"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "27593:5:15"
},
"nodeType": "YulFunctionCall",
"src": "27593:18:15"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27573:6:15"
},
"nodeType": "YulFunctionCall",
"src": "27573:39:15"
},
"nodeType": "YulExpressionStatement",
"src": "27573:39:15"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27520:1:15"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27523:6:15"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "27517:2:15"
},
"nodeType": "YulFunctionCall",
"src": "27517:13:15"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "27531:19:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27533:15:15",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27542:1:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27545:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27538:3:15"
},
"nodeType": "YulFunctionCall",
"src": "27538:10:15"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27533:1:15"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "27513:3:15",
"statements": []
},
"src": "27509:113:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27656:76:15",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "27706:3:15"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27711:6:15"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27702:3:15"
},
"nodeType": "YulFunctionCall",
"src": "27702:16:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27720:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27695:6:15"
},
"nodeType": "YulFunctionCall",
"src": "27695:27:15"
},
"nodeType": "YulExpressionStatement",
"src": "27695:27:15"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27637:1:15"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27640:6:15"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "27634:2:15"
},
"nodeType": "YulFunctionCall",
"src": "27634:13:15"
},
"nodeType": "YulIf",
"src": "27631:2:15"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "27462:3:15",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "27467:3:15",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "27472:6:15",
"type": ""
}
],
"src": "27431:307:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27795:269:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27805:22:15",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "27819:4:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27825:1:15",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "27815:3:15"
},
"nodeType": "YulFunctionCall",
"src": "27815:12:15"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27805:6:15"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "27836:38:15",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "27866:4:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27872:1:15",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "27862:3:15"
},
"nodeType": "YulFunctionCall",
"src": "27862:12:15"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "27840:18:15",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27913:51:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27927:27:15",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27941:6:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27949:4:15",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "27937:3:15"
},
"nodeType": "YulFunctionCall",
"src": "27937:17:15"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27927:6:15"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "27893:18:15"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27886:6:15"
},
"nodeType": "YulFunctionCall",
"src": "27886:26:15"
},
"nodeType": "YulIf",
"src": "27883:2:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28016:42:15",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "28030:16:15"
},
"nodeType": "YulFunctionCall",
"src": "28030:18:15"
},
"nodeType": "YulExpressionStatement",
"src": "28030:18:15"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "27980:18:15"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "28003:6:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28011:2:15",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "28000:2:15"
},
"nodeType": "YulFunctionCall",
"src": "28000:14:15"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "27977:2:15"
},
"nodeType": "YulFunctionCall",
"src": "27977:38:15"
},
"nodeType": "YulIf",
"src": "27974:2:15"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "27779:4:15",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "27788:6:15",
"type": ""
}
],
"src": "27744:320:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28117:32:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28127:16:15",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "28138:5:15"
},
"variableNames": [
{
"name": "aligned",
"nodeType": "YulIdentifier",
"src": "28127:7:15"
}
]
}
]
},
"name": "leftAlign_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28099:5:15",
"type": ""
}
],
"returnVariables": [
{
"name": "aligned",
"nodeType": "YulTypedName",
"src": "28109:7:15",
"type": ""
}
],
"src": "28070:79:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28189:142:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28199:25:15",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28222:1:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28204:17:15"
},
"nodeType": "YulFunctionCall",
"src": "28204:20:15"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28199:1:15"
}
]
},
{
"nodeType": "YulAssignment",
"src": "28233:25:15",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28256:1:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28238:17:15"
},
"nodeType": "YulFunctionCall",
"src": "28238:20:15"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28233:1:15"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "28280:22:15",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "28282:16:15"
},
"nodeType": "YulFunctionCall",
"src": "28282:18:15"
},
"nodeType": "YulExpressionStatement",
"src": "28282:18:15"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28277:1:15"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "28270:6:15"
},
"nodeType": "YulFunctionCall",
"src": "28270:9:15"
},
"nodeType": "YulIf",
"src": "28267:2:15"
},
{
"nodeType": "YulAssignment",
"src": "28311:14:15",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28320:1:15"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28323:1:15"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "28316:3:15"
},
"nodeType": "YulFunctionCall",
"src": "28316:9:15"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "28311:1:15"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "28178:1:15",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "28181:1:15",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "28187:1:15",
"type": ""
}
],
"src": "28155:176:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28365:152:15",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28382:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28385:77:15",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28375:6:15"
},
"nodeType": "YulFunctionCall",
"src": "28375:88:15"
},
"nodeType": "YulExpressionStatement",
"src": "28375:88:15"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28479:1:15",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28482:4:15",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28472:6:15"
},
"nodeType": "YulFunctionCall",
"src": "28472:15:15"
},
"nodeType": "YulExpressionStatement",
"src": "28472:15:15"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28503:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28506:4:15",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28496:6:15"
},
"nodeType": "YulFunctionCall",
"src": "28496:15:15"
},
"nodeType": "YulExpressionStatement",
"src": "28496:15:15"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "28337:180:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28551:152:15",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28568:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28571:77:15",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28561:6:15"
},
"nodeType": "YulFunctionCall",
"src": "28561:88:15"
},
"nodeType": "YulExpressionStatement",
"src": "28561:88:15"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28665:1:15",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28668:4:15",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28658:6:15"
},
"nodeType": "YulFunctionCall",
"src": "28658:15:15"
},
"nodeType": "YulExpressionStatement",
"src": "28658:15:15"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28689:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28692:4:15",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28682:6:15"
},
"nodeType": "YulFunctionCall",
"src": "28682:15:15"
},
"nodeType": "YulExpressionStatement",
"src": "28682:15:15"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "28523:180:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28737:152:15",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28754:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28757:77:15",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28747:6:15"
},
"nodeType": "YulFunctionCall",
"src": "28747:88:15"
},
"nodeType": "YulExpressionStatement",
"src": "28747:88:15"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28851:1:15",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28854:4:15",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28844:6:15"
},
"nodeType": "YulFunctionCall",
"src": "28844:15:15"
},
"nodeType": "YulExpressionStatement",
"src": "28844:15:15"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28875:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28878:4:15",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28868:6:15"
},
"nodeType": "YulFunctionCall",
"src": "28868:15:15"
},
"nodeType": "YulExpressionStatement",
"src": "28868:15:15"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "28709:180:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28943:54:15",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28953:38:15",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28971:5:15"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28978:2:15",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28967:3:15"
},
"nodeType": "YulFunctionCall",
"src": "28967:14:15"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28987:2:15",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "28983:3:15"
},
"nodeType": "YulFunctionCall",
"src": "28983:7:15"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "28963:3:15"
},
"nodeType": "YulFunctionCall",
"src": "28963:28:15"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "28953:6:15"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28926:5:15",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "28936:6:15",
"type": ""
}
],
"src": "28895:102:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29046:79:15",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "29103:16:15",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29112:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29115:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29105:6:15"
},
"nodeType": "YulFunctionCall",
"src": "29105:12:15"
},
"nodeType": "YulExpressionStatement",
"src": "29105:12:15"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29069:5:15"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29094:5:15"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "29076:17:15"
},
"nodeType": "YulFunctionCall",
"src": "29076:24:15"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "29066:2:15"
},
"nodeType": "YulFunctionCall",
"src": "29066:35:15"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "29059:6:15"
},
"nodeType": "YulFunctionCall",
"src": "29059:43:15"
},
"nodeType": "YulIf",
"src": "29056:2:15"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29039:5:15",
"type": ""
}
],
"src": "29003:122:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29174:79:15",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "29231:16:15",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29240:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29243:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29233:6:15"
},
"nodeType": "YulFunctionCall",
"src": "29233:12:15"
},
"nodeType": "YulExpressionStatement",
"src": "29233:12:15"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29197:5:15"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29222:5:15"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "29204:17:15"
},
"nodeType": "YulFunctionCall",
"src": "29204:24:15"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "29194:2:15"
},
"nodeType": "YulFunctionCall",
"src": "29194:35:15"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "29187:6:15"
},
"nodeType": "YulFunctionCall",
"src": "29187:43:15"
},
"nodeType": "YulIf",
"src": "29184:2:15"
}
]
},
"name": "validator_revert_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29167:5:15",
"type": ""
}
],
"src": "29131:122:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29302:79:15",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "29359:16:15",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29368:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29371:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29361:6:15"
},
"nodeType": "YulFunctionCall",
"src": "29361:12:15"
},
"nodeType": "YulExpressionStatement",
"src": "29361:12:15"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29325:5:15"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29350:5:15"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29332:17:15"
},
"nodeType": "YulFunctionCall",
"src": "29332:24:15"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "29322:2:15"
},
"nodeType": "YulFunctionCall",
"src": "29322:35:15"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "29315:6:15"
},
"nodeType": "YulFunctionCall",
"src": "29315:43:15"
},
"nodeType": "YulIf",
"src": "29312:2:15"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29295:5:15",
"type": ""
}
],
"src": "29259:122:15"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29428:77:15",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "29483:16:15",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29492:1:15",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29495:1:15",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29485:6:15"
},
"nodeType": "YulFunctionCall",
"src": "29485:12:15"
},
"nodeType": "YulExpressionStatement",
"src": "29485:12:15"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29451:5:15"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29474:5:15"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "29458:15:15"
},
"nodeType": "YulFunctionCall",
"src": "29458:22:15"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "29448:2:15"
},
"nodeType": "YulFunctionCall",
"src": "29448:33:15"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "29441:6:15"
},
"nodeType": "YulFunctionCall",
"src": "29441:41:15"
},
"nodeType": "YulIf",
"src": "29438:2:15"
}
]
},
"name": "validator_revert_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29421:5:15",
"type": ""
}
],
"src": "29387:118:15"
}
]
},
"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_bytes32(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes32(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_t_uint8(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint8(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6 {\n if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_uint8(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 160\n\n value5 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 192\n\n value6 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack(value, pos) {\n mstore(pos, leftAlign_t_bytes32(cleanup_t_bytes32(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_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 24)\n\n mstore(add(pos, 0), \"ECDSA: invalid signature\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_031e0835d070e7bbd2c8dcce466eadb8c6b9fd22432b0357ab8c37bd9a385940_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n\n mstore(add(pos, 0), \"ERC20Snapshot: nonexistent id\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n\n mstore(add(pos, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(pos, 32), \"ess\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n\n mstore(add(pos, 0), \"Pausable: not paused\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n\n mstore(add(pos, 0), \"ERC20: burn amount exceeds balan\")\n\n mstore(add(pos, 32), \"ce\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n\n mstore(add(pos, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(pos, 32), \"ddress\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n\n mstore(add(pos, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(pos, 32), \"ss\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 2)\n\n mstore(add(pos, 0), 0x1901000000000000000000000000000000000000000000000000000000000000)\n\n end := add(pos, 2)\n }\n\n function abi_encode_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n\n mstore(add(pos, 0), \"ERC20Permit: expired deadline\")\n\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\n mstore(add(pos, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(pos, 32), \"alance\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n\n mstore(add(pos, 0), \"ECDSA: invalid signature 's' val\")\n\n mstore(add(pos, 32), \"ue\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n\n mstore(add(pos, 0), \"Pausable: paused\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n\n mstore(add(pos, 0), \"ECDSA: invalid signature 'v' val\")\n\n mstore(add(pos, 32), \"ue\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 30)\n\n mstore(add(pos, 0), \"ERC20Permit: invalid signature\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n\n mstore(add(pos, 0), \"ERC20: transfer amount exceeds a\")\n\n mstore(add(pos, 32), \"llowance\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n\n mstore(add(pos, 0), \"Ownable: caller is not the owner\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n\n mstore(add(pos, 0), \"ERC20: burn amount exceeds allow\")\n\n mstore(add(pos, 32), \"ance\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n\n mstore(add(pos, 0), \"ERC20: burn from the zero addres\")\n\n mstore(add(pos, 32), \"s\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n\n mstore(add(pos, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(pos, 32), \"dress\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n\n mstore(add(pos, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(pos, 32), \"ress\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_d85a3cdc203c5cdc6dda93c12cd017145671a0ed9058a16c7aa00b8398a4a8e6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 22)\n\n mstore(add(pos, 0), \"ERC20Snapshot: id is 0\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n\n mstore(add(pos, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(pos, 32), \" zero\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack(value0, pos)\n pos := add(pos, 32)\n\n abi_encode_t_bytes32_to_t_bytes32_nonPadded_inplace_fromStack(value1, pos)\n pos := add(pos, 32)\n\n end := pos\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_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_bytes32__to_t_bytes32__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart , value5, value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 192)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_address_to_t_address_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value4, add(headStart, 128))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value5, add(headStart, 160))\n\n }\n\n function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n abi_encode_t_address_to_t_address_fromStack(value4, add(headStart, 128))\n\n }\n\n function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value3, add(headStart, 96))\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_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__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_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_031e0835d070e7bbd2c8dcce466eadb8c6b9fd22432b0357ab8c37bd9a385940__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_031e0835d070e7bbd2c8dcce466eadb8c6b9fd22432b0357ab8c37bd9a385940_to_t_string_memory_ptr_fromStack( 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_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__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_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__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_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_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_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__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_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd_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_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__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_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__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_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__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_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__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_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db__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_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__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_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_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_d85a3cdc203c5cdc6dda93c12cd017145671a0ed9058a16c7aa00b8398a4a8e6__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_d85a3cdc203c5cdc6dda93c12cd017145671a0ed9058a16c7aa00b8398a4a8e6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := 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 leftAlign_t_bytes32(value) -> aligned {\n aligned := value\n }\n\n function mod_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(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 function validator_revert_t_uint8(value) {\n if iszero(eq(value, cleanup_t_uint8(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 15,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {
"1189": [
{
"length": 32,
"start": 3598
}
],
"1656": [
{
"length": 32,
"start": 5900
}
],
"1658": [
{
"length": 32,
"start": 5860
}
],
"1660": [
{
"length": 32,
"start": 5976
}
],
"1662": [
{
"length": 32,
"start": 6009
}
],
"1664": [
{
"length": 32,
"start": 5943
}
]
},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de5780639711715a11610097578063a9059cbb11610071578063a9059cbb1461042a578063d505accf1461045a578063dd62ed3e14610476578063f2fde38b146104a657610173565b80639711715a146103c0578063981b24d0146103ca578063a457c2d7146103fa57610173565b8063715018a61461032457806379cc67901461032e5780637ecebe001461034a5780638456cb591461037a5780638da5cb5b1461038457806395d89b41146103a257610173565b8063395093511161013057806339509351146102505780633f4ba83a1461028057806342966c681461028a5780634ee2cd7e146102a65780635c975abb146102d657806370a08231146102f457610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e4578063313ce567146102145780633644e51514610232575b600080fd5b6101806104c2565b60405161018d9190612d2b565b60405180910390f35b6101b060048036038101906101ab919061233c565b610554565b6040516101bd9190612bfc565b60405180910390f35b6101ce610572565b6040516101db9190612fed565b60405180910390f35b6101fe60048036038101906101f9919061224f565b61057c565b60405161020b9190612bfc565b60405180910390f35b61021c61067d565b6040516102299190613008565b60405180910390f35b61023a610686565b6040516102479190612c17565b60405180910390f35b61026a6004803603810190610265919061233c565b610695565b6040516102779190612bfc565b60405180910390f35b610288610741565b005b6102a4600480360381019061029f9190612378565b6107c7565b005b6102c060048036038101906102bb919061233c565b6107db565b6040516102cd9190612fed565b60405180910390f35b6102de61084b565b6040516102eb9190612bfc565b60405180910390f35b61030e600480360381019061030991906121ea565b610862565b60405161031b9190612fed565b60405180910390f35b61032c6108aa565b005b6103486004803603810190610343919061233c565b6109e7565b005b610364600480360381019061035f91906121ea565b610a6b565b6040516103719190612fed565b60405180910390f35b610382610abb565b005b61038c610b41565b6040516103999190612be1565b60405180910390f35b6103aa610b6b565b6040516103b79190612d2b565b60405180910390f35b6103c8610bfd565b005b6103e460048036038101906103df9190612378565b610c84565b6040516103f19190612fed565b60405180910390f35b610414600480360381019061040f919061233c565b610cb5565b6040516104219190612bfc565b60405180910390f35b610444600480360381019061043f919061233c565b610da9565b6040516104519190612bfc565b60405180910390f35b610474600480360381019061046f919061229e565b610dc7565b005b610490600480360381019061048b9190612213565b610f8e565b60405161049d9190612fed565b60405180910390f35b6104c060048036038101906104bb91906121ea565b611015565b005b6060600380546104d190613197565b80601f01602080910402602001604051908101604052809291908181526020018280546104fd90613197565b801561054a5780601f1061051f5761010080835404028352916020019161054a565b820191906000526020600020905b81548152906001019060200180831161052d57829003601f168201915b5050505050905090565b600061056861056161128e565b8484611296565b6001905092915050565b6000600254905090565b6000610589848484611461565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105d461128e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064b90612eed565b60405180910390fd5b6106718561066061128e565b858461066c91906130d1565b611296565b60019150509392505050565b60006012905090565b60006106906116e0565b905090565b60006107376106a261128e565b8484600160006106b061128e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610732919061304a565b611296565b6001905092915050565b61074961128e565b73ffffffffffffffffffffffffffffffffffffffff16610767610b41565b73ffffffffffffffffffffffffffffffffffffffff16146107bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b490612f0d565b60405180910390fd5b6107c56117a3565b565b6107d86107d261128e565b82611845565b50565b600080600061082884600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611a19565b915091508161083f5761083a85610862565b610841565b805b9250505092915050565b6000600960149054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108b261128e565b73ffffffffffffffffffffffffffffffffffffffff166108d0610b41565b73ffffffffffffffffffffffffffffffffffffffff1614610926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091d90612f0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006109fa836109f561128e565b610f8e565b905081811015610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3690612f2d565b60405180910390fd5b610a5c83610a4b61128e565b8484610a5791906130d1565b611296565b610a668383611845565b505050565b6000610ab4600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611280565b9050919050565b610ac361128e565b73ffffffffffffffffffffffffffffffffffffffff16610ae1610b41565b73ffffffffffffffffffffffffffffffffffffffff1614610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e90612f0d565b60405180910390fd5b610b3f611b37565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b7a90613197565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba690613197565b8015610bf35780601f10610bc857610100808354040283529160200191610bf3565b820191906000526020600020905b815481529060010190602001808311610bd657829003601f168201915b5050505050905090565b610c0561128e565b73ffffffffffffffffffffffffffffffffffffffff16610c23610b41565b73ffffffffffffffffffffffffffffffffffffffff1614610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090612f0d565b60405180910390fd5b610c81611bda565b50565b6000806000610c94846006611a19565b9150915081610caa57610ca5610572565b610cac565b805b92505050919050565b60008060016000610cc461128e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890612fcd565b60405180910390fd5b610d9e610d8c61128e565b858584610d9991906130d1565b611296565b600191505092915050565b6000610dbd610db661128e565b8484611461565b6001905092915050565b83421115610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190612e2d565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000888888610e77600a60008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611280565b89604051602001610e8d96959493929190612c32565b6040516020818303038152906040528051906020012090506000610eb082611c32565b90506000610ec082878787611c4c565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790612ecd565b60405180910390fd5b610f77600a60008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611dd7565b610f828a8a8a611296565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61101d61128e565b73ffffffffffffffffffffffffffffffffffffffff1661103b610b41565b73ffffffffffffffffffffffffffffffffffffffff1614611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890612f0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890612ded565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111cc83838361127b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112175761120a82611ded565b611212611e40565b611276565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112625761125583611ded565b61125d611e40565b611275565b61126b83611ded565b61127482611ded565b5b5b505050565b505050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90612f8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d90612e0d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114549190612fed565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890612f6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890612d8d565b60405180910390fd5b61154c838383611e54565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c990612e4d565b60405180910390fd5b81816115de91906130d1565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461166e919061304a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116d29190612fed565b60405180910390a350505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461415611732577f000000000000000000000000000000000000000000000000000000000000000090506117a0565b61179d7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611eac565b90505b90565b6117ab61084b565b6117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190612dad565b60405180910390fd5b6000600960146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61182e61128e565b60405161183b9190612be1565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90612f4d565b60405180910390fd5b6118c182600083611e54565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90612dcd565b60405180910390fd5b818161195391906130d1565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546119a791906130d1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a0c9190612fed565b60405180910390a3505050565b60008060008411611a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5690612fad565b60405180910390fd5b611a696008611280565b841115611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290612d6d565b60405180910390fd5b6000611ac38585600001611ee690919063ffffffff16565b90508360000180549050811415611ae1576000809250925050611b30565b6001846001018281548110611b1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b611b3f61084b565b15611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690612e8d565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611bc361128e565b604051611bd09190612be1565b60405180910390a1565b6000611be66008611dd7565b6000611bf26008611280565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611c239190612fed565b60405180910390a18091505090565b6000611c45611c3f6116e0565b8361200c565b9050919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90612e6d565b60405180910390fd5b601b8460ff161480611cc95750601c8460ff16145b611d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cff90612ead565b60405180910390fd5b600060018686868660405160008152602001604052604051611d2d9493929190612ce6565b6020604051602081039080840390855afa158015611d4f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290612d4d565b60405180910390fd5b80915050949350505050565b6001816000016000828254019250508190555050565b611e3d600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611e3883610862565b61203f565b50565b611e526006611e4d610572565b61203f565b565b611e5c61084b565b15611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390612e8d565b60405180910390fd5b611ea78383836111c1565b505050565b60008383834630604051602001611ec7959493929190612c93565b6040516020818303038152906040528051906020012090509392505050565b60008083805490501415611efd5760009050612006565b600080848054905090505b80821015611f87576000611f1c83836120bc565b905084868281548110611f58577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001541115611f7157809150611f81565b600181611f7e919061304a565b92505b50611f08565b600082118015611fe557508385600184611fa191906130d1565b81548110611fd8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b1561200057600182611ff791906130d1565b92505050612006565b81925050505b92915050565b60008282604051602001612021929190612baa565b60405160208183030381529060405280519060200120905092915050565b600061204b6008611280565b90508061205a84600001612123565b10156120b75782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600280836120cc91906131d3565b6002856120d991906131d3565b6120e3919061304a565b6120ed91906130a0565b6002836120fa91906130a0565b60028561210791906130a0565b612111919061304a565b61211b919061304a565b905092915050565b6000808280549050141561213a5760009050612191565b816001838054905061214c91906130d1565b81548110612183577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b6000813590506121a5816132a2565b92915050565b6000813590506121ba816132b9565b92915050565b6000813590506121cf816132d0565b92915050565b6000813590506121e4816132e7565b92915050565b6000602082840312156121fc57600080fd5b600061220a84828501612196565b91505092915050565b6000806040838503121561222657600080fd5b600061223485828601612196565b925050602061224585828601612196565b9150509250929050565b60008060006060848603121561226457600080fd5b600061227286828701612196565b935050602061228386828701612196565b9250506040612294868287016121c0565b9150509250925092565b600080600080600080600060e0888a0312156122b957600080fd5b60006122c78a828b01612196565b97505060206122d88a828b01612196565b96505060406122e98a828b016121c0565b95505060606122fa8a828b016121c0565b945050608061230b8a828b016121d5565b93505060a061231c8a828b016121ab565b92505060c061232d8a828b016121ab565b91505092959891949750929550565b6000806040838503121561234f57600080fd5b600061235d85828601612196565b925050602061236e858286016121c0565b9150509250929050565b60006020828403121561238a57600080fd5b6000612398848285016121c0565b91505092915050565b6123aa81613105565b82525050565b6123b981613117565b82525050565b6123c881613123565b82525050565b6123df6123da82613123565b6131c9565b82525050565b60006123f082613023565b6123fa818561302e565b935061240a818560208601613164565b61241381613291565b840191505092915050565b600061242b60188361302e565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b600061246b601d8361302e565b91507f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006000830152602082019050919050565b60006124ab60238361302e565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061251160148361302e565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b600061255160228361302e565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125b760268361302e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061261d60228361302e565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061268360028361303f565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b60006126c3601d8361302e565b91507f45524332305065726d69743a206578706972656420646561646c696e650000006000830152602082019050919050565b600061270360268361302e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061276960228361302e565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127cf60108361302e565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b600061280f60228361302e565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612875601e8361302e565b91507f45524332305065726d69743a20696e76616c6964207369676e617475726500006000830152602082019050919050565b60006128b560288361302e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061291b60208361302e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061295b60248361302e565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129c160218361302e565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a2760258361302e565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a8d60248361302e565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612af360168361302e565b91507f4552433230536e617073686f743a2069642069732030000000000000000000006000830152602082019050919050565b6000612b3360258361302e565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b612b958161314d565b82525050565b612ba481613157565b82525050565b6000612bb582612676565b9150612bc182856123ce565b602082019150612bd182846123ce565b6020820191508190509392505050565b6000602082019050612bf660008301846123a1565b92915050565b6000602082019050612c1160008301846123b0565b92915050565b6000602082019050612c2c60008301846123bf565b92915050565b600060c082019050612c4760008301896123bf565b612c5460208301886123a1565b612c6160408301876123a1565b612c6e6060830186612b8c565b612c7b6080830185612b8c565b612c8860a0830184612b8c565b979650505050505050565b600060a082019050612ca860008301886123bf565b612cb560208301876123bf565b612cc260408301866123bf565b612ccf6060830185612b8c565b612cdc60808301846123a1565b9695505050505050565b6000608082019050612cfb60008301876123bf565b612d086020830186612b9b565b612d1560408301856123bf565b612d2260608301846123bf565b95945050505050565b60006020820190508181036000830152612d4581846123e5565b905092915050565b60006020820190508181036000830152612d668161241e565b9050919050565b60006020820190508181036000830152612d868161245e565b9050919050565b60006020820190508181036000830152612da68161249e565b9050919050565b60006020820190508181036000830152612dc681612504565b9050919050565b60006020820190508181036000830152612de681612544565b9050919050565b60006020820190508181036000830152612e06816125aa565b9050919050565b60006020820190508181036000830152612e2681612610565b9050919050565b60006020820190508181036000830152612e46816126b6565b9050919050565b60006020820190508181036000830152612e66816126f6565b9050919050565b60006020820190508181036000830152612e868161275c565b9050919050565b60006020820190508181036000830152612ea6816127c2565b9050919050565b60006020820190508181036000830152612ec681612802565b9050919050565b60006020820190508181036000830152612ee681612868565b9050919050565b60006020820190508181036000830152612f06816128a8565b9050919050565b60006020820190508181036000830152612f268161290e565b9050919050565b60006020820190508181036000830152612f468161294e565b9050919050565b60006020820190508181036000830152612f66816129b4565b9050919050565b60006020820190508181036000830152612f8681612a1a565b9050919050565b60006020820190508181036000830152612fa681612a80565b9050919050565b60006020820190508181036000830152612fc681612ae6565b9050919050565b60006020820190508181036000830152612fe681612b26565b9050919050565b60006020820190506130026000830184612b8c565b92915050565b600060208201905061301d6000830184612b9b565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006130558261314d565b91506130608361314d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561309557613094613204565b5b828201905092915050565b60006130ab8261314d565b91506130b68361314d565b9250826130c6576130c5613233565b5b828204905092915050565b60006130dc8261314d565b91506130e78361314d565b9250828210156130fa576130f9613204565b5b828203905092915050565b60006131108261312d565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015613182578082015181840152602081019050613167565b83811115613191576000848401525b50505050565b600060028204905060018216806131af57607f821691505b602082108114156131c3576131c2613262565b5b50919050565b6000819050919050565b60006131de8261314d565b91506131e98361314d565b9250826131f9576131f8613233565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6132ab81613105565b81146132b657600080fd5b50565b6132c281613123565b81146132cd57600080fd5b50565b6132d98161314d565b81146132e457600080fd5b50565b6132f081613157565b81146132fb57600080fd5b5056fea2646970667358221220805e0e41733155b77615473e943d4cdbac8c9460fedc405bd9ef178f9fa8a0d864736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x173 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x9711715A GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x42A JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x45A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x476 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x4A6 JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0x9711715A EQ PUSH2 0x3C0 JUMPI DUP1 PUSH4 0x981B24D0 EQ PUSH2 0x3CA JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x3FA JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x324 JUMPI DUP1 PUSH4 0x79CC6790 EQ PUSH2 0x32E JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x34A JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x37A JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x384 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x3A2 JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0x39509351 GT PUSH2 0x130 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x280 JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x28A JUMPI DUP1 PUSH4 0x4EE2CD7E EQ PUSH2 0x2A6 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x2D6 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2F4 JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x178 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x196 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1E4 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x214 JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x232 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x180 PUSH2 0x4C2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18D SWAP2 SWAP1 PUSH2 0x2D2B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AB SWAP2 SWAP1 PUSH2 0x233C JUMP JUMPDEST PUSH2 0x554 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BD SWAP2 SWAP1 PUSH2 0x2BFC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CE PUSH2 0x572 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DB SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F9 SWAP2 SWAP1 PUSH2 0x224F JUMP JUMPDEST PUSH2 0x57C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20B SWAP2 SWAP1 PUSH2 0x2BFC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x21C PUSH2 0x67D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x229 SWAP2 SWAP1 PUSH2 0x3008 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23A PUSH2 0x686 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x247 SWAP2 SWAP1 PUSH2 0x2C17 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x265 SWAP2 SWAP1 PUSH2 0x233C JUMP JUMPDEST PUSH2 0x695 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x277 SWAP2 SWAP1 PUSH2 0x2BFC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x288 PUSH2 0x741 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x29F SWAP2 SWAP1 PUSH2 0x2378 JUMP JUMPDEST PUSH2 0x7C7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2BB SWAP2 SWAP1 PUSH2 0x233C JUMP JUMPDEST PUSH2 0x7DB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2CD SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DE PUSH2 0x84B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2EB SWAP2 SWAP1 PUSH2 0x2BFC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x30E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x309 SWAP2 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH2 0x862 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x31B SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x32C PUSH2 0x8AA JUMP JUMPDEST STOP JUMPDEST PUSH2 0x348 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x343 SWAP2 SWAP1 PUSH2 0x233C JUMP JUMPDEST PUSH2 0x9E7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x364 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x35F SWAP2 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH2 0xA6B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x371 SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x382 PUSH2 0xABB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x38C PUSH2 0xB41 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x399 SWAP2 SWAP1 PUSH2 0x2BE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3AA PUSH2 0xB6B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B7 SWAP2 SWAP1 PUSH2 0x2D2B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3C8 PUSH2 0xBFD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3E4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3DF SWAP2 SWAP1 PUSH2 0x2378 JUMP JUMPDEST PUSH2 0xC84 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3F1 SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x414 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x40F SWAP2 SWAP1 PUSH2 0x233C JUMP JUMPDEST PUSH2 0xCB5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x421 SWAP2 SWAP1 PUSH2 0x2BFC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x444 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x43F SWAP2 SWAP1 PUSH2 0x233C JUMP JUMPDEST PUSH2 0xDA9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x451 SWAP2 SWAP1 PUSH2 0x2BFC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x474 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x46F SWAP2 SWAP1 PUSH2 0x229E JUMP JUMPDEST PUSH2 0xDC7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x490 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x48B SWAP2 SWAP1 PUSH2 0x2213 JUMP JUMPDEST PUSH2 0xF8E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x49D SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4BB SWAP2 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH2 0x1015 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x4D1 SWAP1 PUSH2 0x3197 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 0x4FD SWAP1 PUSH2 0x3197 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x54A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x51F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x54A 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 0x52D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x568 PUSH2 0x561 PUSH2 0x128E JUMP JUMPDEST DUP5 DUP5 PUSH2 0x1296 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x589 DUP5 DUP5 DUP5 PUSH2 0x1461 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x5D4 PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x654 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x64B SWAP1 PUSH2 0x2EED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x671 DUP6 PUSH2 0x660 PUSH2 0x128E JUMP JUMPDEST DUP6 DUP5 PUSH2 0x66C SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST PUSH2 0x1296 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x690 PUSH2 0x16E0 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x737 PUSH2 0x6A2 PUSH2 0x128E JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x6B0 PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x732 SWAP2 SWAP1 PUSH2 0x304A JUMP JUMPDEST PUSH2 0x1296 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x749 PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x767 PUSH2 0xB41 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7BD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7B4 SWAP1 PUSH2 0x2F0D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7C5 PUSH2 0x17A3 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x7D8 PUSH2 0x7D2 PUSH2 0x128E JUMP JUMPDEST DUP3 PUSH2 0x1845 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x828 DUP5 PUSH1 0x5 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH2 0x1A19 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x83F JUMPI PUSH2 0x83A DUP6 PUSH2 0x862 JUMP JUMPDEST PUSH2 0x841 JUMP JUMPDEST DUP1 JUMPDEST SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 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 PUSH2 0x8B2 PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8D0 PUSH2 0xB41 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x926 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x91D SWAP1 PUSH2 0x2F0D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9FA DUP4 PUSH2 0x9F5 PUSH2 0x128E JUMP JUMPDEST PUSH2 0xF8E JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xA3F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA36 SWAP1 PUSH2 0x2F2D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA5C DUP4 PUSH2 0xA4B PUSH2 0x128E JUMP JUMPDEST DUP5 DUP5 PUSH2 0xA57 SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST PUSH2 0x1296 JUMP JUMPDEST PUSH2 0xA66 DUP4 DUP4 PUSH2 0x1845 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAB4 PUSH1 0xA PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH2 0x1280 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xAC3 PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xAE1 PUSH2 0xB41 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xB37 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB2E SWAP1 PUSH2 0x2F0D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB3F PUSH2 0x1B37 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0xB7A SWAP1 PUSH2 0x3197 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 0xBA6 SWAP1 PUSH2 0x3197 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xBF3 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xBC8 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xBF3 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 0xBD6 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xC05 PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC23 PUSH2 0xB41 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xC79 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC70 SWAP1 PUSH2 0x2F0D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xC81 PUSH2 0x1BDA JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0xC94 DUP5 PUSH1 0x6 PUSH2 0x1A19 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xCAA JUMPI PUSH2 0xCA5 PUSH2 0x572 JUMP JUMPDEST PUSH2 0xCAC JUMP JUMPDEST DUP1 JUMPDEST SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0xCC4 PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0xD81 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD78 SWAP1 PUSH2 0x2FCD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD9E PUSH2 0xD8C PUSH2 0x128E JUMP JUMPDEST DUP6 DUP6 DUP5 PUSH2 0xD99 SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST PUSH2 0x1296 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDBD PUSH2 0xDB6 PUSH2 0x128E JUMP JUMPDEST DUP5 DUP5 PUSH2 0x1461 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0xE0A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE01 SWAP1 PUSH2 0x2E2D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0xE77 PUSH1 0xA PUSH1 0x0 DUP15 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH2 0x1280 JUMP JUMPDEST DUP10 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xE8D SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2C32 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0xEB0 DUP3 PUSH2 0x1C32 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xEC0 DUP3 DUP8 DUP8 DUP8 PUSH2 0x1C4C JUMP JUMPDEST SWAP1 POP DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xF30 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF27 SWAP1 PUSH2 0x2ECD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF77 PUSH1 0xA PUSH1 0x0 DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH2 0x1DD7 JUMP JUMPDEST PUSH2 0xF82 DUP11 DUP11 DUP11 PUSH2 0x1296 JUMP JUMPDEST POP POP POP POP POP POP POP POP 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 PUSH2 0x101D PUSH2 0x128E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x103B PUSH2 0xB41 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1091 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1088 SWAP1 PUSH2 0x2F0D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1101 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10F8 SWAP1 PUSH2 0x2DED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH1 0x9 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x11CC DUP4 DUP4 DUP4 PUSH2 0x127B JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1217 JUMPI PUSH2 0x120A DUP3 PUSH2 0x1DED JUMP JUMPDEST PUSH2 0x1212 PUSH2 0x1E40 JUMP JUMPDEST PUSH2 0x1276 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1262 JUMPI PUSH2 0x1255 DUP4 PUSH2 0x1DED JUMP JUMPDEST PUSH2 0x125D PUSH2 0x1E40 JUMP JUMPDEST PUSH2 0x1275 JUMP JUMPDEST PUSH2 0x126B DUP4 PUSH2 0x1DED JUMP JUMPDEST PUSH2 0x1274 DUP3 PUSH2 0x1DED JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1306 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12FD SWAP1 PUSH2 0x2F8D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1376 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x136D SWAP1 PUSH2 0x2E0D 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 0x1454 SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x14D1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14C8 SWAP1 PUSH2 0x2F6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1541 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1538 SWAP1 PUSH2 0x2D8D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x154C DUP4 DUP4 DUP4 PUSH2 0x1E54 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 0x15D2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15C9 SWAP1 PUSH2 0x2E4D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x15DE SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x166E SWAP2 SWAP1 PUSH2 0x304A JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x16D2 SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 CHAINID EQ ISZERO PUSH2 0x1732 JUMPI PUSH32 0x0 SWAP1 POP PUSH2 0x17A0 JUMP JUMPDEST PUSH2 0x179D PUSH32 0x0 PUSH32 0x0 PUSH32 0x0 PUSH2 0x1EAC JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0x17AB PUSH2 0x84B JUMP JUMPDEST PUSH2 0x17EA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17E1 SWAP1 PUSH2 0x2DAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x9 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x182E PUSH2 0x128E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x183B SWAP2 SWAP1 PUSH2 0x2BE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x18B5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18AC SWAP1 PUSH2 0x2F4D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x18C1 DUP3 PUSH1 0x0 DUP4 PUSH2 0x1E54 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1947 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x193E SWAP1 PUSH2 0x2DCD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 PUSH2 0x1953 SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 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 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x19A7 SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1A0C SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 GT PUSH2 0x1A5F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A56 SWAP1 PUSH2 0x2FAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1A69 PUSH1 0x8 PUSH2 0x1280 JUMP JUMPDEST DUP5 GT ISZERO PUSH2 0x1AAB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AA2 SWAP1 PUSH2 0x2D6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1AC3 DUP6 DUP6 PUSH1 0x0 ADD PUSH2 0x1EE6 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x0 ADD DUP1 SLOAD SWAP1 POP DUP2 EQ ISZERO PUSH2 0x1AE1 JUMPI PUSH1 0x0 DUP1 SWAP3 POP SWAP3 POP POP PUSH2 0x1B30 JUMP JUMPDEST PUSH1 0x1 DUP5 PUSH1 0x1 ADD DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x1B1F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP3 POP SWAP3 POP POP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x1B3F PUSH2 0x84B JUMP JUMPDEST ISZERO PUSH2 0x1B7F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B76 SWAP1 PUSH2 0x2E8D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x9 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x1BC3 PUSH2 0x128E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BD0 SWAP2 SWAP1 PUSH2 0x2BE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BE6 PUSH1 0x8 PUSH2 0x1DD7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BF2 PUSH1 0x8 PUSH2 0x1280 JUMP JUMPDEST SWAP1 POP PUSH32 0x8030E83B04D87BEF53480E26263266D6CA66863AA8506ACA6F2559D18AA1CB67 DUP2 PUSH1 0x40 MLOAD PUSH2 0x1C23 SWAP2 SWAP1 PUSH2 0x2FED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C45 PUSH2 0x1C3F PUSH2 0x16E0 JUMP JUMPDEST DUP4 PUSH2 0x200C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP3 PUSH1 0x0 SHR GT ISZERO PUSH2 0x1CB4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CAB SWAP1 PUSH2 0x2E6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1B DUP5 PUSH1 0xFF AND EQ DUP1 PUSH2 0x1CC9 JUMPI POP PUSH1 0x1C DUP5 PUSH1 0xFF AND EQ JUMPDEST PUSH2 0x1D08 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CFF SWAP1 PUSH2 0x2EAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP7 DUP7 DUP7 DUP7 PUSH1 0x40 MLOAD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH2 0x1D2D SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2CE6 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1D4F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP PUSH1 0x20 PUSH1 0x40 MLOAD SUB MLOAD SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1DCB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1DC2 SWAP1 PUSH2 0x2D4D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x1E3D PUSH1 0x5 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH2 0x1E38 DUP4 PUSH2 0x862 JUMP JUMPDEST PUSH2 0x203F JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x1E52 PUSH1 0x6 PUSH2 0x1E4D PUSH2 0x572 JUMP JUMPDEST PUSH2 0x203F JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x1E5C PUSH2 0x84B JUMP JUMPDEST ISZERO PUSH2 0x1E9C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E93 SWAP1 PUSH2 0x2E8D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1EA7 DUP4 DUP4 DUP4 PUSH2 0x11C1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 DUP4 DUP4 CHAINID ADDRESS PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1EC7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2C93 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 DUP1 SLOAD SWAP1 POP EQ ISZERO PUSH2 0x1EFD JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x2006 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP5 DUP1 SLOAD SWAP1 POP SWAP1 POP JUMPDEST DUP1 DUP3 LT ISZERO PUSH2 0x1F87 JUMPI PUSH1 0x0 PUSH2 0x1F1C DUP4 DUP4 PUSH2 0x20BC JUMP JUMPDEST SWAP1 POP DUP5 DUP7 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x1F58 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD GT ISZERO PUSH2 0x1F71 JUMPI DUP1 SWAP2 POP PUSH2 0x1F81 JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH2 0x1F7E SWAP2 SWAP1 PUSH2 0x304A JUMP JUMPDEST SWAP3 POP JUMPDEST POP PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x0 DUP3 GT DUP1 ISZERO PUSH2 0x1FE5 JUMPI POP DUP4 DUP6 PUSH1 0x1 DUP5 PUSH2 0x1FA1 SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x1FD8 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ JUMPDEST ISZERO PUSH2 0x2000 JUMPI PUSH1 0x1 DUP3 PUSH2 0x1FF7 SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x2006 JUMP JUMPDEST DUP2 SWAP3 POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2021 SWAP3 SWAP2 SWAP1 PUSH2 0x2BAA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x204B PUSH1 0x8 PUSH2 0x1280 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x205A DUP5 PUSH1 0x0 ADD PUSH2 0x2123 JUMP JUMPDEST LT ISZERO PUSH2 0x20B7 JUMPI DUP3 PUSH1 0x0 ADD DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE DUP3 PUSH1 0x1 ADD DUP3 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 DUP4 PUSH2 0x20CC SWAP2 SWAP1 PUSH2 0x31D3 JUMP JUMPDEST PUSH1 0x2 DUP6 PUSH2 0x20D9 SWAP2 SWAP1 PUSH2 0x31D3 JUMP JUMPDEST PUSH2 0x20E3 SWAP2 SWAP1 PUSH2 0x304A JUMP JUMPDEST PUSH2 0x20ED SWAP2 SWAP1 PUSH2 0x30A0 JUMP JUMPDEST PUSH1 0x2 DUP4 PUSH2 0x20FA SWAP2 SWAP1 PUSH2 0x30A0 JUMP JUMPDEST PUSH1 0x2 DUP6 PUSH2 0x2107 SWAP2 SWAP1 PUSH2 0x30A0 JUMP JUMPDEST PUSH2 0x2111 SWAP2 SWAP1 PUSH2 0x304A JUMP JUMPDEST PUSH2 0x211B SWAP2 SWAP1 PUSH2 0x304A JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP1 SLOAD SWAP1 POP EQ ISZERO PUSH2 0x213A JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x2191 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP4 DUP1 SLOAD SWAP1 POP PUSH2 0x214C SWAP2 SWAP1 PUSH2 0x30D1 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x2183 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x21A5 DUP2 PUSH2 0x32A2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x21BA DUP2 PUSH2 0x32B9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x21CF DUP2 PUSH2 0x32D0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x21E4 DUP2 PUSH2 0x32E7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x21FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x220A DUP5 DUP3 DUP6 ADD PUSH2 0x2196 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2226 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2234 DUP6 DUP3 DUP7 ADD PUSH2 0x2196 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2245 DUP6 DUP3 DUP7 ADD PUSH2 0x2196 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 0x2264 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2272 DUP7 DUP3 DUP8 ADD PUSH2 0x2196 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x2283 DUP7 DUP3 DUP8 ADD PUSH2 0x2196 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x2294 DUP7 DUP3 DUP8 ADD PUSH2 0x21C0 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x22B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x22C7 DUP11 DUP3 DUP12 ADD PUSH2 0x2196 JUMP JUMPDEST SWAP8 POP POP PUSH1 0x20 PUSH2 0x22D8 DUP11 DUP3 DUP12 ADD PUSH2 0x2196 JUMP JUMPDEST SWAP7 POP POP PUSH1 0x40 PUSH2 0x22E9 DUP11 DUP3 DUP12 ADD PUSH2 0x21C0 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x60 PUSH2 0x22FA DUP11 DUP3 DUP12 ADD PUSH2 0x21C0 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x80 PUSH2 0x230B DUP11 DUP3 DUP12 ADD PUSH2 0x21D5 JUMP JUMPDEST SWAP4 POP POP PUSH1 0xA0 PUSH2 0x231C DUP11 DUP3 DUP12 ADD PUSH2 0x21AB JUMP JUMPDEST SWAP3 POP POP PUSH1 0xC0 PUSH2 0x232D DUP11 DUP3 DUP12 ADD PUSH2 0x21AB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x234F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x235D DUP6 DUP3 DUP7 ADD PUSH2 0x2196 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x236E DUP6 DUP3 DUP7 ADD PUSH2 0x21C0 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x238A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2398 DUP5 DUP3 DUP6 ADD PUSH2 0x21C0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x23AA DUP2 PUSH2 0x3105 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x23B9 DUP2 PUSH2 0x3117 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x23C8 DUP2 PUSH2 0x3123 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x23DF PUSH2 0x23DA DUP3 PUSH2 0x3123 JUMP JUMPDEST PUSH2 0x31C9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x23F0 DUP3 PUSH2 0x3023 JUMP JUMPDEST PUSH2 0x23FA DUP2 DUP6 PUSH2 0x302E JUMP JUMPDEST SWAP4 POP PUSH2 0x240A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3164 JUMP JUMPDEST PUSH2 0x2413 DUP2 PUSH2 0x3291 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x242B PUSH1 0x18 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x246B PUSH1 0x1D DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433230536E617073686F743A206E6F6E6578697374656E74206964000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24AB PUSH1 0x23 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2511 PUSH1 0x14 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2551 PUSH1 0x22 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x25B7 PUSH1 0x26 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x261D PUSH1 0x22 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2683 PUSH1 0x2 DUP4 PUSH2 0x303F JUMP JUMPDEST SWAP2 POP PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x26C3 PUSH1 0x1D DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2703 PUSH1 0x26 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2769 PUSH1 0x22 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x27CF PUSH1 0x10 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x280F PUSH1 0x22 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2875 PUSH1 0x1E DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28B5 PUSH1 0x28 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x291B PUSH1 0x20 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x295B PUSH1 0x24 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A206275726E20616D6F756E74206578636565647320616C6C6F77 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x616E636500000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29C1 PUSH1 0x21 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A27 PUSH1 0x25 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A8D PUSH1 0x24 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AF3 PUSH1 0x16 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433230536E617073686F743A206964206973203000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B33 PUSH1 0x25 DUP4 PUSH2 0x302E JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2B95 DUP2 PUSH2 0x314D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2BA4 DUP2 PUSH2 0x3157 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BB5 DUP3 PUSH2 0x2676 JUMP JUMPDEST SWAP2 POP PUSH2 0x2BC1 DUP3 DUP6 PUSH2 0x23CE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x2BD1 DUP3 DUP5 PUSH2 0x23CE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2BF6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x23A1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2C11 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x23B0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2C2C PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x23BF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xC0 DUP3 ADD SWAP1 POP PUSH2 0x2C47 PUSH1 0x0 DUP4 ADD DUP10 PUSH2 0x23BF JUMP JUMPDEST PUSH2 0x2C54 PUSH1 0x20 DUP4 ADD DUP9 PUSH2 0x23A1 JUMP JUMPDEST PUSH2 0x2C61 PUSH1 0x40 DUP4 ADD DUP8 PUSH2 0x23A1 JUMP JUMPDEST PUSH2 0x2C6E PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x2B8C JUMP JUMPDEST PUSH2 0x2C7B PUSH1 0x80 DUP4 ADD DUP6 PUSH2 0x2B8C JUMP JUMPDEST PUSH2 0x2C88 PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x2B8C JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x2CA8 PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x23BF JUMP JUMPDEST PUSH2 0x2CB5 PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x23BF JUMP JUMPDEST PUSH2 0x2CC2 PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x23BF JUMP JUMPDEST PUSH2 0x2CCF PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x2B8C JUMP JUMPDEST PUSH2 0x2CDC PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x23A1 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x2CFB PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x23BF JUMP JUMPDEST PUSH2 0x2D08 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x2B9B JUMP JUMPDEST PUSH2 0x2D15 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x23BF JUMP JUMPDEST PUSH2 0x2D22 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x23BF JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2D45 DUP2 DUP5 PUSH2 0x23E5 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 0x2D66 DUP2 PUSH2 0x241E 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 0x2D86 DUP2 PUSH2 0x245E 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 0x2DA6 DUP2 PUSH2 0x249E 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 0x2DC6 DUP2 PUSH2 0x2504 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 0x2DE6 DUP2 PUSH2 0x2544 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 0x2E06 DUP2 PUSH2 0x25AA 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 0x2E26 DUP2 PUSH2 0x2610 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 0x2E46 DUP2 PUSH2 0x26B6 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 0x2E66 DUP2 PUSH2 0x26F6 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 0x2E86 DUP2 PUSH2 0x275C 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 0x2EA6 DUP2 PUSH2 0x27C2 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 0x2EC6 DUP2 PUSH2 0x2802 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 0x2EE6 DUP2 PUSH2 0x2868 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 0x2F06 DUP2 PUSH2 0x28A8 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 0x2F26 DUP2 PUSH2 0x290E 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 0x2F46 DUP2 PUSH2 0x294E 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 0x2F66 DUP2 PUSH2 0x29B4 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 0x2F86 DUP2 PUSH2 0x2A1A 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 0x2FA6 DUP2 PUSH2 0x2A80 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 0x2FC6 DUP2 PUSH2 0x2AE6 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 0x2FE6 DUP2 PUSH2 0x2B26 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3002 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2B8C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x301D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2B9B 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 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3055 DUP3 PUSH2 0x314D JUMP JUMPDEST SWAP2 POP PUSH2 0x3060 DUP4 PUSH2 0x314D JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x3095 JUMPI PUSH2 0x3094 PUSH2 0x3204 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30AB DUP3 PUSH2 0x314D JUMP JUMPDEST SWAP2 POP PUSH2 0x30B6 DUP4 PUSH2 0x314D JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x30C6 JUMPI PUSH2 0x30C5 PUSH2 0x3233 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30DC DUP3 PUSH2 0x314D JUMP JUMPDEST SWAP2 POP PUSH2 0x30E7 DUP4 PUSH2 0x314D JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x30FA JUMPI PUSH2 0x30F9 PUSH2 0x3204 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3110 DUP3 PUSH2 0x312D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 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 0x3182 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3167 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x3191 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 0x31AF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x31C3 JUMPI PUSH2 0x31C2 PUSH2 0x3262 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31DE DUP3 PUSH2 0x314D JUMP JUMPDEST SWAP2 POP PUSH2 0x31E9 DUP4 PUSH2 0x314D JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x31F9 JUMPI PUSH2 0x31F8 PUSH2 0x3233 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x32AB DUP2 PUSH2 0x3105 JUMP JUMPDEST DUP2 EQ PUSH2 0x32B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x32C2 DUP2 PUSH2 0x3123 JUMP JUMPDEST DUP2 EQ PUSH2 0x32CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x32D9 DUP2 PUSH2 0x314D JUMP JUMPDEST DUP2 EQ PUSH2 0x32E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x32F0 DUP2 PUSH2 0x3157 JUMP JUMPDEST DUP2 EQ PUSH2 0x32FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP1 0x5E 0xE COINBASE PUSH20 0x3155B77615473E943D4CDBAC8C9460FEDC405BD9 0xEF OR DUP16 SWAP16 0xA8 LOG0 0xD8 PUSH5 0x736F6C6343 STOP ADDMOD STOP STOP CALLER ",
"sourceMap": "452:640:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2021:89:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4091:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3082:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4724:414;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2940:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2584:113:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5533:212:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;806:63:14;;;:::i;:::-;;487:89:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4218:262:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1042:84:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3246:125:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1700:145:0;;;:::i;:::-;;882:327:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2342:118:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;741:59:14;;;:::i;:::-;;1068:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2223:93:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;670:65:14;;;:::i;:::-;;4579:229:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6232:371:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3574:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1487:794:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3804:149:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1994:240:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2021:89:2;2066:13;2098:5;2091:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2021:89;:::o;4091:166::-;4174:4;4190:39;4199:12;:10;:12::i;:::-;4213:7;4222:6;4190:8;:39::i;:::-;4246:4;4239:11;;4091:166;;;;:::o;3082:106::-;3143:7;3169:12;;3162:19;;3082:106;:::o;4724:414::-;4830:4;4846:36;4856:6;4864:9;4875:6;4846:9;:36::i;:::-;4893:24;4920:11;:19;4932:6;4920:19;;;;;;;;;;;;;;;:33;4940:12;:10;:12::i;:::-;4920:33;;;;;;;;;;;;;;;;4893:60;;4991:6;4971:16;:26;;4963:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5052:57;5061:6;5069:12;:10;:12::i;:::-;5102:6;5083:16;:25;;;;:::i;:::-;5052:8;:57::i;:::-;5127:4;5120:11;;;4724:414;;;;;:::o;2940:82::-;2989:5;3013:2;3006:9;;2940:82;:::o;2584:113:6:-;2644:7;2670:20;:18;:20::i;:::-;2663:27;;2584:113;:::o;5533:212:2:-;5621:4;5637:80;5646:12;:10;:12::i;:::-;5660:7;5706:10;5669:11;:25;5681:12;:10;:12::i;:::-;5669:25;;;;;;;;;;;;;;;:34;5695:7;5669:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5637:8;:80::i;:::-;5734:4;5727:11;;5533:212;;;;:::o;806:63:14:-;1291:12:0;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;852:10:14::1;:8;:10::i;:::-;806:63::o:0;487:89:4:-;542:27;548:12;:10;:12::i;:::-;562:6;542:5;:27::i;:::-;487:89;:::o;4218:262:5:-;4305:7;4325:16;4343:13;4360:55;4369:10;4381:24;:33;4406:7;4381:33;;;;;;;;;;;;;;;4360:8;:55::i;:::-;4324:91;;;;4433:11;:40;;4455:18;4465:7;4455:9;:18::i;:::-;4433:40;;;4447:5;4433:40;4426:47;;;;4218:262;;;;:::o;1042:84:1:-;1089:4;1112:7;;;;;;;;;;;1105:14;;1042:84;:::o;3246:125:2:-;3320:7;3346:9;:18;3356:7;3346:18;;;;;;;;;;;;;;;;3339:25;;3246:125;;;:::o;1700:145:0:-;1291:12;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1806:1:::1;1769:40;;1790:6;;;;;;;;;;;1769:40;;;;;;;;;;;;1836:1;1819:6;;:19;;;;;;;;;;;;;;;;;;1700:145::o:0;882:327:4:-;958:24;985:32;995:7;1004:12;:10;:12::i;:::-;985:9;:32::i;:::-;958:59;;1055:6;1035:16;:26;;1027:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1112:58;1121:7;1130:12;:10;:12::i;:::-;1163:6;1144:16;:25;;;;:::i;:::-;1112:8;:58::i;:::-;1180:22;1186:7;1195:6;1180:5;:22::i;:::-;882:327;;;:::o;2342:118:6:-;2403:7;2429:24;:7;:14;2437:5;2429:14;;;;;;;;;;;;;;;:22;:24::i;:::-;2422:31;;2342:118;;;:::o;741:59:14:-;1291:12:0;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;785:8:14::1;:6;:8::i;:::-;741:59::o:0;1068:85:0:-;1114:7;1140:6;;;;;;;;;;;1133:13;;1068:85;:::o;2223:93:2:-;2270:13;2302:7;2295:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2223:93;:::o;670:65:14:-;1291:12:0;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;717:11:14::1;:9;:11::i;:::-;;670:65::o:0;4579:229:5:-;4650:7;4670:16;4688:13;4705:43;4714:10;4726:21;4705:8;:43::i;:::-;4669:79;;;;4766:11;:35;;4788:13;:11;:13::i;:::-;4766:35;;;4780:5;4766:35;4759:42;;;;4579:229;;;:::o;6232:371:2:-;6325:4;6341:24;6368:11;:25;6380:12;:10;:12::i;:::-;6368:25;;;;;;;;;;;;;;;:34;6394:7;6368:34;;;;;;;;;;;;;;;;6341:61;;6440:15;6420:16;:35;;6412:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6507:67;6516:12;:10;:12::i;:::-;6530:7;6558:15;6539:16;:34;;;;:::i;:::-;6507:8;:67::i;:::-;6592:4;6585:11;;;6232:371;;;;:::o;3574:172::-;3660:4;3676:42;3686:12;:10;:12::i;:::-;3700:9;3711:6;3676:9;:42::i;:::-;3735:4;3728:11;;3574:172;;;;:::o;1487:794:6:-;1714:8;1695:15;:27;;1687:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1767:18;1839:16;1873:5;1896:7;1921:5;1944:24;:7;:14;1952:5;1944:14;;;;;;;;;;;;;;;:22;:24::i;:::-;1986:8;1811:197;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1788:230;;;;;;1767:251;;2029:12;2044:28;2061:10;2044:16;:28::i;:::-;2029:43;;2083:14;2100:28;2114:4;2120:1;2123;2126;2100:13;:28::i;:::-;2083:45;;2156:5;2146:15;;:6;:15;;;2138:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;2207:26;:7;:14;2215:5;2207:14;;;;;;;;;;;;;;;:24;:26::i;:::-;2243:31;2252:5;2259:7;2268:5;2243:8;:31::i;:::-;1487:794;;;;;;;;;;:::o;3804:149:2:-;3893:7;3919:11;:18;3931:5;3919:18;;;;;;;;;;;;;;;:27;3938:7;3919:27;;;;;;;;;;;;;;;;3912:34;;3804:149;;;;:::o;1994:240:0:-;1291:12;:10;:12::i;:::-;1280:23;;:7;:5;:7::i;:::-;:23;;;1272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2102:1:::1;2082:22;;:8;:22;;;;2074:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2191:8;2162:38;;2183:6;;;;;;;;;;;2162:38;;;;;;;;;;;;2219:8;2210:6;;:17;;;;;;;;;;;;;;;;;;1994:240:::0;:::o;5022:526:5:-;5128:44;5155:4;5161:2;5165:6;5128:26;:44::i;:::-;5201:1;5185:18;;:4;:18;;;5181:361;;;5231:26;5254:2;5231:22;:26::i;:::-;5267:28;:26;:28::i;:::-;5181:361;;;5328:1;5314:16;;:2;:16;;;5310:232;;;5358:28;5381:4;5358:22;:28::i;:::-;5396;:26;:28::i;:::-;5310:232;;;5469:28;5492:4;5469:22;:28::i;:::-;5507:26;5530:2;5507:22;:26::i;:::-;5310:232;5181:361;5022:526;;;:::o;10423:92:2:-;;;;:::o;773:112:10:-;838:7;864;:14;;;857:21;;773:112;;;:::o;586:96:9:-;639:7;665:10;658:17;;586:96;:::o;9496:340:2:-;9614:1;9597:19;;:5;:19;;;;9589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9694:1;9675:21;;:7;:21;;;;9667:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9776:6;9746:11;:18;9758:5;9746:18;;;;;;;;;;;;;;;:27;9765:7;9746:27;;;;;;;;;;;;;;;:36;;;;9813:7;9797:32;;9806:5;9797:32;;;9822:6;9797:32;;;;;;:::i;:::-;;;;;;;;9496:340;;;:::o;7077:592::-;7200:1;7182:20;;:6;:20;;;;7174:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7283:1;7262:23;;:9;:23;;;;7254:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7336:47;7357:6;7365:9;7376:6;7336:20;:47::i;:::-;7394:21;7418:9;:17;7428:6;7418:17;;;;;;;;;;;;;;;;7394:41;;7470:6;7453:13;:23;;7445:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7565:6;7549:13;:22;;;;:::i;:::-;7529:9;:17;7539:6;7529:17;;;;;;;;;;;;;;;:42;;;;7605:6;7581:9;:20;7591:9;7581:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7644:9;7627:35;;7636:6;7627:35;;;7655:6;7627:35;;;;;;:::i;:::-;;;;;;;;7077:592;;;;:::o;2967:275:12:-;3020:7;3060:16;3043:13;:33;3039:197;;;3099:24;3092:31;;;;3039:197;3161:64;3183:10;3195:12;3209:15;3161:21;:64::i;:::-;3154:71;;2967:275;;:::o;2054:117:1:-;1621:8;:6;:8::i;:::-;1613:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2122:5:::1;2112:7;;:15;;;;;;;;;;;;;;;;;;2142:22;2151:12;:10;:12::i;:::-;2142:22;;;;;;:::i;:::-;;;;;;;;2054:117::o:0;8590:483:2:-;8692:1;8673:21;;:7;:21;;;;8665:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8743:49;8764:7;8781:1;8785:6;8743:20;:49::i;:::-;8803:22;8828:9;:18;8838:7;8828:18;;;;;;;;;;;;;;;;8803:43;;8882:6;8864:14;:24;;8856:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;8975:6;8958:14;:23;;;;:::i;:::-;8937:9;:18;8947:7;8937:18;;;;;;;;;;;;;;;:44;;;;9007:6;8991:12;;:22;;;;;;;:::i;:::-;;;;;;;;9055:1;9029:37;;9038:7;9029:37;;;9059:6;9029:37;;;;;;:::i;:::-;;;;;;;;8590:483;;;:::o;5554:1664:5:-;5651:4;5657:7;5701:1;5688:10;:14;5680:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;5814:28;:18;:26;:28::i;:::-;5800:10;:42;;5792:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;6999:13;7015:40;7044:10;7015:9;:13;;:28;;:40;;;;:::i;:::-;6999:56;;7079:9;:13;;:20;;;;7070:5;:29;7066:146;;;7123:5;7130:1;7115:17;;;;;;;7066:146;7171:4;7177:9;:16;;7194:5;7177:23;;;;;;;;;;;;;;;;;;;;;;;;7163:38;;;;;5554:1664;;;;;;:::o;1807:115:1:-;1356:8;:6;:8::i;:::-;1355:9;1347:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1876:4:::1;1866:7;;:14;;;;;;;;;;;;;;;;;;1895:20;1902:12;:10;:12::i;:::-;1895:20;;;;;;:::i;:::-;;;;;;;;1807:115::o:0;3889:222:5:-;3936:7;3955:30;:18;:28;:30::i;:::-;3996:17;4016:28;:18;:26;:28::i;:::-;3996:48;;4059:19;4068:9;4059:19;;;;;;:::i;:::-;;;;;;;;4095:9;4088:16;;;3889:222;:::o;4200:165:12:-;4277:7;4303:55;4325:20;:18;:20::i;:::-;4347:10;4303:21;:55::i;:::-;4296:62;;4200:165;;;:::o;1937:1414:11:-;2022:7;2937:66;2931:1;2923:10;;:80;;2915:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;3065:2;3060:1;:7;;;:18;;;;3076:2;3071:1;:7;;;3060:18;3052:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;3212:14;3229:24;3239:4;3245:1;3248;3251;3229:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3212:41;;3289:1;3271:20;;:6;:20;;;;3263:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3338:6;3331:13;;;1937:1414;;;;;;:::o;891:123:10:-;996:1;978:7;:14;;;:19;;;;;;;;;;;891:123;:::o;7224:144:5:-;7291:70;7307:24;:33;7332:7;7307:33;;;;;;;;;;;;;;;7342:18;7352:7;7342:9;:18::i;:::-;7291:15;:70::i;:::-;7224:144;:::o;7374:116::-;7430:53;7446:21;7469:13;:11;:13::i;:::-;7430:15;:53::i;:::-;7374:116::o;875:215:14:-;1356:8:1;:6;:8::i;:::-;1355:9;1347:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1039:44:14::1;1066:4;1072:2;1076:6;1039:26;:44::i;:::-;875:215:::0;;;:::o;3248:327:12:-;3350:7;3427:8;3453:4;3475:7;3500:13;3539:4;3399:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3376:192;;;;;;3369:199;;3248:327;;;;;:::o;581:892:8:-;670:7;709:1;693:5;:12;;;;:17;689:56;;;733:1;726:8;;;;689:56;755:11;780:12;795:5;:12;;;;780:27;;818:414;831:4;825:3;:10;818:414;;;851:11;865:23;878:3;883:4;865:12;:23::i;:::-;851:37;;1118:7;1105:5;1111:3;1105:10;;;;;;;;;;;;;;;;;;;;;;;;:20;1101:121;;;1152:3;1145:10;;1101:121;;;1206:1;1200:3;:7;;;;:::i;:::-;1194:13;;1101:121;818:414;;;;1355:1;1349:3;:7;:36;;;;;1378:7;1360:5;1372:1;1366:3;:7;;;;:::i;:::-;1360:14;;;;;;;;;;;;;;;;;;;;;;;;:25;1349:36;1345:122;;;1414:1;1408:3;:7;;;;:::i;:::-;1401:14;;;;;;1345:122;1453:3;1446:10;;;;581:892;;;;;:::o;4245:194:11:-;4338:7;4403:15;4420:10;4374:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4364:68;;;;;;4357:75;;4245:194;;;;:::o;7496:309:5:-;7590:17;7610:28;:18;:26;:28::i;:::-;7590:48;;7685:9;7652:30;7668:9;:13;;7652:15;:30::i;:::-;:42;7648:151;;;7710:9;:13;;7729:9;7710:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7753:9;:16;;7775:12;7753:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7648:151;7496:309;;;:::o;608:190:13:-;670:7;789:1;784;780;:5;;;;:::i;:::-;776:1;772;:5;;;;:::i;:::-;:13;;;;:::i;:::-;771:19;;;;:::i;:::-;765:1;761;:5;;;;:::i;:::-;755:1;751;:5;;;;:::i;:::-;750:17;;;;:::i;:::-;:41;;;;:::i;:::-;743:48;;608:190;;;;:::o;7811:206:5:-;7881:7;7918:1;7904:3;:10;;;;:15;7900:111;;;7942:1;7935:8;;;;7900:111;7981:3;7998:1;7985:3;:10;;;;:14;;;;:::i;:::-;7981:19;;;;;;;;;;;;;;;;;;;;;;;;7974:26;;7811:206;;;;:::o;7:139:15:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:139::-;;381:6;368:20;359:29;;397:33;424:5;397:33;:::i;:::-;349:87;;;;:::o;442:135::-;;524:6;511:20;502:29;;540:31;565:5;540:31;:::i;:::-;492:85;;;;:::o;583:262::-;;691:2;679:9;670:7;666:23;662:32;659:2;;;707:1;704;697:12;659:2;750:1;775:53;820:7;811:6;800:9;796:22;775:53;:::i;:::-;765:63;;721:117;649:196;;;;:::o;851:407::-;;;976:2;964:9;955:7;951:23;947:32;944:2;;;992:1;989;982:12;944:2;1035:1;1060:53;1105:7;1096:6;1085:9;1081:22;1060:53;:::i;:::-;1050:63;;1006:117;1162:2;1188:53;1233:7;1224:6;1213:9;1209:22;1188:53;:::i;:::-;1178:63;;1133:118;934:324;;;;;:::o;1264:552::-;;;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1422:1;1419;1412:12;1374:2;1465:1;1490:53;1535:7;1526:6;1515:9;1511:22;1490:53;:::i;:::-;1480:63;;1436:117;1592:2;1618:53;1663:7;1654:6;1643:9;1639:22;1618:53;:::i;:::-;1608:63;;1563:118;1720:2;1746:53;1791:7;1782:6;1771:9;1767:22;1746:53;:::i;:::-;1736:63;;1691:118;1364:452;;;;;:::o;1822:1132::-;;;;;;;;2030:3;2018:9;2009:7;2005:23;2001:33;1998:2;;;2047:1;2044;2037:12;1998:2;2090:1;2115:53;2160:7;2151:6;2140:9;2136:22;2115:53;:::i;:::-;2105:63;;2061:117;2217:2;2243:53;2288:7;2279:6;2268:9;2264:22;2243:53;:::i;:::-;2233:63;;2188:118;2345:2;2371:53;2416:7;2407:6;2396:9;2392:22;2371:53;:::i;:::-;2361:63;;2316:118;2473:2;2499:53;2544:7;2535:6;2524:9;2520:22;2499:53;:::i;:::-;2489:63;;2444:118;2601:3;2628:51;2671:7;2662:6;2651:9;2647:22;2628:51;:::i;:::-;2618:61;;2572:117;2728:3;2755:53;2800:7;2791:6;2780:9;2776:22;2755:53;:::i;:::-;2745:63;;2699:119;2857:3;2884:53;2929:7;2920:6;2909:9;2905:22;2884:53;:::i;:::-;2874:63;;2828:119;1988:966;;;;;;;;;;:::o;2960:407::-;;;3085:2;3073:9;3064:7;3060:23;3056:32;3053:2;;;3101:1;3098;3091:12;3053:2;3144:1;3169:53;3214:7;3205:6;3194:9;3190:22;3169:53;:::i;:::-;3159:63;;3115:117;3271:2;3297:53;3342:7;3333:6;3322:9;3318:22;3297:53;:::i;:::-;3287:63;;3242:118;3043:324;;;;;:::o;3373:262::-;;3481:2;3469:9;3460:7;3456:23;3452:32;3449:2;;;3497:1;3494;3487:12;3449:2;3540:1;3565:53;3610:7;3601:6;3590:9;3586:22;3565:53;:::i;:::-;3555:63;;3511:117;3439:196;;;;:::o;3641:118::-;3728:24;3746:5;3728:24;:::i;:::-;3723:3;3716:37;3706:53;;:::o;3765:109::-;3846:21;3861:5;3846:21;:::i;:::-;3841:3;3834:34;3824:50;;:::o;3880:118::-;3967:24;3985:5;3967:24;:::i;:::-;3962:3;3955:37;3945:53;;:::o;4004:157::-;4109:45;4129:24;4147:5;4129:24;:::i;:::-;4109:45;:::i;:::-;4104:3;4097:58;4087:74;;:::o;4167:364::-;;4283:39;4316:5;4283:39;:::i;:::-;4338:71;4402:6;4397:3;4338:71;:::i;:::-;4331:78;;4418:52;4463:6;4458:3;4451:4;4444:5;4440:16;4418:52;:::i;:::-;4495:29;4517:6;4495:29;:::i;:::-;4490:3;4486:39;4479:46;;4259:272;;;;;:::o;4537:322::-;;4700:67;4764:2;4759:3;4700:67;:::i;:::-;4693:74;;4797:26;4793:1;4788:3;4784:11;4777:47;4850:2;4845:3;4841:12;4834:19;;4683:176;;;:::o;4865:327::-;;5028:67;5092:2;5087:3;5028:67;:::i;:::-;5021:74;;5125:31;5121:1;5116:3;5112:11;5105:52;5183:2;5178:3;5174:12;5167:19;;5011:181;;;:::o;5198:367::-;;5361:67;5425:2;5420:3;5361:67;:::i;:::-;5354:74;;5458:34;5454:1;5449:3;5445:11;5438:55;5524:5;5519:2;5514:3;5510:12;5503:27;5556:2;5551:3;5547:12;5540:19;;5344:221;;;:::o;5571:318::-;;5734:67;5798:2;5793:3;5734:67;:::i;:::-;5727:74;;5831:22;5827:1;5822:3;5818:11;5811:43;5880:2;5875:3;5871:12;5864:19;;5717:172;;;:::o;5895:366::-;;6058:67;6122:2;6117:3;6058:67;:::i;:::-;6051:74;;6155:34;6151:1;6146:3;6142:11;6135:55;6221:4;6216:2;6211:3;6207:12;6200:26;6252:2;6247:3;6243:12;6236:19;;6041:220;;;:::o;6267:370::-;;6430:67;6494:2;6489:3;6430:67;:::i;:::-;6423:74;;6527:34;6523:1;6518:3;6514:11;6507:55;6593:8;6588:2;6583:3;6579:12;6572:30;6628:2;6623:3;6619:12;6612:19;;6413:224;;;:::o;6643:366::-;;6806:67;6870:2;6865:3;6806:67;:::i;:::-;6799:74;;6903:34;6899:1;6894:3;6890:11;6883:55;6969:4;6964:2;6959:3;6955:12;6948:26;7000:2;6995:3;6991:12;6984:19;;6789:220;;;:::o;7015:396::-;;7196:84;7278:1;7273:3;7196:84;:::i;:::-;7189:91;;7310:66;7306:1;7301:3;7297:11;7290:87;7403:1;7398:3;7394:11;7387:18;;7179:232;;;:::o;7417:327::-;;7580:67;7644:2;7639:3;7580:67;:::i;:::-;7573:74;;7677:31;7673:1;7668:3;7664:11;7657:52;7735:2;7730:3;7726:12;7719:19;;7563:181;;;:::o;7750:370::-;;7913:67;7977:2;7972:3;7913:67;:::i;:::-;7906:74;;8010:34;8006:1;8001:3;7997:11;7990:55;8076:8;8071:2;8066:3;8062:12;8055:30;8111:2;8106:3;8102:12;8095:19;;7896:224;;;:::o;8126:366::-;;8289:67;8353:2;8348:3;8289:67;:::i;:::-;8282:74;;8386:34;8382:1;8377:3;8373:11;8366:55;8452:4;8447:2;8442:3;8438:12;8431:26;8483:2;8478:3;8474:12;8467:19;;8272:220;;;:::o;8498:314::-;;8661:67;8725:2;8720:3;8661:67;:::i;:::-;8654:74;;8758:18;8754:1;8749:3;8745:11;8738:39;8803:2;8798:3;8794:12;8787:19;;8644:168;;;:::o;8818:366::-;;8981:67;9045:2;9040:3;8981:67;:::i;:::-;8974:74;;9078:34;9074:1;9069:3;9065:11;9058:55;9144:4;9139:2;9134:3;9130:12;9123:26;9175:2;9170:3;9166:12;9159:19;;8964:220;;;:::o;9190:328::-;;9353:67;9417:2;9412:3;9353:67;:::i;:::-;9346:74;;9450:32;9446:1;9441:3;9437:11;9430:53;9509:2;9504:3;9500:12;9493:19;;9336:182;;;:::o;9524:372::-;;9687:67;9751:2;9746:3;9687:67;:::i;:::-;9680:74;;9784:34;9780:1;9775:3;9771:11;9764:55;9850:10;9845:2;9840:3;9836:12;9829:32;9887:2;9882:3;9878:12;9871:19;;9670:226;;;:::o;9902:330::-;;10065:67;10129:2;10124:3;10065:67;:::i;:::-;10058:74;;10162:34;10158:1;10153:3;10149:11;10142:55;10223:2;10218:3;10214:12;10207:19;;10048:184;;;:::o;10238:368::-;;10401:67;10465:2;10460:3;10401:67;:::i;:::-;10394:74;;10498:34;10494:1;10489:3;10485:11;10478:55;10564:6;10559:2;10554:3;10550:12;10543:28;10597:2;10592:3;10588:12;10581:19;;10384:222;;;:::o;10612:365::-;;10775:67;10839:2;10834:3;10775:67;:::i;:::-;10768:74;;10872:34;10868:1;10863:3;10859:11;10852:55;10938:3;10933:2;10928:3;10924:12;10917:25;10968:2;10963:3;10959:12;10952:19;;10758:219;;;:::o;10983:369::-;;11146:67;11210:2;11205:3;11146:67;:::i;:::-;11139:74;;11243:34;11239:1;11234:3;11230:11;11223:55;11309:7;11304:2;11299:3;11295:12;11288:29;11343:2;11338:3;11334:12;11327:19;;11129:223;;;:::o;11358:368::-;;11521:67;11585:2;11580:3;11521:67;:::i;:::-;11514:74;;11618:34;11614:1;11609:3;11605:11;11598:55;11684:6;11679:2;11674:3;11670:12;11663:28;11717:2;11712:3;11708:12;11701:19;;11504:222;;;:::o;11732:320::-;;11895:67;11959:2;11954:3;11895:67;:::i;:::-;11888:74;;11992:24;11988:1;11983:3;11979:11;11972:45;12043:2;12038:3;12034:12;12027:19;;11878:174;;;:::o;12058:369::-;;12221:67;12285:2;12280:3;12221:67;:::i;:::-;12214:74;;12318:34;12314:1;12309:3;12305:11;12298:55;12384:7;12379:2;12374:3;12370:12;12363:29;12418:2;12413:3;12409:12;12402:19;;12204:223;;;:::o;12433:118::-;12520:24;12538:5;12520:24;:::i;:::-;12515:3;12508:37;12498:53;;:::o;12557:112::-;12640:22;12656:5;12640:22;:::i;:::-;12635:3;12628:35;12618:51;;:::o;12675:663::-;;12938:148;13082:3;12938:148;:::i;:::-;12931:155;;13096:75;13167:3;13158:6;13096:75;:::i;:::-;13196:2;13191:3;13187:12;13180:19;;13209:75;13280:3;13271:6;13209:75;:::i;:::-;13309:2;13304:3;13300:12;13293:19;;13329:3;13322:10;;12920:418;;;;;:::o;13344:222::-;;13475:2;13464:9;13460:18;13452:26;;13488:71;13556:1;13545:9;13541:17;13532:6;13488:71;:::i;:::-;13442:124;;;;:::o;13572:210::-;;13697:2;13686:9;13682:18;13674:26;;13710:65;13772:1;13761:9;13757:17;13748:6;13710:65;:::i;:::-;13664:118;;;;:::o;13788:222::-;;13919:2;13908:9;13904:18;13896:26;;13932:71;14000:1;13989:9;13985:17;13976:6;13932:71;:::i;:::-;13886:124;;;;:::o;14016:775::-;;14287:3;14276:9;14272:19;14264:27;;14301:71;14369:1;14358:9;14354:17;14345:6;14301:71;:::i;:::-;14382:72;14450:2;14439:9;14435:18;14426:6;14382:72;:::i;:::-;14464;14532:2;14521:9;14517:18;14508:6;14464:72;:::i;:::-;14546;14614:2;14603:9;14599:18;14590:6;14546:72;:::i;:::-;14628:73;14696:3;14685:9;14681:19;14672:6;14628:73;:::i;:::-;14711;14779:3;14768:9;14764:19;14755:6;14711:73;:::i;:::-;14254:537;;;;;;;;;:::o;14797:664::-;;15040:3;15029:9;15025:19;15017:27;;15054:71;15122:1;15111:9;15107:17;15098:6;15054:71;:::i;:::-;15135:72;15203:2;15192:9;15188:18;15179:6;15135:72;:::i;:::-;15217;15285:2;15274:9;15270:18;15261:6;15217:72;:::i;:::-;15299;15367:2;15356:9;15352:18;15343:6;15299:72;:::i;:::-;15381:73;15449:3;15438:9;15434:19;15425:6;15381:73;:::i;:::-;15007:454;;;;;;;;:::o;15467:545::-;;15678:3;15667:9;15663:19;15655:27;;15692:71;15760:1;15749:9;15745:17;15736:6;15692:71;:::i;:::-;15773:68;15837:2;15826:9;15822:18;15813:6;15773:68;:::i;:::-;15851:72;15919:2;15908:9;15904:18;15895:6;15851:72;:::i;:::-;15933;16001:2;15990:9;15986:18;15977:6;15933:72;:::i;:::-;15645:367;;;;;;;:::o;16018:313::-;;16169:2;16158:9;16154:18;16146:26;;16218:9;16212:4;16208:20;16204:1;16193:9;16189:17;16182:47;16246:78;16319:4;16310:6;16246:78;:::i;:::-;16238:86;;16136:195;;;;:::o;16337:419::-;;16541:2;16530:9;16526:18;16518:26;;16590:9;16584:4;16580:20;16576:1;16565:9;16561:17;16554:47;16618:131;16744:4;16618:131;:::i;:::-;16610:139;;16508:248;;;:::o;16762:419::-;;16966:2;16955:9;16951:18;16943:26;;17015:9;17009:4;17005:20;17001:1;16990:9;16986:17;16979:47;17043:131;17169:4;17043:131;:::i;:::-;17035:139;;16933:248;;;:::o;17187:419::-;;17391:2;17380:9;17376:18;17368:26;;17440:9;17434:4;17430:20;17426:1;17415:9;17411:17;17404:47;17468:131;17594:4;17468:131;:::i;:::-;17460:139;;17358:248;;;:::o;17612:419::-;;17816:2;17805:9;17801:18;17793:26;;17865:9;17859:4;17855:20;17851:1;17840:9;17836:17;17829:47;17893:131;18019:4;17893:131;:::i;:::-;17885:139;;17783:248;;;:::o;18037:419::-;;18241:2;18230:9;18226:18;18218:26;;18290:9;18284:4;18280:20;18276:1;18265:9;18261:17;18254:47;18318:131;18444:4;18318:131;:::i;:::-;18310:139;;18208:248;;;:::o;18462:419::-;;18666:2;18655:9;18651:18;18643:26;;18715:9;18709:4;18705:20;18701:1;18690:9;18686:17;18679:47;18743:131;18869:4;18743:131;:::i;:::-;18735:139;;18633:248;;;:::o;18887:419::-;;19091:2;19080:9;19076:18;19068:26;;19140:9;19134:4;19130:20;19126:1;19115:9;19111:17;19104:47;19168:131;19294:4;19168:131;:::i;:::-;19160:139;;19058:248;;;:::o;19312:419::-;;19516:2;19505:9;19501:18;19493:26;;19565:9;19559:4;19555:20;19551:1;19540:9;19536:17;19529:47;19593:131;19719:4;19593:131;:::i;:::-;19585:139;;19483:248;;;:::o;19737:419::-;;19941:2;19930:9;19926:18;19918:26;;19990:9;19984:4;19980:20;19976:1;19965:9;19961:17;19954:47;20018:131;20144:4;20018:131;:::i;:::-;20010:139;;19908:248;;;:::o;20162:419::-;;20366:2;20355:9;20351:18;20343:26;;20415:9;20409:4;20405:20;20401:1;20390:9;20386:17;20379:47;20443:131;20569:4;20443:131;:::i;:::-;20435:139;;20333:248;;;:::o;20587:419::-;;20791:2;20780:9;20776:18;20768:26;;20840:9;20834:4;20830:20;20826:1;20815:9;20811:17;20804:47;20868:131;20994:4;20868:131;:::i;:::-;20860:139;;20758:248;;;:::o;21012:419::-;;21216:2;21205:9;21201:18;21193:26;;21265:9;21259:4;21255:20;21251:1;21240:9;21236:17;21229:47;21293:131;21419:4;21293:131;:::i;:::-;21285:139;;21183:248;;;:::o;21437:419::-;;21641:2;21630:9;21626:18;21618:26;;21690:9;21684:4;21680:20;21676:1;21665:9;21661:17;21654:47;21718:131;21844:4;21718:131;:::i;:::-;21710:139;;21608:248;;;:::o;21862:419::-;;22066:2;22055:9;22051:18;22043:26;;22115:9;22109:4;22105:20;22101:1;22090:9;22086:17;22079:47;22143:131;22269:4;22143:131;:::i;:::-;22135:139;;22033:248;;;:::o;22287:419::-;;22491:2;22480:9;22476:18;22468:26;;22540:9;22534:4;22530:20;22526:1;22515:9;22511:17;22504:47;22568:131;22694:4;22568:131;:::i;:::-;22560:139;;22458:248;;;:::o;22712:419::-;;22916:2;22905:9;22901:18;22893:26;;22965:9;22959:4;22955:20;22951:1;22940:9;22936:17;22929:47;22993:131;23119:4;22993:131;:::i;:::-;22985:139;;22883:248;;;:::o;23137:419::-;;23341:2;23330:9;23326:18;23318:26;;23390:9;23384:4;23380:20;23376:1;23365:9;23361:17;23354:47;23418:131;23544:4;23418:131;:::i;:::-;23410:139;;23308:248;;;:::o;23562:419::-;;23766:2;23755:9;23751:18;23743:26;;23815:9;23809:4;23805:20;23801:1;23790:9;23786:17;23779:47;23843:131;23969:4;23843:131;:::i;:::-;23835:139;;23733:248;;;:::o;23987:419::-;;24191:2;24180:9;24176:18;24168:26;;24240:9;24234:4;24230:20;24226:1;24215:9;24211:17;24204:47;24268:131;24394:4;24268:131;:::i;:::-;24260:139;;24158:248;;;:::o;24412:419::-;;24616:2;24605:9;24601:18;24593:26;;24665:9;24659:4;24655:20;24651:1;24640:9;24636:17;24629:47;24693:131;24819:4;24693:131;:::i;:::-;24685:139;;24583:248;;;:::o;24837:419::-;;25041:2;25030:9;25026:18;25018:26;;25090:9;25084:4;25080:20;25076:1;25065:9;25061:17;25054:47;25118:131;25244:4;25118:131;:::i;:::-;25110:139;;25008:248;;;:::o;25262:222::-;;25393:2;25382:9;25378:18;25370:26;;25406:71;25474:1;25463:9;25459:17;25450:6;25406:71;:::i;:::-;25360:124;;;;:::o;25490:214::-;;25617:2;25606:9;25602:18;25594:26;;25630:67;25694:1;25683:9;25679:17;25670:6;25630:67;:::i;:::-;25584:120;;;;:::o;25710:99::-;;25796:5;25790:12;25780:22;;25769:40;;;:::o;25815:169::-;;25933:6;25928:3;25921:19;25973:4;25968:3;25964:14;25949:29;;25911:73;;;;:::o;25990:148::-;;26129:3;26114:18;;26104:34;;;;:::o;26144:305::-;;26203:20;26221:1;26203:20;:::i;:::-;26198:25;;26237:20;26255:1;26237:20;:::i;:::-;26232:25;;26391:1;26323:66;26319:74;26316:1;26313:81;26310:2;;;26397:18;;:::i;:::-;26310:2;26441:1;26438;26434:9;26427:16;;26188:261;;;;:::o;26455:185::-;;26512:20;26530:1;26512:20;:::i;:::-;26507:25;;26546:20;26564:1;26546:20;:::i;:::-;26541:25;;26585:1;26575:2;;26590:18;;:::i;:::-;26575:2;26632:1;26629;26625:9;26620:14;;26497:143;;;;:::o;26646:191::-;;26706:20;26724:1;26706:20;:::i;:::-;26701:25;;26740:20;26758:1;26740:20;:::i;:::-;26735:25;;26779:1;26776;26773:8;26770:2;;;26784:18;;:::i;:::-;26770:2;26829:1;26826;26822:9;26814:17;;26691:146;;;;:::o;26843:96::-;;26909:24;26927:5;26909:24;:::i;:::-;26898:35;;26888:51;;;:::o;26945:90::-;;27022:5;27015:13;27008:21;26997:32;;26987:48;;;:::o;27041:77::-;;27107:5;27096:16;;27086:32;;;:::o;27124:126::-;;27201:42;27194:5;27190:54;27179:65;;27169:81;;;:::o;27256:77::-;;27322:5;27311:16;;27301:32;;;:::o;27339:86::-;;27414:4;27407:5;27403:16;27392:27;;27382:43;;;:::o;27431:307::-;27499:1;27509:113;27523:6;27520:1;27517:13;27509:113;;;27608:1;27603:3;27599:11;27593:18;27589:1;27584:3;27580:11;27573:39;27545:2;27542:1;27538:10;27533:15;;27509:113;;;27640:6;27637:1;27634:13;27631:2;;;27720:1;27711:6;27706:3;27702:16;27695:27;27631:2;27480:258;;;;:::o;27744:320::-;;27825:1;27819:4;27815:12;27805:22;;27872:1;27866:4;27862:12;27893:18;27883:2;;27949:4;27941:6;27937:17;27927:27;;27883:2;28011;28003:6;28000:14;27980:18;27977:38;27974:2;;;28030:18;;:::i;:::-;27974:2;27795:269;;;;:::o;28070:79::-;;28138:5;28127:16;;28117:32;;;:::o;28155:176::-;;28204:20;28222:1;28204:20;:::i;:::-;28199:25;;28238:20;28256:1;28238:20;:::i;:::-;28233:25;;28277:1;28267:2;;28282:18;;:::i;:::-;28267:2;28323:1;28320;28316:9;28311:14;;28189:142;;;;:::o;28337:180::-;28385:77;28382:1;28375:88;28482:4;28479:1;28472:15;28506:4;28503:1;28496:15;28523:180;28571:77;28568:1;28561:88;28668:4;28665:1;28658:15;28692:4;28689:1;28682:15;28709:180;28757:77;28754:1;28747:88;28854:4;28851:1;28844:15;28878:4;28875:1;28868:15;28895:102;;28987:2;28983:7;28978:2;28971:5;28967:14;28963:28;28953:38;;28943:54;;;:::o;29003:122::-;29076:24;29094:5;29076:24;:::i;:::-;29069:5;29066:35;29056:2;;29115:1;29112;29105:12;29056:2;29046:79;:::o;29131:122::-;29204:24;29222:5;29204:24;:::i;:::-;29197:5;29194:35;29184:2;;29243:1;29240;29233:12;29184:2;29174:79;:::o;29259:122::-;29332:24;29350:5;29332:24;:::i;:::-;29325:5;29322:35;29312:2;;29371:1;29368;29361:12;29312:2;29302:79;:::o;29387:118::-;29458:22;29474:5;29458:22;:::i;:::-;29451:5;29448:33;29438:2;;29495:1;29492;29485:12;29438:2;29428:77;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "2621600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"DOMAIN_SEPARATOR()": "infinite",
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "1674",
"balanceOfAt(address,uint256)": "infinite",
"burn(uint256)": "infinite",
"burnFrom(address,uint256)": "infinite",
"decimals()": "455",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"name()": "infinite",
"nonces(address)": "1657",
"owner()": "1333",
"pause()": "infinite",
"paused()": "1340",
"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "infinite",
"renounceOwnership()": "24355",
"snapshot()": "24090",
"symbol()": "infinite",
"totalSupply()": "1205",
"totalSupplyAt(uint256)": "infinite",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "24791",
"unpause()": "infinite"
},
"internal": {
"_beforeTokenTransfer(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"DOMAIN_SEPARATOR()": "3644e515",
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"balanceOfAt(address,uint256)": "4ee2cd7e",
"burn(uint256)": "42966c68",
"burnFrom(address,uint256)": "79cc6790",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"increaseAllowance(address,uint256)": "39509351",
"name()": "06fdde03",
"nonces(address)": "7ecebe00",
"owner()": "8da5cb5b",
"pause()": "8456cb59",
"paused()": "5c975abb",
"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "d505accf",
"renounceOwnership()": "715018a6",
"snapshot()": "9711715a",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"totalSupplyAt(uint256)": "981b24d0",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd",
"transferOwnership(address)": "f2fde38b",
"unpause()": "3f4ba83a"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
}
],
"name": "Snapshot",
"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"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"inputs": [],
"name": "DOMAIN_SEPARATOR",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"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": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "snapshotId",
"type": "uint256"
}
],
"name": "balanceOfAt",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"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": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "nonces",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "v",
"type": "uint8"
},
{
"internalType": "bytes32",
"name": "r",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "permit",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "snapshot",
"outputs": [],
"stateMutability": "nonpayable",
"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": "uint256",
"name": "snapshotId",
"type": "uint256"
}
],
"name": "totalSupplyAt",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
}
],
"name": "Snapshot",
"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"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"inputs": [],
"name": "DOMAIN_SEPARATOR",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"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": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "snapshotId",
"type": "uint256"
}
],
"name": "balanceOfAt",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"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": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "nonces",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "v",
"type": "uint8"
},
{
"internalType": "bytes32",
"name": "r",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "permit",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "snapshot",
"outputs": [],
"stateMutability": "nonpayable",
"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": "uint256",
"name": "snapshotId",
"type": "uint256"
}
],
"name": "totalSupplyAt",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"DOMAIN_SEPARATOR()": {
"details": "See {IERC20Permit-DOMAIN_SEPARATOR}."
},
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"balanceOfAt(address,uint256)": {
"details": "Retrieves the balance of `account` at the time `snapshotId` was created."
},
"burn(uint256)": {
"details": "Destroys `amount` tokens from the caller. See {ERC20-_burn}."
},
"burnFrom(address,uint256)": {
"details": "Destroys `amount` tokens from `account`, deducting from the caller's allowance. See {ERC20-_burn} and {ERC20-allowance}. Requirements: - the caller must have allowance for ``accounts``'s tokens of at least `amount`."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5,05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overloaded; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"nonces(address)": {
"details": "See {IERC20Permit-nonces}."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"paused()": {
"details": "Returns true if the contract is paused, and false otherwise."
},
"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": {
"details": "See {IERC20Permit-permit}."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"totalSupplyAt(uint256)": {
"details": "Retrieves the total supply at the time `snapshotId` was created."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contract-99f0067c28.sol": "Bnbc"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0x1cae4f85f114ff17b90414f5da67365b1d00337abb5bce9bf944eb78a2c0673c",
"license": "MIT",
"urls": [
"bzz-raw://d5ff16b336ce8f906478d5f2eecc6435e00833bdc0b92f6b209cf9e92cb5b2b7",
"dweb:/ipfs/QmRD1rAZEqQ73C33cdA3QoUyBDMEWnNKNMc6PNkAZWHeQQ"
]
},
"@openzeppelin/contracts/security/Pausable.sol": {
"keccak256": "0xab1f67e4c96dfe0e3875d22883c3dee5411914f40ce0c54ef407f030d803512e",
"license": "MIT",
"urls": [
"bzz-raw://b651c0571e3ecc124b3af7a598357a19406969b21b8a3fa06eeaf5e5c9150d6c",
"dweb:/ipfs/QmPfcAhbGVfsSd7VKet77fuST397b7XSFU2myXxLdok79v"
]
},
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0x21d8a5dd396bee41e4a039d150af08b66b6d09eef416daf8e5edf13ef219084e",
"license": "MIT",
"urls": [
"bzz-raw://682f1e9c20780070df3c8b52bf3b48d2aa6debcdff5a924e212d78bbaedb945f",
"dweb:/ipfs/QmXGhsAPeemtVQ8ip5CsParvX3sgpMm4Lq8EccS3YaTtwA"
]
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0xf8e8d118a7a8b2e134181f7da655f6266aa3a0f9134b2605747139fcb0c5d835",
"license": "MIT",
"urls": [
"bzz-raw://9ec48567e7ad06acb670980d5cdf3fd7f3949bf12894f02d68c3bb43e75aa84f",
"dweb:/ipfs/QmaG3R2J9cz92YT77vFjYrjMNU2wHp4ypwYD62HqDUqS5U"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol": {
"keccak256": "0xb8cc16fa5514ccbff1123c566ec0a21682f1ded0ca7e5df719c6bd0b7429390a",
"license": "MIT",
"urls": [
"bzz-raw://80a57501e3b11616e3e252ee40b4479dc09f831a9aaf83224179eb1ccd54b7eb",
"dweb:/ipfs/QmZcREGkEbu9NoMiYXrXdJBAWNfeC41uM13rFaVL9VQafS"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/ERC20Snapshot.sol": {
"keccak256": "0x0aa584894b926e99e9bbb20c9d240371b36089ad704d73ac012c4d855c7a9c72",
"license": "MIT",
"urls": [
"bzz-raw://025d13d1a7690ce76e87eae363ce1f1e9f0d25589a3aef3a6b59bb3333dccf43",
"dweb:/ipfs/Qmd7H8P6AUUWARQ22Jnt4sHQvdyhuRy8W7yjtY2iTWJnqi"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol": {
"keccak256": "0xcb5593edb924ab46dcc937875620d4ddee4ee34b729be60d112ebca6c5af2e7c",
"license": "MIT",
"urls": [
"bzz-raw://17d28164c0af9d72924c2671449f5850b58bf9ae9b1d190af30e74fd2782fe11",
"dweb:/ipfs/QmVjJewet5dZQqBVjbGPgu3MQ4nwaKBjDdLGrbYHTvXk77"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol": {
"keccak256": "0x44300341eb97e8790e56e0823e8c3d09695fc2ee80555a83a9585f307381f324",
"license": "MIT",
"urls": [
"bzz-raw://fef226efeb89359aa20c577531a59c9fd8ad7abc22060364234269d5546b8f93",
"dweb:/ipfs/QmXzNH1GMb7NxiEUFisywBAidE9vVcjAiGRE2gh4cZQKPQ"
]
},
"@openzeppelin/contracts/utils/Arrays.sol": {
"keccak256": "0x415faff3ea57601e0d5ebb1f02b0b808a302f8b661ff08d6b4a00c0ee00fa57e",
"license": "MIT",
"urls": [
"bzz-raw://0520bd87d3e82f9761054220cc1c58b92598852d99e5ec090b427f3ae9d67a2c",
"dweb:/ipfs/QmYTbyVy45dzkWnjvb9jhgVCfycEiefbATvusxk1Wepz32"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xf930d2df426bfcfc1f7415be724f04081c96f4fb9ec8d0e3a521c07692dface0",
"license": "MIT",
"urls": [
"bzz-raw://fc2bfdea0d2562c76fb3c4cf70a86c6ba25c5a30e8f8515c95aafdf8383f8395",
"dweb:/ipfs/QmTbFya18786ckJfLYUoWau9jBTKfmWnWm5XSViWvB7PXN"
]
},
"@openzeppelin/contracts/utils/Counters.sol": {
"keccak256": "0x62d306ff0499a11913bc60b5939eec619509b5c67b30e86ebf8b8bda0b7a7fee",
"license": "MIT",
"urls": [
"bzz-raw://6712ca27a06062db31465b1470e6207553553a9bb0b4358d918b35bdae5b4ffe",
"dweb:/ipfs/QmZ92pU9DJ3h1qREMFvDQhArSy6fh6zA983NeLFHRs1qKJ"
]
},
"@openzeppelin/contracts/utils/cryptography/ECDSA.sol": {
"keccak256": "0x752ac2a89da774de5c98f8ca1adcad306ce00d0ebb547ad7be8ba7e95468aa73",
"license": "MIT",
"urls": [
"bzz-raw://4d684ee425c1b73399887ee6776e45686067b2ed1a20717df71cda6be5406c82",
"dweb:/ipfs/QmQhfMHrfNYMiHhtNqh95qD55sh4hTed9drMxCVW38CYEA"
]
},
"@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol": {
"keccak256": "0x75800223458de145e6088276ab661222e22557d7518459e1ffc57bb5b0496542",
"license": "MIT",
"urls": [
"bzz-raw://504433dd10f0037339624055d52df67de43408a4d429eb546c6cb17e5c5a6ae6",
"dweb:/ipfs/QmQfRTjvbsn9kCc7MNC2E7X4tzpYw4sEPPMpdyWVi5QQNj"
]
},
"@openzeppelin/contracts/utils/math/Math.sol": {
"keccak256": "0xa1477864def7febd9826918e50482a1ee7068b337b03804a7e0e98c674ac57c2",
"license": "MIT",
"urls": [
"bzz-raw://5bdd8ea2ace1bf716007318f8aca21d32384f0b8b295adac55147270767441fa",
"dweb:/ipfs/QmSv235N45Ub3wFXdTLNiS3k4b7FAudtEL8s6g1PwcsCcS"
]
},
"contract-99f0067c28.sol": {
"keccak256": "0x690d722207d823da63e98ca526e3a2359eaa0139118d50dea8e5eacbd10fa94d",
"license": "MIT",
"urls": [
"bzz-raw://0e895e3e2acae9ea7b1ee853b09a5733314a468e63e70cc882aef6d89b0597d6",
"dweb:/ipfs/QmUyWfpXSrCWiiuHJknwxFbwyfVuA8NSnJu1Zu5NVhH8kf"
]
}
},
"version": 1
}
// this line is added to create a gist. Empty file is not allowed.
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
}
],
"name": "Snapshot",
"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"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"inputs": [],
"name": "DOMAIN_SEPARATOR",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"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": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "snapshotId",
"type": "uint256"
}
],
"name": "balanceOfAt",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"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": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "nonces",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "v",
"type": "uint8"
},
{
"internalType": "bytes32",
"name": "r",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "permit",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "snapshot",
"outputs": [],
"stateMutability": "nonpayable",
"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": "uint256",
"name": "snapshotId",
"type": "uint256"
}
],
"name": "totalSupplyAt",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"DOMAIN_SEPARATOR()": {
"details": "See {IERC20Permit-DOMAIN_SEPARATOR}."
},
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"balanceOfAt(address,uint256)": {
"details": "Retrieves the balance of `account` at the time `snapshotId` was created."
},
"burn(uint256)": {
"details": "Destroys `amount` tokens from the caller. See {ERC20-_burn}."
},
"burnFrom(address,uint256)": {
"details": "Destroys `amount` tokens from `account`, deducting from the caller's allowance. See {ERC20-_burn} and {ERC20-allowance}. Requirements: - the caller must have allowance for ``accounts``'s tokens of at least `amount`."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5,05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overloaded; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"nonces(address)": {
"details": "See {IERC20Permit-nonces}."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"paused()": {
"details": "Returns true if the contract is paused, and false otherwise."
},
"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": {
"details": "See {IERC20Permit-permit}."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"totalSupplyAt(uint256)": {
"details": "Retrieves the total supply at the time `snapshotId` was created."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contract-99f0067c28.sol": "Viaggi"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0x1cae4f85f114ff17b90414f5da67365b1d00337abb5bce9bf944eb78a2c0673c",
"license": "MIT",
"urls": [
"bzz-raw://d5ff16b336ce8f906478d5f2eecc6435e00833bdc0b92f6b209cf9e92cb5b2b7",
"dweb:/ipfs/QmRD1rAZEqQ73C33cdA3QoUyBDMEWnNKNMc6PNkAZWHeQQ"
]
},
"@openzeppelin/contracts/security/Pausable.sol": {
"keccak256": "0xab1f67e4c96dfe0e3875d22883c3dee5411914f40ce0c54ef407f030d803512e",
"license": "MIT",
"urls": [
"bzz-raw://b651c0571e3ecc124b3af7a598357a19406969b21b8a3fa06eeaf5e5c9150d6c",
"dweb:/ipfs/QmPfcAhbGVfsSd7VKet77fuST397b7XSFU2myXxLdok79v"
]
},
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0x21d8a5dd396bee41e4a039d150af08b66b6d09eef416daf8e5edf13ef219084e",
"license": "MIT",
"urls": [
"bzz-raw://682f1e9c20780070df3c8b52bf3b48d2aa6debcdff5a924e212d78bbaedb945f",
"dweb:/ipfs/QmXGhsAPeemtVQ8ip5CsParvX3sgpMm4Lq8EccS3YaTtwA"
]
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0xf8e8d118a7a8b2e134181f7da655f6266aa3a0f9134b2605747139fcb0c5d835",
"license": "MIT",
"urls": [
"bzz-raw://9ec48567e7ad06acb670980d5cdf3fd7f3949bf12894f02d68c3bb43e75aa84f",
"dweb:/ipfs/QmaG3R2J9cz92YT77vFjYrjMNU2wHp4ypwYD62HqDUqS5U"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol": {
"keccak256": "0xb8cc16fa5514ccbff1123c566ec0a21682f1ded0ca7e5df719c6bd0b7429390a",
"license": "MIT",
"urls": [
"bzz-raw://80a57501e3b11616e3e252ee40b4479dc09f831a9aaf83224179eb1ccd54b7eb",
"dweb:/ipfs/QmZcREGkEbu9NoMiYXrXdJBAWNfeC41uM13rFaVL9VQafS"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/ERC20Snapshot.sol": {
"keccak256": "0x0aa584894b926e99e9bbb20c9d240371b36089ad704d73ac012c4d855c7a9c72",
"license": "MIT",
"urls": [
"bzz-raw://025d13d1a7690ce76e87eae363ce1f1e9f0d25589a3aef3a6b59bb3333dccf43",
"dweb:/ipfs/Qmd7H8P6AUUWARQ22Jnt4sHQvdyhuRy8W7yjtY2iTWJnqi"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol": {
"keccak256": "0xcb5593edb924ab46dcc937875620d4ddee4ee34b729be60d112ebca6c5af2e7c",
"license": "MIT",
"urls": [
"bzz-raw://17d28164c0af9d72924c2671449f5850b58bf9ae9b1d190af30e74fd2782fe11",
"dweb:/ipfs/QmVjJewet5dZQqBVjbGPgu3MQ4nwaKBjDdLGrbYHTvXk77"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol": {
"keccak256": "0x44300341eb97e8790e56e0823e8c3d09695fc2ee80555a83a9585f307381f324",
"license": "MIT",
"urls": [
"bzz-raw://fef226efeb89359aa20c577531a59c9fd8ad7abc22060364234269d5546b8f93",
"dweb:/ipfs/QmXzNH1GMb7NxiEUFisywBAidE9vVcjAiGRE2gh4cZQKPQ"
]
},
"@openzeppelin/contracts/utils/Arrays.sol": {
"keccak256": "0x415faff3ea57601e0d5ebb1f02b0b808a302f8b661ff08d6b4a00c0ee00fa57e",
"license": "MIT",
"urls": [
"bzz-raw://0520bd87d3e82f9761054220cc1c58b92598852d99e5ec090b427f3ae9d67a2c",
"dweb:/ipfs/QmYTbyVy45dzkWnjvb9jhgVCfycEiefbATvusxk1Wepz32"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xf930d2df426bfcfc1f7415be724f04081c96f4fb9ec8d0e3a521c07692dface0",
"license": "MIT",
"urls": [
"bzz-raw://fc2bfdea0d2562c76fb3c4cf70a86c6ba25c5a30e8f8515c95aafdf8383f8395",
"dweb:/ipfs/QmTbFya18786ckJfLYUoWau9jBTKfmWnWm5XSViWvB7PXN"
]
},
"@openzeppelin/contracts/utils/Counters.sol": {
"keccak256": "0x62d306ff0499a11913bc60b5939eec619509b5c67b30e86ebf8b8bda0b7a7fee",
"license": "MIT",
"urls": [
"bzz-raw://6712ca27a06062db31465b1470e6207553553a9bb0b4358d918b35bdae5b4ffe",
"dweb:/ipfs/QmZ92pU9DJ3h1qREMFvDQhArSy6fh6zA983NeLFHRs1qKJ"
]
},
"@openzeppelin/contracts/utils/cryptography/ECDSA.sol": {
"keccak256": "0x752ac2a89da774de5c98f8ca1adcad306ce00d0ebb547ad7be8ba7e95468aa73",
"license": "MIT",
"urls": [
"bzz-raw://4d684ee425c1b73399887ee6776e45686067b2ed1a20717df71cda6be5406c82",
"dweb:/ipfs/QmQhfMHrfNYMiHhtNqh95qD55sh4hTed9drMxCVW38CYEA"
]
},
"@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol": {
"keccak256": "0x75800223458de145e6088276ab661222e22557d7518459e1ffc57bb5b0496542",
"license": "MIT",
"urls": [
"bzz-raw://504433dd10f0037339624055d52df67de43408a4d429eb546c6cb17e5c5a6ae6",
"dweb:/ipfs/QmQfRTjvbsn9kCc7MNC2E7X4tzpYw4sEPPMpdyWVi5QQNj"
]
},
"@openzeppelin/contracts/utils/math/Math.sol": {
"keccak256": "0xa1477864def7febd9826918e50482a1ee7068b337b03804a7e0e98c674ac57c2",
"license": "MIT",
"urls": [
"bzz-raw://5bdd8ea2ace1bf716007318f8aca21d32384f0b8b295adac55147270767441fa",
"dweb:/ipfs/QmSv235N45Ub3wFXdTLNiS3k4b7FAudtEL8s6g1PwcsCcS"
]
},
"@uniswap/v2-core/contracts/interfaces/IUniswapV2ERC20.sol": {
"keccak256": "0x9e433765e9ef7b4ff5e406b260b222c47c2aa27d36df756db708064fcb239ae7",
"urls": [
"bzz-raw://5b67c24a5e1652b51ad2f37adad2905519f0e05e7c8b2b4d8b3e00b429bb9213",
"dweb:/ipfs/QmarJq43GabAGGSqtMUb87ACYQt73mSFbXKyFAPDXpbFNM"
]
},
"@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol": {
"keccak256": "0xe5905c0989cf5a865ed9bb7b9252536ca011c5b744017a82a7d4443b9c00a891",
"urls": [
"bzz-raw://5d2a90a0a796491507462a3da18c3f8819721d571572d765a2207c35bf0a0389",
"dweb:/ipfs/Qmf9ACYiT3qzjgsYuhm866FBdiBpRMXAPpQhSFbgqcyhHt"
]
},
"@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol": {
"keccak256": "0x7c9bc70e5996c763e02ff38905282bc24fb242b0ef2519a003b36824fc524a4b",
"urls": [
"bzz-raw://85d5ad2dd23ee127f40907a12865a1e8cb5828814f6f2480285e1827dd72dedf",
"dweb:/ipfs/QmayKQWJgWmr46DqWseADyUanmqxh662hPNdAkdHRjiQQH"
]
},
"@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol": {
"keccak256": "0x8a3c5c449d4b7cd76513ed6995f4b86e4a86f222c770f8442f5fc128ce29b4d2",
"urls": [
"bzz-raw://1df63ca373dafae3bd0ee7fe70f890a1dc7c45ed869c01de68413e0e97ff9deb",
"dweb:/ipfs/QmefJgEYGUL8KX7kQKYTrDweF8GB7yjy3nw5Bmqzryg7PG"
]
},
"@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol": {
"keccak256": "0x744e30c133bd0f7ca9e7163433cf6d72f45c6bb1508c2c9c02f1a6db796ae59d",
"urls": [
"bzz-raw://9bf2f4454ad63d4cff03a0630e787d9e8a9deed80aec89682cd8ad6379d9ef8c",
"dweb:/ipfs/Qme51hQNR2wpax7ooUadhtqLtXm8ffeVVYyubLkTT4wMCG"
]
},
"contract-99f0067c28.sol": {
"keccak256": "0x9cb4fc95e3845085219021725d3fc118b3298261e53960daa21984ecda25a867",
"license": "MIT",
"urls": [
"bzz-raw://b78843247d624ad5f7a326e0480d33fe194a298826e7f19f35286f9face5e292",
"dweb:/ipfs/QmbPQvVap1XRxsLczst6YGGVy4wYikifLjoPwucKuqrjeS"
]
}
},
"version": 1
}
This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7334:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "72:53:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "89:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "112:5:20"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "94:17:20"
},
"nodeType": "YulFunctionCall",
"src": "94:24:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "82:6:20"
},
"nodeType": "YulFunctionCall",
"src": "82:37:20"
},
"nodeType": "YulExpressionStatement",
"src": "82:37:20"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "60:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "67:3:20",
"type": ""
}
],
"src": "7:118:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "196:53:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "213:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "236:5:20"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "218:17:20"
},
"nodeType": "YulFunctionCall",
"src": "218:24:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "206:6:20"
},
"nodeType": "YulFunctionCall",
"src": "206:37:20"
},
"nodeType": "YulExpressionStatement",
"src": "206:37:20"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "184:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "191:3:20",
"type": ""
}
],
"src": "131:118:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "401:168:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "411:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "477:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "482:2:20",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "418:58:20"
},
"nodeType": "YulFunctionCall",
"src": "418:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "411:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "506:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "511:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "502:3:20"
},
"nodeType": "YulFunctionCall",
"src": "502:11:20"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "515:18:20",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "495:6:20"
},
"nodeType": "YulFunctionCall",
"src": "495:39:20"
},
"nodeType": "YulExpressionStatement",
"src": "495:39:20"
},
{
"nodeType": "YulAssignment",
"src": "544:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "555:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "560:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "551:3:20"
},
"nodeType": "YulFunctionCall",
"src": "551:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "544:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "389:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "397:3:20",
"type": ""
}
],
"src": "255:314:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "721:183:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "731:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "797:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "802:2:20",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "738:58:20"
},
"nodeType": "YulFunctionCall",
"src": "738:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "731:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "826:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "831:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "822:3:20"
},
"nodeType": "YulFunctionCall",
"src": "822:11:20"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "835:33:20",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "815:6:20"
},
"nodeType": "YulFunctionCall",
"src": "815:54:20"
},
"nodeType": "YulExpressionStatement",
"src": "815:54:20"
},
{
"nodeType": "YulAssignment",
"src": "879:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "890:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "895:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "886:3:20"
},
"nodeType": "YulFunctionCall",
"src": "886:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "879:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "709:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "717:3:20",
"type": ""
}
],
"src": "575:329:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "975:53:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "992:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1015:5:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "997:17:20"
},
"nodeType": "YulFunctionCall",
"src": "997:24:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "985:6:20"
},
"nodeType": "YulFunctionCall",
"src": "985:37:20"
},
"nodeType": "YulExpressionStatement",
"src": "985:37:20"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "963:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "970:3:20",
"type": ""
}
],
"src": "910:118:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1244:454:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1254:27:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1266:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1277:3:20",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1262:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1262:19:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1254:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1335:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1348:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1359:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1344:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1344:17:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "1291:43:20"
},
"nodeType": "YulFunctionCall",
"src": "1291:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "1291:71:20"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1416:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1429:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1440:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1425:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1425:18:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "1372:43:20"
},
"nodeType": "YulFunctionCall",
"src": "1372:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "1372:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1498:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1511:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1522:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1507:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1507:18:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "1454:43:20"
},
"nodeType": "YulFunctionCall",
"src": "1454:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "1454:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "1580:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1593:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1604:2:20",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1589:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1589:18:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1536:43:20"
},
"nodeType": "YulFunctionCall",
"src": "1536:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "1536:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "1662:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1675:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1686:3:20",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1671:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1671:19:20"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "1618:43:20"
},
"nodeType": "YulFunctionCall",
"src": "1618:73:20"
},
"nodeType": "YulExpressionStatement",
"src": "1618:73:20"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1184:9:20",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "1196:6:20",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1204:6:20",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1212:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1220:6:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1228:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1239:4:20",
"type": ""
}
],
"src": "1034:664:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1875:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1885:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1897:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1908:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1893:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1893:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1885:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1932:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1943:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1928:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1928:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1951:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1957:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1947:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1947:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1921:6:20"
},
"nodeType": "YulFunctionCall",
"src": "1921:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "1921:47:20"
},
{
"nodeType": "YulAssignment",
"src": "1977:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2111:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1985:124:20"
},
"nodeType": "YulFunctionCall",
"src": "1985:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1977:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1855:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1870:4:20",
"type": ""
}
],
"src": "1704:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2300:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2310:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2322:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2333:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2318:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2318:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2310:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2357:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2368:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2353:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2353:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2376:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2382:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2372:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2372:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2346:6:20"
},
"nodeType": "YulFunctionCall",
"src": "2346:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "2346:47:20"
},
{
"nodeType": "YulAssignment",
"src": "2402:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2536:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2410:124:20"
},
"nodeType": "YulFunctionCall",
"src": "2410:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2402:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2280:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2295:4:20",
"type": ""
}
],
"src": "2129:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2652:124:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2662:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2674:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2685:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2670:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2670:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2662:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2742:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2755:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2766:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2751:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2751:17:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2698:43:20"
},
"nodeType": "YulFunctionCall",
"src": "2698:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "2698:71:20"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2624:9:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2636:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2647:4:20",
"type": ""
}
],
"src": "2554:222:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2878:73:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2895:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2900:6:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2888:6:20"
},
"nodeType": "YulFunctionCall",
"src": "2888:19:20"
},
"nodeType": "YulExpressionStatement",
"src": "2888:19:20"
},
{
"nodeType": "YulAssignment",
"src": "2916:29:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2935:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2940:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2931:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2931:14:20"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2916:11:20"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2850:3:20",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2855:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2866:11:20",
"type": ""
}
],
"src": "2782:169:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3001:261:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3011:25:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3034:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3016:17:20"
},
"nodeType": "YulFunctionCall",
"src": "3016:20:20"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3011:1:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3045:25:20",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3068:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3050:17:20"
},
"nodeType": "YulFunctionCall",
"src": "3050:20:20"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3045:1:20"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3208:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3210:16:20"
},
"nodeType": "YulFunctionCall",
"src": "3210:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "3210:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3129:1:20"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3136:66:20",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3204:1:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3132:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3132:74:20"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3126:2:20"
},
"nodeType": "YulFunctionCall",
"src": "3126:81:20"
},
"nodeType": "YulIf",
"src": "3123:2:20"
},
{
"nodeType": "YulAssignment",
"src": "3240:16:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3251:1:20"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3254:1:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3247:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3247:9:20"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "3240:3:20"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2988:1:20",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2991:1:20",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "2997:3:20",
"type": ""
}
],
"src": "2957:305:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3341:775:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3351:15:20",
"value": {
"name": "_power",
"nodeType": "YulIdentifier",
"src": "3360:6:20"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3351:5:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3375:14:20",
"value": {
"name": "_base",
"nodeType": "YulIdentifier",
"src": "3384:5:20"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3375:4:20"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3433:677:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3521:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3523:16:20"
},
"nodeType": "YulFunctionCall",
"src": "3523:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "3523:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3499:4:20"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "3509:3:20"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3514:4:20"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3505:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3505:14:20"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3496:2:20"
},
"nodeType": "YulFunctionCall",
"src": "3496:24:20"
},
"nodeType": "YulIf",
"src": "3493:2:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3588:419:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3968:25:20",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3981:5:20"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3988:4:20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3977:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3977:16:20"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3968:5:20"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3563:8:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3573:1:20",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3559:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3559:16:20"
},
"nodeType": "YulIf",
"src": "3556:2:20"
},
{
"nodeType": "YulAssignment",
"src": "4020:23:20",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4032:4:20"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4038:4:20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4028:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4028:15:20"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "4020:4:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4056:44:20",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4091:8:20"
}
],
"functionName": {
"name": "shift_right_1_unsigned",
"nodeType": "YulIdentifier",
"src": "4068:22:20"
},
"nodeType": "YulFunctionCall",
"src": "4068:32:20"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "4056:8:20"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3409:8:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3419:1:20",
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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