Created
February 8, 2025 23:43
-
-
Save Huashy3432/c08be90442565e3831b7cf1554accd9e 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.26+commit.8a97fa7a.js&optimize=false&runs=200&gist=
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) | |
pragma solidity ^0.8.0; | |
import "../utils/Context.sol"; | |
/** | |
* @dev Contract module which provides a basic access control mechanism, where | |
* there is an account (an owner) that can be granted exclusive access to | |
* specific functions. | |
* | |
* By default, the owner account will be the one that deploys the contract. This | |
* can later be changed with {transferOwnership}. | |
* | |
* This module is used through inheritance. It will make available the modifier | |
* `onlyOwner`, which can be applied to your functions to restrict their use to | |
* the owner. | |
*/ | |
abstract contract Ownable is Context { | |
address private _owner; | |
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); | |
/** | |
* @dev Initializes the contract setting the deployer as the initial owner. | |
*/ | |
constructor() { | |
_transferOwnership(_msgSender()); | |
} | |
/** | |
* @dev Throws if called by any account other than the owner. | |
*/ | |
modifier onlyOwner() { | |
_checkOwner(); | |
_; | |
} | |
/** | |
* @dev Returns the address of the current owner. | |
*/ | |
function owner() public view virtual returns (address) { | |
return _owner; | |
} | |
/** | |
* @dev Throws if the sender is not the owner. | |
*/ | |
function _checkOwner() internal view virtual { | |
require(owner() == _msgSender(), "Ownable: caller is not the owner"); | |
} | |
/** | |
* @dev Leaves the contract without owner. It will not be possible to call | |
* `onlyOwner` functions. Can only be called by the current owner. | |
* | |
* NOTE: Renouncing ownership will leave the contract without an owner, | |
* thereby disabling any functionality that is only available to the owner. | |
*/ | |
function renounceOwnership() public virtual onlyOwner { | |
_transferOwnership(address(0)); | |
} | |
/** | |
* @dev Transfers ownership of the contract to a new account (`newOwner`). | |
* Can only be called by the current owner. | |
*/ | |
function transferOwnership(address newOwner) public virtual onlyOwner { | |
require(newOwner != address(0), "Ownable: new owner is the zero address"); | |
_transferOwnership(newOwner); | |
} | |
/** | |
* @dev Transfers ownership of the contract to a new account (`newOwner`). | |
* Internal function without access restriction. | |
*/ | |
function _transferOwnership(address newOwner) internal virtual { | |
address oldOwner = _owner; | |
_owner = newOwner; | |
emit OwnershipTransferred(oldOwner, newOwner); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) | |
pragma solidity ^0.8.0; | |
import "./IERC20.sol"; | |
import "./extensions/IERC20Metadata.sol"; | |
import "../../utils/Context.sol"; | |
/** | |
* @dev Implementation of the {IERC20} interface. | |
* | |
* This implementation is agnostic to the way tokens are created. This means | |
* that a supply mechanism has to be added in a derived contract using {_mint}. | |
* For a generic mechanism see {ERC20PresetMinterPauser}. | |
* | |
* TIP: For a detailed writeup see our guide | |
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How | |
* to implement supply mechanisms]. | |
* | |
* The default value of {decimals} is 18. To change this, you should override | |
* this function so it returns a different value. | |
* | |
* We have followed general OpenZeppelin Contracts guidelines: functions revert | |
* instead returning `false` on failure. This behavior is nonetheless | |
* conventional and does not conflict with the expectations of ERC20 | |
* applications. | |
* | |
* Additionally, an {Approval} event is emitted on calls to {transferFrom}. | |
* This allows applications to reconstruct the allowance for all accounts just | |
* by listening to said events. Other implementations of the EIP may not emit | |
* these events, as it isn't required by the specification. | |
* | |
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance} | |
* functions have been added to mitigate the well-known issues around setting | |
* allowances. See {IERC20-approve}. | |
*/ | |
contract ERC20 is Context, IERC20, IERC20Metadata { | |
mapping(address => uint256) private _balances; | |
mapping(address => mapping(address => uint256)) private _allowances; | |
uint256 private _totalSupply; | |
string private _name; | |
string private _symbol; | |
/** | |
* @dev Sets the values for {name} and {symbol}. | |
* | |
* All two of these values are immutable: they can only be set once during | |
* construction. | |
*/ | |
constructor(string memory name_, string memory symbol_) { | |
_name = name_; | |
_symbol = symbol_; | |
} | |
/** | |
* @dev Returns the name of the token. | |
*/ | |
function name() public view virtual override returns (string memory) { | |
return _name; | |
} | |
/** | |
* @dev Returns the symbol of the token, usually a shorter version of the | |
* name. | |
*/ | |
function symbol() public view virtual override returns (string memory) { | |
return _symbol; | |
} | |
/** | |
* @dev Returns the number of decimals used to get its user representation. | |
* For example, if `decimals` equals `2`, a balance of `505` tokens should | |
* be displayed to a user as `5.05` (`505 / 10 ** 2`). | |
* | |
* Tokens usually opt for a value of 18, imitating the relationship between | |
* Ether and Wei. This is the default value returned by this function, unless | |
* it's overridden. | |
* | |
* NOTE: This information is only used for _display_ purposes: it in | |
* no way affects any of the arithmetic of the contract, including | |
* {IERC20-balanceOf} and {IERC20-transfer}. | |
*/ | |
function decimals() public view virtual override returns (uint8) { | |
return 18; | |
} | |
/** | |
* @dev See {IERC20-totalSupply}. | |
*/ | |
function totalSupply() public view virtual override returns (uint256) { | |
return _totalSupply; | |
} | |
/** | |
* @dev See {IERC20-balanceOf}. | |
*/ | |
function balanceOf(address account) public view virtual override returns (uint256) { | |
return _balances[account]; | |
} | |
/** | |
* @dev See {IERC20-transfer}. | |
* | |
* Requirements: | |
* | |
* - `to` cannot be the zero address. | |
* - the caller must have a balance of at least `amount`. | |
*/ | |
function transfer(address to, uint256 amount) public virtual override returns (bool) { | |
address owner = _msgSender(); | |
_transfer(owner, to, amount); | |
return true; | |
} | |
/** | |
* @dev See {IERC20-allowance}. | |
*/ | |
function allowance(address owner, address spender) public view virtual override returns (uint256) { | |
return _allowances[owner][spender]; | |
} | |
/** | |
* @dev See {IERC20-approve}. | |
* | |
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on | |
* `transferFrom`. This is semantically equivalent to an infinite approval. | |
* | |
* Requirements: | |
* | |
* - `spender` cannot be the zero address. | |
*/ | |
function approve(address spender, uint256 amount) public virtual override returns (bool) { | |
address owner = _msgSender(); | |
_approve(owner, spender, amount); | |
return true; | |
} | |
/** | |
* @dev See {IERC20-transferFrom}. | |
* | |
* Emits an {Approval} event indicating the updated allowance. This is not | |
* required by the EIP. See the note at the beginning of {ERC20}. | |
* | |
* NOTE: Does not update the allowance if the current allowance | |
* is the maximum `uint256`. | |
* | |
* Requirements: | |
* | |
* - `from` and `to` cannot be the zero address. | |
* - `from` must have a balance of at least `amount`. | |
* - the caller must have allowance for ``from``'s tokens of at least | |
* `amount`. | |
*/ | |
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { | |
address spender = _msgSender(); | |
_spendAllowance(from, spender, amount); | |
_transfer(from, to, amount); | |
return true; | |
} | |
/** | |
* @dev Atomically increases the allowance granted to `spender` by the caller. | |
* | |
* This is an alternative to {approve} that can be used as a mitigation for | |
* problems described in {IERC20-approve}. | |
* | |
* Emits an {Approval} event indicating the updated allowance. | |
* | |
* Requirements: | |
* | |
* - `spender` cannot be the zero address. | |
*/ | |
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { | |
address owner = _msgSender(); | |
_approve(owner, spender, allowance(owner, spender) + addedValue); | |
return true; | |
} | |
/** | |
* @dev Atomically decreases the allowance granted to `spender` by the caller. | |
* | |
* This is an alternative to {approve} that can be used as a mitigation for | |
* problems described in {IERC20-approve}. | |
* | |
* Emits an {Approval} event indicating the updated allowance. | |
* | |
* Requirements: | |
* | |
* - `spender` cannot be the zero address. | |
* - `spender` must have allowance for the caller of at least | |
* `subtractedValue`. | |
*/ | |
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { | |
address owner = _msgSender(); | |
uint256 currentAllowance = allowance(owner, spender); | |
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); | |
unchecked { | |
_approve(owner, spender, currentAllowance - subtractedValue); | |
} | |
return true; | |
} | |
/** | |
* @dev Moves `amount` of tokens from `from` to `to`. | |
* | |
* This internal function is equivalent to {transfer}, and can be used to | |
* e.g. implement automatic token fees, slashing mechanisms, etc. | |
* | |
* Emits a {Transfer} event. | |
* | |
* Requirements: | |
* | |
* - `from` cannot be the zero address. | |
* - `to` cannot be the zero address. | |
* - `from` must have a balance of at least `amount`. | |
*/ | |
function _transfer(address from, address to, uint256 amount) internal virtual { | |
require(from != address(0), "ERC20: transfer from the zero address"); | |
require(to != address(0), "ERC20: transfer to the zero address"); | |
_beforeTokenTransfer(from, to, amount); | |
uint256 fromBalance = _balances[from]; | |
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); | |
unchecked { | |
_balances[from] = fromBalance - amount; | |
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by | |
// decrementing then incrementing. | |
_balances[to] += amount; | |
} | |
emit Transfer(from, to, amount); | |
_afterTokenTransfer(from, to, amount); | |
} | |
/** @dev Creates `amount` tokens and assigns them to `account`, increasing | |
* the total supply. | |
* | |
* Emits a {Transfer} event with `from` set to the zero address. | |
* | |
* Requirements: | |
* | |
* - `account` cannot be the zero address. | |
*/ | |
function _mint(address account, uint256 amount) internal virtual { | |
require(account != address(0), "ERC20: mint to the zero address"); | |
_beforeTokenTransfer(address(0), account, amount); | |
_totalSupply += amount; | |
unchecked { | |
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. | |
_balances[account] += amount; | |
} | |
emit Transfer(address(0), account, amount); | |
_afterTokenTransfer(address(0), account, amount); | |
} | |
/** | |
* @dev Destroys `amount` tokens from `account`, reducing the | |
* total supply. | |
* | |
* Emits a {Transfer} event with `to` set to the zero address. | |
* | |
* Requirements: | |
* | |
* - `account` cannot be the zero address. | |
* - `account` must have at least `amount` tokens. | |
*/ | |
function _burn(address account, uint256 amount) internal virtual { | |
require(account != address(0), "ERC20: burn from the zero address"); | |
_beforeTokenTransfer(account, address(0), amount); | |
uint256 accountBalance = _balances[account]; | |
require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); | |
unchecked { | |
_balances[account] = accountBalance - amount; | |
// Overflow not possible: amount <= accountBalance <= totalSupply. | |
_totalSupply -= amount; | |
} | |
emit Transfer(account, address(0), amount); | |
_afterTokenTransfer(account, address(0), amount); | |
} | |
/** | |
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. | |
* | |
* This internal function is equivalent to `approve`, and can be used to | |
* e.g. set automatic allowances for certain subsystems, etc. | |
* | |
* Emits an {Approval} event. | |
* | |
* Requirements: | |
* | |
* - `owner` cannot be the zero address. | |
* - `spender` cannot be the zero address. | |
*/ | |
function _approve(address owner, address spender, uint256 amount) internal virtual { | |
require(owner != address(0), "ERC20: approve from the zero address"); | |
require(spender != address(0), "ERC20: approve to the zero address"); | |
_allowances[owner][spender] = amount; | |
emit Approval(owner, spender, amount); | |
} | |
/** | |
* @dev Updates `owner` s allowance for `spender` based on spent `amount`. | |
* | |
* Does not update the allowance amount in case of infinite allowance. | |
* Revert if not enough allowance is available. | |
* | |
* Might emit an {Approval} event. | |
*/ | |
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { | |
uint256 currentAllowance = allowance(owner, spender); | |
if (currentAllowance != type(uint256).max) { | |
require(currentAllowance >= amount, "ERC20: insufficient allowance"); | |
unchecked { | |
_approve(owner, spender, currentAllowance - amount); | |
} | |
} | |
} | |
/** | |
* @dev Hook that is called before any transfer of tokens. This includes | |
* minting and burning. | |
* | |
* Calling conditions: | |
* | |
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens | |
* will be transferred to `to`. | |
* - when `from` is zero, `amount` tokens will be minted for `to`. | |
* - when `to` is zero, `amount` of ``from``'s tokens will be burned. | |
* - `from` and `to` are never both zero. | |
* | |
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. | |
*/ | |
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} | |
/** | |
* @dev Hook that is called after any transfer of tokens. This includes | |
* minting and burning. | |
* | |
* Calling conditions: | |
* | |
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens | |
* has been transferred to `to`. | |
* - when `from` is zero, `amount` tokens have been minted for `to`. | |
* - when `to` is zero, `amount` of ``from``'s tokens have been burned. | |
* - `from` and `to` are never both zero. | |
* | |
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. | |
*/ | |
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) | |
pragma solidity ^0.8.0; | |
import "../IERC20.sol"; | |
/** | |
* @dev Interface for the optional metadata functions from the ERC20 standard. | |
* | |
* _Available since v4.1._ | |
*/ | |
interface IERC20Metadata is IERC20 { | |
/** | |
* @dev Returns the name of the token. | |
*/ | |
function name() external view returns (string memory); | |
/** | |
* @dev Returns the symbol of the token. | |
*/ | |
function symbol() external view returns (string memory); | |
/** | |
* @dev Returns the decimals places of the token. | |
*/ | |
function decimals() external view returns (uint8); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) | |
pragma solidity ^0.8.0; | |
/** | |
* @dev Interface of the ERC20 standard as defined in the EIP. | |
*/ | |
interface IERC20 { | |
/** | |
* @dev Emitted when `value` tokens are moved from one account (`from`) to | |
* another (`to`). | |
* | |
* Note that `value` may be zero. | |
*/ | |
event Transfer(address indexed from, address indexed to, uint256 value); | |
/** | |
* @dev Emitted when the allowance of a `spender` for an `owner` is set by | |
* a call to {approve}. `value` is the new allowance. | |
*/ | |
event Approval(address indexed owner, address indexed spender, uint256 value); | |
/** | |
* @dev Returns the amount of tokens in existence. | |
*/ | |
function totalSupply() external view returns (uint256); | |
/** | |
* @dev Returns the amount of tokens owned by `account`. | |
*/ | |
function balanceOf(address account) external view returns (uint256); | |
/** | |
* @dev Moves `amount` tokens from the caller's account to `to`. | |
* | |
* Returns a boolean value indicating whether the operation succeeded. | |
* | |
* Emits a {Transfer} event. | |
*/ | |
function transfer(address to, uint256 amount) external returns (bool); | |
/** | |
* @dev Returns the remaining number of tokens that `spender` will be | |
* allowed to spend on behalf of `owner` through {transferFrom}. This is | |
* zero by default. | |
* | |
* This value changes when {approve} or {transferFrom} are called. | |
*/ | |
function allowance(address owner, address spender) external view returns (uint256); | |
/** | |
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens. | |
* | |
* Returns a boolean value indicating whether the operation succeeded. | |
* | |
* IMPORTANT: Beware that changing an allowance with this method brings the risk | |
* that someone may use both the old and the new allowance by unfortunate | |
* transaction ordering. One possible solution to mitigate this race | |
* condition is to first reduce the spender's allowance to 0 and set the | |
* desired value afterwards: | |
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 | |
* | |
* Emits an {Approval} event. | |
*/ | |
function approve(address spender, uint256 amount) external returns (bool); | |
/** | |
* @dev Moves `amount` tokens from `from` to `to` using the | |
* allowance mechanism. `amount` is then deducted from the caller's | |
* allowance. | |
* | |
* Returns a boolean value indicating whether the operation succeeded. | |
* | |
* Emits a {Transfer} event. | |
*/ | |
function transferFrom(address from, address to, uint256 amount) external returns (bool); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol) | |
pragma solidity ^0.8.0; | |
/** | |
* @dev Provides information about the current execution context, including the | |
* sender of the transaction and its data. While these are generally available | |
* via msg.sender and msg.data, they should not be accessed in such a direct | |
* manner, since when dealing with meta-transactions the account sending and | |
* paying for execution may not be the actual sender (as far as an application | |
* is concerned). | |
* | |
* This contract is only required for intermediate, library-like contracts. | |
*/ | |
abstract contract Context { | |
function _msgSender() internal view virtual returns (address) { | |
return msg.sender; | |
} | |
function _msgData() internal view virtual returns (bytes calldata) { | |
return msg.data; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) | |
pragma solidity ^0.8.20; | |
import {Context} from "../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. | |
* | |
* The initial owner is set to the address provided by the deployer. 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; | |
/** | |
* @dev The caller account is not authorized to perform an operation. | |
*/ | |
error OwnableUnauthorizedAccount(address account); | |
/** | |
* @dev The owner is not a valid owner account. (eg. `address(0)`) | |
*/ | |
error OwnableInvalidOwner(address owner); | |
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); | |
/** | |
* @dev Initializes the contract setting the address provided by the deployer as the initial owner. | |
*/ | |
constructor(address initialOwner) { | |
if (initialOwner == address(0)) { | |
revert OwnableInvalidOwner(address(0)); | |
} | |
_transferOwnership(initialOwner); | |
} | |
/** | |
* @dev Throws if called by any account other than the owner. | |
*/ | |
modifier onlyOwner() { | |
_checkOwner(); | |
_; | |
} | |
/** | |
* @dev Returns the address of the current owner. | |
*/ | |
function owner() public view virtual returns (address) { | |
return _owner; | |
} | |
/** | |
* @dev Throws if the sender is not the owner. | |
*/ | |
function _checkOwner() internal view virtual { | |
if (owner() != _msgSender()) { | |
revert OwnableUnauthorizedAccount(_msgSender()); | |
} | |
} | |
/** | |
* @dev Leaves the contract without owner. It will not be possible to call | |
* `onlyOwner` functions. Can only be called by the current owner. | |
* | |
* NOTE: Renouncing ownership will leave the contract without an owner, | |
* thereby disabling any functionality that is only available to the owner. | |
*/ | |
function renounceOwnership() public virtual onlyOwner { | |
_transferOwnership(address(0)); | |
} | |
/** | |
* @dev Transfers ownership of the contract to a new account (`newOwner`). | |
* Can only be called by the current owner. | |
*/ | |
function transferOwnership(address newOwner) public virtual onlyOwner { | |
if (newOwner == address(0)) { | |
revert OwnableInvalidOwner(address(0)); | |
} | |
_transferOwnership(newOwner); | |
} | |
/** | |
* @dev Transfers ownership of the contract to a new account (`newOwner`). | |
* Internal function without access restriction. | |
*/ | |
function _transferOwnership(address newOwner) internal virtual { | |
address oldOwner = _owner; | |
_owner = newOwner; | |
emit OwnershipTransferred(oldOwner, newOwner); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) | |
pragma solidity ^0.8.20; | |
/** | |
* @dev Standard ERC-20 Errors | |
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. | |
*/ | |
interface IERC20Errors { | |
/** | |
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. | |
* @param sender Address whose tokens are being transferred. | |
* @param balance Current balance for the interacting account. | |
* @param needed Minimum amount required to perform a transfer. | |
*/ | |
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); | |
/** | |
* @dev Indicates a failure with the token `sender`. Used in transfers. | |
* @param sender Address whose tokens are being transferred. | |
*/ | |
error ERC20InvalidSender(address sender); | |
/** | |
* @dev Indicates a failure with the token `receiver`. Used in transfers. | |
* @param receiver Address to which tokens are being transferred. | |
*/ | |
error ERC20InvalidReceiver(address receiver); | |
/** | |
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. | |
* @param spender Address that may be allowed to operate on tokens without being their owner. | |
* @param allowance Amount of tokens a `spender` is allowed to operate with. | |
* @param needed Minimum amount required to perform a transfer. | |
*/ | |
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); | |
/** | |
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. | |
* @param approver Address initiating an approval operation. | |
*/ | |
error ERC20InvalidApprover(address approver); | |
/** | |
* @dev Indicates a failure with the `spender` to be approved. Used in approvals. | |
* @param spender Address that may be allowed to operate on tokens without being their owner. | |
*/ | |
error ERC20InvalidSpender(address spender); | |
} | |
/** | |
* @dev Standard ERC-721 Errors | |
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. | |
*/ | |
interface IERC721Errors { | |
/** | |
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. | |
* Used in balance queries. | |
* @param owner Address of the current owner of a token. | |
*/ | |
error ERC721InvalidOwner(address owner); | |
/** | |
* @dev Indicates a `tokenId` whose `owner` is the zero address. | |
* @param tokenId Identifier number of a token. | |
*/ | |
error ERC721NonexistentToken(uint256 tokenId); | |
/** | |
* @dev Indicates an error related to the ownership over a particular token. Used in transfers. | |
* @param sender Address whose tokens are being transferred. | |
* @param tokenId Identifier number of a token. | |
* @param owner Address of the current owner of a token. | |
*/ | |
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); | |
/** | |
* @dev Indicates a failure with the token `sender`. Used in transfers. | |
* @param sender Address whose tokens are being transferred. | |
*/ | |
error ERC721InvalidSender(address sender); | |
/** | |
* @dev Indicates a failure with the token `receiver`. Used in transfers. | |
* @param receiver Address to which tokens are being transferred. | |
*/ | |
error ERC721InvalidReceiver(address receiver); | |
/** | |
* @dev Indicates a failure with the `operator`’s approval. Used in transfers. | |
* @param operator Address that may be allowed to operate on tokens without being their owner. | |
* @param tokenId Identifier number of a token. | |
*/ | |
error ERC721InsufficientApproval(address operator, uint256 tokenId); | |
/** | |
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. | |
* @param approver Address initiating an approval operation. | |
*/ | |
error ERC721InvalidApprover(address approver); | |
/** | |
* @dev Indicates a failure with the `operator` to be approved. Used in approvals. | |
* @param operator Address that may be allowed to operate on tokens without being their owner. | |
*/ | |
error ERC721InvalidOperator(address operator); | |
} | |
/** | |
* @dev Standard ERC-1155 Errors | |
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. | |
*/ | |
interface IERC1155Errors { | |
/** | |
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. | |
* @param sender Address whose tokens are being transferred. | |
* @param balance Current balance for the interacting account. | |
* @param needed Minimum amount required to perform a transfer. | |
* @param tokenId Identifier number of a token. | |
*/ | |
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); | |
/** | |
* @dev Indicates a failure with the token `sender`. Used in transfers. | |
* @param sender Address whose tokens are being transferred. | |
*/ | |
error ERC1155InvalidSender(address sender); | |
/** | |
* @dev Indicates a failure with the token `receiver`. Used in transfers. | |
* @param receiver Address to which tokens are being transferred. | |
*/ | |
error ERC1155InvalidReceiver(address receiver); | |
/** | |
* @dev Indicates a failure with the `operator`’s approval. Used in transfers. | |
* @param operator Address that may be allowed to operate on tokens without being their owner. | |
* @param owner Address of the current owner of a token. | |
*/ | |
error ERC1155MissingApprovalForAll(address operator, address owner); | |
/** | |
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. | |
* @param approver Address initiating an approval operation. | |
*/ | |
error ERC1155InvalidApprover(address approver); | |
/** | |
* @dev Indicates a failure with the `operator` to be approved. Used in approvals. | |
* @param operator Address that may be allowed to operate on tokens without being their owner. | |
*/ | |
error ERC1155InvalidOperator(address operator); | |
/** | |
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. | |
* Used in batch transfers. | |
* @param idsLength Length of the array of token identifiers | |
* @param valuesLength Length of the array of token amounts | |
*/ | |
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/ERC20.sol) | |
pragma solidity ^0.8.20; | |
import {IERC20} from "./IERC20.sol"; | |
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; | |
import {Context} from "../../utils/Context.sol"; | |
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}. | |
* | |
* TIP: For a detailed writeup see our guide | |
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How | |
* to implement supply mechanisms]. | |
* | |
* The default value of {decimals} is 18. To change this, you should override | |
* this function so it returns a different value. | |
* | |
* We have followed general OpenZeppelin Contracts guidelines: functions revert | |
* instead returning `false` on failure. This behavior is nonetheless | |
* conventional and does not conflict with the expectations of ERC-20 | |
* applications. | |
*/ | |
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { | |
mapping(address account => uint256) private _balances; | |
mapping(address account => mapping(address spender => uint256)) private _allowances; | |
uint256 private _totalSupply; | |
string private _name; | |
string private _symbol; | |
/** | |
* @dev Sets the values for {name} and {symbol}. | |
* | |
* All two of these values are immutable: they can only be set once during | |
* construction. | |
*/ | |
constructor(string memory name_, string memory symbol_) { | |
_name = name_; | |
_symbol = symbol_; | |
} | |
/** | |
* @dev Returns the name of the token. | |
*/ | |
function name() public view virtual 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 default value returned by this function, unless | |
* it's overridden. | |
* | |
* NOTE: This information is only used for _display_ purposes: it in | |
* no way affects any of the arithmetic of the contract, including | |
* {IERC20-balanceOf} and {IERC20-transfer}. | |
*/ | |
function decimals() public view virtual returns (uint8) { | |
return 18; | |
} | |
/** | |
* @dev See {IERC20-totalSupply}. | |
*/ | |
function totalSupply() public view virtual returns (uint256) { | |
return _totalSupply; | |
} | |
/** | |
* @dev See {IERC20-balanceOf}. | |
*/ | |
function balanceOf(address account) public view virtual returns (uint256) { | |
return _balances[account]; | |
} | |
/** | |
* @dev See {IERC20-transfer}. | |
* | |
* Requirements: | |
* | |
* - `to` cannot be the zero address. | |
* - the caller must have a balance of at least `value`. | |
*/ | |
function transfer(address to, uint256 value) public virtual returns (bool) { | |
address owner = _msgSender(); | |
_transfer(owner, to, value); | |
return true; | |
} | |
/** | |
* @dev See {IERC20-allowance}. | |
*/ | |
function allowance(address owner, address spender) public view virtual returns (uint256) { | |
return _allowances[owner][spender]; | |
} | |
/** | |
* @dev See {IERC20-approve}. | |
* | |
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on | |
* `transferFrom`. This is semantically equivalent to an infinite approval. | |
* | |
* Requirements: | |
* | |
* - `spender` cannot be the zero address. | |
*/ | |
function approve(address spender, uint256 value) public virtual returns (bool) { | |
address owner = _msgSender(); | |
_approve(owner, spender, value); | |
return true; | |
} | |
/** | |
* @dev See {IERC20-transferFrom}. | |
* | |
* Skips emitting an {Approval} event indicating an allowance update. This is not | |
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. | |
* | |
* NOTE: Does not update the allowance if the current allowance | |
* is the maximum `uint256`. | |
* | |
* Requirements: | |
* | |
* - `from` and `to` cannot be the zero address. | |
* - `from` must have a balance of at least `value`. | |
* - the caller must have allowance for ``from``'s tokens of at least | |
* `value`. | |
*/ | |
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { | |
address spender = _msgSender(); | |
_spendAllowance(from, spender, value); | |
_transfer(from, to, value); | |
return true; | |
} | |
/** | |
* @dev Moves a `value` amount of tokens from `from` to `to`. | |
* | |
* This internal function is equivalent to {transfer}, and can be used to | |
* e.g. implement automatic token fees, slashing mechanisms, etc. | |
* | |
* Emits a {Transfer} event. | |
* | |
* NOTE: This function is not virtual, {_update} should be overridden instead. | |
*/ | |
function _transfer(address from, address to, uint256 value) internal { | |
if (from == address(0)) { | |
revert ERC20InvalidSender(address(0)); | |
} | |
if (to == address(0)) { | |
revert ERC20InvalidReceiver(address(0)); | |
} | |
_update(from, to, value); | |
} | |
/** | |
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` | |
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding | |
* this function. | |
* | |
* Emits a {Transfer} event. | |
*/ | |
function _update(address from, address to, uint256 value) internal virtual { | |
if (from == address(0)) { | |
// Overflow check required: The rest of the code assumes that totalSupply never overflows | |
_totalSupply += value; | |
} else { | |
uint256 fromBalance = _balances[from]; | |
if (fromBalance < value) { | |
revert ERC20InsufficientBalance(from, fromBalance, value); | |
} | |
unchecked { | |
// Overflow not possible: value <= fromBalance <= totalSupply. | |
_balances[from] = fromBalance - value; | |
} | |
} | |
if (to == address(0)) { | |
unchecked { | |
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. | |
_totalSupply -= value; | |
} | |
} else { | |
unchecked { | |
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. | |
_balances[to] += value; | |
} | |
} | |
emit Transfer(from, to, value); | |
} | |
/** | |
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). | |
* Relies on the `_update` mechanism | |
* | |
* Emits a {Transfer} event with `from` set to the zero address. | |
* | |
* NOTE: This function is not virtual, {_update} should be overridden instead. | |
*/ | |
function _mint(address account, uint256 value) internal { | |
if (account == address(0)) { | |
revert ERC20InvalidReceiver(address(0)); | |
} | |
_update(address(0), account, value); | |
} | |
/** | |
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. | |
* Relies on the `_update` mechanism. | |
* | |
* Emits a {Transfer} event with `to` set to the zero address. | |
* | |
* NOTE: This function is not virtual, {_update} should be overridden instead | |
*/ | |
function _burn(address account, uint256 value) internal { | |
if (account == address(0)) { | |
revert ERC20InvalidSender(address(0)); | |
} | |
_update(account, address(0), value); | |
} | |
/** | |
* @dev Sets `value` 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. | |
* | |
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. | |
*/ | |
function _approve(address owner, address spender, uint256 value) internal { | |
_approve(owner, spender, value, true); | |
} | |
/** | |
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. | |
* | |
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by | |
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any | |
* `Approval` event during `transferFrom` operations. | |
* | |
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to | |
* true using the following override: | |
* | |
* ```solidity | |
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override { | |
* super._approve(owner, spender, value, true); | |
* } | |
* ``` | |
* | |
* Requirements are the same as {_approve}. | |
*/ | |
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { | |
if (owner == address(0)) { | |
revert ERC20InvalidApprover(address(0)); | |
} | |
if (spender == address(0)) { | |
revert ERC20InvalidSpender(address(0)); | |
} | |
_allowances[owner][spender] = value; | |
if (emitEvent) { | |
emit Approval(owner, spender, value); | |
} | |
} | |
/** | |
* @dev Updates `owner` s allowance for `spender` based on spent `value`. | |
* | |
* Does not update the allowance value in case of infinite allowance. | |
* Revert if not enough allowance is available. | |
* | |
* Does not emit an {Approval} event. | |
*/ | |
function _spendAllowance(address owner, address spender, uint256 value) internal virtual { | |
uint256 currentAllowance = allowance(owner, spender); | |
if (currentAllowance < type(uint256).max) { | |
if (currentAllowance < value) { | |
revert ERC20InsufficientAllowance(spender, currentAllowance, value); | |
} | |
unchecked { | |
_approve(owner, spender, currentAllowance - value, false); | |
} | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) | |
pragma solidity ^0.8.20; | |
import {IERC20} from "../IERC20.sol"; | |
/** | |
* @dev Interface for the optional metadata functions from the ERC-20 standard. | |
*/ | |
interface IERC20Metadata is IERC20 { | |
/** | |
* @dev Returns the name of the token. | |
*/ | |
function name() external view returns (string memory); | |
/** | |
* @dev Returns the symbol of the token. | |
*/ | |
function symbol() external view returns (string memory); | |
/** | |
* @dev Returns the decimals places of the token. | |
*/ | |
function decimals() external view returns (uint8); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) | |
pragma solidity ^0.8.20; | |
/** | |
* @dev Interface of the ERC-20 standard as defined in the ERC. | |
*/ | |
interface IERC20 { | |
/** | |
* @dev Emitted when `value` tokens are moved from one account (`from`) to | |
* another (`to`). | |
* | |
* Note that `value` may be zero. | |
*/ | |
event Transfer(address indexed from, address indexed to, uint256 value); | |
/** | |
* @dev Emitted when the allowance of a `spender` for an `owner` is set by | |
* a call to {approve}. `value` is the new allowance. | |
*/ | |
event Approval(address indexed owner, address indexed spender, uint256 value); | |
/** | |
* @dev Returns the value of tokens in existence. | |
*/ | |
function totalSupply() external view returns (uint256); | |
/** | |
* @dev Returns the value of tokens owned by `account`. | |
*/ | |
function balanceOf(address account) external view returns (uint256); | |
/** | |
* @dev Moves a `value` amount of tokens from the caller's account to `to`. | |
* | |
* Returns a boolean value indicating whether the operation succeeded. | |
* | |
* Emits a {Transfer} event. | |
*/ | |
function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); | |
/** | |
* @dev Moves a `value` amount of tokens from `from` to `to` using the | |
* allowance mechanism. `value` is then deducted from the caller's | |
* allowance. | |
* | |
* Returns a boolean value indicating whether the operation succeeded. | |
* | |
* Emits a {Transfer} event. | |
*/ | |
function transferFrom(address from, address to, uint256 value) external returns (bool); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) | |
pragma solidity ^0.8.20; | |
/** | |
* @dev Provides information about the current execution context, including the | |
* sender of the transaction and its data. While these are generally available | |
* via msg.sender and msg.data, they should not be accessed in such a direct | |
* manner, since when dealing with meta-transactions the account sending and | |
* paying for execution may not be the actual sender (as far as an application | |
* is concerned). | |
* | |
* This contract is only required for intermediate, library-like contracts. | |
*/ | |
abstract contract Context { | |
function _msgSender() internal view virtual returns (address) { | |
return msg.sender; | |
} | |
function _msgData() internal view virtual returns (bytes calldata) { | |
return msg.data; | |
} | |
function _contextSuffixLength() internal view virtual returns (uint256) { | |
return 0; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity >=0.4.22 <0.9.0; | |
library console { | |
address constant CONSOLE_ADDRESS = | |
0x000000000000000000636F6e736F6c652e6c6f67; | |
function _sendLogPayloadImplementation(bytes memory payload) internal view { | |
address consoleAddress = CONSOLE_ADDRESS; | |
/// @solidity memory-safe-assembly | |
assembly { | |
pop( | |
staticcall( | |
gas(), | |
consoleAddress, | |
add(payload, 32), | |
mload(payload), | |
0, | |
0 | |
) | |
) | |
} | |
} | |
function _castToPure( | |
function(bytes memory) internal view fnIn | |
) internal pure returns (function(bytes memory) pure fnOut) { | |
assembly { | |
fnOut := fnIn | |
} | |
} | |
function _sendLogPayload(bytes memory payload) internal pure { | |
_castToPure(_sendLogPayloadImplementation)(payload); | |
} | |
function log() internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log()")); | |
} | |
function logInt(int256 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(int256)", p0)); | |
} | |
function logUint(uint256 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0)); | |
} | |
function logString(string memory p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string)", p0)); | |
} | |
function logBool(bool p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool)", p0)); | |
} | |
function logAddress(address p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address)", p0)); | |
} | |
function logBytes(bytes memory p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes)", p0)); | |
} | |
function logBytes1(bytes1 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0)); | |
} | |
function logBytes2(bytes2 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0)); | |
} | |
function logBytes3(bytes3 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0)); | |
} | |
function logBytes4(bytes4 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0)); | |
} | |
function logBytes5(bytes5 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0)); | |
} | |
function logBytes6(bytes6 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0)); | |
} | |
function logBytes7(bytes7 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0)); | |
} | |
function logBytes8(bytes8 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0)); | |
} | |
function logBytes9(bytes9 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0)); | |
} | |
function logBytes10(bytes10 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0)); | |
} | |
function logBytes11(bytes11 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0)); | |
} | |
function logBytes12(bytes12 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0)); | |
} | |
function logBytes13(bytes13 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0)); | |
} | |
function logBytes14(bytes14 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0)); | |
} | |
function logBytes15(bytes15 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0)); | |
} | |
function logBytes16(bytes16 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0)); | |
} | |
function logBytes17(bytes17 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0)); | |
} | |
function logBytes18(bytes18 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0)); | |
} | |
function logBytes19(bytes19 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0)); | |
} | |
function logBytes20(bytes20 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0)); | |
} | |
function logBytes21(bytes21 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0)); | |
} | |
function logBytes22(bytes22 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0)); | |
} | |
function logBytes23(bytes23 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0)); | |
} | |
function logBytes24(bytes24 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0)); | |
} | |
function logBytes25(bytes25 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0)); | |
} | |
function logBytes26(bytes26 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0)); | |
} | |
function logBytes27(bytes27 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0)); | |
} | |
function logBytes28(bytes28 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0)); | |
} | |
function logBytes29(bytes29 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0)); | |
} | |
function logBytes30(bytes30 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0)); | |
} | |
function logBytes31(bytes31 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0)); | |
} | |
function logBytes32(bytes32 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0)); | |
} | |
function log(uint256 p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0)); | |
} | |
function log(string memory p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string)", p0)); | |
} | |
function log(bool p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool)", p0)); | |
} | |
function log(address p0) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address)", p0)); | |
} | |
function log(uint256 p0, uint256 p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256)", p0, p1)); | |
} | |
function log(uint256 p0, string memory p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string)", p0, p1)); | |
} | |
function log(uint256 p0, bool p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool)", p0, p1)); | |
} | |
function log(uint256 p0, address p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address)", p0, p1)); | |
} | |
function log(string memory p0, uint256 p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256)", p0, p1)); | |
} | |
function log(string memory p0, string memory p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1)); | |
} | |
function log(string memory p0, bool p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1)); | |
} | |
function log(string memory p0, address p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1)); | |
} | |
function log(bool p0, uint256 p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256)", p0, p1)); | |
} | |
function log(bool p0, string memory p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1)); | |
} | |
function log(bool p0, bool p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1)); | |
} | |
function log(bool p0, address p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1)); | |
} | |
function log(address p0, uint256 p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256)", p0, p1)); | |
} | |
function log(address p0, string memory p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1)); | |
} | |
function log(address p0, bool p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1)); | |
} | |
function log(address p0, address p1) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1)); | |
} | |
function log(uint256 p0, uint256 p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256)", p0, p1, p2)); | |
} | |
function log(uint256 p0, uint256 p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string)", p0, p1, p2)); | |
} | |
function log(uint256 p0, uint256 p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool)", p0, p1, p2)); | |
} | |
function log(uint256 p0, uint256 p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address)", p0, p1, p2)); | |
} | |
function log(uint256 p0, string memory p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256)", p0, p1, p2)); | |
} | |
function log(uint256 p0, string memory p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string)", p0, p1, p2)); | |
} | |
function log(uint256 p0, string memory p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool)", p0, p1, p2)); | |
} | |
function log(uint256 p0, string memory p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address)", p0, p1, p2)); | |
} | |
function log(uint256 p0, bool p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256)", p0, p1, p2)); | |
} | |
function log(uint256 p0, bool p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string)", p0, p1, p2)); | |
} | |
function log(uint256 p0, bool p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool)", p0, p1, p2)); | |
} | |
function log(uint256 p0, bool p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address)", p0, p1, p2)); | |
} | |
function log(uint256 p0, address p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256)", p0, p1, p2)); | |
} | |
function log(uint256 p0, address p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string)", p0, p1, p2)); | |
} | |
function log(uint256 p0, address p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool)", p0, p1, p2)); | |
} | |
function log(uint256 p0, address p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address)", p0, p1, p2)); | |
} | |
function log(string memory p0, uint256 p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256)", p0, p1, p2)); | |
} | |
function log(string memory p0, uint256 p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string)", p0, p1, p2)); | |
} | |
function log(string memory p0, uint256 p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool)", p0, p1, p2)); | |
} | |
function log(string memory p0, uint256 p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address)", p0, p1, p2)); | |
} | |
function log(string memory p0, string memory p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256)", p0, p1, p2)); | |
} | |
function log(string memory p0, string memory p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2)); | |
} | |
function log(string memory p0, string memory p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2)); | |
} | |
function log(string memory p0, string memory p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2)); | |
} | |
function log(string memory p0, bool p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256)", p0, p1, p2)); | |
} | |
function log(string memory p0, bool p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2)); | |
} | |
function log(string memory p0, bool p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2)); | |
} | |
function log(string memory p0, bool p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2)); | |
} | |
function log(string memory p0, address p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256)", p0, p1, p2)); | |
} | |
function log(string memory p0, address p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2)); | |
} | |
function log(string memory p0, address p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2)); | |
} | |
function log(string memory p0, address p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2)); | |
} | |
function log(bool p0, uint256 p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256)", p0, p1, p2)); | |
} | |
function log(bool p0, uint256 p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string)", p0, p1, p2)); | |
} | |
function log(bool p0, uint256 p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool)", p0, p1, p2)); | |
} | |
function log(bool p0, uint256 p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address)", p0, p1, p2)); | |
} | |
function log(bool p0, string memory p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256)", p0, p1, p2)); | |
} | |
function log(bool p0, string memory p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2)); | |
} | |
function log(bool p0, string memory p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2)); | |
} | |
function log(bool p0, string memory p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2)); | |
} | |
function log(bool p0, bool p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256)", p0, p1, p2)); | |
} | |
function log(bool p0, bool p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2)); | |
} | |
function log(bool p0, bool p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2)); | |
} | |
function log(bool p0, bool p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2)); | |
} | |
function log(bool p0, address p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256)", p0, p1, p2)); | |
} | |
function log(bool p0, address p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2)); | |
} | |
function log(bool p0, address p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2)); | |
} | |
function log(bool p0, address p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2)); | |
} | |
function log(address p0, uint256 p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256)", p0, p1, p2)); | |
} | |
function log(address p0, uint256 p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string)", p0, p1, p2)); | |
} | |
function log(address p0, uint256 p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool)", p0, p1, p2)); | |
} | |
function log(address p0, uint256 p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address)", p0, p1, p2)); | |
} | |
function log(address p0, string memory p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256)", p0, p1, p2)); | |
} | |
function log(address p0, string memory p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2)); | |
} | |
function log(address p0, string memory p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2)); | |
} | |
function log(address p0, string memory p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2)); | |
} | |
function log(address p0, bool p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256)", p0, p1, p2)); | |
} | |
function log(address p0, bool p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2)); | |
} | |
function log(address p0, bool p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2)); | |
} | |
function log(address p0, bool p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2)); | |
} | |
function log(address p0, address p1, uint256 p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256)", p0, p1, p2)); | |
} | |
function log(address p0, address p1, string memory p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2)); | |
} | |
function log(address p0, address p1, bool p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2)); | |
} | |
function log(address p0, address p1, address p2) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2)); | |
} | |
function log(uint256 p0, uint256 p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, uint256 p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, uint256 p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, uint256 p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, uint256 p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, uint256 p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, uint256 p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, uint256 p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,address)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, uint256 p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, uint256 p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, uint256 p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, uint256 p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, uint256 p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, uint256 p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, uint256 p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, uint256 p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,address)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,address)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, string memory p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,address)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,address)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, bool p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,address)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,address)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,string)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(uint256 p0, address p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, uint256 p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, string memory p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, bool p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(string memory p0, address p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, uint256 p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, string memory p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, bool p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(bool p0, address p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, uint256 p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, string memory p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, bool p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, uint256 p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, uint256 p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, uint256 p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, uint256 p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, string memory p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, string memory p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, string memory p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, string memory p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, bool p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, bool p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, bool p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, bool p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, address p2, uint256 p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint256)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, address p2, string memory p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, address p2, bool p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3)); | |
} | |
function log(address p0, address p1, address p2, address p3) internal pure { | |
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3)); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.4.22 <0.9.0; | |
library TestsAccounts { | |
function getAccount(uint index) pure public returns (address) { | |
return address(0); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.4.22 <0.9.0; | |
library Assert { | |
event AssertionEvent( | |
bool passed, | |
string message, | |
string methodName | |
); | |
event AssertionEventUint( | |
bool passed, | |
string message, | |
string methodName, | |
uint256 returned, | |
uint256 expected | |
); | |
event AssertionEventInt( | |
bool passed, | |
string message, | |
string methodName, | |
int256 returned, | |
int256 expected | |
); | |
event AssertionEventBool( | |
bool passed, | |
string message, | |
string methodName, | |
bool returned, | |
bool expected | |
); | |
event AssertionEventAddress( | |
bool passed, | |
string message, | |
string methodName, | |
address returned, | |
address expected | |
); | |
event AssertionEventBytes32( | |
bool passed, | |
string message, | |
string methodName, | |
bytes32 returned, | |
bytes32 expected | |
); | |
event AssertionEventString( | |
bool passed, | |
string message, | |
string methodName, | |
string returned, | |
string expected | |
); | |
event AssertionEventUintInt( | |
bool passed, | |
string message, | |
string methodName, | |
uint256 returned, | |
int256 expected | |
); | |
event AssertionEventIntUint( | |
bool passed, | |
string message, | |
string methodName, | |
int256 returned, | |
uint256 expected | |
); | |
function ok(bool a, string memory message) public returns (bool result) { | |
result = a; | |
emit AssertionEvent(result, message, "ok"); | |
} | |
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
result = (a == b); | |
emit AssertionEventUint(result, message, "equal", a, b); | |
} | |
function equal(int256 a, int256 b, string memory message) public returns (bool result) { | |
result = (a == b); | |
emit AssertionEventInt(result, message, "equal", a, b); | |
} | |
function equal(bool a, bool b, string memory message) public returns (bool result) { | |
result = (a == b); | |
emit AssertionEventBool(result, message, "equal", a, b); | |
} | |
// TODO: only for certain versions of solc | |
//function equal(fixed a, fixed b, string message) public returns (bool result) { | |
// result = (a == b); | |
// emit AssertionEvent(result, message); | |
//} | |
// TODO: only for certain versions of solc | |
//function equal(ufixed a, ufixed b, string message) public returns (bool result) { | |
// result = (a == b); | |
// emit AssertionEvent(result, message); | |
//} | |
function equal(address a, address b, string memory message) public returns (bool result) { | |
result = (a == b); | |
emit AssertionEventAddress(result, message, "equal", a, b); | |
} | |
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) { | |
result = (a == b); | |
emit AssertionEventBytes32(result, message, "equal", a, b); | |
} | |
function equal(string memory a, string memory b, string memory message) public returns (bool result) { | |
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b))); | |
emit AssertionEventString(result, message, "equal", a, b); | |
} | |
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
result = (a != b); | |
emit AssertionEventUint(result, message, "notEqual", a, b); | |
} | |
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) { | |
result = (a != b); | |
emit AssertionEventInt(result, message, "notEqual", a, b); | |
} | |
function notEqual(bool a, bool b, string memory message) public returns (bool result) { | |
result = (a != b); | |
emit AssertionEventBool(result, message, "notEqual", a, b); | |
} | |
// TODO: only for certain versions of solc | |
//function notEqual(fixed a, fixed b, string message) public returns (bool result) { | |
// result = (a != b); | |
// emit AssertionEvent(result, message); | |
//} | |
// TODO: only for certain versions of solc | |
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) { | |
// result = (a != b); | |
// emit AssertionEvent(result, message); | |
//} | |
function notEqual(address a, address b, string memory message) public returns (bool result) { | |
result = (a != b); | |
emit AssertionEventAddress(result, message, "notEqual", a, b); | |
} | |
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) { | |
result = (a != b); | |
emit AssertionEventBytes32(result, message, "notEqual", a, b); | |
} | |
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) { | |
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b))); | |
emit AssertionEventString(result, message, "notEqual", a, b); | |
} | |
/*----------------- Greater than --------------------*/ | |
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
result = (a > b); | |
emit AssertionEventUint(result, message, "greaterThan", a, b); | |
} | |
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) { | |
result = (a > b); | |
emit AssertionEventInt(result, message, "greaterThan", a, b); | |
} | |
// TODO: safely compare between uint and int | |
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) { | |
if(b < int(0)) { | |
// int is negative uint "a" always greater | |
result = true; | |
} else { | |
result = (a > uint(b)); | |
} | |
emit AssertionEventUintInt(result, message, "greaterThan", a, b); | |
} | |
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) { | |
if(a < int(0)) { | |
// int is negative uint "b" always greater | |
result = false; | |
} else { | |
result = (uint(a) > b); | |
} | |
emit AssertionEventIntUint(result, message, "greaterThan", a, b); | |
} | |
/*----------------- Lesser than --------------------*/ | |
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
result = (a < b); | |
emit AssertionEventUint(result, message, "lesserThan", a, b); | |
} | |
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) { | |
result = (a < b); | |
emit AssertionEventInt(result, message, "lesserThan", a, b); | |
} | |
// TODO: safely compare between uint and int | |
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) { | |
if(b < int(0)) { | |
// int is negative int "b" always lesser | |
result = false; | |
} else { | |
result = (a < uint(b)); | |
} | |
emit AssertionEventUintInt(result, message, "lesserThan", a, b); | |
} | |
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) { | |
if(a < int(0)) { | |
// int is negative int "a" always lesser | |
result = true; | |
} else { | |
result = (uint(a) < b); | |
} | |
emit AssertionEventIntUint(result, message, "lesserThan", a, b); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[core] | |
repositoryformatversion = 0 | |
filemode = false | |
bare = false | |
logallrefupdates = true | |
symlinks = false | |
ignorecase = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ref: refs/heads/main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"overrides": [ | |
{ | |
"files": "*.sol", | |
"options": { | |
"printWidth": 80, | |
"tabWidth": 4, | |
"useTabs": false, | |
"singleQuote": false, | |
"bracketSpacing": false | |
} | |
}, | |
{ | |
"files": "*.yml", | |
"options": {} | |
}, | |
{ | |
"files": "*.yaml", | |
"options": {} | |
}, | |
{ | |
"files": "*.toml", | |
"options": {} | |
}, | |
{ | |
"files": "*.json", | |
"options": {} | |
}, | |
{ | |
"files": "*.js", | |
"options": {} | |
}, | |
{ | |
"files": "*.ts", | |
"options": {} | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REMIX DEFAULT WORKSPACE | |
Remix default workspace is present when: | |
i. Remix loads for the very first time | |
ii. A new workspace is created with 'Default' template | |
iii. There are no files existing in the File Explorer | |
This workspace contains 3 directories: | |
1. 'contracts': Holds three contracts with increasing levels of complexity. | |
2. 'scripts': Contains four typescript files to deploy a contract. It is explained below. | |
3. 'tests': Contains one Solidity test file for 'Ballot' contract & one JS test file for 'Storage' contract. | |
SCRIPTS | |
The 'scripts' folder has four typescript files which help to deploy the 'Storage' contract using 'web3.js' and 'ethers.js' libraries. | |
For the deployment of any other contract, just update the contract name from 'Storage' to the desired contract and provide constructor arguments accordingly | |
in the file `deploy_with_ethers.ts` or `deploy_with_web3.ts` | |
In the 'tests' folder there is a script containing Mocha-Chai unit tests for 'Storage' contract. | |
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled. | |
Output from script will appear in remix terminal. | |
Please note, require/import is supported in a limited manner for Remix supported modules. | |
For now, modules supported by Remix are ethers, web3, swarmgw, chai, multihashes, remix and hardhat only for hardhat.ethers object/plugin. | |
For unsupported modules, an error like this will be thrown: '<module_name> module require is not supported by Remix IDE' will be shown. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"deploy": { | |
"VM:-": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"main:1": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"ropsten:3": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"rinkeby:4": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"kovan:42": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"goerli:5": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"Custom": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
} | |
}, | |
"data": { | |
"bytecode": { | |
"generatedSources": [ | |
{ | |
"ast": { | |
"nodeType": "YulBlock", | |
"src": "0:5157:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "153:183:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "163:74:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "229:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "234:2:6", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "170:58:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "170:67:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "163:3:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "258:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "263:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "254:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "254:11:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "267:33:6", | |
"type": "", | |
"value": "ERC20: mint to the zero address" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "247:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "247:54:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "247:54:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "311:19:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "322:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "327:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "318:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "318:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "311:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "141:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "149:3:6", | |
"type": "" | |
} | |
], | |
"src": "7:329:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "407:53:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "424:3:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "447:5:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "429:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "429:24:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "417:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "417:37:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "417:37:6" | |
} | |
] | |
}, | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "395:5:6", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "402:3:6", | |
"type": "" | |
} | |
], | |
"src": "342:118:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "637:248:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "647:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "659:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "670:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "655:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "655:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "647:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "694:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "705:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "690:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "690:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "713:4:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "719:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "709:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "709:20:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "683:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "683:47:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "683:47:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "739:139:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "873:4:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "747:124:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "747:131:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "739:4:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "617:9:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "632:4:6", | |
"type": "" | |
} | |
], | |
"src": "466:419:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "989:124:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "999:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "1011:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1022:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1007:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1007:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "999:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "1079:6:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "1092:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1103:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1088:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1088:17:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "1035:43:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1035:71:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1035:71:6" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "961:9:6", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "973:6:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "984:4:6", | |
"type": "" | |
} | |
], | |
"src": "891:222:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1215:73:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "1232:3:6" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1237:6:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "1225:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1225:19:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1225:19:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1253:29:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "1272:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1277:4:6", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1268:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1268:14:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "1253:11:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "1187:3:6", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "1192:6:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "1203:11:6", | |
"type": "" | |
} | |
], | |
"src": "1119:169:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1338:261:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1348:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "1371:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "1353:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1353:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "1348:1:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1382:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "1405:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "1387:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1387:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "1382:1:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1545:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "1547:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1547:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1547:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "1466:1:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1473:66:6", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "1541:1:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "1469:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1469:74:6" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "1463:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1463:81:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "1460:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1577:16:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "1588:1:6" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "1591:1:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1584:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1584:9:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulIdentifier", | |
"src": "1577:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_add_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "1325:1:6", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "1328:1:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulTypedName", | |
"src": "1334:3:6", | |
"type": "" | |
} | |
], | |
"src": "1294:305:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1678:775:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1688:15:6", | |
"value": { | |
"name": "_power", | |
"nodeType": "YulIdentifier", | |
"src": "1697:6:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "1688:5:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1712:14:6", | |
"value": { | |
"name": "_base", | |
"nodeType": "YulIdentifier", | |
"src": "1721:5:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "1712:4:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1770:677:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1858:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "1860:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1860:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1860:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "1836:4:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "max", | |
"nodeType": "YulIdentifier", | |
"src": "1846:3:6" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "1851:4:6" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "1842:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1842:14:6" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "1833:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1833:24:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "1830:2:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1925:419:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2305:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "2318:5:6" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "2325:4:6" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nodeType": "YulIdentifier", | |
"src": "2314:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2314:16:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "2305:5:6" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "1900:8:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1910:1:6", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "1896:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1896:16:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "1893:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2357:23:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "2369:4:6" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "2375:4:6" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nodeType": "YulIdentifier", | |
"src": "2365:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2365:15:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "2357:4:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2393:44:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "2428:8:6" | |
} | |
], | |
"functionName": { | |
"name": "shift_right_1_unsigned", | |
"nodeType": "YulIdentifier", | |
"src": "2405:22:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2405:32:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "2393:8:6" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "1746:8:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1756:1:6", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "1743:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1743:15:6" | |
}, | |
"nodeType": "YulForLoop", | |
"post": { | |
"nodeType": "YulBlock", | |
"src": "1759:2:6", | |
"statements": [] | |
}, | |
"pre": { | |
"nodeType": "YulBlock", | |
"src": "1739:3:6", | |
"statements": [] | |
}, | |
"src": "1735:712:6" | |
} | |
] | |
}, | |
"name": "checked_exp_helper", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "_power", | |
"nodeType": "YulTypedName", | |
"src": "1633:6:6", | |
"type": "" | |
}, | |
{ | |
"name": "_base", | |
"nodeType": "YulTypedName", | |
"src": "1641:5:6", | |
"type": "" | |
}, | |
{ | |
"name": "exponent", | |
"nodeType": "YulTypedName", | |
"src": "1648:8:6", | |
"type": "" | |
}, | |
{ | |
"name": "max", | |
"nodeType": "YulTypedName", | |
"src": "1658:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "power", | |
"nodeType": "YulTypedName", | |
"src": "1666:5:6", | |
"type": "" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulTypedName", | |
"src": "1673:4:6", | |
"type": "" | |
} | |
], | |
"src": "1605:848:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2523:217:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2533:31:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "2559:4:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "2541:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2541:23:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "2533:4:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2573:37:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "2601:8:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint8", | |
"nodeType": "YulIdentifier", | |
"src": "2585:15:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2585:25:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "2573:8:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2620:113:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "2650:4:6" | |
}, | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "2656:8:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2666:66:6", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "checked_exp_unsigned", | |
"nodeType": "YulIdentifier", | |
"src": "2629:20:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2629:104:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "2620:5:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_exp_t_uint256_t_uint8", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "base", | |
"nodeType": "YulTypedName", | |
"src": "2498:4:6", | |
"type": "" | |
}, | |
{ | |
"name": "exponent", | |
"nodeType": "YulTypedName", | |
"src": "2504:8:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "power", | |
"nodeType": "YulTypedName", | |
"src": "2517:5:6", | |
"type": "" | |
} | |
], | |
"src": "2459:281:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2806:1013:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3001:20:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3003:10:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3012:1:6", | |
"type": "", | |
"value": "1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3003:5:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulLeave", | |
"src": "3014:5:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "2991:8:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "2984:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2984:16:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "2981:2:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3046:20:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3048:10:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3057:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3048:5:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulLeave", | |
"src": "3059:5:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3040:4:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "3033:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3033:12:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "3030:2:6" | |
}, | |
{ | |
"cases": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3176:20:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3178:10:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3187:1:6", | |
"type": "", | |
"value": "1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3178:5:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulLeave", | |
"src": "3189:5:6" | |
} | |
] | |
}, | |
"nodeType": "YulCase", | |
"src": "3169:27:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3174:1:6", | |
"type": "", | |
"value": "1" | |
} | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3220:176:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3255:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "3257:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3257:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3257:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "3240:8:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3250:3:6", | |
"type": "", | |
"value": "255" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "3237:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3237:17:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "3234:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3290:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3303:1:6", | |
"type": "", | |
"value": "2" | |
}, | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "3306:8:6" | |
} | |
], | |
"functionName": { | |
"name": "exp", | |
"nodeType": "YulIdentifier", | |
"src": "3299:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3299:16:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3290:5:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3346:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "3348:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3348:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3348:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3334:5:6" | |
}, | |
{ | |
"name": "max", | |
"nodeType": "YulIdentifier", | |
"src": "3341:3:6" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "3331:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3331:14:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "3328:2:6" | |
}, | |
{ | |
"nodeType": "YulLeave", | |
"src": "3381:5:6" | |
} | |
] | |
}, | |
"nodeType": "YulCase", | |
"src": "3205:191:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3210:1:6", | |
"type": "", | |
"value": "2" | |
} | |
} | |
], | |
"expression": { | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3126:4:6" | |
}, | |
"nodeType": "YulSwitch", | |
"src": "3119:277:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3528:123:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3542:28:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3555:4:6" | |
}, | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "3561:8:6" | |
} | |
], | |
"functionName": { | |
"name": "exp", | |
"nodeType": "YulIdentifier", | |
"src": "3551:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3551:19:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3542:5:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3601:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "3603:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3603:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3603:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3589:5:6" | |
}, | |
{ | |
"name": "max", | |
"nodeType": "YulIdentifier", | |
"src": "3596:3:6" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "3586:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3586:14:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "3583:2:6" | |
}, | |
{ | |
"nodeType": "YulLeave", | |
"src": "3636:5:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3431:4:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3437:2:6", | |
"type": "", | |
"value": "11" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "3428:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3428:12:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "3445:8:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3455:2:6", | |
"type": "", | |
"value": "78" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "3442:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3442:16:6" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "3424:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3424:35:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3480:4:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3486:3:6", | |
"type": "", | |
"value": "307" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "3477:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3477:13:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "3495:8:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3505:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "3492:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3492:16:6" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "3473:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3473:36:6" | |
} | |
], | |
"functionName": { | |
"name": "or", | |
"nodeType": "YulIdentifier", | |
"src": "3408:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3408:111:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "3405:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3661:57:6", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3695:1:6", | |
"type": "", | |
"value": "1" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3698:4:6" | |
}, | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "3704:8:6" | |
}, | |
{ | |
"name": "max", | |
"nodeType": "YulIdentifier", | |
"src": "3714:3:6" | |
} | |
], | |
"functionName": { | |
"name": "checked_exp_helper", | |
"nodeType": "YulIdentifier", | |
"src": "3676:18:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3676:42:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3661:5:6" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3668:4:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3757:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "3759:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3759:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3759:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3734:5:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "max", | |
"nodeType": "YulIdentifier", | |
"src": "3745:3:6" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3750:4:6" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "3741:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3741:14:6" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "3731:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3731:25:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "3728:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3788:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3801:5:6" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3808:4:6" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nodeType": "YulIdentifier", | |
"src": "3797:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3797:16:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3788:5:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_exp_unsigned", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "base", | |
"nodeType": "YulTypedName", | |
"src": "2776:4:6", | |
"type": "" | |
}, | |
{ | |
"name": "exponent", | |
"nodeType": "YulTypedName", | |
"src": "2782:8:6", | |
"type": "" | |
}, | |
{ | |
"name": "max", | |
"nodeType": "YulTypedName", | |
"src": "2792:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "power", | |
"nodeType": "YulTypedName", | |
"src": "2800:5:6", | |
"type": "" | |
} | |
], | |
"src": "2746:1073:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3873:300:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3883:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "3906:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "3888:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3888:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "3883:1:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3917:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "3940:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "3922:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3922:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "3917:1:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4115:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "4117:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4117:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4117:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4027:1:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "4020:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4020:9:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "4013:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4013:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "4035:1:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4042:66:6", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
}, | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4110:1:6" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "4038:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4038:74:6" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "4032:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4032:81:6" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "4009:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4009:105:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "4006:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4147:20:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4162:1:6" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "4165:1:6" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nodeType": "YulIdentifier", | |
"src": "4158:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4158:9:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "product", | |
"nodeType": "YulIdentifier", | |
"src": "4147:7:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_mul_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "3856:1:6", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "3859:1:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "product", | |
"nodeType": "YulTypedName", | |
"src": "3865:7:6", | |
"type": "" | |
} | |
], | |
"src": "3825:348:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4224:32:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4234:16:6", | |
"value": { | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4245:5:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "4234:7:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "4206:5:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "4216:7:6", | |
"type": "" | |
} | |
], | |
"src": "4179:77:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4305:43:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4315:27:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4330:5:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4337:4:6", | |
"type": "", | |
"value": "0xff" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "4326:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4326:16:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "4315:7:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint8", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "4287:5:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "4297:7:6", | |
"type": "" | |
} | |
], | |
"src": "4262:86:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4405:269:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4415:22:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "4429:4:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4435:1:6", | |
"type": "", | |
"value": "2" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "4425:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4425:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "4415:6:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "4446:38:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "4476:4:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4482:1:6", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "4472:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4472:12:6" | |
}, | |
"variables": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulTypedName", | |
"src": "4450:18:6", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4523:51:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4537:27:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "4551:6:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4559:4:6", | |
"type": "", | |
"value": "0x7f" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "4547:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4547:17:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "4537:6:6" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulIdentifier", | |
"src": "4503:18:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "4496:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4496:26:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "4493:2:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4626:42:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x22", | |
"nodeType": "YulIdentifier", | |
"src": "4640:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4640:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4640:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulIdentifier", | |
"src": "4590:18:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "4613:6:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4621:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "4610:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4610:14:6" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "4587:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4587:38:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "4584:2:6" | |
} | |
] | |
}, | |
"name": "extract_byte_array_length", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "data", | |
"nodeType": "YulTypedName", | |
"src": "4389:4:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "4398:6:6", | |
"type": "" | |
} | |
], | |
"src": "4354:320:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4708:152:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4725:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4728:77:6", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4718:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4718:88:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4718:88:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4822:1:6", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4825:4:6", | |
"type": "", | |
"value": "0x11" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4815:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4815:15:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4815:15:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4846:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4849:4:6", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "4839:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4839:15:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4839:15:6" | |
} | |
] | |
}, | |
"name": "panic_error_0x11", | |
"nodeType": "YulFunctionDefinition", | |
"src": "4680:180:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4894:152:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4911:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4914:77:6", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4904:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4904:88:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4904:88:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5008:1:6", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5011:4:6", | |
"type": "", | |
"value": "0x22" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "5001:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5001:15:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5001:15:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5032:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5035:4:6", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "5025:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5025:15:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5025:15:6" | |
} | |
] | |
}, | |
"name": "panic_error_0x22", | |
"nodeType": "YulFunctionDefinition", | |
"src": "4866:180:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5103:51:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5113:34:6", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5138:1:6", | |
"type": "", | |
"value": "1" | |
}, | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "5141:5:6" | |
} | |
], | |
"functionName": { | |
"name": "shr", | |
"nodeType": "YulIdentifier", | |
"src": "5134:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5134:13:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "newValue", | |
"nodeType": "YulIdentifier", | |
"src": "5113:8:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "shift_right_1_unsigned", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "5084:5:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "newValue", | |
"nodeType": "YulTypedName", | |
"src": "5094:8:6", | |
"type": "" | |
} | |
], | |
"src": "5052:102:6" | |
} | |
] | |
}, | |
"contents": "{\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n\n mstore(add(pos, 0), \"ERC20: mint to the zero address\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function 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 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": 6, | |
"language": "Yul", | |
"name": "#utility.yul" | |
} | |
], | |
"linkReferences": {}, | |
"object": "608060405260056006553480156200001657600080fd5b506040518060400160405280600881526020017f4661696c4c656f6e0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f464c4e000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009b92919062000404565b508060049080519060200190620000b492919062000404565b505050620000d7620000cb620001b560201b60201c565b620001bd60201b60201c565b6200011733620000ec6200028360201b60201c565b600a620000fa91906200060f565b639502f9006200010b91906200074c565b6200028c60201b60201c565b61dead600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737059f42396411106d99b0e9c18e66c009cca80d1600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000865565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f69062000507565b60405180910390fd5b6200031360008383620003fa60201b60201c565b806002600082825462000327919062000557565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003da919062000529565b60405180910390a3620003f660008383620003ff60201b60201c565b5050565b505050565b505050565b8280546200041290620007c4565b90600052602060002090601f01602090048101928262000436576000855562000482565b82601f106200045157805160ff191683800117855562000482565b8280016001018555821562000482579182015b828111156200048157825182559160200191906001019062000464565b5b50905062000491919062000495565b5090565b5b80821115620004b057600081600090555060010162000496565b5090565b6000620004c3601f8362000546565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200050181620007ad565b82525050565b600060208201905081810360008301526200052281620004b4565b9050919050565b6000602082019050620005406000830184620004f6565b92915050565b600082825260208201905092915050565b60006200056482620007ad565b91506200057183620007ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005a957620005a8620007fa565b5b828201905092915050565b6000808291508390505b60018511156200060657808604811115620005de57620005dd620007fa565b5b6001851615620005ee5780820291505b8081029050620005fe8562000858565b9450620005be565b94509492505050565b60006200061c82620007ad565b91506200062983620007b7565b9250620006587fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000660565b905092915050565b60008262000672576001905062000745565b8162000682576000905062000745565b81600181146200069b5760028114620006a657620006dc565b600191505062000745565b60ff841115620006bb57620006ba620007fa565b5b8360020a915084821115620006d557620006d4620007fa565b5b5062000745565b5060208310610133831016604e8410600b8410161715620007165782820a90508381111562000710576200070f620007fa565b5b62000745565b620007258484846001620005b4565b925090508184048111156200073f576200073e620007fa565b5b81810290505b9392505050565b60006200075982620007ad565b91506200076683620007ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007a257620007a1620007fa565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620007dd57607f821691505b60208210811415620007f457620007f362000829565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b61198f80620008756000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461030e578063c6d69a301461033e578063d46980161461035a578063dd62ed3e14610378578063f2fde38b146103a857610121565b8063715018a61461027a578063771a3a1d146102845780638da5cb5b146102a257806395d89b41146102c0578063a457c2d7146102de57610121565b806323b872dd116100f457806323b872dd146101b0578063296f0a0c146101e0578063313ce567146101fc578063395093511461021a57806370a082311461024a57610121565b8063062287491461012657806306fdde0314610144578063095ea7b31461016257806318160ddd14610192575b600080fd5b61012e6103c4565b60405161013b91906114d4565b60405180910390f35b61014c6103ea565b604051610159919061150a565b60405180910390f35b61017c60048036038101906101779190611070565b61047c565b60405161018991906114ef565b60405180910390f35b61019a61049f565b6040516101a7919061166c565b60405180910390f35b6101ca60048036038101906101c59190611021565b6104a9565b6040516101d791906114ef565b60405180910390f35b6101fa60048036038101906101f59190610fbc565b6104d8565b005b610204610524565b6040516102119190611687565b60405180910390f35b610234600480360381019061022f9190611070565b61052d565b60405161024191906114ef565b60405180910390f35b610264600480360381019061025f9190610fbc565b610564565b604051610271919061166c565b60405180910390f35b6102826105ac565b005b61028c6105c0565b604051610299919061166c565b60405180910390f35b6102aa6105c6565b6040516102b791906114d4565b60405180910390f35b6102c86105f0565b6040516102d5919061150a565b60405180910390f35b6102f860048036038101906102f39190611070565b610682565b60405161030591906114ef565b60405180910390f35b61032860048036038101906103239190611070565b6106f9565b60405161033591906114ef565b60405180910390f35b610358600480360381019061035391906110ac565b61071c565b005b610362610772565b60405161036f91906114d4565b60405180910390f35b610392600480360381019061038d9190610fe5565b610798565b60405161039f919061166c565b60405180910390f35b6103c260048036038101906103bd9190610fbc565b61081f565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546103f99061185b565b80601f01602080910402602001604051908101604052809291908181526020018280546104259061185b565b80156104725780601f1061044757610100808354040283529160200191610472565b820191906000526020600020905b81548152906001019060200180831161045557829003601f168201915b5050505050905090565b6000806104876108a3565b90506104948185856108ab565b600191505092915050565b6000600254905090565b6000806104b46108a3565b90506104c1858285610a76565b6104cc858585610b02565b60019150509392505050565b6104e0610bcc565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b6000806105386108a3565b905061055981858561054a8589610798565b61055491906116be565b6108ab565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b4610bcc565b6105be6000610c4a565b565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105ff9061185b565b80601f016020809104026020016040519081016040528092919081815260200182805461062b9061185b565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b60008061068d6108a3565b9050600061069b8286610798565b9050838110156106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d79061164c565b60405180910390fd5b6106ed82868684036108ab565b60019250505092915050565b6000806107046108a3565b9050610711818585610b02565b600191505092915050565b610724610bcc565b600a811115610768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075f906115cc565b60405180910390fd5b8060068190555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610827610bcc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e9061154c565b60405180910390fd5b6108a081610c4a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109129061162c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561098b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109829061156c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a69919061166c565b60405180910390a3505050565b6000610a828484610798565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610afc5781811015610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae59061158c565b60405180910390fd5b610afb84848484036108ab565b5b50505050565b6000606460065483610b149190611745565b610b1e9190611714565b905060008183610b2e919061179f565b9050610b7585600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166005600286610b669190611745565b610b709190611714565b610d10565b610bba85600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166005600386610bab9190611745565b610bb59190611714565b610d10565b610bc5858583610d10565b5050505050565b610bd46108a3565b73ffffffffffffffffffffffffffffffffffffffff16610bf26105c6565b73ffffffffffffffffffffffffffffffffffffffff1614610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f906115ec565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d779061160c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de79061152c565b60405180910390fd5b610dfb838383610f88565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e78906115ac565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f6f919061166c565b60405180910390a3610f82848484610f8d565b50505050565b505050565b505050565b600081359050610fa18161192b565b92915050565b600081359050610fb681611942565b92915050565b600060208284031215610fce57600080fd5b6000610fdc84828501610f92565b91505092915050565b60008060408385031215610ff857600080fd5b600061100685828601610f92565b925050602061101785828601610f92565b9150509250929050565b60008060006060848603121561103657600080fd5b600061104486828701610f92565b935050602061105586828701610f92565b925050604061106686828701610fa7565b9150509250925092565b6000806040838503121561108357600080fd5b600061109185828601610f92565b92505060206110a285828601610fa7565b9150509250929050565b6000602082840312156110be57600080fd5b60006110cc84828501610fa7565b91505092915050565b6110de816117d3565b82525050565b6110ed816117e5565b82525050565b60006110fe826116a2565b61110881856116ad565b9350611118818560208601611828565b6111218161191a565b840191505092915050565b60006111396023836116ad565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061119f6026836116ad565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112056022836116ad565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061126b601d836116ad565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006112ab6026836116ad565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611311600f836116ad565b91507f54617861206d7569746f20616c746100000000000000000000000000000000006000830152602082019050919050565b60006113516020836116ad565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006113916025836116ad565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113f76024836116ad565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061145d6025836116ad565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6114bf81611811565b82525050565b6114ce8161181b565b82525050565b60006020820190506114e960008301846110d5565b92915050565b600060208201905061150460008301846110e4565b92915050565b6000602082019050818103600083015261152481846110f3565b905092915050565b600060208201905081810360008301526115458161112c565b9050919050565b6000602082019050818103600083015261156581611192565b9050919050565b60006020820190508181036000830152611585816111f8565b9050919050565b600060208201905081810360008301526115a58161125e565b9050919050565b600060208201905081810360008301526115c58161129e565b9050919050565b600060208201905081810360008301526115e581611304565b9050919050565b6000602082019050818103600083015261160581611344565b9050919050565b6000602082019050818103600083015261162581611384565b9050919050565b60006020820190508181036000830152611645816113ea565b9050919050565b6000602082019050818103600083015261166581611450565b9050919050565b600060208201905061168160008301846114b6565b92915050565b600060208201905061169c60008301846114c5565b92915050565b600081519050919050565b600082825260208201905092915050565b60006116c982611811565b91506116d483611811565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117095761170861188d565b5b828201905092915050565b600061171f82611811565b915061172a83611811565b92508261173a576117396118bc565b5b828204905092915050565b600061175082611811565b915061175b83611811565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156117945761179361188d565b5b828202905092915050565b60006117aa82611811565b91506117b583611811565b9250828210156117c8576117c761188d565b5b828203905092915050565b60006117de826117f1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561184657808201518184015260208101905061182b565b83811115611855576000848401525b50505050565b6000600282049050600182168061187357607f821691505b60208210811415611887576118866118eb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611934816117d3565b811461193f57600080fd5b50565b61194b81611811565b811461195657600080fd5b5056fea264697066735822122029a261b965a5fc17a346fefeacab6ae400b1ec2e127601b6c9d2045d0430248264736f6c63430008000033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x5 PUSH1 0x6 SSTORE CALLVALUE DUP1 ISZERO PUSH3 0x16 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x8 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4661696C4C656F6E000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x464C4E0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x9B SWAP3 SWAP2 SWAP1 PUSH3 0x404 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xB4 SWAP3 SWAP2 SWAP1 PUSH3 0x404 JUMP JUMPDEST POP POP POP PUSH3 0xD7 PUSH3 0xCB PUSH3 0x1B5 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x1BD PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x117 CALLER PUSH3 0xEC PUSH3 0x283 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0xA PUSH3 0xFA SWAP2 SWAP1 PUSH3 0x60F JUMP JUMPDEST PUSH4 0x9502F900 PUSH3 0x10B SWAP2 SWAP1 PUSH3 0x74C JUMP JUMPDEST PUSH3 0x28C PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0xDEAD PUSH1 0x7 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH20 0x7059F42396411106D99B0E9C18E66C009CCA80D1 PUSH1 0x8 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH3 0x865 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x2FF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x2F6 SWAP1 PUSH3 0x507 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x313 PUSH1 0x0 DUP4 DUP4 PUSH3 0x3FA PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x327 SWAP2 SWAP1 PUSH3 0x557 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x3DA SWAP2 SWAP1 PUSH3 0x529 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH3 0x3F6 PUSH1 0x0 DUP4 DUP4 PUSH3 0x3FF PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x412 SWAP1 PUSH3 0x7C4 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x436 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x482 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x451 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x482 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x482 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x481 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x464 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x491 SWAP2 SWAP1 PUSH3 0x495 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x4B0 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x496 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4C3 PUSH1 0x1F DUP4 PUSH3 0x546 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x501 DUP2 PUSH3 0x7AD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x522 DUP2 PUSH3 0x4B4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x540 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x4F6 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 0x564 DUP3 PUSH3 0x7AD JUMP JUMPDEST SWAP2 POP PUSH3 0x571 DUP4 PUSH3 0x7AD JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x5A9 JUMPI PUSH3 0x5A8 PUSH3 0x7FA 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 0x606 JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH3 0x5DE JUMPI PUSH3 0x5DD PUSH3 0x7FA JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH3 0x5EE JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH3 0x5FE DUP6 PUSH3 0x858 JUMP JUMPDEST SWAP5 POP PUSH3 0x5BE JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x61C DUP3 PUSH3 0x7AD JUMP JUMPDEST SWAP2 POP PUSH3 0x629 DUP4 PUSH3 0x7B7 JUMP JUMPDEST SWAP3 POP PUSH3 0x658 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH3 0x660 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH3 0x672 JUMPI PUSH1 0x1 SWAP1 POP PUSH3 0x745 JUMP JUMPDEST DUP2 PUSH3 0x682 JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0x745 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH3 0x69B JUMPI PUSH1 0x2 DUP2 EQ PUSH3 0x6A6 JUMPI PUSH3 0x6DC JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH3 0x745 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH3 0x6BB JUMPI PUSH3 0x6BA PUSH3 0x7FA JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH3 0x6D5 JUMPI PUSH3 0x6D4 PUSH3 0x7FA JUMP JUMPDEST JUMPDEST POP PUSH3 0x745 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH3 0x716 JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH3 0x710 JUMPI PUSH3 0x70F PUSH3 0x7FA JUMP JUMPDEST JUMPDEST PUSH3 0x745 JUMP JUMPDEST PUSH3 0x725 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH3 0x5B4 JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH3 0x73F JUMPI PUSH3 0x73E PUSH3 0x7FA JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x759 DUP3 PUSH3 0x7AD JUMP JUMPDEST SWAP2 POP PUSH3 0x766 DUP4 PUSH3 0x7AD JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0x7A2 JUMPI PUSH3 0x7A1 PUSH3 0x7FA JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP 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 0x7DD JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x7F4 JUMPI PUSH3 0x7F3 PUSH3 0x829 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 PUSH2 0x198F DUP1 PUSH3 0x875 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x121 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0xAD JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x30E JUMPI DUP1 PUSH4 0xC6D69A30 EQ PUSH2 0x33E JUMPI DUP1 PUSH4 0xD4698016 EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x378 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x3A8 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x27A JUMPI DUP1 PUSH4 0x771A3A1D EQ PUSH2 0x284 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2A2 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x2C0 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x2DE JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xF4 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1B0 JUMPI DUP1 PUSH4 0x296F0A0C EQ PUSH2 0x1E0 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x21A JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x24A JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x6228749 EQ PUSH2 0x126 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x144 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x162 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x192 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12E PUSH2 0x3C4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x14D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x14C PUSH2 0x3EA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x159 SWAP2 SWAP1 PUSH2 0x150A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x177 SWAP2 SWAP1 PUSH2 0x1070 JUMP JUMPDEST PUSH2 0x47C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x189 SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x19A PUSH2 0x49F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A7 SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C5 SWAP2 SWAP1 PUSH2 0x1021 JUMP JUMPDEST PUSH2 0x4A9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D7 SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F5 SWAP2 SWAP1 PUSH2 0xFBC JUMP JUMPDEST PUSH2 0x4D8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x204 PUSH2 0x524 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x211 SWAP2 SWAP1 PUSH2 0x1687 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x234 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22F SWAP2 SWAP1 PUSH2 0x1070 JUMP JUMPDEST PUSH2 0x52D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x241 SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x264 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25F SWAP2 SWAP1 PUSH2 0xFBC JUMP JUMPDEST PUSH2 0x564 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x271 SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x282 PUSH2 0x5AC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x28C PUSH2 0x5C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x299 SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2AA PUSH2 0x5C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B7 SWAP2 SWAP1 PUSH2 0x14D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C8 PUSH2 0x5F0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D5 SWAP2 SWAP1 PUSH2 0x150A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F3 SWAP2 SWAP1 PUSH2 0x1070 JUMP JUMPDEST PUSH2 0x682 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x305 SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x328 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x323 SWAP2 SWAP1 PUSH2 0x1070 JUMP JUMPDEST PUSH2 0x6F9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x358 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x353 SWAP2 SWAP1 PUSH2 0x10AC JUMP JUMPDEST PUSH2 0x71C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x362 PUSH2 0x772 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x36F SWAP2 SWAP1 PUSH2 0x14D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x392 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x38D SWAP2 SWAP1 PUSH2 0xFE5 JUMP JUMPDEST PUSH2 0x798 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x39F SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3C2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3BD SWAP2 SWAP1 PUSH2 0xFBC JUMP JUMPDEST PUSH2 0x81F JUMP JUMPDEST STOP JUMPDEST PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x3F9 SWAP1 PUSH2 0x185B 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 0x425 SWAP1 PUSH2 0x185B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x472 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x447 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x472 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 0x455 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x487 PUSH2 0x8A3 JUMP JUMPDEST SWAP1 POP PUSH2 0x494 DUP2 DUP6 DUP6 PUSH2 0x8AB JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x4B4 PUSH2 0x8A3 JUMP JUMPDEST SWAP1 POP PUSH2 0x4C1 DUP6 DUP3 DUP6 PUSH2 0xA76 JUMP JUMPDEST PUSH2 0x4CC DUP6 DUP6 DUP6 PUSH2 0xB02 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x4E0 PUSH2 0xBCC JUMP JUMPDEST DUP1 PUSH1 0x8 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 PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x538 PUSH2 0x8A3 JUMP JUMPDEST SWAP1 POP PUSH2 0x559 DUP2 DUP6 DUP6 PUSH2 0x54A DUP6 DUP10 PUSH2 0x798 JUMP JUMPDEST PUSH2 0x554 SWAP2 SWAP1 PUSH2 0x16BE JUMP JUMPDEST PUSH2 0x8AB JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x5B4 PUSH2 0xBCC JUMP JUMPDEST PUSH2 0x5BE PUSH1 0x0 PUSH2 0xC4A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 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 0x5FF SWAP1 PUSH2 0x185B 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 0x62B SWAP1 PUSH2 0x185B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x678 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x64D JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x678 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 0x65B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x68D PUSH2 0x8A3 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x69B DUP3 DUP7 PUSH2 0x798 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x6E0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D7 SWAP1 PUSH2 0x164C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6ED DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x8AB JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x704 PUSH2 0x8A3 JUMP JUMPDEST SWAP1 POP PUSH2 0x711 DUP2 DUP6 DUP6 PUSH2 0xB02 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x724 PUSH2 0xBCC JUMP JUMPDEST PUSH1 0xA DUP2 GT ISZERO PUSH2 0x768 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75F SWAP1 PUSH2 0x15CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x6 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x8 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 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 0x827 PUSH2 0xBCC JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x897 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x88E SWAP1 PUSH2 0x154C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8A0 DUP2 PUSH2 0xC4A JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x91B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x912 SWAP1 PUSH2 0x162C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x98B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x982 SWAP1 PUSH2 0x156C 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 0xA69 SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA82 DUP5 DUP5 PUSH2 0x798 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0xAFC JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xAEE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAE5 SWAP1 PUSH2 0x158C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xAFB DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x8AB JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x64 PUSH1 0x6 SLOAD DUP4 PUSH2 0xB14 SWAP2 SWAP1 PUSH2 0x1745 JUMP JUMPDEST PUSH2 0xB1E SWAP2 SWAP1 PUSH2 0x1714 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 DUP4 PUSH2 0xB2E SWAP2 SWAP1 PUSH2 0x179F JUMP JUMPDEST SWAP1 POP PUSH2 0xB75 DUP6 PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x2 DUP7 PUSH2 0xB66 SWAP2 SWAP1 PUSH2 0x1745 JUMP JUMPDEST PUSH2 0xB70 SWAP2 SWAP1 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0xD10 JUMP JUMPDEST PUSH2 0xBBA DUP6 PUSH1 0x8 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x3 DUP7 PUSH2 0xBAB SWAP2 SWAP1 PUSH2 0x1745 JUMP JUMPDEST PUSH2 0xBB5 SWAP2 SWAP1 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0xD10 JUMP JUMPDEST PUSH2 0xBC5 DUP6 DUP6 DUP4 PUSH2 0xD10 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0xBD4 PUSH2 0x8A3 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xBF2 PUSH2 0x5C6 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xC48 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC3F SWAP1 PUSH2 0x15EC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD80 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD77 SWAP1 PUSH2 0x160C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xDF0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDE7 SWAP1 PUSH2 0x152C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDFB DUP4 DUP4 DUP4 PUSH2 0xF88 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 0xE81 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE78 SWAP1 PUSH2 0x15AC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xF6F SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xF82 DUP5 DUP5 DUP5 PUSH2 0xF8D JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xFA1 DUP2 PUSH2 0x192B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xFB6 DUP2 PUSH2 0x1942 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFCE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xFDC DUP5 DUP3 DUP6 ADD PUSH2 0xF92 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFF8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1006 DUP6 DUP3 DUP7 ADD PUSH2 0xF92 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1017 DUP6 DUP3 DUP7 ADD PUSH2 0xF92 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 0x1036 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1044 DUP7 DUP3 DUP8 ADD PUSH2 0xF92 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1055 DUP7 DUP3 DUP8 ADD PUSH2 0xF92 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1066 DUP7 DUP3 DUP8 ADD PUSH2 0xFA7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1083 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1091 DUP6 DUP3 DUP7 ADD PUSH2 0xF92 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x10A2 DUP6 DUP3 DUP7 ADD PUSH2 0xFA7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x10CC DUP5 DUP3 DUP6 ADD PUSH2 0xFA7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x10DE DUP2 PUSH2 0x17D3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x10ED DUP2 PUSH2 0x17E5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10FE DUP3 PUSH2 0x16A2 JUMP JUMPDEST PUSH2 0x1108 DUP2 DUP6 PUSH2 0x16AD JUMP JUMPDEST SWAP4 POP PUSH2 0x1118 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1828 JUMP JUMPDEST PUSH2 0x1121 DUP2 PUSH2 0x191A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1139 PUSH1 0x23 DUP4 PUSH2 0x16AD 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 0x119F PUSH1 0x26 DUP4 PUSH2 0x16AD 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 0x1205 PUSH1 0x22 DUP4 PUSH2 0x16AD 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 0x126B PUSH1 0x1D DUP4 PUSH2 0x16AD JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12AB PUSH1 0x26 DUP4 PUSH2 0x16AD 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 0x1311 PUSH1 0xF DUP4 PUSH2 0x16AD JUMP JUMPDEST SWAP2 POP PUSH32 0x54617861206D7569746F20616C74610000000000000000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1351 PUSH1 0x20 DUP4 PUSH2 0x16AD 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 0x1391 PUSH1 0x25 DUP4 PUSH2 0x16AD 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 0x13F7 PUSH1 0x24 DUP4 PUSH2 0x16AD 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 0x145D PUSH1 0x25 DUP4 PUSH2 0x16AD 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 0x14BF DUP2 PUSH2 0x1811 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x14CE DUP2 PUSH2 0x181B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x14E9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x10D5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1504 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x10E4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1524 DUP2 DUP5 PUSH2 0x10F3 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 0x1545 DUP2 PUSH2 0x112C 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 0x1565 DUP2 PUSH2 0x1192 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 0x1585 DUP2 PUSH2 0x11F8 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 0x15A5 DUP2 PUSH2 0x125E 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 0x15C5 DUP2 PUSH2 0x129E 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 0x15E5 DUP2 PUSH2 0x1304 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 0x1605 DUP2 PUSH2 0x1344 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 0x1625 DUP2 PUSH2 0x1384 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 0x1645 DUP2 PUSH2 0x13EA 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 0x1665 DUP2 PUSH2 0x1450 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1681 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x14B6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x169C PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x14C5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16C9 DUP3 PUSH2 0x1811 JUMP JUMPDEST SWAP2 POP PUSH2 0x16D4 DUP4 PUSH2 0x1811 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1709 JUMPI PUSH2 0x1708 PUSH2 0x188D JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x171F DUP3 PUSH2 0x1811 JUMP JUMPDEST SWAP2 POP PUSH2 0x172A DUP4 PUSH2 0x1811 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x173A JUMPI PUSH2 0x1739 PUSH2 0x18BC JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1750 DUP3 PUSH2 0x1811 JUMP JUMPDEST SWAP2 POP PUSH2 0x175B DUP4 PUSH2 0x1811 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1794 JUMPI PUSH2 0x1793 PUSH2 0x188D JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17AA DUP3 PUSH2 0x1811 JUMP JUMPDEST SWAP2 POP PUSH2 0x17B5 DUP4 PUSH2 0x1811 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x17C8 JUMPI PUSH2 0x17C7 PUSH2 0x188D JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17DE DUP3 PUSH2 0x17F1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1846 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x182B JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1855 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 0x1873 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1887 JUMPI PUSH2 0x1886 PUSH2 0x18EB JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1934 DUP2 PUSH2 0x17D3 JUMP JUMPDEST DUP2 EQ PUSH2 0x193F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x194B DUP2 PUSH2 0x1811 JUMP JUMPDEST DUP2 EQ PUSH2 0x1956 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x29 LOG2 PUSH2 0xB965 0xA5 0xFC OR LOG3 CHAINID INVALID INVALID 0xAC 0xAB PUSH11 0xE400B1EC2E127601B6C9D2 DIV 0x5D DIV ADDRESS 0x24 DUP3 PUSH5 0x736F6C6343 STOP ADDMOD STOP STOP CALLER ", | |
"sourceMap": "279:1378:0:-:0;;;347:1;322:26;;533:314;;;;;;;;;;1980:113:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2054:5;2046;:13;;;;;;;;;;;;:::i;:::-;;2079:7;2069;:17;;;;;;;;;;;;:::i;:::-;;1980:113;;936:32:1;955:12;:10;;;:12;;:::i;:::-;936:18;;;:32;;:::i;:::-;583:46:0::1;589:10;618;:8;;;:10;;:::i;:::-;614:2;:14;;;;:::i;:::-;601:10;:27;;;;:::i;:::-;583:5;;;:46;;:::i;:::-;687:6;666:10;;:28;;;;;;;;;;;;;;;;;;754:42;736:15;;:60;;;;;;;;;;;;;;;;;;279:1378:::0;;640:96:5;693:7;719:10;712:17;;640:96;:::o;2426:187:1:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2426:187;;:::o;3104:91:2:-;3162:5;3186:2;3179:9;;3104:91;:::o;8520:535::-;8622:1;8603:21;;:7;:21;;;;8595:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8671:49;8700:1;8704:7;8713:6;8671:20;;;:49;;:::i;:::-;8747:6;8731:12;;:22;;;;;;;:::i;:::-;;;;;;;;8921:6;8899:9;:18;8909:7;8899:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;8973:7;8952:37;;8969:1;8952:37;;;8982:6;8952:37;;;;;;:::i;:::-;;;;;;;;9000:48;9028:1;9032:7;9041:6;9000:19;;;:48;;:::i;:::-;8520:535;;:::o;12073:91::-;;;;:::o;12752:90::-;;;;:::o;279:1378:0:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:329:6:-;;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;267:33;263:1;258:3;254:11;247:54;327:2;322:3;318:12;311:19;;153:183;;;:::o;342:118::-;429:24;447:5;429:24;:::i;:::-;424:3;417:37;407:53;;:::o;466:419::-;;670:2;659:9;655:18;647:26;;719:9;713:4;709:20;705:1;694:9;690:17;683:47;747:131;873:4;747:131;:::i;:::-;739:139;;637:248;;;:::o;891:222::-;;1022:2;1011:9;1007:18;999:26;;1035:71;1103:1;1092:9;1088:17;1079:6;1035:71;:::i;:::-;989:124;;;;:::o;1119:169::-;;1237:6;1232:3;1225:19;1277:4;1272:3;1268:14;1253:29;;1215:73;;;;:::o;1294:305::-;;1353:20;1371:1;1353:20;:::i;:::-;1348:25;;1387:20;1405:1;1387:20;:::i;:::-;1382:25;;1541:1;1473:66;1469:74;1466:1;1463:81;1460:2;;;1547:18;;:::i;:::-;1460:2;1591:1;1588;1584:9;1577:16;;1338:261;;;;:::o;1605:848::-;;;1697:6;1688:15;;1721:5;1712:14;;1735:712;1756:1;1746:8;1743:15;1735:712;;;1851:4;1846:3;1842:14;1836:4;1833:24;1830:2;;;1860:18;;:::i;:::-;1830:2;1910:1;1900:8;1896:16;1893:2;;;2325:4;2318:5;2314:16;2305:25;;1893:2;2375:4;2369;2365:15;2357:23;;2405:32;2428:8;2405:32;:::i;:::-;2393:44;;1735:712;;;1678:775;;;;;;;:::o;2459:281::-;;2541:23;2559:4;2541:23;:::i;:::-;2533:31;;2585:25;2601:8;2585:25;:::i;:::-;2573:37;;2629:104;2666:66;2656:8;2650:4;2629:104;:::i;:::-;2620:113;;2523:217;;;;:::o;2746:1073::-;;2991:8;2981:2;;3012:1;3003:10;;3014:5;;2981:2;3040:4;3030:2;;3057:1;3048:10;;3059:5;;3030:2;3126:4;3174:1;3169:27;;;;3210:1;3205:191;;;;3119:277;;3169:27;3187:1;3178:10;;3189:5;;;3205:191;3250:3;3240:8;3237:17;3234:2;;;3257:18;;:::i;:::-;3234:2;3306:8;3303:1;3299:16;3290:25;;3341:3;3334:5;3331:14;3328:2;;;3348:18;;:::i;:::-;3328:2;3381:5;;;3119:277;;3505:2;3495:8;3492:16;3486:3;3480:4;3477:13;3473:36;3455:2;3445:8;3442:16;3437:2;3431:4;3428:12;3424:35;3408:111;3405:2;;;3561:8;3555:4;3551:19;3542:28;;3596:3;3589:5;3586:14;3583:2;;;3603:18;;:::i;:::-;3583:2;3636:5;;3405:2;3676:42;3714:3;3704:8;3698:4;3695:1;3676:42;:::i;:::-;3661:57;;;;3750:4;3745:3;3741:14;3734:5;3731:25;3728:2;;;3759:18;;:::i;:::-;3728:2;3808:4;3801:5;3797:16;3788:25;;2806:1013;;;;;;:::o;3825:348::-;;3888:20;3906:1;3888:20;:::i;:::-;3883:25;;3922:20;3940:1;3922:20;:::i;:::-;3917:25;;4110:1;4042:66;4038:74;4035:1;4032:81;4027:1;4020:9;4013:17;4009:105;4006:2;;;4117:18;;:::i;:::-;4006:2;4165:1;4162;4158:9;4147:20;;3873:300;;;;:::o;4179:77::-;;4245:5;4234:16;;4224:32;;;:::o;4262:86::-;;4337:4;4330:5;4326:16;4315:27;;4305:43;;;:::o;4354:320::-;;4435:1;4429:4;4425:12;4415:22;;4482:1;4476:4;4472:12;4503:18;4493:2;;4559:4;4551:6;4547:17;4537:27;;4493:2;4621;4613:6;4610:14;4590:18;4587:38;4584:2;;;4640:18;;:::i;:::-;4584:2;4405:269;;;;:::o;4680:180::-;4728:77;4725:1;4718:88;4825:4;4822:1;4815:15;4849:4;4846:1;4839:15;4866:180;4914:77;4911:1;4904:88;5011:4;5008:1;5001:15;5035:4;5032:1;5025:15;5052:102;;5141:5;5138:1;5134:13;5113:34;;5103:51;;;:::o;279:1378:0:-;;;;;;;" | |
}, | |
"deployedBytecode": { | |
"generatedSources": [ | |
{ | |
"ast": { | |
"nodeType": "YulBlock", | |
"src": "0:15534:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "59:87:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "69:29:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "91:6:6" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "78:12:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "78:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "69:5:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "134:5:6" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "107:26:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "107:33:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "107:33:6" | |
} | |
] | |
}, | |
"name": "abi_decode_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "37:6:6", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "45:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "53:5:6", | |
"type": "" | |
} | |
], | |
"src": "7:139:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "204:87:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "214:29:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "236:6:6" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "223:12:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "223:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "214:5:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "279:5:6" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "252:26:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "252:33:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "252:33:6" | |
} | |
] | |
}, | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "182:6:6", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "190:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "198:5:6", | |
"type": "" | |
} | |
], | |
"src": "152:139:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "363:196:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "409:16:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "418:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "421:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "411:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "411:12:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "411:12:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "384:7:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "393:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "380:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "380:23:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "405:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "376:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "376:32:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "373:2:6" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "435:117:6", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "450:15:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "464:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "454:6:6", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "479:63:6", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "514:9:6" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "525:6:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "510:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "510:22:6" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "534:7:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "489:20:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "489:53:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "479:6:6" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "333:9:6", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "344:7:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "356:6:6", | |
"type": "" | |
} | |
], | |
"src": "297:262:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "648:324:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "694:16:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "703:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "706:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "696:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "696:12:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "696:12:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "669:7:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "678:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "665:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "665:23:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "690:2:6", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "661:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "661:32:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "658:2:6" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "720:117:6", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "735:15:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "749:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "739:6:6", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "764:63:6", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "799:9:6" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "810:6:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "795:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "795:22:6" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "819:7:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "774:20:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "774:53:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "764:6:6" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "847:118:6", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "862:16:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "876:2:6", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "866:6:6", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "892:63:6", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "927:9:6" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "938:6:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "923:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "923:22:6" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "947:7:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "902:20:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "902:53:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "892:6:6" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_addresst_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "610:9:6", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "621:7:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "633:6:6", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "641:6:6", | |
"type": "" | |
} | |
], | |
"src": "565:407:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1078:452:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1124:16:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1133:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1136:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "1126:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1126:12:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1126:12:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "1099:7:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "1108:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "1095:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1095:23:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1120:2:6", | |
"type": "", | |
"value": "96" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "1091:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1091:32:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "1088:2:6" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "1150:117:6", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "1165:15:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1179:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "1169:6:6", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1194:63:6", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "1229:9:6" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1240:6:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1225:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1225:22:6" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "1249:7:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "1204:20:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1204:53:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "1194:6:6" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "1277:118:6", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "1292:16:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1306:2:6", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "1296:6:6", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1322:63:6", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "1357:9:6" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1368:6:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1353:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1353:22:6" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "1377:7:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "1332:20:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1332:53:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "1322:6:6" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "1405:118:6", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "1420:16:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1434:2:6", | |
"type": "", | |
"value": "64" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "1424:6:6", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1450:63:6", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "1485:9:6" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1496:6:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1481:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1481:22:6" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "1505:7:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "1460:20:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1460:53:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value2", | |
"nodeType": "YulIdentifier", | |
"src": "1450:6:6" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_addresst_addresst_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "1032:9:6", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "1043:7:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "1055:6:6", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "1063:6:6", | |
"type": "" | |
}, | |
{ | |
"name": "value2", | |
"nodeType": "YulTypedName", | |
"src": "1071:6:6", | |
"type": "" | |
} | |
], | |
"src": "978:552:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1619:324:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1665:16:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1674:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1677:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "1667:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1667:12:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1667:12:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "1640:7:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "1649:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "1636:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1636:23:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1661:2:6", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "1632:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1632:32:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "1629:2:6" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "1691:117:6", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "1706:15:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1720:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "1710:6:6", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1735:63:6", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "1770:9:6" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1781:6:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1766:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1766:22:6" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "1790:7:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "1745:20:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1745:53:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "1735:6:6" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "1818:118:6", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "1833:16:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1847:2:6", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "1837:6:6", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1863:63:6", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "1898:9:6" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1909:6:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1894:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1894:22:6" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "1918:7:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "1873:20:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1873:53:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "1863:6:6" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_addresst_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "1581:9:6", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "1592:7:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "1604:6:6", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "1612:6:6", | |
"type": "" | |
} | |
], | |
"src": "1536:407:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2015:196:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2061:16:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2070:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2073:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "2063:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2063:12:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2063:12:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "2036:7:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "2045:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "2032:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2032:23:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2057:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "2028:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2028:32:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "2025:2:6" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "2087:117:6", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "2102:15:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2116:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "2106:6:6", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2131:63:6", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "2166:9:6" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2177:6:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2162:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2162:22:6" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "2186:7:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "2141:20:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2141:53:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "2131:6:6" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "1985:9:6", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "1996:7:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "2008:6:6", | |
"type": "" | |
} | |
], | |
"src": "1949:262:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2282:53:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "2299:3:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "2322:5:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "2304:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2304:24:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "2292:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2292:37:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2292:37:6" | |
} | |
] | |
}, | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "2270:5:6", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "2277:3:6", | |
"type": "" | |
} | |
], | |
"src": "2217:118:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2400:50:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "2417:3:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "2437:5:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "2422:14:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2422:21:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "2410:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2410:34:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2410:34:6" | |
} | |
] | |
}, | |
"name": "abi_encode_t_bool_to_t_bool_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "2388:5:6", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "2395:3:6", | |
"type": "" | |
} | |
], | |
"src": "2341:109:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2548:272:6", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "2558:53:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "2605:5:6" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "2572:32:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2572:39:6" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "2562:6:6", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2620:78:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "2686:3:6" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "2691:6:6" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "2627:58:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2627:71:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "2620:3:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "2733:5:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2740:4:6", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2729:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2729:16:6" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "2747:3:6" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "2752:6:6" | |
} | |
], | |
"functionName": { | |
"name": "copy_memory_to_memory", | |
"nodeType": "YulIdentifier", | |
"src": "2707:21:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2707:52:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2707:52:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2768:46:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "2779:3:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "2806:6:6" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulIdentifier", | |
"src": "2784:21:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2784:29:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2775:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2775:39:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "2768:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "2529:5:6", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "2536:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "2544:3:6", | |
"type": "" | |
} | |
], | |
"src": "2456:364:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2972:221:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2982:74:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3048:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3053:2:6", | |
"type": "", | |
"value": "35" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "2989:58:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2989:67:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "2982:3:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3077:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3082:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3073:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3073:11:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "3086:34:6", | |
"type": "", | |
"value": "ERC20: transfer to the zero addr" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3066:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3066:55:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3066:55:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3142:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3147:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3138:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3138:12:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "3152:5:6", | |
"type": "", | |
"value": "ess" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3131:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3131:27:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3131:27:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3168:19:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3179:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3184:2:6", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3175:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3175:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "3168:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "2960:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "2968:3:6", | |
"type": "" | |
} | |
], | |
"src": "2826:367:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3345:224:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3355:74:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3421:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3426:2:6", | |
"type": "", | |
"value": "38" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "3362:58:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3362:67:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3355:3:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3450:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3455:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3446:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3446:11:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "3459:34:6", | |
"type": "", | |
"value": "Ownable: new owner is the zero a" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3439:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3439:55:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3439:55:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3515:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3520:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3511:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3511:12:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "3525:8:6", | |
"type": "", | |
"value": "ddress" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3504:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3504:30:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3504:30:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3544:19:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3555:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3560:2:6", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3551:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3551:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "3544:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "3333:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "3341:3:6", | |
"type": "" | |
} | |
], | |
"src": "3199:370:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3721:220:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3731:74:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3797:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3802:2:6", | |
"type": "", | |
"value": "34" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "3738:58:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3738:67:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3731:3:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3826:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3831:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3822:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3822:11:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "3835:34:6", | |
"type": "", | |
"value": "ERC20: approve to the zero addre" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3815:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3815:55:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3815:55:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3891:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3896:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3887:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3887:12:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "3901:4:6", | |
"type": "", | |
"value": "ss" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3880:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3880:26:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3880:26:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3916:19:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3927:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3932:2:6", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3923:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3923:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "3916:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "3709:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "3717:3:6", | |
"type": "" | |
} | |
], | |
"src": "3575:366:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4093:181:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4103:74:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4169:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4174:2:6", | |
"type": "", | |
"value": "29" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "4110:58:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4110:67:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4103:3:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4198:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4203:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4194:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4194:11:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "4207:31:6", | |
"type": "", | |
"value": "ERC20: insufficient allowance" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4187:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4187:52:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4187:52:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4249:19:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4260:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4265:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4256:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4256:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "4249:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "4081:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "4089:3:6", | |
"type": "" | |
} | |
], | |
"src": "3947:327:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4426:224:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4436:74:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4502:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4507:2:6", | |
"type": "", | |
"value": "38" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "4443:58:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4443:67:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4436:3:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4531:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4536:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4527:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4527:11:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "4540:34:6", | |
"type": "", | |
"value": "ERC20: transfer amount exceeds b" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4520:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4520:55:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4520:55:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4596:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4601:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4592:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4592:12:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "4606:8:6", | |
"type": "", | |
"value": "alance" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4585:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4585:30:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4585:30:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4625:19:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4636:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4641:2:6", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4632:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4632:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "4625:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "4414:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "4422:3:6", | |
"type": "" | |
} | |
], | |
"src": "4280:370:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4802:167:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4812:74:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4878:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4883:2:6", | |
"type": "", | |
"value": "15" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "4819:58:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4819:67:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4812:3:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4907:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4912:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4903:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4903:11:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "4916:17:6", | |
"type": "", | |
"value": "Taxa muito alta" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4896:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4896:38:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4896:38:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4944:19:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4955:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4960:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4951:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4951:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "4944:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_903f405aec00bc861c451f1d66f9bd17f53d0cd76780afdf7fb0ebf46139d224_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "4790:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "4798:3:6", | |
"type": "" | |
} | |
], | |
"src": "4656:313:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5121:184:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5131:74:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "5197:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5202:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "5138:58:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5138:67:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "5131:3:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "5226:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5231:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5222:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5222:11:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "5235:34:6", | |
"type": "", | |
"value": "Ownable: caller is not the owner" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "5215:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5215:55:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5215:55:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5280:19:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "5291:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5296:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5287:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5287:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "5280:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "5109:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "5117:3:6", | |
"type": "" | |
} | |
], | |
"src": "4975:330:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5457:223:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5467:74:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "5533:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5538:2:6", | |
"type": "", | |
"value": "37" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "5474:58:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5474:67:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "5467:3:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "5562:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5567:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5558:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5558:11:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "5571:34:6", | |
"type": "", | |
"value": "ERC20: transfer from the zero ad" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "5551:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5551:55:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5551:55:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "5627:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5632:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5623:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5623:12:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "5637:7:6", | |
"type": "", | |
"value": "dress" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "5616:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5616:29:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5616:29:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5655:19:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "5666:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5671:2:6", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5662:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5662:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "5655:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "5445:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "5453:3:6", | |
"type": "" | |
} | |
], | |
"src": "5311:369:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5832:222:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5842:74:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "5908:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5913:2:6", | |
"type": "", | |
"value": "36" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "5849:58:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5849:67:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "5842:3:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "5937:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5942:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5933:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5933:11:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "5946:34:6", | |
"type": "", | |
"value": "ERC20: approve from the zero add" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "5926:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5926:55:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5926:55:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6002:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6007:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5998:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5998:12:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "6012:6:6", | |
"type": "", | |
"value": "ress" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "5991:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5991:28:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5991:28:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6029:19:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6040:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6045:2:6", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6036:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6036:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "6029:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "5820:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "5828:3:6", | |
"type": "" | |
} | |
], | |
"src": "5686:368:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6206:223:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6216:74:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6282:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6287:2:6", | |
"type": "", | |
"value": "37" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "6223:58:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6223:67:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6216:3:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6311:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6316:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6307:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6307:11:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "6320:34:6", | |
"type": "", | |
"value": "ERC20: decreased allowance below" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6300:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6300:55:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6300:55:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6376:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6381:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6372:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6372:12:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "6386:7:6", | |
"type": "", | |
"value": " zero" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6365:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6365:29:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6365:29:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6404:19:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6415:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6420:2:6", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6411:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6411:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "6404:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "6194:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "6202:3:6", | |
"type": "" | |
} | |
], | |
"src": "6060:369:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6500:53:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6517:3:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "6540:5:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "6522:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6522:24:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6510:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6510:37:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6510:37:6" | |
} | |
] | |
}, | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "6488:5:6", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "6495:3:6", | |
"type": "" | |
} | |
], | |
"src": "6435:118:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6620:51:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6637:3:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "6658:5:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint8", | |
"nodeType": "YulIdentifier", | |
"src": "6642:15:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6642:22:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6630:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6630:35:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6630:35:6" | |
} | |
] | |
}, | |
"name": "abi_encode_t_uint8_to_t_uint8_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "6608:5:6", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "6615:3:6", | |
"type": "" | |
} | |
], | |
"src": "6559:112:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6775:124:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6785:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6797:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6808:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6793:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6793:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "6785:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "6865:6:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6878:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6889:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6874:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6874:17:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "6821:43:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6821:71:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6821:71:6" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "6747:9:6", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "6759:6:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "6770:4:6", | |
"type": "" | |
} | |
], | |
"src": "6677:222:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6997:118:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7007:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "7019:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7030:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7015:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7015:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "7007:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "7081:6:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "7094:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7105:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7090:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7090:17:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_bool_to_t_bool_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "7043:37:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7043:65:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7043:65:6" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "6969:9:6", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "6981:6:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "6992:4:6", | |
"type": "" | |
} | |
], | |
"src": "6905:210:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7239:195:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7249:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "7261:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7272:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7257:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7257:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "7249:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "7296:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7307:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7292:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7292:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "7315:4:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "7321:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "7311:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7311:20:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "7285:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7285:47:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7285:47:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7341:86:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "7413:6:6" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "7422:4:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "7349:63:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7349:78:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "7341:4:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "7211:9:6", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "7223:6:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "7234:4:6", | |
"type": "" | |
} | |
], | |
"src": "7121:313:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7611:248:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7621:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "7633:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7644:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7629:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7629:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "7621:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "7668:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7679:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7664:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7664:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "7687:4:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "7693:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "7683:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7683:20:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "7657:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7657:47:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7657:47:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7713:139:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "7847:4:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "7721:124:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7721:131:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "7713:4:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "7591:9:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "7606:4:6", | |
"type": "" | |
} | |
], | |
"src": "7440:419:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8036:248:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8046:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8058:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8069:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8054:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8054:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "8046:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8093:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8104:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8089:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8089:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "8112:4:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8118:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "8108:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8108:20:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "8082:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8082:47:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8082:47:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8138:139:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "8272:4:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "8146:124:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8146:131:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "8138:4:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "8016:9:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "8031:4:6", | |
"type": "" | |
} | |
], | |
"src": "7865:419:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8461:248:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8471:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8483:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8494:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8479:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8479:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "8471:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8518:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8529:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8514:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8514:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "8537:4:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8543:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "8533:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8533:20:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "8507:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8507:47:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8507:47:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8563:139:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "8697:4:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "8571:124:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8571:131:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "8563:4:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "8441:9:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "8456:4:6", | |
"type": "" | |
} | |
], | |
"src": "8290:419:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8886:248:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8896:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8908:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8919:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8904:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8904:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "8896:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8943:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8954:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8939:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8939:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "8962:4:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "8968:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "8958:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8958:20:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "8932:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8932:47:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8932:47:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8988:139:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "9122:4:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "8996:124:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8996:131:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "8988:4:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "8866:9:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "8881:4:6", | |
"type": "" | |
} | |
], | |
"src": "8715:419:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "9311:248:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9321:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "9333:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9344:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9329:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9329:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "9321:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "9368:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9379:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9364:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9364:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "9387:4:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "9393:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "9383:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9383:20:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "9357:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9357:47:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "9357:47:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9413:139:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "9547:4:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "9421:124:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9421:131:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "9413:4:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "9291:9:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "9306:4:6", | |
"type": "" | |
} | |
], | |
"src": "9140:419:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "9736:248:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9746:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "9758:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9769:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9754:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9754:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "9746:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "9793:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9804:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9789:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9789:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "9812:4:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "9818:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "9808:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9808:20:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "9782:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9782:47:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "9782:47:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9838:139:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "9972:4:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_903f405aec00bc861c451f1d66f9bd17f53d0cd76780afdf7fb0ebf46139d224_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "9846:124:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9846:131:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "9838:4:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_903f405aec00bc861c451f1d66f9bd17f53d0cd76780afdf7fb0ebf46139d224__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "9716:9:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "9731:4:6", | |
"type": "" | |
} | |
], | |
"src": "9565:419:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "10161:248:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10171:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "10183:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10194:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10179:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10179:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10171:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "10218:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10229:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10214:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10214:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10237:4:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "10243:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "10233:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10233:20:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "10207:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10207:47:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "10207:47:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10263:139:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10397:4:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "10271:124:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10271:131:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10263:4:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "10141:9:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "10156:4:6", | |
"type": "" | |
} | |
], | |
"src": "9990:419:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "10586:248:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10596:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "10608:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10619:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10604:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10604:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10596:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "10643:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10654:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10639:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10639:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10662:4:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "10668:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "10658:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10658:20:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "10632:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10632:47:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "10632:47:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10688:139:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10822:4:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "10696:124:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10696:131:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10688:4:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "10566:9:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "10581:4:6", | |
"type": "" | |
} | |
], | |
"src": "10415:419:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "11011:248:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11021:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11033:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11044:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11029:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11029:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11021:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11068:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11079:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11064:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11064:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11087:4:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11093:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "11083:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11083:20:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "11057:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11057:47:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11057:47:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11113:139:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11247:4:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11121:124:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11121:131:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11113:4:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "10991:9:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "11006:4:6", | |
"type": "" | |
} | |
], | |
"src": "10840:419:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "11436:248:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11446:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11458:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11469:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11454:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11454:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11446:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11493:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11504:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11489:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11489:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11512:4:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11518:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "11508:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11508:20:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "11482:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11482:47:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11482:47:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11538:139:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11672:4:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11546:124:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11546:131:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11538:4:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "11416:9:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "11431:4:6", | |
"type": "" | |
} | |
], | |
"src": "11265:419:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "11788:124:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11798:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11810:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11821:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11806:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11806:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11798:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "11878:6:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11891:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11902:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11887:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11887:17:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11834:43:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11834:71:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11834:71:6" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "11760:9:6", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "11772:6:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "11783:4:6", | |
"type": "" | |
} | |
], | |
"src": "11690:222:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12012:120:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12022:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "12034:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12045:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "12030:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12030:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "12022:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "12098:6:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "12111:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12122:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "12107:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12107:17:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint8_to_t_uint8_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "12058:39:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12058:67:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "12058:67:6" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "11984:9:6", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "11996:6:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "12007:4:6", | |
"type": "" | |
} | |
], | |
"src": "11918:214:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12197:40:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12208:22:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "12224:5:6" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "12218:5:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12218:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "12208:6:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_length_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "12180:5:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "12190:6:6", | |
"type": "" | |
} | |
], | |
"src": "12138:99:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12339:73:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12356:3:6" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "12361:6:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "12349:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12349:19:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "12349:19:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12377:29:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12396:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12401:4:6", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "12392:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12392:14:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "12377:11:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "12311:3:6", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "12316:6:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "12327:11:6", | |
"type": "" | |
} | |
], | |
"src": "12243:169:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12462:261:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12472:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "12495:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "12477:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12477:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "12472:1:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12506:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "12529:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "12511:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12511:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "12506:1:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12669:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "12671:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12671:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "12671:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "12590:1:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12597:66:6", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "12665:1:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "12593:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12593:74:6" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "12587:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12587:81:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "12584:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12701:16:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "12712:1:6" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "12715:1:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "12708:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12708:9:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulIdentifier", | |
"src": "12701:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_add_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "12449:1:6", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "12452:1:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulTypedName", | |
"src": "12458:3:6", | |
"type": "" | |
} | |
], | |
"src": "12418:305:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12771:143:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12781:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "12804:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "12786:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12786:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "12781:1:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12815:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "12838:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "12820:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12820:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "12815:1:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12862:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x12", | |
"nodeType": "YulIdentifier", | |
"src": "12864:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12864:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "12864:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "12859:1:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "12852:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12852:9:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "12849:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12894:14:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "12903:1:6" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "12906:1:6" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "12899:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12899:9:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "r", | |
"nodeType": "YulIdentifier", | |
"src": "12894:1:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_div_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "12760:1:6", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "12763:1:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "r", | |
"nodeType": "YulTypedName", | |
"src": "12769:1:6", | |
"type": "" | |
} | |
], | |
"src": "12729:185:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12968:300:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12978:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13001:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "12983:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12983:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "12978:1:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13012:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13035:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "13017:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13017:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13012:1:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13210:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "13212:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13212:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13212:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13122:1:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "13115:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13115:9:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "13108:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13108:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13130:1:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13137:66:6", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
}, | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13205:1:6" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "13133:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13133:74:6" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "13127:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13127:81:6" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "13104:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13104:105:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "13101:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13242:20:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13257:1:6" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13260:1:6" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nodeType": "YulIdentifier", | |
"src": "13253:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13253:9:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "product", | |
"nodeType": "YulIdentifier", | |
"src": "13242:7:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_mul_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "12951:1:6", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "12954:1:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "product", | |
"nodeType": "YulTypedName", | |
"src": "12960:7:6", | |
"type": "" | |
} | |
], | |
"src": "12920:348:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13319:146:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13329:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13352:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "13334:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13334:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13329:1:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13363:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13386:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "13368:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13368:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13363:1:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13410:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "13412:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13412:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13412:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13404:1:6" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13407:1:6" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "13401:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13401:8:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "13398:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13442:17:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13454:1:6" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13457:1:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "13450:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13450:9:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "diff", | |
"nodeType": "YulIdentifier", | |
"src": "13442:4:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_sub_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "13305:1:6", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "13308:1:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "diff", | |
"nodeType": "YulTypedName", | |
"src": "13314:4:6", | |
"type": "" | |
} | |
], | |
"src": "13274:191:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13516:51:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13526:35:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "13555:5:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint160", | |
"nodeType": "YulIdentifier", | |
"src": "13537:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13537:24:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "13526:7:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "13498:5:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "13508:7:6", | |
"type": "" | |
} | |
], | |
"src": "13471:96:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13615:48:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13625:32:6", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "13650:5:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "13643:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13643:13:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "13636:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13636:21:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "13625:7:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_bool", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "13597:5:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "13607:7:6", | |
"type": "" | |
} | |
], | |
"src": "13573:90:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13714:81:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13724:65:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "13739:5:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13746:42:6", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "13735:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13735:54:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "13724:7:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint160", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "13696:5:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "13706:7:6", | |
"type": "" | |
} | |
], | |
"src": "13669:126:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13846:32:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13856:16:6", | |
"value": { | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "13867:5:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "13856:7:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "13828:5:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "13838:7:6", | |
"type": "" | |
} | |
], | |
"src": "13801:77:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13927:43:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13937:27:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "13952:5:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13959:4:6", | |
"type": "", | |
"value": "0xff" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "13948:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13948:16:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "13937:7:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint8", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "13909:5:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "13919:7:6", | |
"type": "" | |
} | |
], | |
"src": "13884:86:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14025:258:6", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "14035:10:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14044:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nodeType": "YulTypedName", | |
"src": "14039:1:6", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14104:63:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "14129:3:6" | |
}, | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "14134:1:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "14125:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14125:11:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "14148:3:6" | |
}, | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "14153:1:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "14144:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14144:11:6" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "14138:5:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14138:18:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "14118:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14118:39:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "14118:39:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "14065:1:6" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "14068:6:6" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "14062:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14062:13:6" | |
}, | |
"nodeType": "YulForLoop", | |
"post": { | |
"nodeType": "YulBlock", | |
"src": "14076:19:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14078:15:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "14087:1:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14090:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "14083:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14083:10:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "14078:1:6" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nodeType": "YulBlock", | |
"src": "14058:3:6", | |
"statements": [] | |
}, | |
"src": "14054:113:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14201:76:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "14251:3:6" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "14256:6:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "14247:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14247:16:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14265:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "14240:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14240:27:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "14240:27:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "14182:1:6" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "14185:6:6" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "14179:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14179:13:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "14176:2:6" | |
} | |
] | |
}, | |
"name": "copy_memory_to_memory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nodeType": "YulTypedName", | |
"src": "14007:3:6", | |
"type": "" | |
}, | |
{ | |
"name": "dst", | |
"nodeType": "YulTypedName", | |
"src": "14012:3:6", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "14017:6:6", | |
"type": "" | |
} | |
], | |
"src": "13976:307:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14340:269:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14350:22:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "14364:4:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14370:1:6", | |
"type": "", | |
"value": "2" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "14360:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14360:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "14350:6:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "14381:38:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "14411:4:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14417:1:6", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "14407:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14407:12:6" | |
}, | |
"variables": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulTypedName", | |
"src": "14385:18:6", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14458:51:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14472:27:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "14486:6:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14494:4:6", | |
"type": "", | |
"value": "0x7f" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "14482:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14482:17:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "14472:6:6" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulIdentifier", | |
"src": "14438:18:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "14431:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14431:26:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "14428:2:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14561:42:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x22", | |
"nodeType": "YulIdentifier", | |
"src": "14575:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14575:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "14575:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulIdentifier", | |
"src": "14525:18:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "14548:6:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14556:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "14545:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14545:14:6" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "14522:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14522:38:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "14519:2:6" | |
} | |
] | |
}, | |
"name": "extract_byte_array_length", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "data", | |
"nodeType": "YulTypedName", | |
"src": "14324:4:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "14333:6:6", | |
"type": "" | |
} | |
], | |
"src": "14289:320:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14643:152:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14660:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14663:77:6", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "14653:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14653:88:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "14653:88:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14757:1:6", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14760:4:6", | |
"type": "", | |
"value": "0x11" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "14750:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14750:15:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "14750:15:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14781:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14784:4:6", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "14774:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14774:15:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "14774:15:6" | |
} | |
] | |
}, | |
"name": "panic_error_0x11", | |
"nodeType": "YulFunctionDefinition", | |
"src": "14615:180:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14829:152:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14846:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14849:77:6", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "14839:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14839:88:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "14839:88:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14943:1:6", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14946:4:6", | |
"type": "", | |
"value": "0x12" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "14936:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14936:15:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "14936:15:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14967:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14970:4:6", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "14960:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14960:15:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "14960:15:6" | |
} | |
] | |
}, | |
"name": "panic_error_0x12", | |
"nodeType": "YulFunctionDefinition", | |
"src": "14801:180:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "15015:152:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15032:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15035:77:6", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "15025:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15025:88:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "15025:88:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15129:1:6", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15132:4:6", | |
"type": "", | |
"value": "0x22" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "15122:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15122:15:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "15122:15:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15153:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15156:4:6", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "15146:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15146:15:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "15146:15:6" | |
} | |
] | |
}, | |
"name": "panic_error_0x22", | |
"nodeType": "YulFunctionDefinition", | |
"src": "14987:180:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "15221:54:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "15231:38:6", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "15249:5:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15256:2:6", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "15245:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15245:14:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15265:2:6", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nodeType": "YulIdentifier", | |
"src": "15261:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15261:7:6" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "15241:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15241:28:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "result", | |
"nodeType": "YulIdentifier", | |
"src": "15231:6:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "15204:5:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "result", | |
"nodeType": "YulTypedName", | |
"src": "15214:6:6", | |
"type": "" | |
} | |
], | |
"src": "15173:102:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "15324:79:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "15381:16:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15390:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15393:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "15383:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15383:12:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "15383:12:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "15347:5:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "15372:5:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "15354:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15354:24:6" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "15344:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15344:35:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "15337:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15337:43:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "15334:2:6" | |
} | |
] | |
}, | |
"name": "validator_revert_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "15317:5:6", | |
"type": "" | |
} | |
], | |
"src": "15281:122:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "15452:79:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "15509:16:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15518:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15521:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "15511:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15511:12:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "15511:12:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "15475:5:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "15500:5:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "15482:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15482:24:6" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "15472:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15472:35:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "15465:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15465:43:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "15462:2:6" | |
} | |
] | |
}, | |
"name": "validator_revert_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "15445:5:6", | |
"type": "" | |
} | |
], | |
"src": "15409:122:6" | |
} | |
] | |
}, | |
"contents": "{\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_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_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n\n mstore(add(pos, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(pos, 32), \"ess\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_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_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_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), \"ERC20: insufficient allowance\")\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_903f405aec00bc861c451f1d66f9bd17f53d0cd76780afdf7fb0ebf46139d224_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 15)\n\n mstore(add(pos, 0), \"Taxa muito alta\")\n\n end := add(pos, 32)\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_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n\n mstore(add(pos, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(pos, 32), \"dress\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n\n mstore(add(pos, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(pos, 32), \"ress\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n\n mstore(add(pos, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(pos, 32), \" zero\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_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_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_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_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_903f405aec00bc861c451f1d66f9bd17f53d0cd76780afdf7fb0ebf46139d224__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_903f405aec00bc861c451f1d66f9bd17f53d0cd76780afdf7fb0ebf46139d224_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_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_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_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n", | |
"id": 6, | |
"language": "Yul", | |
"name": "#utility.yul" | |
} | |
], | |
"immutableReferences": {}, | |
"linkReferences": {}, | |
"object": "608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461030e578063c6d69a301461033e578063d46980161461035a578063dd62ed3e14610378578063f2fde38b146103a857610121565b8063715018a61461027a578063771a3a1d146102845780638da5cb5b146102a257806395d89b41146102c0578063a457c2d7146102de57610121565b806323b872dd116100f457806323b872dd146101b0578063296f0a0c146101e0578063313ce567146101fc578063395093511461021a57806370a082311461024a57610121565b8063062287491461012657806306fdde0314610144578063095ea7b31461016257806318160ddd14610192575b600080fd5b61012e6103c4565b60405161013b91906114d4565b60405180910390f35b61014c6103ea565b604051610159919061150a565b60405180910390f35b61017c60048036038101906101779190611070565b61047c565b60405161018991906114ef565b60405180910390f35b61019a61049f565b6040516101a7919061166c565b60405180910390f35b6101ca60048036038101906101c59190611021565b6104a9565b6040516101d791906114ef565b60405180910390f35b6101fa60048036038101906101f59190610fbc565b6104d8565b005b610204610524565b6040516102119190611687565b60405180910390f35b610234600480360381019061022f9190611070565b61052d565b60405161024191906114ef565b60405180910390f35b610264600480360381019061025f9190610fbc565b610564565b604051610271919061166c565b60405180910390f35b6102826105ac565b005b61028c6105c0565b604051610299919061166c565b60405180910390f35b6102aa6105c6565b6040516102b791906114d4565b60405180910390f35b6102c86105f0565b6040516102d5919061150a565b60405180910390f35b6102f860048036038101906102f39190611070565b610682565b60405161030591906114ef565b60405180910390f35b61032860048036038101906103239190611070565b6106f9565b60405161033591906114ef565b60405180910390f35b610358600480360381019061035391906110ac565b61071c565b005b610362610772565b60405161036f91906114d4565b60405180910390f35b610392600480360381019061038d9190610fe5565b610798565b60405161039f919061166c565b60405180910390f35b6103c260048036038101906103bd9190610fbc565b61081f565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546103f99061185b565b80601f01602080910402602001604051908101604052809291908181526020018280546104259061185b565b80156104725780601f1061044757610100808354040283529160200191610472565b820191906000526020600020905b81548152906001019060200180831161045557829003601f168201915b5050505050905090565b6000806104876108a3565b90506104948185856108ab565b600191505092915050565b6000600254905090565b6000806104b46108a3565b90506104c1858285610a76565b6104cc858585610b02565b60019150509392505050565b6104e0610bcc565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b6000806105386108a3565b905061055981858561054a8589610798565b61055491906116be565b6108ab565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b4610bcc565b6105be6000610c4a565b565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105ff9061185b565b80601f016020809104026020016040519081016040528092919081815260200182805461062b9061185b565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b60008061068d6108a3565b9050600061069b8286610798565b9050838110156106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d79061164c565b60405180910390fd5b6106ed82868684036108ab565b60019250505092915050565b6000806107046108a3565b9050610711818585610b02565b600191505092915050565b610724610bcc565b600a811115610768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075f906115cc565b60405180910390fd5b8060068190555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610827610bcc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e9061154c565b60405180910390fd5b6108a081610c4a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109129061162c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561098b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109829061156c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a69919061166c565b60405180910390a3505050565b6000610a828484610798565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610afc5781811015610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae59061158c565b60405180910390fd5b610afb84848484036108ab565b5b50505050565b6000606460065483610b149190611745565b610b1e9190611714565b905060008183610b2e919061179f565b9050610b7585600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166005600286610b669190611745565b610b709190611714565b610d10565b610bba85600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166005600386610bab9190611745565b610bb59190611714565b610d10565b610bc5858583610d10565b5050505050565b610bd46108a3565b73ffffffffffffffffffffffffffffffffffffffff16610bf26105c6565b73ffffffffffffffffffffffffffffffffffffffff1614610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f906115ec565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d779061160c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de79061152c565b60405180910390fd5b610dfb838383610f88565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e78906115ac565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f6f919061166c565b60405180910390a3610f82848484610f8d565b50505050565b505050565b505050565b600081359050610fa18161192b565b92915050565b600081359050610fb681611942565b92915050565b600060208284031215610fce57600080fd5b6000610fdc84828501610f92565b91505092915050565b60008060408385031215610ff857600080fd5b600061100685828601610f92565b925050602061101785828601610f92565b9150509250929050565b60008060006060848603121561103657600080fd5b600061104486828701610f92565b935050602061105586828701610f92565b925050604061106686828701610fa7565b9150509250925092565b6000806040838503121561108357600080fd5b600061109185828601610f92565b92505060206110a285828601610fa7565b9150509250929050565b6000602082840312156110be57600080fd5b60006110cc84828501610fa7565b91505092915050565b6110de816117d3565b82525050565b6110ed816117e5565b82525050565b60006110fe826116a2565b61110881856116ad565b9350611118818560208601611828565b6111218161191a565b840191505092915050565b60006111396023836116ad565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061119f6026836116ad565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112056022836116ad565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061126b601d836116ad565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006112ab6026836116ad565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611311600f836116ad565b91507f54617861206d7569746f20616c746100000000000000000000000000000000006000830152602082019050919050565b60006113516020836116ad565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006113916025836116ad565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113f76024836116ad565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061145d6025836116ad565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6114bf81611811565b82525050565b6114ce8161181b565b82525050565b60006020820190506114e960008301846110d5565b92915050565b600060208201905061150460008301846110e4565b92915050565b6000602082019050818103600083015261152481846110f3565b905092915050565b600060208201905081810360008301526115458161112c565b9050919050565b6000602082019050818103600083015261156581611192565b9050919050565b60006020820190508181036000830152611585816111f8565b9050919050565b600060208201905081810360008301526115a58161125e565b9050919050565b600060208201905081810360008301526115c58161129e565b9050919050565b600060208201905081810360008301526115e581611304565b9050919050565b6000602082019050818103600083015261160581611344565b9050919050565b6000602082019050818103600083015261162581611384565b9050919050565b60006020820190508181036000830152611645816113ea565b9050919050565b6000602082019050818103600083015261166581611450565b9050919050565b600060208201905061168160008301846114b6565b92915050565b600060208201905061169c60008301846114c5565b92915050565b600081519050919050565b600082825260208201905092915050565b60006116c982611811565b91506116d483611811565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117095761170861188d565b5b828201905092915050565b600061171f82611811565b915061172a83611811565b92508261173a576117396118bc565b5b828204905092915050565b600061175082611811565b915061175b83611811565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156117945761179361188d565b5b828202905092915050565b60006117aa82611811565b91506117b583611811565b9250828210156117c8576117c761188d565b5b828203905092915050565b60006117de826117f1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561184657808201518184015260208101905061182b565b83811115611855576000848401525b50505050565b6000600282049050600182168061187357607f821691505b60208210811415611887576118866118eb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611934816117d3565b811461193f57600080fd5b50565b61194b81611811565b811461195657600080fd5b5056fea264697066735822122029a261b965a5fc17a346fefeacab6ae400b1ec2e127601b6c9d2045d0430248264736f6c63430008000033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x121 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0xAD JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x30E JUMPI DUP1 PUSH4 0xC6D69A30 EQ PUSH2 0x33E JUMPI DUP1 PUSH4 0xD4698016 EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x378 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x3A8 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x27A JUMPI DUP1 PUSH4 0x771A3A1D EQ PUSH2 0x284 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2A2 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x2C0 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x2DE JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xF4 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1B0 JUMPI DUP1 PUSH4 0x296F0A0C EQ PUSH2 0x1E0 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x21A JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x24A JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x6228749 EQ PUSH2 0x126 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x144 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x162 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x192 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12E PUSH2 0x3C4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x14D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x14C PUSH2 0x3EA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x159 SWAP2 SWAP1 PUSH2 0x150A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x177 SWAP2 SWAP1 PUSH2 0x1070 JUMP JUMPDEST PUSH2 0x47C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x189 SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x19A PUSH2 0x49F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A7 SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C5 SWAP2 SWAP1 PUSH2 0x1021 JUMP JUMPDEST PUSH2 0x4A9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D7 SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F5 SWAP2 SWAP1 PUSH2 0xFBC JUMP JUMPDEST PUSH2 0x4D8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x204 PUSH2 0x524 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x211 SWAP2 SWAP1 PUSH2 0x1687 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x234 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22F SWAP2 SWAP1 PUSH2 0x1070 JUMP JUMPDEST PUSH2 0x52D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x241 SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x264 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25F SWAP2 SWAP1 PUSH2 0xFBC JUMP JUMPDEST PUSH2 0x564 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x271 SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x282 PUSH2 0x5AC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x28C PUSH2 0x5C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x299 SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2AA PUSH2 0x5C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B7 SWAP2 SWAP1 PUSH2 0x14D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C8 PUSH2 0x5F0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D5 SWAP2 SWAP1 PUSH2 0x150A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F3 SWAP2 SWAP1 PUSH2 0x1070 JUMP JUMPDEST PUSH2 0x682 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x305 SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x328 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x323 SWAP2 SWAP1 PUSH2 0x1070 JUMP JUMPDEST PUSH2 0x6F9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x358 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x353 SWAP2 SWAP1 PUSH2 0x10AC JUMP JUMPDEST PUSH2 0x71C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x362 PUSH2 0x772 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x36F SWAP2 SWAP1 PUSH2 0x14D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x392 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x38D SWAP2 SWAP1 PUSH2 0xFE5 JUMP JUMPDEST PUSH2 0x798 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x39F SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3C2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3BD SWAP2 SWAP1 PUSH2 0xFBC JUMP JUMPDEST PUSH2 0x81F JUMP JUMPDEST STOP JUMPDEST PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x3F9 SWAP1 PUSH2 0x185B 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 0x425 SWAP1 PUSH2 0x185B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x472 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x447 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x472 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 0x455 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x487 PUSH2 0x8A3 JUMP JUMPDEST SWAP1 POP PUSH2 0x494 DUP2 DUP6 DUP6 PUSH2 0x8AB JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x4B4 PUSH2 0x8A3 JUMP JUMPDEST SWAP1 POP PUSH2 0x4C1 DUP6 DUP3 DUP6 PUSH2 0xA76 JUMP JUMPDEST PUSH2 0x4CC DUP6 DUP6 DUP6 PUSH2 0xB02 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x4E0 PUSH2 0xBCC JUMP JUMPDEST DUP1 PUSH1 0x8 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 PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x538 PUSH2 0x8A3 JUMP JUMPDEST SWAP1 POP PUSH2 0x559 DUP2 DUP6 DUP6 PUSH2 0x54A DUP6 DUP10 PUSH2 0x798 JUMP JUMPDEST PUSH2 0x554 SWAP2 SWAP1 PUSH2 0x16BE JUMP JUMPDEST PUSH2 0x8AB JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x5B4 PUSH2 0xBCC JUMP JUMPDEST PUSH2 0x5BE PUSH1 0x0 PUSH2 0xC4A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 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 0x5FF SWAP1 PUSH2 0x185B 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 0x62B SWAP1 PUSH2 0x185B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x678 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x64D JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x678 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 0x65B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x68D PUSH2 0x8A3 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x69B DUP3 DUP7 PUSH2 0x798 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x6E0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D7 SWAP1 PUSH2 0x164C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6ED DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x8AB JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x704 PUSH2 0x8A3 JUMP JUMPDEST SWAP1 POP PUSH2 0x711 DUP2 DUP6 DUP6 PUSH2 0xB02 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x724 PUSH2 0xBCC JUMP JUMPDEST PUSH1 0xA DUP2 GT ISZERO PUSH2 0x768 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75F SWAP1 PUSH2 0x15CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x6 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x8 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 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 0x827 PUSH2 0xBCC JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x897 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x88E SWAP1 PUSH2 0x154C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8A0 DUP2 PUSH2 0xC4A JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x91B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x912 SWAP1 PUSH2 0x162C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x98B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x982 SWAP1 PUSH2 0x156C 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 0xA69 SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA82 DUP5 DUP5 PUSH2 0x798 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0xAFC JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xAEE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAE5 SWAP1 PUSH2 0x158C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xAFB DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x8AB JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x64 PUSH1 0x6 SLOAD DUP4 PUSH2 0xB14 SWAP2 SWAP1 PUSH2 0x1745 JUMP JUMPDEST PUSH2 0xB1E SWAP2 SWAP1 PUSH2 0x1714 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 DUP4 PUSH2 0xB2E SWAP2 SWAP1 PUSH2 0x179F JUMP JUMPDEST SWAP1 POP PUSH2 0xB75 DUP6 PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x2 DUP7 PUSH2 0xB66 SWAP2 SWAP1 PUSH2 0x1745 JUMP JUMPDEST PUSH2 0xB70 SWAP2 SWAP1 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0xD10 JUMP JUMPDEST PUSH2 0xBBA DUP6 PUSH1 0x8 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x3 DUP7 PUSH2 0xBAB SWAP2 SWAP1 PUSH2 0x1745 JUMP JUMPDEST PUSH2 0xBB5 SWAP2 SWAP1 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0xD10 JUMP JUMPDEST PUSH2 0xBC5 DUP6 DUP6 DUP4 PUSH2 0xD10 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0xBD4 PUSH2 0x8A3 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xBF2 PUSH2 0x5C6 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xC48 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC3F SWAP1 PUSH2 0x15EC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD80 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD77 SWAP1 PUSH2 0x160C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xDF0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDE7 SWAP1 PUSH2 0x152C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDFB DUP4 DUP4 DUP4 PUSH2 0xF88 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 0xE81 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE78 SWAP1 PUSH2 0x15AC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xF6F SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xF82 DUP5 DUP5 DUP5 PUSH2 0xF8D JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xFA1 DUP2 PUSH2 0x192B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xFB6 DUP2 PUSH2 0x1942 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFCE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xFDC DUP5 DUP3 DUP6 ADD PUSH2 0xF92 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFF8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1006 DUP6 DUP3 DUP7 ADD PUSH2 0xF92 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1017 DUP6 DUP3 DUP7 ADD PUSH2 0xF92 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 0x1036 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1044 DUP7 DUP3 DUP8 ADD PUSH2 0xF92 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1055 DUP7 DUP3 DUP8 ADD PUSH2 0xF92 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1066 DUP7 DUP3 DUP8 ADD PUSH2 0xFA7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1083 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1091 DUP6 DUP3 DUP7 ADD PUSH2 0xF92 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x10A2 DUP6 DUP3 DUP7 ADD PUSH2 0xFA7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x10CC DUP5 DUP3 DUP6 ADD PUSH2 0xFA7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x10DE DUP2 PUSH2 0x17D3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x10ED DUP2 PUSH2 0x17E5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10FE DUP3 PUSH2 0x16A2 JUMP JUMPDEST PUSH2 0x1108 DUP2 DUP6 PUSH2 0x16AD JUMP JUMPDEST SWAP4 POP PUSH2 0x1118 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1828 JUMP JUMPDEST PUSH2 0x1121 DUP2 PUSH2 0x191A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1139 PUSH1 0x23 DUP4 PUSH2 0x16AD 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 0x119F PUSH1 0x26 DUP4 PUSH2 0x16AD 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 0x1205 PUSH1 0x22 DUP4 PUSH2 0x16AD 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 0x126B PUSH1 0x1D DUP4 PUSH2 0x16AD JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12AB PUSH1 0x26 DUP4 PUSH2 0x16AD 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 0x1311 PUSH1 0xF DUP4 PUSH2 0x16AD JUMP JUMPDEST SWAP2 POP PUSH32 0x54617861206D7569746F20616C74610000000000000000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1351 PUSH1 0x20 DUP4 PUSH2 0x16AD 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 0x1391 PUSH1 0x25 DUP4 PUSH2 0x16AD 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 0x13F7 PUSH1 0x24 DUP4 PUSH2 0x16AD 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 0x145D PUSH1 0x25 DUP4 PUSH2 0x16AD 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 0x14BF DUP2 PUSH2 0x1811 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x14CE DUP2 PUSH2 0x181B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x14E9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x10D5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1504 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x10E4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1524 DUP2 DUP5 PUSH2 0x10F3 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 0x1545 DUP2 PUSH2 0x112C 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 0x1565 DUP2 PUSH2 0x1192 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 0x1585 DUP2 PUSH2 0x11F8 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 0x15A5 DUP2 PUSH2 0x125E 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 0x15C5 DUP2 PUSH2 0x129E 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 0x15E5 DUP2 PUSH2 0x1304 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 0x1605 DUP2 PUSH2 0x1344 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 0x1625 DUP2 PUSH2 0x1384 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 0x1645 DUP2 PUSH2 0x13EA 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 0x1665 DUP2 PUSH2 0x1450 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1681 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x14B6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x169C PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x14C5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16C9 DUP3 PUSH2 0x1811 JUMP JUMPDEST SWAP2 POP PUSH2 0x16D4 DUP4 PUSH2 0x1811 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1709 JUMPI PUSH2 0x1708 PUSH2 0x188D JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x171F DUP3 PUSH2 0x1811 JUMP JUMPDEST SWAP2 POP PUSH2 0x172A DUP4 PUSH2 0x1811 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x173A JUMPI PUSH2 0x1739 PUSH2 0x18BC JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1750 DUP3 PUSH2 0x1811 JUMP JUMPDEST SWAP2 POP PUSH2 0x175B DUP4 PUSH2 0x1811 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1794 JUMPI PUSH2 0x1793 PUSH2 0x188D JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17AA DUP3 PUSH2 0x1811 JUMP JUMPDEST SWAP2 POP PUSH2 0x17B5 DUP4 PUSH2 0x1811 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x17C8 JUMPI PUSH2 0x17C7 PUSH2 0x188D JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17DE DUP3 PUSH2 0x17F1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1846 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x182B JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1855 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 0x1873 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1887 JUMPI PUSH2 0x1886 PUSH2 0x18EB JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1934 DUP2 PUSH2 0x17D3 JUMP JUMPDEST DUP2 EQ PUSH2 0x193F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x194B DUP2 PUSH2 0x1811 JUMP JUMPDEST DUP2 EQ PUSH2 0x1956 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x29 LOG2 PUSH2 0xB965 0xA5 0xFC OR LOG3 CHAINID INVALID INVALID 0xAC 0xAB PUSH11 0xE400B1EC2E127601B6C9D2 DIV 0x5D DIV ADDRESS 0x24 DUP3 PUSH5 0x736F6C6343 STOP ADDMOD STOP STOP CALLER ", | |
"sourceMap": "279:1378:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;389:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2158:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3255:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5203:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1542:112:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3104:91:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5854:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3419:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:1;;;:::i;:::-;;322:26:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1201:85:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2369:102:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6575:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3740:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1381:153:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;421:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3987:149:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:198:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;389:25:0;;;;;;;;;;;;;:::o;2158:98:2:-;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;4543:13;4559:12;:10;:12::i;:::-;4543:28;;4581:32;4590:5;4597:7;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;:::o;3255:106::-;3316:7;3342:12;;3335:19;;3255:106;:::o;5203:256::-;5300:4;5316:15;5334:12;:10;:12::i;:::-;5316:30;;5356:38;5372:4;5378:7;5387:6;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;5448:4;5441:11;;;5203:256;;;;;:::o;1542:112:0:-;1094:13:1;:11;:13::i;:::-;1637:9:0::1;1619:15;;:27;;;;;;;;;;;;;;;;;;1542:112:::0;:::o;3104:91:2:-;3162:5;3186:2;3179:9;;3104:91;:::o;5854:234::-;5942:4;5958:13;5974:12;:10;:12::i;:::-;5958:28;;5996:64;6005:5;6012:7;6049:10;6021:25;6031:5;6038:7;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;:::-;6077:4;6070:11;;;5854:234;;;;:::o;3419:125::-;3493:7;3519:9;:18;3529:7;3519:18;;;;;;;;;;;;;;;;3512:25;;3419:125;;;:::o;1824:101:1:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;322:26:0:-;;;;:::o;1201:85:1:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;2369:102:2:-;2425:13;2457:7;2450:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2369:102;:::o;6575:427::-;6668:4;6684:13;6700:12;:10;:12::i;:::-;6684:28;;6722:24;6749:25;6759:5;6766:7;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;:::-;6991:4;6984:11;;;;6575:427;;;;:::o;3740:189::-;3819:4;3835:13;3851:12;:10;:12::i;:::-;3835:28;;3873;3883:5;3890:2;3894:6;3873:9;:28::i;:::-;3918:4;3911:11;;;3740:189;;;;:::o;1381:153:0:-;1094:13:1;:11;:13::i;:::-;1473:2:0::1;1459:10;:16;;1451:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;1516:10;1506:7;:20;;;;1381:153:::0;:::o;421:30::-;;;;;;;;;;;;;:::o;3987:149:2:-;4076:7;4102:11;:18;4114:5;4102:18;;;;;;;;;;;;;;;:27;4121:7;4102:27;;;;;;;;;;;;;;;;4095:34;;3987:149;;;;:::o;2074:198:1:-;1094:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;;;2154:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;640:96:5:-;693:7;719:10;712:17;;640:96;:::o;10457:340:2:-;10575:1;10558:19;;:5;:19;;;;10550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10655:1;10636:21;;:7;:21;;;;10628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10737:6;10707:11;:18;10719:5;10707:18;;;;;;;;;;;;;;;:27;10726:7;10707:27;;;;;;;;;;;;;;;:36;;;;10774:7;10758:32;;10767:5;10758:32;;;10783:6;10758:32;;;;;;:::i;:::-;;;;;;;;10457:340;;;:::o;11078:411::-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;11264:17;11244:16;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11240:243;11078:411;;;;:::o;894:479:0:-;1027:17;1068:3;1057:7;;1048:6;:16;;;;:::i;:::-;1047:24;;;;:::i;:::-;1027:44;;1082:22;1116:9;1107:6;:18;;;;:::i;:::-;1082:43;;1138:56;1154:6;1162:10;;;;;;;;;;;1192:1;1187;1175:9;:13;;;;:::i;:::-;1174:19;;;;:::i;:::-;1138:15;:56::i;:::-;1223:61;1239:6;1247:15;;;;;;;;;;;1282:1;1277;1265:9;:13;;;;:::i;:::-;1264:19;;;;:::i;:::-;1223:15;:61::i;:::-;1315:50;1331:6;1339:9;1350:14;1315:15;:50::i;:::-;894:479;;;;;:::o;1359:130:1:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;2426:187::-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2426:187;;:::o;7456:788:2:-;7568:1;7552:18;;:4;:18;;;;7544:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7644:1;7630:16;;:2;:16;;;;7622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7697:38;7718:4;7724:2;7728:6;7697:20;:38::i;:::-;7746:19;7768:9;:15;7778:4;7768:15;;;;;;;;;;;;;;;;7746:37;;7816:6;7801:11;:21;;7793:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7931:6;7917:11;:20;7899:9;:15;7909:4;7899:15;;;;;;;;;;;;;;;:38;;;;8131:6;8114:9;:13;8124:2;8114:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8178:2;8163:26;;8172:4;8163:26;;;8182:6;8163:26;;;;;;:::i;:::-;;;;;;;;8200:37;8220:4;8226:2;8230:6;8200:19;:37::i;:::-;7456:788;;;;:::o;12073:91::-;;;;:::o;12752:90::-;;;;:::o;7:139:6:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:370::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:8;3520:2;3515:3;3511:12;3504:30;3560:2;3555:3;3551:12;3544:19;;3345:224;;;:::o;3575:366::-;;3738:67;3802:2;3797:3;3738:67;:::i;:::-;3731:74;;3835:34;3831:1;3826:3;3822:11;3815:55;3901:4;3896:2;3891:3;3887:12;3880:26;3932:2;3927:3;3923:12;3916:19;;3721:220;;;:::o;3947:327::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:31;4203:1;4198:3;4194:11;4187:52;4265:2;4260:3;4256:12;4249:19;;4093:181;;;:::o;4280:370::-;;4443:67;4507:2;4502:3;4443:67;:::i;:::-;4436:74;;4540:34;4536:1;4531:3;4527:11;4520:55;4606:8;4601:2;4596:3;4592:12;4585:30;4641:2;4636:3;4632:12;4625:19;;4426:224;;;:::o;4656:313::-;;4819:67;4883:2;4878:3;4819:67;:::i;:::-;4812:74;;4916:17;4912:1;4907:3;4903:11;4896:38;4960:2;4955:3;4951:12;4944:19;;4802:167;;;:::o;4975:330::-;;5138:67;5202:2;5197:3;5138:67;:::i;:::-;5131:74;;5235:34;5231:1;5226:3;5222:11;5215:55;5296:2;5291:3;5287:12;5280:19;;5121:184;;;:::o;5311:369::-;;5474:67;5538:2;5533:3;5474:67;:::i;:::-;5467:74;;5571:34;5567:1;5562:3;5558:11;5551:55;5637:7;5632:2;5627:3;5623:12;5616:29;5671:2;5666:3;5662:12;5655:19;;5457:223;;;:::o;5686:368::-;;5849:67;5913:2;5908:3;5849:67;:::i;:::-;5842:74;;5946:34;5942:1;5937:3;5933:11;5926:55;6012:6;6007:2;6002:3;5998:12;5991:28;6045:2;6040:3;6036:12;6029:19;;5832:222;;;:::o;6060:369::-;;6223:67;6287:2;6282:3;6223:67;:::i;:::-;6216:74;;6320:34;6316:1;6311:3;6307:11;6300:55;6386:7;6381:2;6376:3;6372:12;6365:29;6420:2;6415:3;6411:12;6404:19;;6206:223;;;:::o;6435:118::-;6522:24;6540:5;6522:24;:::i;:::-;6517:3;6510:37;6500:53;;:::o;6559:112::-;6642:22;6658:5;6642:22;:::i;:::-;6637:3;6630:35;6620:51;;:::o;6677:222::-;;6808:2;6797:9;6793:18;6785:26;;6821:71;6889:1;6878:9;6874:17;6865:6;6821:71;:::i;:::-;6775:124;;;;:::o;6905:210::-;;7030:2;7019:9;7015:18;7007:26;;7043:65;7105:1;7094:9;7090:17;7081:6;7043:65;:::i;:::-;6997:118;;;;:::o;7121:313::-;;7272:2;7261:9;7257:18;7249:26;;7321:9;7315:4;7311:20;7307:1;7296:9;7292:17;7285:47;7349:78;7422:4;7413:6;7349:78;:::i;:::-;7341:86;;7239:195;;;;:::o;7440:419::-;;7644:2;7633:9;7629:18;7621:26;;7693:9;7687:4;7683:20;7679:1;7668:9;7664:17;7657:47;7721:131;7847:4;7721:131;:::i;:::-;7713:139;;7611:248;;;:::o;7865:419::-;;8069:2;8058:9;8054:18;8046:26;;8118:9;8112:4;8108:20;8104:1;8093:9;8089:17;8082:47;8146:131;8272:4;8146:131;:::i;:::-;8138:139;;8036:248;;;:::o;8290:419::-;;8494:2;8483:9;8479:18;8471:26;;8543:9;8537:4;8533:20;8529:1;8518:9;8514:17;8507:47;8571:131;8697:4;8571:131;:::i;:::-;8563:139;;8461:248;;;:::o;8715:419::-;;8919:2;8908:9;8904:18;8896:26;;8968:9;8962:4;8958:20;8954:1;8943:9;8939:17;8932:47;8996:131;9122:4;8996:131;:::i;:::-;8988:139;;8886:248;;;:::o;9140:419::-;;9344:2;9333:9;9329:18;9321:26;;9393:9;9387:4;9383:20;9379:1;9368:9;9364:17;9357:47;9421:131;9547:4;9421:131;:::i;:::-;9413:139;;9311:248;;;:::o;9565:419::-;;9769:2;9758:9;9754:18;9746:26;;9818:9;9812:4;9808:20;9804:1;9793:9;9789:17;9782:47;9846:131;9972:4;9846:131;:::i;:::-;9838:139;;9736:248;;;:::o;9990:419::-;;10194:2;10183:9;10179:18;10171:26;;10243:9;10237:4;10233:20;10229:1;10218:9;10214:17;10207:47;10271:131;10397:4;10271:131;:::i;:::-;10263:139;;10161:248;;;:::o;10415:419::-;;10619:2;10608:9;10604:18;10596:26;;10668:9;10662:4;10658:20;10654:1;10643:9;10639:17;10632:47;10696:131;10822:4;10696:131;:::i;:::-;10688:139;;10586:248;;;:::o;10840:419::-;;11044:2;11033:9;11029:18;11021:26;;11093:9;11087:4;11083:20;11079:1;11068:9;11064:17;11057:47;11121:131;11247:4;11121:131;:::i;:::-;11113:139;;11011:248;;;:::o;11265:419::-;;11469:2;11458:9;11454:18;11446:26;;11518:9;11512:4;11508:20;11504:1;11493:9;11489:17;11482:47;11546:131;11672:4;11546:131;:::i;:::-;11538:139;;11436:248;;;:::o;11690:222::-;;11821:2;11810:9;11806:18;11798:26;;11834:71;11902:1;11891:9;11887:17;11878:6;11834:71;:::i;:::-;11788:124;;;;:::o;11918:214::-;;12045:2;12034:9;12030:18;12022:26;;12058:67;12122:1;12111:9;12107:17;12098:6;12058:67;:::i;:::-;12012:120;;;;:::o;12138:99::-;;12224:5;12218:12;12208:22;;12197:40;;;:::o;12243:169::-;;12361:6;12356:3;12349:19;12401:4;12396:3;12392:14;12377:29;;12339:73;;;;:::o;12418:305::-;;12477:20;12495:1;12477:20;:::i;:::-;12472:25;;12511:20;12529:1;12511:20;:::i;:::-;12506:25;;12665:1;12597:66;12593:74;12590:1;12587:81;12584:2;;;12671:18;;:::i;:::-;12584:2;12715:1;12712;12708:9;12701:16;;12462:261;;;;:::o;12729:185::-;;12786:20;12804:1;12786:20;:::i;:::-;12781:25;;12820:20;12838:1;12820:20;:::i;:::-;12815:25;;12859:1;12849:2;;12864:18;;:::i;:::-;12849:2;12906:1;12903;12899:9;12894:14;;12771:143;;;;:::o;12920:348::-;;12983:20;13001:1;12983:20;:::i;:::-;12978:25;;13017:20;13035:1;13017:20;:::i;:::-;13012:25;;13205:1;13137:66;13133:74;13130:1;13127:81;13122:1;13115:9;13108:17;13104:105;13101:2;;;13212:18;;:::i;:::-;13101:2;13260:1;13257;13253:9;13242:20;;12968:300;;;;:::o;13274:191::-;;13334:20;13352:1;13334:20;:::i;:::-;13329:25;;13368:20;13386:1;13368:20;:::i;:::-;13363:25;;13407:1;13404;13401:8;13398:2;;;13412:18;;:::i;:::-;13398:2;13457:1;13454;13450:9;13442:17;;13319:146;;;;:::o;13471:96::-;;13537:24;13555:5;13537:24;:::i;:::-;13526:35;;13516:51;;;:::o;13573:90::-;;13650:5;13643:13;13636:21;13625:32;;13615:48;;;:::o;13669:126::-;;13746:42;13739:5;13735:54;13724:65;;13714:81;;;:::o;13801:77::-;;13867:5;13856:16;;13846:32;;;:::o;13884:86::-;;13959:4;13952:5;13948:16;13937:27;;13927:43;;;:::o;13976:307::-;14044:1;14054:113;14068:6;14065:1;14062:13;14054:113;;;14153:1;14148:3;14144:11;14138:18;14134:1;14129:3;14125:11;14118:39;14090:2;14087:1;14083:10;14078:15;;14054:113;;;14185:6;14182:1;14179:13;14176:2;;;14265:1;14256:6;14251:3;14247:16;14240:27;14176:2;14025:258;;;;:::o;14289:320::-;;14370:1;14364:4;14360:12;14350:22;;14417:1;14411:4;14407:12;14438:18;14428:2;;14494:4;14486:6;14482:17;14472:27;;14428:2;14556;14548:6;14545:14;14525:18;14522:38;14519:2;;;14575:18;;:::i;:::-;14519:2;14340:269;;;;:::o;14615:180::-;14663:77;14660:1;14653:88;14760:4;14757:1;14750:15;14784:4;14781:1;14774:15;14801:180;14849:77;14846:1;14839:88;14946:4;14943:1;14936:15;14970:4;14967:1;14960:15;14987:180;15035:77;15032:1;15025:88;15132:4;15129:1;15122:15;15156:4;15153:1;15146:15;15173:102;;15265:2;15261:7;15256:2;15249:5;15245:14;15241:28;15231:38;;15221:54;;;:::o;15281:122::-;15354:24;15372:5;15354:24;:::i;:::-;15347:5;15344:35;15334:2;;15393:1;15390;15383:12;15334:2;15324:79;:::o;15409:122::-;15482:24;15500:5;15482:24;:::i;:::-;15475:5;15472:35;15462:2;;15521:1;15518;15511:12;15462:2;15452:79;:::o" | |
}, | |
"gasEstimates": { | |
"creation": { | |
"codeDepositCost": "1308600", | |
"executionCost": "infinite", | |
"totalCost": "infinite" | |
}, | |
"external": { | |
"allowance(address,address)": "infinite", | |
"approve(address,uint256)": "infinite", | |
"balanceOf(address)": "1652", | |
"burnWallet()": "1238", | |
"decimals()": "410", | |
"decreaseAllowance(address,uint256)": "infinite", | |
"increaseAllowance(address,uint256)": "infinite", | |
"liquidityWallet()": "1280", | |
"name()": "infinite", | |
"owner()": "1289", | |
"renounceOwnership()": "24421", | |
"setLiquidityWallet(address)": "22331", | |
"setTaxRate(uint256)": "21454", | |
"symbol()": "infinite", | |
"taxRate()": "1174", | |
"totalSupply()": "1227", | |
"transfer(address,uint256)": "infinite", | |
"transferFrom(address,address,uint256)": "infinite", | |
"transferOwnership(address)": "24857" | |
}, | |
"internal": { | |
"_transfer(address,address,uint256)": "infinite" | |
} | |
}, | |
"methodIdentifiers": { | |
"allowance(address,address)": "dd62ed3e", | |
"approve(address,uint256)": "095ea7b3", | |
"balanceOf(address)": "70a08231", | |
"burnWallet()": "06228749", | |
"decimals()": "313ce567", | |
"decreaseAllowance(address,uint256)": "a457c2d7", | |
"increaseAllowance(address,uint256)": "39509351", | |
"liquidityWallet()": "d4698016", | |
"name()": "06fdde03", | |
"owner()": "8da5cb5b", | |
"renounceOwnership()": "715018a6", | |
"setLiquidityWallet(address)": "296f0a0c", | |
"setTaxRate(uint256)": "c6d69a30", | |
"symbol()": "95d89b41", | |
"taxRate()": "771a3a1d", | |
"totalSupply()": "18160ddd", | |
"transfer(address,uint256)": "a9059cbb", | |
"transferFrom(address,address,uint256)": "23b872dd", | |
"transferOwnership(address)": "f2fde38b" | |
} | |
}, | |
"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": true, | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"indexed": false, | |
"internalType": "uint256", | |
"name": "value", | |
"type": "uint256" | |
} | |
], | |
"name": "Transfer", | |
"type": "event" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "owner", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "spender", | |
"type": "address" | |
} | |
], | |
"name": "allowance", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "spender", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "amount", | |
"type": "uint256" | |
} | |
], | |
"name": "approve", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "account", | |
"type": "address" | |
} | |
], | |
"name": "balanceOf", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "burnWallet", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"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": "liquidityWallet", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "name", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "owner", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "renounceOwnership", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "newWallet", | |
"type": "address" | |
} | |
], | |
"name": "setLiquidityWallet", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "newTaxRate", | |
"type": "uint256" | |
} | |
], | |
"name": "setTaxRate", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "symbol", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "taxRate", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "totalSupply", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "amount", | |
"type": "uint256" | |
} | |
], | |
"name": "transfer", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "amount", | |
"type": "uint256" | |
} | |
], | |
"name": "transferFrom", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "newOwner", | |
"type": "address" | |
} | |
], | |
"name": "transferOwnership", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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": true, | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"indexed": false, | |
"internalType": "uint256", | |
"name": "value", | |
"type": "uint256" | |
} | |
], | |
"name": "Transfer", | |
"type": "event" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "owner", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "spender", | |
"type": "address" | |
} | |
], | |
"name": "allowance", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "spender", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "amount", | |
"type": "uint256" | |
} | |
], | |
"name": "approve", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "account", | |
"type": "address" | |
} | |
], | |
"name": "balanceOf", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "burnWallet", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"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": "liquidityWallet", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "name", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "owner", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "renounceOwnership", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "newWallet", | |
"type": "address" | |
} | |
], | |
"name": "setLiquidityWallet", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "newTaxRate", | |
"type": "uint256" | |
} | |
], | |
"name": "setTaxRate", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "symbol", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "taxRate", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "totalSupply", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "amount", | |
"type": "uint256" | |
} | |
], | |
"name": "transfer", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "amount", | |
"type": "uint256" | |
} | |
], | |
"name": "transferFrom", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "newOwner", | |
"type": "address" | |
} | |
], | |
"name": "transferOwnership", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
} | |
], | |
"devdoc": { | |
"kind": "dev", | |
"methods": { | |
"allowance(address,address)": { | |
"details": "See {IERC20-allowance}." | |
}, | |
"approve(address,uint256)": { | |
"details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address." | |
}, | |
"balanceOf(address)": { | |
"details": "See {IERC20-balanceOf}." | |
}, | |
"decimals()": { | |
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}." | |
}, | |
"decreaseAllowance(address,uint256)": { | |
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`." | |
}, | |
"increaseAllowance(address,uint256)": { | |
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address." | |
}, | |
"name()": { | |
"details": "Returns the name of the token." | |
}, | |
"owner()": { | |
"details": "Returns the address of the current owner." | |
}, | |
"renounceOwnership()": { | |
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling 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}." | |
}, | |
"transfer(address,uint256)": { | |
"details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`." | |
}, | |
"transferFrom(address,address,uint256)": { | |
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`." | |
}, | |
"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": { | |
"failLeontoken.sol": "FailLeon" | |
}, | |
"evmVersion": "istanbul", | |
"libraries": {}, | |
"metadata": { | |
"bytecodeHash": "ipfs" | |
}, | |
"optimizer": { | |
"enabled": false, | |
"runs": 200 | |
}, | |
"remappings": [] | |
}, | |
"sources": { | |
"failLeontoken.sol": { | |
"keccak256": "0xa0bfce777446eeb4598addfea45dba0a0de5c9c7e42a644fecaa5385bad6a7ab", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://13f0aa49378034dc1706cbfbea492dc044efd5c17db6dfe9c1cb0e6e12830c22", | |
"dweb:/ipfs/QmaRq1T5o2nAAxEKuFDB796FBp64SsbSmh27R4FkHMDWN5" | |
] | |
}, | |
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol": { | |
"keccak256": "0xba43b97fba0d32eb4254f6a5a297b39a19a247082a02d6e69349e071e2946218", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://fc980984badf3984b6303b377711220e067722bbd6a135b24669ff5069ef9f32", | |
"dweb:/ipfs/QmPHXMSXj99XjSVM21YsY6aNtLLjLVXDbyN76J5HQYvvrz" | |
] | |
}, | |
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol": { | |
"keccak256": "0xa56ca923f70c1748830700250b19c61b70db9a683516dc5e216694a50445d99c", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://cac938788bc4be12101e59d45588b4e059579f4e61062e1cda8d6b06c0191b15", | |
"dweb:/ipfs/QmV2JKCyjTVH3rkWNrfdJRhAT7tZ3usAN2XcnD4h53Mvih" | |
] | |
}, | |
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/IERC20.sol": { | |
"keccak256": "0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5", | |
"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53" | |
] | |
}, | |
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/extensions/IERC20Metadata.sol": { | |
"keccak256": "0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd", | |
"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8" | |
] | |
}, | |
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/utils/Context.sol": { | |
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92", | |
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3" | |
] | |
} | |
}, | |
"version": 1 | |
} |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "50780578fb414c1f33832d4ecfdd1a8e", | |
"_format": "hh-sol-build-info-1", | |
"solcVersion": "0.8.0", | |
"solcLongVersion": "0.8.0+commit.c7dfd78e", | |
"input": { | |
"language": "Solidity", | |
"sources": { | |
"failLeontoken.sol": { | |
"content": "// SPDX-License-Identifier: MIT\r\npragma solidity ^0.8.0;\r\n\r\nimport \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\";\r\nimport \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\";\r\n\r\ncontract FailLeon is ERC20, Ownable {\r\n uint256 public taxRate = 5; // 5% de taxa em cada transação\r\n address public burnWallet;\r\n address public liquidityWallet;\r\n\r\n // Construtor sem a necessidade de passar parâmetro para o Ownable\r\n constructor() ERC20(\"FailLeon\", \"FLN\") {\r\n _mint(msg.sender, 2500000000 * 10**decimals()); // 2.5 bilhões de tokens\r\n burnWallet = address(0xdead); // Endereço de queima padrão\r\n liquidityWallet = 0x7059f42396411106d99b0e9C18E66c009cca80D1; // Seu endereço como carteira de liquidez\r\n }\r\n\r\n // Função _transfer sobrescrita\r\n function _transfer(\r\n address sender,\r\n address recipient,\r\n uint256 amount\r\n ) internal override {\r\n uint256 taxAmount = (amount * taxRate) / 100;\r\n uint256 amountAfterTax = amount - taxAmount;\r\n\r\n super._transfer(sender, burnWallet, (taxAmount * 2) / 5); // 2% para queima\r\n super._transfer(sender, liquidityWallet, (taxAmount * 3) / 5); // 3% para liquidez\r\n super._transfer(sender, recipient, amountAfterTax);\r\n }\r\n\r\n function setTaxRate(uint256 newTaxRate) external onlyOwner {\r\n require(newTaxRate <= 10, \"Taxa muito alta\");\r\n taxRate = newTaxRate;\r\n }\r\n\r\n function setLiquidityWallet(address newWallet) external onlyOwner {\r\n liquidityWallet = newWallet;\r\n }\r\n}" | |
}, | |
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * By default, the owner account will be the one that deploys the contract. This\n * can later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n constructor() {\n _transferOwnership(_msgSender());\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n _checkOwner();\n _;\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if the sender is not the owner.\n */\n function _checkOwner() internal view virtual {\n require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby disabling any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n require(newOwner != address(0), \"Ownable: new owner is the zero address\");\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n" | |
}, | |
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC20.sol\";\nimport \"./extensions/IERC20Metadata.sol\";\nimport \"../../utils/Context.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * The default value of {decimals} is 18. To change this, you should override\n * this function so it returns a different value.\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC20\n * applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20 is Context, IERC20, IERC20Metadata {\n mapping(address => uint256) private _balances;\n\n mapping(address => mapping(address => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * All two of these values are immutable: they can only be set once during\n * construction.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the default value returned by this function, unless\n * it's overridden.\n *\n * NOTE: This information is only used for _display_ purposes: it in\n * no way affects any of the arithmetic of the contract, including\n * {IERC20-balanceOf} and {IERC20-transfer}.\n */\n function decimals() public view virtual override returns (uint8) {\n return 18;\n }\n\n /**\n * @dev See {IERC20-totalSupply}.\n */\n function totalSupply() public view virtual override returns (uint256) {\n return _totalSupply;\n }\n\n /**\n * @dev See {IERC20-balanceOf}.\n */\n function balanceOf(address account) public view virtual override returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - the caller must have a balance of at least `amount`.\n */\n function transfer(address to, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _transfer(owner, to, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-allowance}.\n */\n function allowance(address owner, address spender) public view virtual override returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on\n * `transferFrom`. This is semantically equivalent to an infinite approval.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function approve(address spender, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Emits an {Approval} event indicating the updated allowance. This is not\n * required by the EIP. See the note at the beginning of {ERC20}.\n *\n * NOTE: Does not update the allowance if the current allowance\n * is the maximum `uint256`.\n *\n * Requirements:\n *\n * - `from` and `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n * - the caller must have allowance for ``from``'s tokens of at least\n * `amount`.\n */\n function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {\n address spender = _msgSender();\n _spendAllowance(from, spender, amount);\n _transfer(from, to, amount);\n return true;\n }\n\n /**\n * @dev Atomically increases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, allowance(owner, spender) + addedValue);\n return true;\n }\n\n /**\n * @dev Atomically decreases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `spender` must have allowance for the caller of at least\n * `subtractedValue`.\n */\n function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\n address owner = _msgSender();\n uint256 currentAllowance = allowance(owner, spender);\n require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n unchecked {\n _approve(owner, spender, currentAllowance - subtractedValue);\n }\n\n return true;\n }\n\n /**\n * @dev Moves `amount` of tokens from `from` to `to`.\n *\n * This internal function is equivalent to {transfer}, and can be used to\n * e.g. implement automatic token fees, slashing mechanisms, etc.\n *\n * Emits a {Transfer} event.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n */\n function _transfer(address from, address to, uint256 amount) internal virtual {\n require(from != address(0), \"ERC20: transfer from the zero address\");\n require(to != address(0), \"ERC20: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, amount);\n\n uint256 fromBalance = _balances[from];\n require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n unchecked {\n _balances[from] = fromBalance - amount;\n // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\n // decrementing then incrementing.\n _balances[to] += amount;\n }\n\n emit Transfer(from, to, amount);\n\n _afterTokenTransfer(from, to, amount);\n }\n\n /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n * the total supply.\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n */\n function _mint(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: mint to the zero address\");\n\n _beforeTokenTransfer(address(0), account, amount);\n\n _totalSupply += amount;\n unchecked {\n // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\n _balances[account] += amount;\n }\n emit Transfer(address(0), account, amount);\n\n _afterTokenTransfer(address(0), account, amount);\n }\n\n /**\n * @dev Destroys `amount` tokens from `account`, reducing the\n * total supply.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n * - `account` must have at least `amount` tokens.\n */\n function _burn(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: burn from the zero address\");\n\n _beforeTokenTransfer(account, address(0), amount);\n\n uint256 accountBalance = _balances[account];\n require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n unchecked {\n _balances[account] = accountBalance - amount;\n // Overflow not possible: amount <= accountBalance <= totalSupply.\n _totalSupply -= amount;\n }\n\n emit Transfer(account, address(0), amount);\n\n _afterTokenTransfer(account, address(0), amount);\n }\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n *\n * This internal function is equivalent to `approve`, and can be used to\n * e.g. set automatic allowances for certain subsystems, etc.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `owner` cannot be the zero address.\n * - `spender` cannot be the zero address.\n */\n function _approve(address owner, address spender, uint256 amount) internal virtual {\n require(owner != address(0), \"ERC20: approve from the zero address\");\n require(spender != address(0), \"ERC20: approve to the zero address\");\n\n _allowances[owner][spender] = amount;\n emit Approval(owner, spender, amount);\n }\n\n /**\n * @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n *\n * Does not update the allowance amount in case of infinite allowance.\n * Revert if not enough allowance is available.\n *\n * Might emit an {Approval} event.\n */\n function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {\n uint256 currentAllowance = allowance(owner, spender);\n if (currentAllowance != type(uint256).max) {\n require(currentAllowance >= amount, \"ERC20: insufficient allowance\");\n unchecked {\n _approve(owner, spender, currentAllowance - amount);\n }\n }\n }\n\n /**\n * @dev Hook that is called before any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * will be transferred to `to`.\n * - when `from` is zero, `amount` tokens will be minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n\n /**\n * @dev Hook that is called after any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * has been transferred to `to`.\n * - when `from` is zero, `amount` tokens have been minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n}\n" | |
}, | |
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/utils/Context.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n" | |
}, | |
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/extensions/IERC20Metadata.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n *\n * _Available since v4.1._\n */\ninterface IERC20Metadata is IERC20 {\n /**\n * @dev Returns the name of the token.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the symbol of the token.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the decimals places of the token.\n */\n function decimals() external view returns (uint8);\n}\n" | |
}, | |
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/IERC20.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n" | |
} | |
}, | |
"settings": { | |
"optimizer": { | |
"enabled": false, | |
"runs": 200 | |
}, | |
"outputSelection": { | |
"*": { | |
"": [ | |
"ast" | |
], | |
"*": [ | |
"abi", | |
"metadata", | |
"devdoc", | |
"userdoc", | |
"storageLayout", | |
"evm.legacyAssembly", | |
"evm.bytecode", | |
"evm.deployedBytecode", | |
"evm.methodIdentifiers", | |
"evm.gasEstimates", | |
"evm.assembly" | |
] | |
} | |
}, | |
"remappings": [] | |
} | |
}, | |
"output": { | |
"contracts": { | |
"failLeontoken.sol": { | |
"FailLeon": { | |
"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": true, | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"indexed": false, | |
"internalType": "uint256", | |
"name": "value", | |
"type": "uint256" | |
} | |
], | |
"name": "Transfer", | |
"type": "event" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "owner", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "spender", | |
"type": "address" | |
} | |
], | |
"name": "allowance", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "spender", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "amount", | |
"type": "uint256" | |
} | |
], | |
"name": "approve", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "account", | |
"type": "address" | |
} | |
], | |
"name": "balanceOf", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "burnWallet", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"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": "liquidityWallet", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "name", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "owner", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "renounceOwnership", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "newWallet", | |
"type": "address" | |
} | |
], | |
"name": "setLiquidityWallet", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "newTaxRate", | |
"type": "uint256" | |
} | |
], | |
"name": "setTaxRate", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "symbol", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "taxRate", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "totalSupply", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "amount", | |
"type": "uint256" | |
} | |
], | |
"name": "transfer", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "amount", | |
"type": "uint256" | |
} | |
], | |
"name": "transferFrom", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "newOwner", | |
"type": "address" | |
} | |
], | |
"name": "transferOwnership", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
} | |
], | |
"devdoc": { | |
"kind": "dev", | |
"methods": { | |
"allowance(address,address)": { | |
"details": "See {IERC20-allowance}." | |
}, | |
"approve(address,uint256)": { | |
"details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address." | |
}, | |
"balanceOf(address)": { | |
"details": "See {IERC20-balanceOf}." | |
}, | |
"decimals()": { | |
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}." | |
}, | |
"decreaseAllowance(address,uint256)": { | |
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`." | |
}, | |
"increaseAllowance(address,uint256)": { | |
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address." | |
}, | |
"name()": { | |
"details": "Returns the name of the token." | |
}, | |
"owner()": { | |
"details": "Returns the address of the current owner." | |
}, | |
"renounceOwnership()": { | |
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling 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}." | |
}, | |
"transfer(address,uint256)": { | |
"details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`." | |
}, | |
"transferFrom(address,address,uint256)": { | |
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`." | |
}, | |
"transferOwnership(address)": { | |
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner." | |
} | |
}, | |
"version": 1 | |
}, | |
"evm": { | |
"assembly": " /* \"failLeontoken.sol\":279:1657 contract FailLeon is ERC20, Ownable {\r... */\n mstore(0x40, 0x80)\n /* \"failLeontoken.sol\":347:348 5 */\n 0x05\n /* \"failLeontoken.sol\":322:348 uint256 public taxRate = 5 */\n 0x06\n sstore\n /* \"failLeontoken.sol\":533:847 constructor() ERC20(\"FailLeon\", \"FLN\") {\r... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":1980:2093 constructor(string memory name_, string memory symbol_) {... */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x08\n dup2\n mstore\n 0x20\n add\n 0x4661696c4c656f6e000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x03\n dup2\n mstore\n 0x20\n add\n 0x464c4e0000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2054:2059 name_ */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2046:2051 _name */\n 0x03\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2046:2059 _name = name_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_6\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2079:2086 symbol_ */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2069:2076 _symbol */\n 0x04\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2069:2086 _symbol = symbol_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_8\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":1980:2093 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":936:968 _transferOwnership(_msgSender()) */\n tag_10\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":955:967 _msgSender() */\n tag_11\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":955:965 _msgSender */\n shl(0x20, tag_12)\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":955:967 _msgSender() */\n 0x20\n shr\n jump\t// in\ntag_11:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":936:954 _transferOwnership */\n shl(0x20, tag_13)\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":936:968 _transferOwnership(_msgSender()) */\n 0x20\n shr\n jump\t// in\ntag_10:\n /* \"failLeontoken.sol\":583:629 _mint(msg.sender, 2500000000 * 10**decimals()) */\n tag_15\n /* \"failLeontoken.sol\":589:599 msg.sender */\n caller\n /* \"failLeontoken.sol\":618:628 decimals() */\n tag_16\n /* \"failLeontoken.sol\":618:626 decimals */\n shl(0x20, tag_17)\n /* \"failLeontoken.sol\":618:628 decimals() */\n 0x20\n shr\n jump\t// in\ntag_16:\n /* \"failLeontoken.sol\":614:616 10 */\n 0x0a\n /* \"failLeontoken.sol\":614:628 10**decimals() */\n tag_18\n swap2\n swap1\n tag_19\n jump\t// in\ntag_18:\n /* \"failLeontoken.sol\":601:611 2500000000 */\n 0x9502f900\n /* \"failLeontoken.sol\":601:628 2500000000 * 10**decimals() */\n tag_20\n swap2\n swap1\n tag_21\n jump\t// in\ntag_20:\n /* \"failLeontoken.sol\":583:588 _mint */\n shl(0x20, tag_22)\n /* \"failLeontoken.sol\":583:629 _mint(msg.sender, 2500000000 * 10**decimals()) */\n 0x20\n shr\n jump\t// in\ntag_15:\n /* \"failLeontoken.sol\":687:693 0xdead */\n 0xdead\n /* \"failLeontoken.sol\":666:676 burnWallet */\n 0x07\n 0x00\n /* \"failLeontoken.sol\":666:694 burnWallet = address(0xdead) */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"failLeontoken.sol\":754:796 0x7059f42396411106d99b0e9C18E66c009cca80D1 */\n 0x7059f42396411106d99b0e9c18e66c009cca80d1\n /* \"failLeontoken.sol\":736:751 liquidityWallet */\n 0x08\n 0x00\n /* \"failLeontoken.sol\":736:796 liquidityWallet = 0x7059f42396411106d99b0e9C18E66c009cca80D1 */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"failLeontoken.sol\":279:1657 contract FailLeon is ERC20, Ownable {\r... */\n jump(tag_23)\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\ntag_12:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2426:2613 function _transferOwnership(address newOwner) internal virtual {... */\ntag_13:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2499:2515 address oldOwner */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2518:2524 _owner */\n 0x05\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2499:2524 address oldOwner = _owner */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2543:2551 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2534:2540 _owner */\n 0x05\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2534:2551 _owner = newOwner */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2597:2605 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2566:2606 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2587:2595 oldOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2566:2606 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2426:2613 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3104:3195 function decimals() public view virtual override returns (uint8) {... */\ntag_17:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3162:3167 uint8 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3186:3188 18 */\n 0x12\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3179:3188 return 18 */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3104:3195 function decimals() public view virtual override returns (uint8) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8520:9055 function _mint(address account, uint256 amount) internal virtual {... */\ntag_22:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8622:8623 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8603:8624 account != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8603:8610 account */\n dup3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8603:8624 account != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8595:8660 require(account != address(0), \"ERC20: mint to the zero address\") */\n tag_28\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_29\n swap1\n tag_30\n jump\t// in\ntag_29:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\ntag_28:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8671:8720 _beforeTokenTransfer(address(0), account, amount) */\n tag_31\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8700:8701 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8704:8711 account */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8713:8719 amount */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8671:8691 _beforeTokenTransfer */\n shl(0x20, tag_32)\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8671:8720 _beforeTokenTransfer(address(0), account, amount) */\n 0x20\n shr\n jump\t// in\ntag_31:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8747:8753 amount */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8731:8743 _totalSupply */\n 0x02\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8731:8753 _totalSupply += amount */\n dup3\n dup3\n sload\n tag_33\n swap2\n swap1\n tag_34\n jump\t// in\ntag_33:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8921:8927 amount */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8899:8908 _balances */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8899:8917 _balances[account] */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8909:8916 account */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8899:8917 _balances[account] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8899:8927 _balances[account] += amount */\n dup3\n dup3\n sload\n add\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8973:8980 account */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8952:8989 Transfer(address(0), account, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8969:8970 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8952:8989 Transfer(address(0), account, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8982:8988 amount */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8952:8989 Transfer(address(0), account, amount) */\n mload(0x40)\n tag_35\n swap2\n swap1\n tag_36\n jump\t// in\ntag_35:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":9000:9048 _afterTokenTransfer(address(0), account, amount) */\n tag_37\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":9028:9029 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":9032:9039 account */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":9041:9047 amount */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":9000:9019 _afterTokenTransfer */\n shl(0x20, tag_38)\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":9000:9048 _afterTokenTransfer(address(0), account, amount) */\n 0x20\n shr\n jump\t// in\ntag_37:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8520:9055 function _mint(address account, uint256 amount) internal virtual {... */\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":12073:12164 function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} */\ntag_32:\n pop\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":12752:12842 function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} */\ntag_38:\n pop\n pop\n pop\n jump\t// out\n /* \"failLeontoken.sol\":279:1657 contract FailLeon is ERC20, Ownable {\r... */\ntag_7:\n dup3\n dup1\n sload\n tag_41\n swap1\n tag_42\n jump\t// in\ntag_41:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_44\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_43)\ntag_44:\n dup3\n 0x1f\n lt\n tag_45\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_43)\ntag_45:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_43\n jumpi\n swap2\n dup3\n add\ntag_46:\n dup3\n dup2\n gt\n iszero\n tag_47\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_46)\ntag_47:\ntag_43:\n pop\n swap1\n pop\n tag_48\n swap2\n swap1\n tag_49\n jump\t// in\ntag_48:\n pop\n swap1\n jump\t// out\ntag_49:\ntag_50:\n dup1\n dup3\n gt\n iszero\n tag_51\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_50)\ntag_51:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:336 */\ntag_53:\n 0x00\n /* \"#utility.yul\":170:237 */\n tag_55\n /* \"#utility.yul\":234:236 */\n 0x1f\n /* \"#utility.yul\":229:232 */\n dup4\n /* \"#utility.yul\":170:237 */\n tag_56\n jump\t// in\ntag_55:\n /* \"#utility.yul\":163:237 */\n swap2\n pop\n /* \"#utility.yul\":267:300 */\n 0x45524332303a206d696e7420746f20746865207a65726f206164647265737300\n /* \"#utility.yul\":263:264 */\n 0x00\n /* \"#utility.yul\":258:261 */\n dup4\n /* \"#utility.yul\":254:265 */\n add\n /* \"#utility.yul\":247:301 */\n mstore\n /* \"#utility.yul\":327:329 */\n 0x20\n /* \"#utility.yul\":322:325 */\n dup3\n /* \"#utility.yul\":318:330 */\n add\n /* \"#utility.yul\":311:330 */\n swap1\n pop\n /* \"#utility.yul\":153:336 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":342:460 */\ntag_57:\n /* \"#utility.yul\":429:453 */\n tag_59\n /* \"#utility.yul\":447:452 */\n dup2\n /* \"#utility.yul\":429:453 */\n tag_60\n jump\t// in\ntag_59:\n /* \"#utility.yul\":424:427 */\n dup3\n /* \"#utility.yul\":417:454 */\n mstore\n /* \"#utility.yul\":407:460 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":466:885 */\ntag_30:\n 0x00\n /* \"#utility.yul\":670:672 */\n 0x20\n /* \"#utility.yul\":659:668 */\n dup3\n /* \"#utility.yul\":655:673 */\n add\n /* \"#utility.yul\":647:673 */\n swap1\n pop\n /* \"#utility.yul\":719:728 */\n dup2\n /* \"#utility.yul\":713:717 */\n dup2\n /* \"#utility.yul\":709:729 */\n sub\n /* \"#utility.yul\":705:706 */\n 0x00\n /* \"#utility.yul\":694:703 */\n dup4\n /* \"#utility.yul\":690:707 */\n add\n /* \"#utility.yul\":683:730 */\n mstore\n /* \"#utility.yul\":747:878 */\n tag_62\n /* \"#utility.yul\":873:877 */\n dup2\n /* \"#utility.yul\":747:878 */\n tag_53\n jump\t// in\ntag_62:\n /* \"#utility.yul\":739:878 */\n swap1\n pop\n /* \"#utility.yul\":637:885 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":891:1113 */\ntag_36:\n 0x00\n /* \"#utility.yul\":1022:1024 */\n 0x20\n /* \"#utility.yul\":1011:1020 */\n dup3\n /* \"#utility.yul\":1007:1025 */\n add\n /* \"#utility.yul\":999:1025 */\n swap1\n pop\n /* \"#utility.yul\":1035:1106 */\n tag_64\n /* \"#utility.yul\":1103:1104 */\n 0x00\n /* \"#utility.yul\":1092:1101 */\n dup4\n /* \"#utility.yul\":1088:1105 */\n add\n /* \"#utility.yul\":1079:1085 */\n dup5\n /* \"#utility.yul\":1035:1106 */\n tag_57\n jump\t// in\ntag_64:\n /* \"#utility.yul\":989:1113 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1119:1288 */\ntag_56:\n 0x00\n /* \"#utility.yul\":1237:1243 */\n dup3\n /* \"#utility.yul\":1232:1235 */\n dup3\n /* \"#utility.yul\":1225:1244 */\n mstore\n /* \"#utility.yul\":1277:1281 */\n 0x20\n /* \"#utility.yul\":1272:1275 */\n dup3\n /* \"#utility.yul\":1268:1282 */\n add\n /* \"#utility.yul\":1253:1282 */\n swap1\n pop\n /* \"#utility.yul\":1215:1288 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1294:1599 */\ntag_34:\n 0x00\n /* \"#utility.yul\":1353:1373 */\n tag_67\n /* \"#utility.yul\":1371:1372 */\n dup3\n /* \"#utility.yul\":1353:1373 */\n tag_60\n jump\t// in\ntag_67:\n /* \"#utility.yul\":1348:1373 */\n swap2\n pop\n /* \"#utility.yul\":1387:1407 */\n tag_68\n /* \"#utility.yul\":1405:1406 */\n dup4\n /* \"#utility.yul\":1387:1407 */\n tag_60\n jump\t// in\ntag_68:\n /* \"#utility.yul\":1382:1407 */\n swap3\n pop\n /* \"#utility.yul\":1541:1542 */\n dup3\n /* \"#utility.yul\":1473:1539 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":1469:1543 */\n sub\n /* \"#utility.yul\":1466:1467 */\n dup3\n /* \"#utility.yul\":1463:1544 */\n gt\n /* \"#utility.yul\":1460:1462 */\n iszero\n tag_69\n jumpi\n /* \"#utility.yul\":1547:1565 */\n tag_70\n tag_71\n jump\t// in\ntag_70:\n /* \"#utility.yul\":1460:1462 */\ntag_69:\n /* \"#utility.yul\":1591:1592 */\n dup3\n /* \"#utility.yul\":1588:1589 */\n dup3\n /* \"#utility.yul\":1584:1593 */\n add\n /* \"#utility.yul\":1577:1593 */\n swap1\n pop\n /* \"#utility.yul\":1338:1599 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1605:2453 */\ntag_72:\n 0x00\n dup1\n /* \"#utility.yul\":1697:1703 */\n dup3\n /* \"#utility.yul\":1688:1703 */\n swap2\n pop\n /* \"#utility.yul\":1721:1726 */\n dup4\n /* \"#utility.yul\":1712:1726 */\n swap1\n pop\n /* \"#utility.yul\":1735:2447 */\ntag_74:\n /* \"#utility.yul\":1756:1757 */\n 0x01\n /* \"#utility.yul\":1746:1754 */\n dup6\n /* \"#utility.yul\":1743:1758 */\n gt\n /* \"#utility.yul\":1735:2447 */\n iszero\n tag_76\n jumpi\n /* \"#utility.yul\":1851:1855 */\n dup1\n /* \"#utility.yul\":1846:1849 */\n dup7\n /* \"#utility.yul\":1842:1856 */\n div\n /* \"#utility.yul\":1836:1840 */\n dup2\n /* \"#utility.yul\":1833:1857 */\n gt\n /* \"#utility.yul\":1830:1832 */\n iszero\n tag_77\n jumpi\n /* \"#utility.yul\":1860:1878 */\n tag_78\n tag_71\n jump\t// in\ntag_78:\n /* \"#utility.yul\":1830:1832 */\ntag_77:\n /* \"#utility.yul\":1910:1911 */\n 0x01\n /* \"#utility.yul\":1900:1908 */\n dup6\n /* \"#utility.yul\":1896:1912 */\n and\n /* \"#utility.yul\":1893:1895 */\n iszero\n tag_79\n jumpi\n /* \"#utility.yul\":2325:2329 */\n dup1\n /* \"#utility.yul\":2318:2323 */\n dup3\n /* \"#utility.yul\":2314:2330 */\n mul\n /* \"#utility.yul\":2305:2330 */\n swap2\n pop\n /* \"#utility.yul\":1893:1895 */\ntag_79:\n /* \"#utility.yul\":2375:2379 */\n dup1\n /* \"#utility.yul\":2369:2373 */\n dup2\n /* \"#utility.yul\":2365:2380 */\n mul\n /* \"#utility.yul\":2357:2380 */\n swap1\n pop\n /* \"#utility.yul\":2405:2437 */\n tag_80\n /* \"#utility.yul\":2428:2436 */\n dup6\n /* \"#utility.yul\":2405:2437 */\n tag_81\n jump\t// in\ntag_80:\n /* \"#utility.yul\":2393:2437 */\n swap5\n pop\n /* \"#utility.yul\":1735:2447 */\n jump(tag_74)\ntag_76:\n /* \"#utility.yul\":1678:2453 */\n swap5\n pop\n swap5\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2459:2740 */\ntag_19:\n 0x00\n /* \"#utility.yul\":2541:2564 */\n tag_83\n /* \"#utility.yul\":2559:2563 */\n dup3\n /* \"#utility.yul\":2541:2564 */\n tag_60\n jump\t// in\ntag_83:\n /* \"#utility.yul\":2533:2564 */\n swap2\n pop\n /* \"#utility.yul\":2585:2610 */\n tag_84\n /* \"#utility.yul\":2601:2609 */\n dup4\n /* \"#utility.yul\":2585:2610 */\n tag_85\n jump\t// in\ntag_84:\n /* \"#utility.yul\":2573:2610 */\n swap3\n pop\n /* \"#utility.yul\":2629:2733 */\n tag_86\n /* \"#utility.yul\":2666:2732 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":2656:2664 */\n dup5\n /* \"#utility.yul\":2650:2654 */\n dup5\n /* \"#utility.yul\":2629:2733 */\n tag_87\n jump\t// in\ntag_86:\n /* \"#utility.yul\":2620:2733 */\n swap1\n pop\n /* \"#utility.yul\":2523:2740 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2746:3819 */\ntag_87:\n 0x00\n /* \"#utility.yul\":2991:2999 */\n dup3\n /* \"#utility.yul\":2981:2983 */\n tag_89\n jumpi\n /* \"#utility.yul\":3012:3013 */\n 0x01\n /* \"#utility.yul\":3003:3013 */\n swap1\n pop\n /* \"#utility.yul\":3014:3019 */\n jump(tag_88)\n /* \"#utility.yul\":2981:2983 */\ntag_89:\n /* \"#utility.yul\":3040:3044 */\n dup2\n /* \"#utility.yul\":3030:3032 */\n tag_90\n jumpi\n /* \"#utility.yul\":3057:3058 */\n 0x00\n /* \"#utility.yul\":3048:3058 */\n swap1\n pop\n /* \"#utility.yul\":3059:3064 */\n jump(tag_88)\n /* \"#utility.yul\":3030:3032 */\ntag_90:\n /* \"#utility.yul\":3126:3130 */\n dup2\n /* \"#utility.yul\":3174:3175 */\n 0x01\n /* \"#utility.yul\":3169:3196 */\n dup2\n eq\n tag_92\n jumpi\n /* \"#utility.yul\":3210:3211 */\n 0x02\n /* \"#utility.yul\":3205:3396 */\n dup2\n eq\n tag_93\n jumpi\n /* \"#utility.yul\":3119:3396 */\n jump(tag_91)\n /* \"#utility.yul\":3169:3196 */\ntag_92:\n /* \"#utility.yul\":3187:3188 */\n 0x01\n /* \"#utility.yul\":3178:3188 */\n swap2\n pop\n /* \"#utility.yul\":3189:3194 */\n pop\n jump(tag_88)\n /* \"#utility.yul\":3205:3396 */\ntag_93:\n /* \"#utility.yul\":3250:3253 */\n 0xff\n /* \"#utility.yul\":3240:3248 */\n dup5\n /* \"#utility.yul\":3237:3254 */\n gt\n /* \"#utility.yul\":3234:3236 */\n iszero\n tag_94\n jumpi\n /* \"#utility.yul\":3257:3275 */\n tag_95\n tag_71\n jump\t// in\ntag_95:\n /* \"#utility.yul\":3234:3236 */\ntag_94:\n /* \"#utility.yul\":3306:3314 */\n dup4\n /* \"#utility.yul\":3303:3304 */\n 0x02\n /* \"#utility.yul\":3299:3315 */\n exp\n /* \"#utility.yul\":3290:3315 */\n swap2\n pop\n /* \"#utility.yul\":3341:3344 */\n dup5\n /* \"#utility.yul\":3334:3339 */\n dup3\n /* \"#utility.yul\":3331:3345 */\n gt\n /* \"#utility.yul\":3328:3330 */\n iszero\n tag_96\n jumpi\n /* \"#utility.yul\":3348:3366 */\n tag_97\n tag_71\n jump\t// in\ntag_97:\n /* \"#utility.yul\":3328:3330 */\ntag_96:\n /* \"#utility.yul\":3381:3386 */\n pop\n jump(tag_88)\n /* \"#utility.yul\":3119:3396 */\ntag_91:\n pop\n /* \"#utility.yul\":3505:3507 */\n 0x20\n /* \"#utility.yul\":3495:3503 */\n dup4\n /* \"#utility.yul\":3492:3508 */\n lt\n /* \"#utility.yul\":3486:3489 */\n 0x0133\n /* \"#utility.yul\":3480:3484 */\n dup4\n /* \"#utility.yul\":3477:3490 */\n lt\n /* \"#utility.yul\":3473:3509 */\n and\n /* \"#utility.yul\":3455:3457 */\n 0x4e\n /* \"#utility.yul\":3445:3453 */\n dup5\n /* \"#utility.yul\":3442:3458 */\n lt\n /* \"#utility.yul\":3437:3439 */\n 0x0b\n /* \"#utility.yul\":3431:3435 */\n dup5\n /* \"#utility.yul\":3428:3440 */\n lt\n /* \"#utility.yul\":3424:3459 */\n and\n /* \"#utility.yul\":3408:3519 */\n or\n /* \"#utility.yul\":3405:3407 */\n iszero\n tag_98\n jumpi\n /* \"#utility.yul\":3561:3569 */\n dup3\n /* \"#utility.yul\":3555:3559 */\n dup3\n /* \"#utility.yul\":3551:3570 */\n exp\n /* \"#utility.yul\":3542:3570 */\n swap1\n pop\n /* \"#utility.yul\":3596:3599 */\n dup4\n /* \"#utility.yul\":3589:3594 */\n dup2\n /* \"#utility.yul\":3586:3600 */\n gt\n /* \"#utility.yul\":3583:3585 */\n iszero\n tag_99\n jumpi\n /* \"#utility.yul\":3603:3621 */\n tag_100\n tag_71\n jump\t// in\ntag_100:\n /* \"#utility.yul\":3583:3585 */\ntag_99:\n /* \"#utility.yul\":3636:3641 */\n jump(tag_88)\n /* \"#utility.yul\":3405:3407 */\ntag_98:\n /* \"#utility.yul\":3676:3718 */\n tag_101\n /* \"#utility.yul\":3714:3717 */\n dup5\n /* \"#utility.yul\":3704:3712 */\n dup5\n /* \"#utility.yul\":3698:3702 */\n dup5\n /* \"#utility.yul\":3695:3696 */\n 0x01\n /* \"#utility.yul\":3676:3718 */\n tag_72\n jump\t// in\ntag_101:\n /* \"#utility.yul\":3661:3718 */\n swap3\n pop\n swap1\n pop\n /* \"#utility.yul\":3750:3754 */\n dup2\n /* \"#utility.yul\":3745:3748 */\n dup5\n /* \"#utility.yul\":3741:3755 */\n div\n /* \"#utility.yul\":3734:3739 */\n dup2\n /* \"#utility.yul\":3731:3756 */\n gt\n /* \"#utility.yul\":3728:3730 */\n iszero\n tag_102\n jumpi\n /* \"#utility.yul\":3759:3777 */\n tag_103\n tag_71\n jump\t// in\ntag_103:\n /* \"#utility.yul\":3728:3730 */\ntag_102:\n /* \"#utility.yul\":3808:3812 */\n dup2\n /* \"#utility.yul\":3801:3806 */\n dup2\n /* \"#utility.yul\":3797:3813 */\n mul\n /* \"#utility.yul\":3788:3813 */\n swap1\n pop\n /* \"#utility.yul\":2806:3819 */\ntag_88:\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3825:4173 */\ntag_21:\n 0x00\n /* \"#utility.yul\":3888:3908 */\n tag_105\n /* \"#utility.yul\":3906:3907 */\n dup3\n /* \"#utility.yul\":3888:3908 */\n tag_60\n jump\t// in\ntag_105:\n /* \"#utility.yul\":3883:3908 */\n swap2\n pop\n /* \"#utility.yul\":3922:3942 */\n tag_106\n /* \"#utility.yul\":3940:3941 */\n dup4\n /* \"#utility.yul\":3922:3942 */\n tag_60\n jump\t// in\ntag_106:\n /* \"#utility.yul\":3917:3942 */\n swap3\n pop\n /* \"#utility.yul\":4110:4111 */\n dup2\n /* \"#utility.yul\":4042:4108 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":4038:4112 */\n div\n /* \"#utility.yul\":4035:4036 */\n dup4\n /* \"#utility.yul\":4032:4113 */\n gt\n /* \"#utility.yul\":4027:4028 */\n dup3\n /* \"#utility.yul\":4020:4029 */\n iszero\n /* \"#utility.yul\":4013:4030 */\n iszero\n /* \"#utility.yul\":4009:4114 */\n and\n /* \"#utility.yul\":4006:4008 */\n iszero\n tag_107\n jumpi\n /* \"#utility.yul\":4117:4135 */\n tag_108\n tag_71\n jump\t// in\ntag_108:\n /* \"#utility.yul\":4006:4008 */\ntag_107:\n /* \"#utility.yul\":4165:4166 */\n dup3\n /* \"#utility.yul\":4162:4163 */\n dup3\n /* \"#utility.yul\":4158:4167 */\n mul\n /* \"#utility.yul\":4147:4167 */\n swap1\n pop\n /* \"#utility.yul\":3873:4173 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4179:4256 */\ntag_60:\n 0x00\n /* \"#utility.yul\":4245:4250 */\n dup2\n /* \"#utility.yul\":4234:4250 */\n swap1\n pop\n /* \"#utility.yul\":4224:4256 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4262:4348 */\ntag_85:\n 0x00\n /* \"#utility.yul\":4337:4341 */\n 0xff\n /* \"#utility.yul\":4330:4335 */\n dup3\n /* \"#utility.yul\":4326:4342 */\n and\n /* \"#utility.yul\":4315:4342 */\n swap1\n pop\n /* \"#utility.yul\":4305:4348 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4354:4674 */\ntag_42:\n 0x00\n /* \"#utility.yul\":4435:4436 */\n 0x02\n /* \"#utility.yul\":4429:4433 */\n dup3\n /* \"#utility.yul\":4425:4437 */\n div\n /* \"#utility.yul\":4415:4437 */\n swap1\n pop\n /* \"#utility.yul\":4482:4483 */\n 0x01\n /* \"#utility.yul\":4476:4480 */\n dup3\n /* \"#utility.yul\":4472:4484 */\n and\n /* \"#utility.yul\":4503:4521 */\n dup1\n /* \"#utility.yul\":4493:4495 */\n tag_112\n jumpi\n /* \"#utility.yul\":4559:4563 */\n 0x7f\n /* \"#utility.yul\":4551:4557 */\n dup3\n /* \"#utility.yul\":4547:4564 */\n and\n /* \"#utility.yul\":4537:4564 */\n swap2\n pop\n /* \"#utility.yul\":4493:4495 */\ntag_112:\n /* \"#utility.yul\":4621:4623 */\n 0x20\n /* \"#utility.yul\":4613:4619 */\n dup3\n /* \"#utility.yul\":4610:4624 */\n lt\n /* \"#utility.yul\":4590:4608 */\n dup2\n /* \"#utility.yul\":4587:4625 */\n eq\n /* \"#utility.yul\":4584:4586 */\n iszero\n tag_113\n jumpi\n /* \"#utility.yul\":4640:4658 */\n tag_114\n tag_115\n jump\t// in\ntag_114:\n /* \"#utility.yul\":4584:4586 */\ntag_113:\n /* \"#utility.yul\":4405:4674 */\n pop\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4680:4860 */\ntag_71:\n /* \"#utility.yul\":4728:4805 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":4725:4726 */\n 0x00\n /* \"#utility.yul\":4718:4806 */\n mstore\n /* \"#utility.yul\":4825:4829 */\n 0x11\n /* \"#utility.yul\":4822:4823 */\n 0x04\n /* \"#utility.yul\":4815:4830 */\n mstore\n /* \"#utility.yul\":4849:4853 */\n 0x24\n /* \"#utility.yul\":4846:4847 */\n 0x00\n /* \"#utility.yul\":4839:4854 */\n revert\n /* \"#utility.yul\":4866:5046 */\ntag_115:\n /* \"#utility.yul\":4914:4991 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":4911:4912 */\n 0x00\n /* \"#utility.yul\":4904:4992 */\n mstore\n /* \"#utility.yul\":5011:5015 */\n 0x22\n /* \"#utility.yul\":5008:5009 */\n 0x04\n /* \"#utility.yul\":5001:5016 */\n mstore\n /* \"#utility.yul\":5035:5039 */\n 0x24\n /* \"#utility.yul\":5032:5033 */\n 0x00\n /* \"#utility.yul\":5025:5040 */\n revert\n /* \"#utility.yul\":5052:5154 */\ntag_81:\n 0x00\n /* \"#utility.yul\":5141:5146 */\n dup2\n /* \"#utility.yul\":5138:5139 */\n 0x01\n /* \"#utility.yul\":5134:5147 */\n shr\n /* \"#utility.yul\":5113:5147 */\n swap1\n pop\n /* \"#utility.yul\":5103:5154 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"failLeontoken.sol\":279:1657 contract FailLeon is ERC20, Ownable {\r... */\ntag_23:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"failLeontoken.sol\":279:1657 contract FailLeon is ERC20, Ownable {\r... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x715018a6\n gt\n tag_22\n jumpi\n dup1\n 0xa9059cbb\n gt\n tag_23\n jumpi\n dup1\n 0xa9059cbb\n eq\n tag_17\n jumpi\n dup1\n 0xc6d69a30\n eq\n tag_18\n jumpi\n dup1\n 0xd4698016\n eq\n tag_19\n jumpi\n dup1\n 0xdd62ed3e\n eq\n tag_20\n jumpi\n dup1\n 0xf2fde38b\n eq\n tag_21\n jumpi\n jump(tag_2)\n tag_23:\n dup1\n 0x715018a6\n eq\n tag_12\n jumpi\n dup1\n 0x771a3a1d\n eq\n tag_13\n jumpi\n dup1\n 0x8da5cb5b\n eq\n tag_14\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_15\n jumpi\n dup1\n 0xa457c2d7\n eq\n tag_16\n jumpi\n jump(tag_2)\n tag_22:\n dup1\n 0x23b872dd\n gt\n tag_24\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_7\n jumpi\n dup1\n 0x296f0a0c\n eq\n tag_8\n jumpi\n dup1\n 0x313ce567\n eq\n tag_9\n jumpi\n dup1\n 0x39509351\n eq\n tag_10\n jumpi\n dup1\n 0x70a08231\n eq\n tag_11\n jumpi\n jump(tag_2)\n tag_24:\n dup1\n 0x06228749\n eq\n tag_3\n jumpi\n dup1\n 0x06fdde03\n eq\n tag_4\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_5\n jumpi\n dup1\n 0x18160ddd\n eq\n tag_6\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"failLeontoken.sol\":389:414 address public burnWallet */\n tag_3:\n tag_25\n tag_26\n jump\t// in\n tag_25:\n mload(0x40)\n tag_27\n swap2\n swap1\n tag_28\n jump\t// in\n tag_27:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2158:2256 function name() public view virtual override returns (string memory) {... */\n tag_4:\n tag_29\n tag_30\n jump\t// in\n tag_29:\n mload(0x40)\n tag_31\n swap2\n swap1\n tag_32\n jump\t// in\n tag_31:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4444:4641 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_5:\n tag_33\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_34\n swap2\n swap1\n tag_35\n jump\t// in\n tag_34:\n tag_36\n jump\t// in\n tag_33:\n mload(0x40)\n tag_37\n swap2\n swap1\n tag_38\n jump\t// in\n tag_37:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3255:3361 function totalSupply() public view virtual override returns (uint256) {... */\n tag_6:\n tag_39\n tag_40\n jump\t// in\n tag_39:\n mload(0x40)\n tag_41\n swap2\n swap1\n tag_42\n jump\t// in\n tag_41:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5203:5459 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {... */\n tag_7:\n tag_43\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_44\n swap2\n swap1\n tag_45\n jump\t// in\n tag_44:\n tag_46\n jump\t// in\n tag_43:\n mload(0x40)\n tag_47\n swap2\n swap1\n tag_38\n jump\t// in\n tag_47:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"failLeontoken.sol\":1542:1654 function setLiquidityWallet(address newWallet) external onlyOwner {\r... */\n tag_8:\n tag_48\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_49\n swap2\n swap1\n tag_50\n jump\t// in\n tag_49:\n tag_51\n jump\t// in\n tag_48:\n stop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3104:3195 function decimals() public view virtual override returns (uint8) {... */\n tag_9:\n tag_52\n tag_53\n jump\t// in\n tag_52:\n mload(0x40)\n tag_54\n swap2\n swap1\n tag_55\n jump\t// in\n tag_54:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5854:6088 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_10:\n tag_56\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_57\n swap2\n swap1\n tag_35\n jump\t// in\n tag_57:\n tag_58\n jump\t// in\n tag_56:\n mload(0x40)\n tag_59\n swap2\n swap1\n tag_38\n jump\t// in\n tag_59:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3419:3544 function balanceOf(address account) public view virtual override returns (uint256) {... */\n tag_11:\n tag_60\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_61\n swap2\n swap1\n tag_50\n jump\t// in\n tag_61:\n tag_62\n jump\t// in\n tag_60:\n mload(0x40)\n tag_63\n swap2\n swap1\n tag_42\n jump\t// in\n tag_63:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1824:1925 function renounceOwnership() public virtual onlyOwner {... */\n tag_12:\n tag_64\n tag_65\n jump\t// in\n tag_64:\n stop\n /* \"failLeontoken.sol\":322:348 uint256 public taxRate = 5 */\n tag_13:\n tag_66\n tag_67\n jump\t// in\n tag_66:\n mload(0x40)\n tag_68\n swap2\n swap1\n tag_42\n jump\t// in\n tag_68:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1201:1286 function owner() public view virtual returns (address) {... */\n tag_14:\n tag_69\n tag_70\n jump\t// in\n tag_69:\n mload(0x40)\n tag_71\n swap2\n swap1\n tag_28\n jump\t// in\n tag_71:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2369:2471 function symbol() public view virtual override returns (string memory) {... */\n tag_15:\n tag_72\n tag_73\n jump\t// in\n tag_72:\n mload(0x40)\n tag_74\n swap2\n swap1\n tag_32\n jump\t// in\n tag_74:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6575:7002 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_16:\n tag_75\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_76\n swap2\n swap1\n tag_35\n jump\t// in\n tag_76:\n tag_77\n jump\t// in\n tag_75:\n mload(0x40)\n tag_78\n swap2\n swap1\n tag_38\n jump\t// in\n tag_78:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3740:3929 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n tag_17:\n tag_79\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_80\n swap2\n swap1\n tag_35\n jump\t// in\n tag_80:\n tag_81\n jump\t// in\n tag_79:\n mload(0x40)\n tag_82\n swap2\n swap1\n tag_38\n jump\t// in\n tag_82:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"failLeontoken.sol\":1381:1534 function setTaxRate(uint256 newTaxRate) external onlyOwner {\r... */\n tag_18:\n tag_83\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_84\n swap2\n swap1\n tag_85\n jump\t// in\n tag_84:\n tag_86\n jump\t// in\n tag_83:\n stop\n /* \"failLeontoken.sol\":421:451 address public liquidityWallet */\n tag_19:\n tag_87\n tag_88\n jump\t// in\n tag_87:\n mload(0x40)\n tag_89\n swap2\n swap1\n tag_28\n jump\t// in\n tag_89:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3987:4136 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_20:\n tag_90\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_91\n swap2\n swap1\n tag_92\n jump\t// in\n tag_91:\n tag_93\n jump\t// in\n tag_90:\n mload(0x40)\n tag_94\n swap2\n swap1\n tag_42\n jump\t// in\n tag_94:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2074:2272 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_21:\n tag_95\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_96\n swap2\n swap1\n tag_50\n jump\t// in\n tag_96:\n tag_97\n jump\t// in\n tag_95:\n stop\n /* \"failLeontoken.sol\":389:414 address public burnWallet */\n tag_26:\n 0x07\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2158:2256 function name() public view virtual override returns (string memory) {... */\n tag_30:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2212:2225 string memory */\n 0x60\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2244:2249 _name */\n 0x03\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2237:2249 return _name */\n dup1\n sload\n tag_99\n swap1\n tag_100\n jump\t// in\n tag_99:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_101\n swap1\n tag_100\n jump\t// in\n tag_101:\n dup1\n iszero\n tag_102\n jumpi\n dup1\n 0x1f\n lt\n tag_103\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_102)\n tag_103:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_104:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_104\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_102:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2158:2256 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4444:4641 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_36:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4527:4531 bool */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4543:4556 address owner */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4559:4571 _msgSender() */\n tag_106\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4559:4569 _msgSender */\n tag_107\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4559:4571 _msgSender() */\n jump\t// in\n tag_106:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4543:4571 address owner = _msgSender() */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4581:4613 _approve(owner, spender, amount) */\n tag_108\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4590:4595 owner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4597:4604 spender */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4606:4612 amount */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4581:4589 _approve */\n tag_109\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4581:4613 _approve(owner, spender, amount) */\n jump\t// in\n tag_108:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4630:4634 true */\n 0x01\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4623:4634 return true */\n swap2\n pop\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4444:4641 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3255:3361 function totalSupply() public view virtual override returns (uint256) {... */\n tag_40:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3316:3323 uint256 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3342:3354 _totalSupply */\n sload(0x02)\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3335:3354 return _totalSupply */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3255:3361 function totalSupply() public view virtual override returns (uint256) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5203:5459 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {... */\n tag_46:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5300:5304 bool */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5316:5331 address spender */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5334:5346 _msgSender() */\n tag_112\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5334:5344 _msgSender */\n tag_107\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5334:5346 _msgSender() */\n jump\t// in\n tag_112:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5316:5346 address spender = _msgSender() */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5356:5394 _spendAllowance(from, spender, amount) */\n tag_113\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5372:5376 from */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5378:5385 spender */\n dup3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5387:5393 amount */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5356:5371 _spendAllowance */\n tag_114\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5356:5394 _spendAllowance(from, spender, amount) */\n jump\t// in\n tag_113:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5404:5431 _transfer(from, to, amount) */\n tag_115\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5414:5418 from */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5420:5422 to */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5424:5430 amount */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5404:5413 _transfer */\n tag_116\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5404:5431 _transfer(from, to, amount) */\n jump\t// in\n tag_115:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5448:5452 true */\n 0x01\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5441:5452 return true */\n swap2\n pop\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5203:5459 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {... */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"failLeontoken.sol\":1542:1654 function setLiquidityWallet(address newWallet) external onlyOwner {\r... */\n tag_51:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1094:1107 _checkOwner() */\n tag_118\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1094:1105 _checkOwner */\n tag_119\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1094:1107 _checkOwner() */\n jump\t// in\n tag_118:\n /* \"failLeontoken.sol\":1637:1646 newWallet */\n dup1\n /* \"failLeontoken.sol\":1619:1634 liquidityWallet */\n 0x08\n 0x00\n /* \"failLeontoken.sol\":1619:1646 liquidityWallet = newWallet */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"failLeontoken.sol\":1542:1654 function setLiquidityWallet(address newWallet) external onlyOwner {\r... */\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3104:3195 function decimals() public view virtual override returns (uint8) {... */\n tag_53:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3162:3167 uint8 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3186:3188 18 */\n 0x12\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3179:3188 return 18 */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3104:3195 function decimals() public view virtual override returns (uint8) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5854:6088 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_58:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5942:5946 bool */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5958:5971 address owner */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5974:5986 _msgSender() */\n tag_123\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5974:5984 _msgSender */\n tag_107\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5974:5986 _msgSender() */\n jump\t// in\n tag_123:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5958:5986 address owner = _msgSender() */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5996:6060 _approve(owner, spender, allowance(owner, spender) + addedValue) */\n tag_124\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6005:6010 owner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6012:6019 spender */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6049:6059 addedValue */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6021:6046 allowance(owner, spender) */\n tag_125\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6031:6036 owner */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6038:6045 spender */\n dup10\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6021:6030 allowance */\n tag_93\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6021:6046 allowance(owner, spender) */\n jump\t// in\n tag_125:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6021:6059 allowance(owner, spender) + addedValue */\n tag_126\n swap2\n swap1\n tag_127\n jump\t// in\n tag_126:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5996:6004 _approve */\n tag_109\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5996:6060 _approve(owner, spender, allowance(owner, spender) + addedValue) */\n jump\t// in\n tag_124:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6077:6081 true */\n 0x01\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6070:6081 return true */\n swap2\n pop\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":5854:6088 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3419:3544 function balanceOf(address account) public view virtual override returns (uint256) {... */\n tag_62:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3493:3500 uint256 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3519:3528 _balances */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3519:3537 _balances[account] */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3529:3536 account */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3519:3537 _balances[account] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3512:3537 return _balances[account] */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3419:3544 function balanceOf(address account) public view virtual override returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1824:1925 function renounceOwnership() public virtual onlyOwner {... */\n tag_65:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1094:1107 _checkOwner() */\n tag_130\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1094:1105 _checkOwner */\n tag_119\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1094:1107 _checkOwner() */\n jump\t// in\n tag_130:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1888:1918 _transferOwnership(address(0)) */\n tag_132\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1915:1916 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1888:1906 _transferOwnership */\n tag_133\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1888:1918 _transferOwnership(address(0)) */\n jump\t// in\n tag_132:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1824:1925 function renounceOwnership() public virtual onlyOwner {... */\n jump\t// out\n /* \"failLeontoken.sol\":322:348 uint256 public taxRate = 5 */\n tag_67:\n sload(0x06)\n dup2\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1201:1286 function owner() public view virtual returns (address) {... */\n tag_70:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1247:1254 address */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1273:1279 _owner */\n 0x05\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1266:1279 return _owner */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1201:1286 function owner() public view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2369:2471 function symbol() public view virtual override returns (string memory) {... */\n tag_73:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2425:2438 string memory */\n 0x60\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2457:2464 _symbol */\n 0x04\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2450:2464 return _symbol */\n dup1\n sload\n tag_136\n swap1\n tag_100\n jump\t// in\n tag_136:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_137\n swap1\n tag_100\n jump\t// in\n tag_137:\n dup1\n iszero\n tag_138\n jumpi\n dup1\n 0x1f\n lt\n tag_139\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_138)\n tag_139:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_140:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_140\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_138:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":2369:2471 function symbol() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6575:7002 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_77:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6668:6672 bool */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6684:6697 address owner */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6700:6712 _msgSender() */\n tag_142\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6700:6710 _msgSender */\n tag_107\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6700:6712 _msgSender() */\n jump\t// in\n tag_142:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6684:6712 address owner = _msgSender() */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6722:6746 uint256 currentAllowance */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6749:6774 allowance(owner, spender) */\n tag_143\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6759:6764 owner */\n dup3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6766:6773 spender */\n dup7\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6749:6758 allowance */\n tag_93\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6749:6774 allowance(owner, spender) */\n jump\t// in\n tag_143:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6722:6774 uint256 currentAllowance = allowance(owner, spender) */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6812:6827 subtractedValue */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6792:6808 currentAllowance */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6792:6827 currentAllowance >= subtractedValue */\n lt\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6784:6869 require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\") */\n tag_144\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_145\n swap1\n tag_146\n jump\t// in\n tag_145:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_144:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6903:6963 _approve(owner, spender, currentAllowance - subtractedValue) */\n tag_147\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6912:6917 owner */\n dup3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6919:6926 spender */\n dup7\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6947:6962 subtractedValue */\n dup7\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6928:6944 currentAllowance */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6928:6962 currentAllowance - subtractedValue */\n sub\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6903:6911 _approve */\n tag_109\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6903:6963 _approve(owner, spender, currentAllowance - subtractedValue) */\n jump\t// in\n tag_147:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6991:6995 true */\n 0x01\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6984:6995 return true */\n swap3\n pop\n pop\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":6575:7002 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3740:3929 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n tag_81:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3819:3823 bool */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3835:3848 address owner */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3851:3863 _msgSender() */\n tag_149\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3851:3861 _msgSender */\n tag_107\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3851:3863 _msgSender() */\n jump\t// in\n tag_149:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3835:3863 address owner = _msgSender() */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3873:3901 _transfer(owner, to, amount) */\n tag_150\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3883:3888 owner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3890:3892 to */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3894:3900 amount */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3873:3882 _transfer */\n tag_116\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3873:3901 _transfer(owner, to, amount) */\n jump\t// in\n tag_150:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3918:3922 true */\n 0x01\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3911:3922 return true */\n swap2\n pop\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3740:3929 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"failLeontoken.sol\":1381:1534 function setTaxRate(uint256 newTaxRate) external onlyOwner {\r... */\n tag_86:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1094:1107 _checkOwner() */\n tag_152\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1094:1105 _checkOwner */\n tag_119\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1094:1107 _checkOwner() */\n jump\t// in\n tag_152:\n /* \"failLeontoken.sol\":1473:1475 10 */\n 0x0a\n /* \"failLeontoken.sol\":1459:1469 newTaxRate */\n dup2\n /* \"failLeontoken.sol\":1459:1475 newTaxRate <= 10 */\n gt\n iszero\n /* \"failLeontoken.sol\":1451:1495 require(newTaxRate <= 10, \"Taxa muito alta\") */\n tag_154\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_155\n swap1\n tag_156\n jump\t// in\n tag_155:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_154:\n /* \"failLeontoken.sol\":1516:1526 newTaxRate */\n dup1\n /* \"failLeontoken.sol\":1506:1513 taxRate */\n 0x06\n /* \"failLeontoken.sol\":1506:1526 taxRate = newTaxRate */\n dup2\n swap1\n sstore\n pop\n /* \"failLeontoken.sol\":1381:1534 function setTaxRate(uint256 newTaxRate) external onlyOwner {\r... */\n pop\n jump\t// out\n /* \"failLeontoken.sol\":421:451 address public liquidityWallet */\n tag_88:\n 0x08\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3987:4136 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_93:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4076:4083 uint256 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4102:4113 _allowances */\n 0x01\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4102:4120 _allowances[owner] */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4114:4119 owner */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4102:4120 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4102:4129 _allowances[owner][spender] */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4121:4128 spender */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4102:4129 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":4095:4129 return _allowances[owner][spender] */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":3987:4136 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2074:2272 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_97:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1094:1107 _checkOwner() */\n tag_159\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1094:1105 _checkOwner */\n tag_119\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1094:1107 _checkOwner() */\n jump\t// in\n tag_159:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2182:2183 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2162:2184 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2162:2170 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2162:2184 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2154:2227 require(newOwner != address(0), \"Ownable: new owner is the zero address\") */\n tag_161\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_162\n swap1\n tag_163\n jump\t// in\n tag_162:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_161:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2237:2265 _transferOwnership(newOwner) */\n tag_164\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2256:2264 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2237:2255 _transferOwnership */\n tag_133\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2237:2265 _transferOwnership(newOwner) */\n jump\t// in\n tag_164:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2074:2272 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_107:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10457:10797 function _approve(address owner, address spender, uint256 amount) internal virtual {... */\n tag_109:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10575:10576 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10558:10577 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10558:10563 owner */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10558:10577 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10550:10618 require(owner != address(0), \"ERC20: approve from the zero address\") */\n tag_167\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_168\n swap1\n tag_169\n jump\t// in\n tag_168:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_167:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10655:10656 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10636:10657 spender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10636:10643 spender */\n dup3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10636:10657 spender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10628:10696 require(spender != address(0), \"ERC20: approve to the zero address\") */\n tag_170\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_171\n swap1\n tag_172\n jump\t// in\n tag_171:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_170:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10737:10743 amount */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10707:10718 _allowances */\n 0x01\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10707:10725 _allowances[owner] */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10719:10724 owner */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10707:10725 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10707:10734 _allowances[owner][spender] */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10726:10733 spender */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10707:10734 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10707:10743 _allowances[owner][spender] = amount */\n dup2\n swap1\n sstore\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10774:10781 spender */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10758:10790 Approval(owner, spender, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10767:10772 owner */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10758:10790 Approval(owner, spender, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10783:10789 amount */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10758:10790 Approval(owner, spender, amount) */\n mload(0x40)\n tag_173\n swap2\n swap1\n tag_42\n jump\t// in\n tag_173:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":10457:10797 function _approve(address owner, address spender, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11078:11489 function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {... */\n tag_114:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11178:11202 uint256 currentAllowance */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11205:11230 allowance(owner, spender) */\n tag_175\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11215:11220 owner */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11222:11229 spender */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11205:11214 allowance */\n tag_93\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11205:11230 allowance(owner, spender) */\n jump\t// in\n tag_175:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11178:11230 uint256 currentAllowance = allowance(owner, spender) */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11264:11281 type(uint256).max */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11244:11260 currentAllowance */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11244:11281 currentAllowance != type(uint256).max */\n eq\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11240:11483 if (currentAllowance != type(uint256).max) {... */\n tag_176\n jumpi\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11325:11331 amount */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11305:11321 currentAllowance */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11305:11331 currentAllowance >= amount */\n lt\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11297:11365 require(currentAllowance >= amount, \"ERC20: insufficient allowance\") */\n tag_177\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_178\n swap1\n tag_179\n jump\t// in\n tag_178:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_177:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11407:11458 _approve(owner, spender, currentAllowance - amount) */\n tag_180\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11416:11421 owner */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11423:11430 spender */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11451:11457 amount */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11432:11448 currentAllowance */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11432:11457 currentAllowance - amount */\n sub\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11407:11415 _approve */\n tag_109\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11407:11458 _approve(owner, spender, currentAllowance - amount) */\n jump\t// in\n tag_180:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11240:11483 if (currentAllowance != type(uint256).max) {... */\n tag_176:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":11078:11489 function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"failLeontoken.sol\":894:1373 function _transfer(\r... */\n tag_116:\n /* \"failLeontoken.sol\":1027:1044 uint256 taxAmount */\n 0x00\n /* \"failLeontoken.sol\":1068:1071 100 */\n 0x64\n /* \"failLeontoken.sol\":1057:1064 taxRate */\n sload(0x06)\n /* \"failLeontoken.sol\":1048:1054 amount */\n dup4\n /* \"failLeontoken.sol\":1048:1064 amount * taxRate */\n tag_182\n swap2\n swap1\n tag_183\n jump\t// in\n tag_182:\n /* \"failLeontoken.sol\":1047:1071 (amount * taxRate) / 100 */\n tag_184\n swap2\n swap1\n tag_185\n jump\t// in\n tag_184:\n /* \"failLeontoken.sol\":1027:1071 uint256 taxAmount = (amount * taxRate) / 100 */\n swap1\n pop\n /* \"failLeontoken.sol\":1082:1104 uint256 amountAfterTax */\n 0x00\n /* \"failLeontoken.sol\":1116:1125 taxAmount */\n dup2\n /* \"failLeontoken.sol\":1107:1113 amount */\n dup4\n /* \"failLeontoken.sol\":1107:1125 amount - taxAmount */\n tag_186\n swap2\n swap1\n tag_187\n jump\t// in\n tag_186:\n /* \"failLeontoken.sol\":1082:1125 uint256 amountAfterTax = amount - taxAmount */\n swap1\n pop\n /* \"failLeontoken.sol\":1138:1194 super._transfer(sender, burnWallet, (taxAmount * 2) / 5) */\n tag_188\n /* \"failLeontoken.sol\":1154:1160 sender */\n dup6\n /* \"failLeontoken.sol\":1162:1172 burnWallet */\n 0x07\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"failLeontoken.sol\":1192:1193 5 */\n 0x05\n /* \"failLeontoken.sol\":1187:1188 2 */\n 0x02\n /* \"failLeontoken.sol\":1175:1184 taxAmount */\n dup7\n /* \"failLeontoken.sol\":1175:1188 taxAmount * 2 */\n tag_189\n swap2\n swap1\n tag_183\n jump\t// in\n tag_189:\n /* \"failLeontoken.sol\":1174:1193 (taxAmount * 2) / 5 */\n tag_190\n swap2\n swap1\n tag_185\n jump\t// in\n tag_190:\n /* \"failLeontoken.sol\":1138:1153 super._transfer */\n tag_191\n /* \"failLeontoken.sol\":1138:1194 super._transfer(sender, burnWallet, (taxAmount * 2) / 5) */\n jump\t// in\n tag_188:\n /* \"failLeontoken.sol\":1223:1284 super._transfer(sender, liquidityWallet, (taxAmount * 3) / 5) */\n tag_192\n /* \"failLeontoken.sol\":1239:1245 sender */\n dup6\n /* \"failLeontoken.sol\":1247:1262 liquidityWallet */\n 0x08\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"failLeontoken.sol\":1282:1283 5 */\n 0x05\n /* \"failLeontoken.sol\":1277:1278 3 */\n 0x03\n /* \"failLeontoken.sol\":1265:1274 taxAmount */\n dup7\n /* \"failLeontoken.sol\":1265:1278 taxAmount * 3 */\n tag_193\n swap2\n swap1\n tag_183\n jump\t// in\n tag_193:\n /* \"failLeontoken.sol\":1264:1283 (taxAmount * 3) / 5 */\n tag_194\n swap2\n swap1\n tag_185\n jump\t// in\n tag_194:\n /* \"failLeontoken.sol\":1223:1238 super._transfer */\n tag_191\n /* \"failLeontoken.sol\":1223:1284 super._transfer(sender, liquidityWallet, (taxAmount * 3) / 5) */\n jump\t// in\n tag_192:\n /* \"failLeontoken.sol\":1315:1365 super._transfer(sender, recipient, amountAfterTax) */\n tag_195\n /* \"failLeontoken.sol\":1331:1337 sender */\n dup6\n /* \"failLeontoken.sol\":1339:1348 recipient */\n dup6\n /* \"failLeontoken.sol\":1350:1364 amountAfterTax */\n dup4\n /* \"failLeontoken.sol\":1315:1330 super._transfer */\n tag_191\n /* \"failLeontoken.sol\":1315:1365 super._transfer(sender, recipient, amountAfterTax) */\n jump\t// in\n tag_195:\n /* \"failLeontoken.sol\":894:1373 function _transfer(\r... */\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1359:1489 function _checkOwner() internal view virtual {... */\n tag_119:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1433:1445 _msgSender() */\n tag_197\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1433:1443 _msgSender */\n tag_107\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1433:1445 _msgSender() */\n jump\t// in\n tag_197:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1422:1445 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1422:1429 owner() */\n tag_198\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1422:1427 owner */\n tag_70\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1422:1429 owner() */\n jump\t// in\n tag_198:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1422:1445 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1414:1482 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_199\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_200\n swap1\n tag_201\n jump\t// in\n tag_200:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_199:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":1359:1489 function _checkOwner() internal view virtual {... */\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2426:2613 function _transferOwnership(address newOwner) internal virtual {... */\n tag_133:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2499:2515 address oldOwner */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2518:2524 _owner */\n 0x05\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2499:2524 address oldOwner = _owner */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2543:2551 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2534:2540 _owner */\n 0x05\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2534:2551 _owner = newOwner */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2597:2605 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2566:2606 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2587:2595 oldOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2566:2606 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/access/Ownable.sol\":2426:2613 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7456:8244 function _transfer(address from, address to, uint256 amount) internal virtual {... */\n tag_191:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7568:7569 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7552:7570 from != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7552:7556 from */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7552:7570 from != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7544:7612 require(from != address(0), \"ERC20: transfer from the zero address\") */\n tag_204\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_205\n swap1\n tag_206\n jump\t// in\n tag_205:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_204:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7644:7645 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7630:7646 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7630:7632 to */\n dup3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7630:7646 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7622:7686 require(to != address(0), \"ERC20: transfer to the zero address\") */\n tag_207\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_208\n swap1\n tag_209\n jump\t// in\n tag_208:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_207:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7697:7735 _beforeTokenTransfer(from, to, amount) */\n tag_210\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7718:7722 from */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7724:7726 to */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7728:7734 amount */\n dup4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7697:7717 _beforeTokenTransfer */\n tag_211\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7697:7735 _beforeTokenTransfer(from, to, amount) */\n jump\t// in\n tag_210:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7746:7765 uint256 fromBalance */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7768:7777 _balances */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7768:7783 _balances[from] */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7778:7782 from */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7768:7783 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7746:7783 uint256 fromBalance = _balances[from] */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7816:7822 amount */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7801:7812 fromBalance */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7801:7822 fromBalance >= amount */\n lt\n iszero\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7793:7865 require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\") */\n tag_212\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_213\n swap1\n tag_214\n jump\t// in\n tag_213:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_212:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7931:7937 amount */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7917:7928 fromBalance */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7917:7937 fromBalance - amount */\n sub\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7899:7908 _balances */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7899:7914 _balances[from] */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7909:7913 from */\n dup7\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7899:7914 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7899:7937 _balances[from] = fromBalance - amount */\n dup2\n swap1\n sstore\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8131:8137 amount */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8114:8123 _balances */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8114:8127 _balances[to] */\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8124:8126 to */\n dup6\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8114:8127 _balances[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8114:8137 _balances[to] += amount */\n dup3\n dup3\n sload\n add\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8178:8180 to */\n dup3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8163:8189 Transfer(from, to, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8172:8176 from */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8163:8189 Transfer(from, to, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8182:8188 amount */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8163:8189 Transfer(from, to, amount) */\n mload(0x40)\n tag_215\n swap2\n swap1\n tag_42\n jump\t// in\n tag_215:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8200:8237 _afterTokenTransfer(from, to, amount) */\n tag_216\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8220:8224 from */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8226:8228 to */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8230:8236 amount */\n dup5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8200:8219 _afterTokenTransfer */\n tag_217\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":8200:8237 _afterTokenTransfer(from, to, amount) */\n jump\t// in\n tag_216:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":7456:8244 function _transfer(address from, address to, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":12073:12164 function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} */\n tag_211:\n pop\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol\":12752:12842 function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} */\n tag_217:\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7:146 */\n tag_221:\n 0x00\n /* \"#utility.yul\":91:97 */\n dup2\n /* \"#utility.yul\":78:98 */\n calldataload\n /* \"#utility.yul\":69:98 */\n swap1\n pop\n /* \"#utility.yul\":107:140 */\n tag_223\n /* \"#utility.yul\":134:139 */\n dup2\n /* \"#utility.yul\":107:140 */\n tag_224\n jump\t// in\n tag_223:\n /* \"#utility.yul\":59:146 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":152:291 */\n tag_225:\n 0x00\n /* \"#utility.yul\":236:242 */\n dup2\n /* \"#utility.yul\":223:243 */\n calldataload\n /* \"#utility.yul\":214:243 */\n swap1\n pop\n /* \"#utility.yul\":252:285 */\n tag_227\n /* \"#utility.yul\":279:284 */\n dup2\n /* \"#utility.yul\":252:285 */\n tag_228\n jump\t// in\n tag_227:\n /* \"#utility.yul\":204:291 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":297:559 */\n tag_50:\n 0x00\n /* \"#utility.yul\":405:407 */\n 0x20\n /* \"#utility.yul\":393:402 */\n dup3\n /* \"#utility.yul\":384:391 */\n dup5\n /* \"#utility.yul\":380:403 */\n sub\n /* \"#utility.yul\":376:408 */\n slt\n /* \"#utility.yul\":373:375 */\n iszero\n tag_230\n jumpi\n /* \"#utility.yul\":421:422 */\n 0x00\n /* \"#utility.yul\":418:419 */\n dup1\n /* \"#utility.yul\":411:423 */\n revert\n /* \"#utility.yul\":373:375 */\n tag_230:\n /* \"#utility.yul\":464:465 */\n 0x00\n /* \"#utility.yul\":489:542 */\n tag_231\n /* \"#utility.yul\":534:541 */\n dup5\n /* \"#utility.yul\":525:531 */\n dup3\n /* \"#utility.yul\":514:523 */\n dup6\n /* \"#utility.yul\":510:532 */\n add\n /* \"#utility.yul\":489:542 */\n tag_221\n jump\t// in\n tag_231:\n /* \"#utility.yul\":479:542 */\n swap2\n pop\n /* \"#utility.yul\":435:552 */\n pop\n /* \"#utility.yul\":363:559 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":565:972 */\n tag_92:\n 0x00\n dup1\n /* \"#utility.yul\":690:692 */\n 0x40\n /* \"#utility.yul\":678:687 */\n dup4\n /* \"#utility.yul\":669:676 */\n dup6\n /* \"#utility.yul\":665:688 */\n sub\n /* \"#utility.yul\":661:693 */\n slt\n /* \"#utility.yul\":658:660 */\n iszero\n tag_233\n jumpi\n /* \"#utility.yul\":706:707 */\n 0x00\n /* \"#utility.yul\":703:704 */\n dup1\n /* \"#utility.yul\":696:708 */\n revert\n /* \"#utility.yul\":658:660 */\n tag_233:\n /* \"#utility.yul\":749:750 */\n 0x00\n /* \"#utility.yul\":774:827 */\n tag_234\n /* \"#utility.yul\":819:826 */\n dup6\n /* \"#utility.yul\":810:816 */\n dup3\n /* \"#utility.yul\":799:808 */\n dup7\n /* \"#utility.yul\":795:817 */\n add\n /* \"#utility.yul\":774:827 */\n tag_221\n jump\t// in\n tag_234:\n /* \"#utility.yul\":764:827 */\n swap3\n pop\n /* \"#utility.yul\":720:837 */\n pop\n /* \"#utility.yul\":876:878 */\n 0x20\n /* \"#utility.yul\":902:955 */\n tag_235\n /* \"#utility.yul\":947:954 */\n dup6\n /* \"#utility.yul\":938:944 */\n dup3\n /* \"#utility.yul\":927:936 */\n dup7\n /* \"#utility.yul\":923:945 */\n add\n /* \"#utility.yul\":902:955 */\n tag_221\n jump\t// in\n tag_235:\n /* \"#utility.yul\":892:955 */\n swap2\n pop\n /* \"#utility.yul\":847:965 */\n pop\n /* \"#utility.yul\":648:972 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":978:1530 */\n tag_45:\n 0x00\n dup1\n 0x00\n /* \"#utility.yul\":1120:1122 */\n 0x60\n /* \"#utility.yul\":1108:1117 */\n dup5\n /* \"#utility.yul\":1099:1106 */\n dup7\n /* \"#utility.yul\":1095:1118 */\n sub\n /* \"#utility.yul\":1091:1123 */\n slt\n /* \"#utility.yul\":1088:1090 */\n iszero\n tag_237\n jumpi\n /* \"#utility.yul\":1136:1137 */\n 0x00\n /* \"#utility.yul\":1133:1134 */\n dup1\n /* \"#utility.yul\":1126:1138 */\n revert\n /* \"#utility.yul\":1088:1090 */\n tag_237:\n /* \"#utility.yul\":1179:1180 */\n 0x00\n /* \"#utility.yul\":1204:1257 */\n tag_238\n /* \"#utility.yul\":1249:1256 */\n dup7\n /* \"#utility.yul\":1240:1246 */\n dup3\n /* \"#utility.yul\":1229:1238 */\n dup8\n /* \"#utility.yul\":1225:1247 */\n add\n /* \"#utility.yul\":1204:1257 */\n tag_221\n jump\t// in\n tag_238:\n /* \"#utility.yul\":1194:1257 */\n swap4\n pop\n /* \"#utility.yul\":1150:1267 */\n pop\n /* \"#utility.yul\":1306:1308 */\n 0x20\n /* \"#utility.yul\":1332:1385 */\n tag_239\n /* \"#utility.yul\":1377:1384 */\n dup7\n /* \"#utility.yul\":1368:1374 */\n dup3\n /* \"#utility.yul\":1357:1366 */\n dup8\n /* \"#utility.yul\":1353:1375 */\n add\n /* \"#utility.yul\":1332:1385 */\n tag_221\n jump\t// in\n tag_239:\n /* \"#utility.yul\":1322:1385 */\n swap3\n pop\n /* \"#utility.yul\":1277:1395 */\n pop\n /* \"#utility.yul\":1434:1436 */\n 0x40\n /* \"#utility.yul\":1460:1513 */\n tag_240\n /* \"#utility.yul\":1505:1512 */\n dup7\n /* \"#utility.yul\":1496:1502 */\n dup3\n /* \"#utility.yul\":1485:1494 */\n dup8\n /* \"#utility.yul\":1481:1503 */\n add\n /* \"#utility.yul\":1460:1513 */\n tag_225\n jump\t// in\n tag_240:\n /* \"#utility.yul\":1450:1513 */\n swap2\n pop\n /* \"#utility.yul\":1405:1523 */\n pop\n /* \"#utility.yul\":1078:1530 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":1536:1943 */\n tag_35:\n 0x00\n dup1\n /* \"#utility.yul\":1661:1663 */\n 0x40\n /* \"#utility.yul\":1649:1658 */\n dup4\n /* \"#utility.yul\":1640:1647 */\n dup6\n /* \"#utility.yul\":1636:1659 */\n sub\n /* \"#utility.yul\":1632:1664 */\n slt\n /* \"#utility.yul\":1629:1631 */\n iszero\n tag_242\n jumpi\n /* \"#utility.yul\":1677:1678 */\n 0x00\n /* \"#utility.yul\":1674:1675 */\n dup1\n /* \"#utility.yul\":1667:1679 */\n revert\n /* \"#utility.yul\":1629:1631 */\n tag_242:\n /* \"#utility.yul\":1720:1721 */\n 0x00\n /* \"#utility.yul\":1745:1798 */\n tag_243\n /* \"#utility.yul\":1790:1797 */\n dup6\n /* \"#utility.yul\":1781:1787 */\n dup3\n /* \"#utility.yul\":1770:1779 */\n dup7\n /* \"#utility.yul\":1766:1788 */\n add\n /* \"#utility.yul\":1745:1798 */\n tag_221\n jump\t// in\n tag_243:\n /* \"#utility.yul\":1735:1798 */\n swap3\n pop\n /* \"#utility.yul\":1691:1808 */\n pop\n /* \"#utility.yul\":1847:1849 */\n 0x20\n /* \"#utility.yul\":1873:1926 */\n tag_244\n /* \"#utility.yul\":1918:1925 */\n dup6\n /* \"#utility.yul\":1909:1915 */\n dup3\n /* \"#utility.yul\":1898:1907 */\n dup7\n /* \"#utility.yul\":1894:1916 */\n add\n /* \"#utility.yul\":1873:1926 */\n tag_225\n jump\t// in\n tag_244:\n /* \"#utility.yul\":1863:1926 */\n swap2\n pop\n /* \"#utility.yul\":1818:1936 */\n pop\n /* \"#utility.yul\":1619:1943 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1949:2211 */\n tag_85:\n 0x00\n /* \"#utility.yul\":2057:2059 */\n 0x20\n /* \"#utility.yul\":2045:2054 */\n dup3\n /* \"#utility.yul\":2036:2043 */\n dup5\n /* \"#utility.yul\":2032:2055 */\n sub\n /* \"#utility.yul\":2028:2060 */\n slt\n /* \"#utility.yul\":2025:2027 */\n iszero\n tag_246\n jumpi\n /* \"#utility.yul\":2073:2074 */\n 0x00\n /* \"#utility.yul\":2070:2071 */\n dup1\n /* \"#utility.yul\":2063:2075 */\n revert\n /* \"#utility.yul\":2025:2027 */\n tag_246:\n /* \"#utility.yul\":2116:2117 */\n 0x00\n /* \"#utility.yul\":2141:2194 */\n tag_247\n /* \"#utility.yul\":2186:2193 */\n dup5\n /* \"#utility.yul\":2177:2183 */\n dup3\n /* \"#utility.yul\":2166:2175 */\n dup6\n /* \"#utility.yul\":2162:2184 */\n add\n /* \"#utility.yul\":2141:2194 */\n tag_225\n jump\t// in\n tag_247:\n /* \"#utility.yul\":2131:2194 */\n swap2\n pop\n /* \"#utility.yul\":2087:2204 */\n pop\n /* \"#utility.yul\":2015:2211 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2217:2335 */\n tag_248:\n /* \"#utility.yul\":2304:2328 */\n tag_250\n /* \"#utility.yul\":2322:2327 */\n dup2\n /* \"#utility.yul\":2304:2328 */\n tag_251\n jump\t// in\n tag_250:\n /* \"#utility.yul\":2299:2302 */\n dup3\n /* \"#utility.yul\":2292:2329 */\n mstore\n /* \"#utility.yul\":2282:2335 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2341:2450 */\n tag_252:\n /* \"#utility.yul\":2422:2443 */\n tag_254\n /* \"#utility.yul\":2437:2442 */\n dup2\n /* \"#utility.yul\":2422:2443 */\n tag_255\n jump\t// in\n tag_254:\n /* \"#utility.yul\":2417:2420 */\n dup3\n /* \"#utility.yul\":2410:2444 */\n mstore\n /* \"#utility.yul\":2400:2450 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2456:2820 */\n tag_256:\n 0x00\n /* \"#utility.yul\":2572:2611 */\n tag_258\n /* \"#utility.yul\":2605:2610 */\n dup3\n /* \"#utility.yul\":2572:2611 */\n tag_259\n jump\t// in\n tag_258:\n /* \"#utility.yul\":2627:2698 */\n tag_260\n /* \"#utility.yul\":2691:2697 */\n dup2\n /* \"#utility.yul\":2686:2689 */\n dup6\n /* \"#utility.yul\":2627:2698 */\n tag_261\n jump\t// in\n tag_260:\n /* \"#utility.yul\":2620:2698 */\n swap4\n pop\n /* \"#utility.yul\":2707:2759 */\n tag_262\n /* \"#utility.yul\":2752:2758 */\n dup2\n /* \"#utility.yul\":2747:2750 */\n dup6\n /* \"#utility.yul\":2740:2744 */\n 0x20\n /* \"#utility.yul\":2733:2738 */\n dup7\n /* \"#utility.yul\":2729:2745 */\n add\n /* \"#utility.yul\":2707:2759 */\n tag_263\n jump\t// in\n tag_262:\n /* \"#utility.yul\":2784:2813 */\n tag_264\n /* \"#utility.yul\":2806:2812 */\n dup2\n /* \"#utility.yul\":2784:2813 */\n tag_265\n jump\t// in\n tag_264:\n /* \"#utility.yul\":2779:2782 */\n dup5\n /* \"#utility.yul\":2775:2814 */\n add\n /* \"#utility.yul\":2768:2814 */\n swap2\n pop\n /* \"#utility.yul\":2548:2820 */\n pop\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2826:3193 */\n tag_266:\n 0x00\n /* \"#utility.yul\":2989:3056 */\n tag_268\n /* \"#utility.yul\":3053:3055 */\n 0x23\n /* \"#utility.yul\":3048:3051 */\n dup4\n /* \"#utility.yul\":2989:3056 */\n tag_261\n jump\t// in\n tag_268:\n /* \"#utility.yul\":2982:3056 */\n swap2\n pop\n /* \"#utility.yul\":3086:3120 */\n 0x45524332303a207472616e7366657220746f20746865207a65726f2061646472\n /* \"#utility.yul\":3082:3083 */\n 0x00\n /* \"#utility.yul\":3077:3080 */\n dup4\n /* \"#utility.yul\":3073:3084 */\n add\n /* \"#utility.yul\":3066:3121 */\n mstore\n /* \"#utility.yul\":3152:3157 */\n 0x6573730000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3147:3149 */\n 0x20\n /* \"#utility.yul\":3142:3145 */\n dup4\n /* \"#utility.yul\":3138:3150 */\n add\n /* \"#utility.yul\":3131:3158 */\n mstore\n /* \"#utility.yul\":3184:3186 */\n 0x40\n /* \"#utility.yul\":3179:3182 */\n dup3\n /* \"#utility.yul\":3175:3187 */\n add\n /* \"#utility.yul\":3168:3187 */\n swap1\n pop\n /* \"#utility.yul\":2972:3193 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3199:3569 */\n tag_269:\n 0x00\n /* \"#utility.yul\":3362:3429 */\n tag_271\n /* \"#utility.yul\":3426:3428 */\n 0x26\n /* \"#utility.yul\":3421:3424 */\n dup4\n /* \"#utility.yul\":3362:3429 */\n tag_261\n jump\t// in\n tag_271:\n /* \"#utility.yul\":3355:3429 */\n swap2\n pop\n /* \"#utility.yul\":3459:3493 */\n 0x4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061\n /* \"#utility.yul\":3455:3456 */\n 0x00\n /* \"#utility.yul\":3450:3453 */\n dup4\n /* \"#utility.yul\":3446:3457 */\n add\n /* \"#utility.yul\":3439:3494 */\n mstore\n /* \"#utility.yul\":3525:3533 */\n 0x6464726573730000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3520:3522 */\n 0x20\n /* \"#utility.yul\":3515:3518 */\n dup4\n /* \"#utility.yul\":3511:3523 */\n add\n /* \"#utility.yul\":3504:3534 */\n mstore\n /* \"#utility.yul\":3560:3562 */\n 0x40\n /* \"#utility.yul\":3555:3558 */\n dup3\n /* \"#utility.yul\":3551:3563 */\n add\n /* \"#utility.yul\":3544:3563 */\n swap1\n pop\n /* \"#utility.yul\":3345:3569 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3575:3941 */\n tag_272:\n 0x00\n /* \"#utility.yul\":3738:3805 */\n tag_274\n /* \"#utility.yul\":3802:3804 */\n 0x22\n /* \"#utility.yul\":3797:3800 */\n dup4\n /* \"#utility.yul\":3738:3805 */\n tag_261\n jump\t// in\n tag_274:\n /* \"#utility.yul\":3731:3805 */\n swap2\n pop\n /* \"#utility.yul\":3835:3869 */\n 0x45524332303a20617070726f766520746f20746865207a65726f206164647265\n /* \"#utility.yul\":3831:3832 */\n 0x00\n /* \"#utility.yul\":3826:3829 */\n dup4\n /* \"#utility.yul\":3822:3833 */\n add\n /* \"#utility.yul\":3815:3870 */\n mstore\n /* \"#utility.yul\":3901:3905 */\n 0x7373000000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3896:3898 */\n 0x20\n /* \"#utility.yul\":3891:3894 */\n dup4\n /* \"#utility.yul\":3887:3899 */\n add\n /* \"#utility.yul\":3880:3906 */\n mstore\n /* \"#utility.yul\":3932:3934 */\n 0x40\n /* \"#utility.yul\":3927:3930 */\n dup3\n /* \"#utility.yul\":3923:3935 */\n add\n /* \"#utility.yul\":3916:3935 */\n swap1\n pop\n /* \"#utility.yul\":3721:3941 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3947:4274 */\n tag_275:\n 0x00\n /* \"#utility.yul\":4110:4177 */\n tag_277\n /* \"#utility.yul\":4174:4176 */\n 0x1d\n /* \"#utility.yul\":4169:4172 */\n dup4\n /* \"#utility.yul\":4110:4177 */\n tag_261\n jump\t// in\n tag_277:\n /* \"#utility.yul\":4103:4177 */\n swap2\n pop\n /* \"#utility.yul\":4207:4238 */\n 0x45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000\n /* \"#utility.yul\":4203:4204 */\n 0x00\n /* \"#utility.yul\":4198:4201 */\n dup4\n /* \"#utility.yul\":4194:4205 */\n add\n /* \"#utility.yul\":4187:4239 */\n mstore\n /* \"#utility.yul\":4265:4267 */\n 0x20\n /* \"#utility.yul\":4260:4263 */\n dup3\n /* \"#utility.yul\":4256:4268 */\n add\n /* \"#utility.yul\":4249:4268 */\n swap1\n pop\n /* \"#utility.yul\":4093:4274 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4280:4650 */\n tag_278:\n 0x00\n /* \"#utility.yul\":4443:4510 */\n tag_280\n /* \"#utility.yul\":4507:4509 */\n 0x26\n /* \"#utility.yul\":4502:4505 */\n dup4\n /* \"#utility.yul\":4443:4510 */\n tag_261\n jump\t// in\n tag_280:\n /* \"#utility.yul\":4436:4510 */\n swap2\n pop\n /* \"#utility.yul\":4540:4574 */\n 0x45524332303a207472616e7366657220616d6f756e7420657863656564732062\n /* \"#utility.yul\":4536:4537 */\n 0x00\n /* \"#utility.yul\":4531:4534 */\n dup4\n /* \"#utility.yul\":4527:4538 */\n add\n /* \"#utility.yul\":4520:4575 */\n mstore\n /* \"#utility.yul\":4606:4614 */\n 0x616c616e63650000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":4601:4603 */\n 0x20\n /* \"#utility.yul\":4596:4599 */\n dup4\n /* \"#utility.yul\":4592:4604 */\n add\n /* \"#utility.yul\":4585:4615 */\n mstore\n /* \"#utility.yul\":4641:4643 */\n 0x40\n /* \"#utility.yul\":4636:4639 */\n dup3\n /* \"#utility.yul\":4632:4644 */\n add\n /* \"#utility.yul\":4625:4644 */\n swap1\n pop\n /* \"#utility.yul\":4426:4650 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4656:4969 */\n tag_281:\n 0x00\n /* \"#utility.yul\":4819:4886 */\n tag_283\n /* \"#utility.yul\":4883:4885 */\n 0x0f\n /* \"#utility.yul\":4878:4881 */\n dup4\n /* \"#utility.yul\":4819:4886 */\n tag_261\n jump\t// in\n tag_283:\n /* \"#utility.yul\":4812:4886 */\n swap2\n pop\n /* \"#utility.yul\":4916:4933 */\n 0x54617861206d7569746f20616c74610000000000000000000000000000000000\n /* \"#utility.yul\":4912:4913 */\n 0x00\n /* \"#utility.yul\":4907:4910 */\n dup4\n /* \"#utility.yul\":4903:4914 */\n add\n /* \"#utility.yul\":4896:4934 */\n mstore\n /* \"#utility.yul\":4960:4962 */\n 0x20\n /* \"#utility.yul\":4955:4958 */\n dup3\n /* \"#utility.yul\":4951:4963 */\n add\n /* \"#utility.yul\":4944:4963 */\n swap1\n pop\n /* \"#utility.yul\":4802:4969 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4975:5305 */\n tag_284:\n 0x00\n /* \"#utility.yul\":5138:5205 */\n tag_286\n /* \"#utility.yul\":5202:5204 */\n 0x20\n /* \"#utility.yul\":5197:5200 */\n dup4\n /* \"#utility.yul\":5138:5205 */\n tag_261\n jump\t// in\n tag_286:\n /* \"#utility.yul\":5131:5205 */\n swap2\n pop\n /* \"#utility.yul\":5235:5269 */\n 0x4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572\n /* \"#utility.yul\":5231:5232 */\n 0x00\n /* \"#utility.yul\":5226:5229 */\n dup4\n /* \"#utility.yul\":5222:5233 */\n add\n /* \"#utility.yul\":5215:5270 */\n mstore\n /* \"#utility.yul\":5296:5298 */\n 0x20\n /* \"#utility.yul\":5291:5294 */\n dup3\n /* \"#utility.yul\":5287:5299 */\n add\n /* \"#utility.yul\":5280:5299 */\n swap1\n pop\n /* \"#utility.yul\":5121:5305 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5311:5680 */\n tag_287:\n 0x00\n /* \"#utility.yul\":5474:5541 */\n tag_289\n /* \"#utility.yul\":5538:5540 */\n 0x25\n /* \"#utility.yul\":5533:5536 */\n dup4\n /* \"#utility.yul\":5474:5541 */\n tag_261\n jump\t// in\n tag_289:\n /* \"#utility.yul\":5467:5541 */\n swap2\n pop\n /* \"#utility.yul\":5571:5605 */\n 0x45524332303a207472616e736665722066726f6d20746865207a65726f206164\n /* \"#utility.yul\":5567:5568 */\n 0x00\n /* \"#utility.yul\":5562:5565 */\n dup4\n /* \"#utility.yul\":5558:5569 */\n add\n /* \"#utility.yul\":5551:5606 */\n mstore\n /* \"#utility.yul\":5637:5644 */\n 0x6472657373000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":5632:5634 */\n 0x20\n /* \"#utility.yul\":5627:5630 */\n dup4\n /* \"#utility.yul\":5623:5635 */\n add\n /* \"#utility.yul\":5616:5645 */\n mstore\n /* \"#utility.yul\":5671:5673 */\n 0x40\n /* \"#utility.yul\":5666:5669 */\n dup3\n /* \"#utility.yul\":5662:5674 */\n add\n /* \"#utility.yul\":5655:5674 */\n swap1\n pop\n /* \"#utility.yul\":5457:5680 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5686:6054 */\n tag_290:\n 0x00\n /* \"#utility.yul\":5849:5916 */\n tag_292\n /* \"#utility.yul\":5913:5915 */\n 0x24\n /* \"#utility.yul\":5908:5911 */\n dup4\n /* \"#utility.yul\":5849:5916 */\n tag_261\n jump\t// in\n tag_292:\n /* \"#utility.yul\":5842:5916 */\n swap2\n pop\n /* \"#utility.yul\":5946:5980 */\n 0x45524332303a20617070726f76652066726f6d20746865207a65726f20616464\n /* \"#utility.yul\":5942:5943 */\n 0x00\n /* \"#utility.yul\":5937:5940 */\n dup4\n /* \"#utility.yul\":5933:5944 */\n add\n /* \"#utility.yul\":5926:5981 */\n mstore\n /* \"#utility.yul\":6012:6018 */\n 0x7265737300000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6007:6009 */\n 0x20\n /* \"#utility.yul\":6002:6005 */\n dup4\n /* \"#utility.yul\":5998:6010 */\n add\n /* \"#utility.yul\":5991:6019 */\n mstore\n /* \"#utility.yul\":6045:6047 */\n 0x40\n /* \"#utility.yul\":6040:6043 */\n dup3\n /* \"#utility.yul\":6036:6048 */\n add\n /* \"#utility.yul\":6029:6048 */\n swap1\n pop\n /* \"#utility.yul\":5832:6054 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6060:6429 */\n tag_293:\n 0x00\n /* \"#utility.yul\":6223:6290 */\n tag_295\n /* \"#utility.yul\":6287:6289 */\n 0x25\n /* \"#utility.yul\":6282:6285 */\n dup4\n /* \"#utility.yul\":6223:6290 */\n tag_261\n jump\t// in\n tag_295:\n /* \"#utility.yul\":6216:6290 */\n swap2\n pop\n /* \"#utility.yul\":6320:6354 */\n 0x45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77\n /* \"#utility.yul\":6316:6317 */\n 0x00\n /* \"#utility.yul\":6311:6314 */\n dup4\n /* \"#utility.yul\":6307:6318 */\n add\n /* \"#utility.yul\":6300:6355 */\n mstore\n /* \"#utility.yul\":6386:6393 */\n 0x207a65726f000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6381:6383 */\n 0x20\n /* \"#utility.yul\":6376:6379 */\n dup4\n /* \"#utility.yul\":6372:6384 */\n add\n /* \"#utility.yul\":6365:6394 */\n mstore\n /* \"#utility.yul\":6420:6422 */\n 0x40\n /* \"#utility.yul\":6415:6418 */\n dup3\n /* \"#utility.yul\":6411:6423 */\n add\n /* \"#utility.yul\":6404:6423 */\n swap1\n pop\n /* \"#utility.yul\":6206:6429 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6435:6553 */\n tag_296:\n /* \"#utility.yul\":6522:6546 */\n tag_298\n /* \"#utility.yul\":6540:6545 */\n dup2\n /* \"#utility.yul\":6522:6546 */\n tag_299\n jump\t// in\n tag_298:\n /* \"#utility.yul\":6517:6520 */\n dup3\n /* \"#utility.yul\":6510:6547 */\n mstore\n /* \"#utility.yul\":6500:6553 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6559:6671 */\n tag_300:\n /* \"#utility.yul\":6642:6664 */\n tag_302\n /* \"#utility.yul\":6658:6663 */\n dup2\n /* \"#utility.yul\":6642:6664 */\n tag_303\n jump\t// in\n tag_302:\n /* \"#utility.yul\":6637:6640 */\n dup3\n /* \"#utility.yul\":6630:6665 */\n mstore\n /* \"#utility.yul\":6620:6671 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6677:6899 */\n tag_28:\n 0x00\n /* \"#utility.yul\":6808:6810 */\n 0x20\n /* \"#utility.yul\":6797:6806 */\n dup3\n /* \"#utility.yul\":6793:6811 */\n add\n /* \"#utility.yul\":6785:6811 */\n swap1\n pop\n /* \"#utility.yul\":6821:6892 */\n tag_305\n /* \"#utility.yul\":6889:6890 */\n 0x00\n /* \"#utility.yul\":6878:6887 */\n dup4\n /* \"#utility.yul\":6874:6891 */\n add\n /* \"#utility.yul\":6865:6871 */\n dup5\n /* \"#utility.yul\":6821:6892 */\n tag_248\n jump\t// in\n tag_305:\n /* \"#utility.yul\":6775:6899 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6905:7115 */\n tag_38:\n 0x00\n /* \"#utility.yul\":7030:7032 */\n 0x20\n /* \"#utility.yul\":7019:7028 */\n dup3\n /* \"#utility.yul\":7015:7033 */\n add\n /* \"#utility.yul\":7007:7033 */\n swap1\n pop\n /* \"#utility.yul\":7043:7108 */\n tag_307\n /* \"#utility.yul\":7105:7106 */\n 0x00\n /* \"#utility.yul\":7094:7103 */\n dup4\n /* \"#utility.yul\":7090:7107 */\n add\n /* \"#utility.yul\":7081:7087 */\n dup5\n /* \"#utility.yul\":7043:7108 */\n tag_252\n jump\t// in\n tag_307:\n /* \"#utility.yul\":6997:7115 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7121:7434 */\n tag_32:\n 0x00\n /* \"#utility.yul\":7272:7274 */\n 0x20\n /* \"#utility.yul\":7261:7270 */\n dup3\n /* \"#utility.yul\":7257:7275 */\n add\n /* \"#utility.yul\":7249:7275 */\n swap1\n pop\n /* \"#utility.yul\":7321:7330 */\n dup2\n /* \"#utility.yul\":7315:7319 */\n dup2\n /* \"#utility.yul\":7311:7331 */\n sub\n /* \"#utility.yul\":7307:7308 */\n 0x00\n /* \"#utility.yul\":7296:7305 */\n dup4\n /* \"#utility.yul\":7292:7309 */\n add\n /* \"#utility.yul\":7285:7332 */\n mstore\n /* \"#utility.yul\":7349:7427 */\n tag_309\n /* \"#utility.yul\":7422:7426 */\n dup2\n /* \"#utility.yul\":7413:7419 */\n dup5\n /* \"#utility.yul\":7349:7427 */\n tag_256\n jump\t// in\n tag_309:\n /* \"#utility.yul\":7341:7427 */\n swap1\n pop\n /* \"#utility.yul\":7239:7434 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7440:7859 */\n tag_209:\n 0x00\n /* \"#utility.yul\":7644:7646 */\n 0x20\n /* \"#utility.yul\":7633:7642 */\n dup3\n /* \"#utility.yul\":7629:7647 */\n add\n /* \"#utility.yul\":7621:7647 */\n swap1\n pop\n /* \"#utility.yul\":7693:7702 */\n dup2\n /* \"#utility.yul\":7687:7691 */\n dup2\n /* \"#utility.yul\":7683:7703 */\n sub\n /* \"#utility.yul\":7679:7680 */\n 0x00\n /* \"#utility.yul\":7668:7677 */\n dup4\n /* \"#utility.yul\":7664:7681 */\n add\n /* \"#utility.yul\":7657:7704 */\n mstore\n /* \"#utility.yul\":7721:7852 */\n tag_311\n /* \"#utility.yul\":7847:7851 */\n dup2\n /* \"#utility.yul\":7721:7852 */\n tag_266\n jump\t// in\n tag_311:\n /* \"#utility.yul\":7713:7852 */\n swap1\n pop\n /* \"#utility.yul\":7611:7859 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7865:8284 */\n tag_163:\n 0x00\n /* \"#utility.yul\":8069:8071 */\n 0x20\n /* \"#utility.yul\":8058:8067 */\n dup3\n /* \"#utility.yul\":8054:8072 */\n add\n /* \"#utility.yul\":8046:8072 */\n swap1\n pop\n /* \"#utility.yul\":8118:8127 */\n dup2\n /* \"#utility.yul\":8112:8116 */\n dup2\n /* \"#utility.yul\":8108:8128 */\n sub\n /* \"#utility.yul\":8104:8105 */\n 0x00\n /* \"#utility.yul\":8093:8102 */\n dup4\n /* \"#utility.yul\":8089:8106 */\n add\n /* \"#utility.yul\":8082:8129 */\n mstore\n /* \"#utility.yul\":8146:8277 */\n tag_313\n /* \"#utility.yul\":8272:8276 */\n dup2\n /* \"#utility.yul\":8146:8277 */\n tag_269\n jump\t// in\n tag_313:\n /* \"#utility.yul\":8138:8277 */\n swap1\n pop\n /* \"#utility.yul\":8036:8284 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8290:8709 */\n tag_172:\n 0x00\n /* \"#utility.yul\":8494:8496 */\n 0x20\n /* \"#utility.yul\":8483:8492 */\n dup3\n /* \"#utility.yul\":8479:8497 */\n add\n /* \"#utility.yul\":8471:8497 */\n swap1\n pop\n /* \"#utility.yul\":8543:8552 */\n dup2\n /* \"#utility.yul\":8537:8541 */\n dup2\n /* \"#utility.yul\":8533:8553 */\n sub\n /* \"#utility.yul\":8529:8530 */\n 0x00\n /* \"#utility.yul\":8518:8527 */\n dup4\n /* \"#utility.yul\":8514:8531 */\n add\n /* \"#utility.yul\":8507:8554 */\n mstore\n /* \"#utility.yul\":8571:8702 */\n tag_315\n /* \"#utility.yul\":8697:8701 */\n dup2\n /* \"#utility.yul\":8571:8702 */\n tag_272\n jump\t// in\n tag_315:\n /* \"#utility.yul\":8563:8702 */\n swap1\n pop\n /* \"#utility.yul\":8461:8709 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8715:9134 */\n tag_179:\n 0x00\n /* \"#utility.yul\":8919:8921 */\n 0x20\n /* \"#utility.yul\":8908:8917 */\n dup3\n /* \"#utility.yul\":8904:8922 */\n add\n /* \"#utility.yul\":8896:8922 */\n swap1\n pop\n /* \"#utility.yul\":8968:8977 */\n dup2\n /* \"#utility.yul\":8962:8966 */\n dup2\n /* \"#utility.yul\":8958:8978 */\n sub\n /* \"#utility.yul\":8954:8955 */\n 0x00\n /* \"#utility.yul\":8943:8952 */\n dup4\n /* \"#utility.yul\":8939:8956 */\n add\n /* \"#utility.yul\":8932:8979 */\n mstore\n /* \"#utility.yul\":8996:9127 */\n tag_317\n /* \"#utility.yul\":9122:9126 */\n dup2\n /* \"#utility.yul\":8996:9127 */\n tag_275\n jump\t// in\n tag_317:\n /* \"#utility.yul\":8988:9127 */\n swap1\n pop\n /* \"#utility.yul\":8886:9134 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9140:9559 */\n tag_214:\n 0x00\n /* \"#utility.yul\":9344:9346 */\n 0x20\n /* \"#utility.yul\":9333:9342 */\n dup3\n /* \"#utility.yul\":9329:9347 */\n add\n /* \"#utility.yul\":9321:9347 */\n swap1\n pop\n /* \"#utility.yul\":9393:9402 */\n dup2\n /* \"#utility.yul\":9387:9391 */\n dup2\n /* \"#utility.yul\":9383:9403 */\n sub\n /* \"#utility.yul\":9379:9380 */\n 0x00\n /* \"#utility.yul\":9368:9377 */\n dup4\n /* \"#utility.yul\":9364:9381 */\n add\n /* \"#utility.yul\":9357:9404 */\n mstore\n /* \"#utility.yul\":9421:9552 */\n tag_319\n /* \"#utility.yul\":9547:9551 */\n dup2\n /* \"#utility.yul\":9421:9552 */\n tag_278\n jump\t// in\n tag_319:\n /* \"#utility.yul\":9413:9552 */\n swap1\n pop\n /* \"#utility.yul\":9311:9559 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9565:9984 */\n tag_156:\n 0x00\n /* \"#utility.yul\":9769:9771 */\n 0x20\n /* \"#utility.yul\":9758:9767 */\n dup3\n /* \"#utility.yul\":9754:9772 */\n add\n /* \"#utility.yul\":9746:9772 */\n swap1\n pop\n /* \"#utility.yul\":9818:9827 */\n dup2\n /* \"#utility.yul\":9812:9816 */\n dup2\n /* \"#utility.yul\":9808:9828 */\n sub\n /* \"#utility.yul\":9804:9805 */\n 0x00\n /* \"#utility.yul\":9793:9802 */\n dup4\n /* \"#utility.yul\":9789:9806 */\n add\n /* \"#utility.yul\":9782:9829 */\n mstore\n /* \"#utility.yul\":9846:9977 */\n tag_321\n /* \"#utility.yul\":9972:9976 */\n dup2\n /* \"#utility.yul\":9846:9977 */\n tag_281\n jump\t// in\n tag_321:\n /* \"#utility.yul\":9838:9977 */\n swap1\n pop\n /* \"#utility.yul\":9736:9984 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9990:10409 */\n tag_201:\n 0x00\n /* \"#utility.yul\":10194:10196 */\n 0x20\n /* \"#utility.yul\":10183:10192 */\n dup3\n /* \"#utility.yul\":10179:10197 */\n add\n /* \"#utility.yul\":10171:10197 */\n swap1\n pop\n /* \"#utility.yul\":10243:10252 */\n dup2\n /* \"#utility.yul\":10237:10241 */\n dup2\n /* \"#utility.yul\":10233:10253 */\n sub\n /* \"#utility.yul\":10229:10230 */\n 0x00\n /* \"#utility.yul\":10218:10227 */\n dup4\n /* \"#utility.yul\":10214:10231 */\n add\n /* \"#utility.yul\":10207:10254 */\n mstore\n /* \"#utility.yul\":10271:10402 */\n tag_323\n /* \"#utility.yul\":10397:10401 */\n dup2\n /* \"#utility.yul\":10271:10402 */\n tag_284\n jump\t// in\n tag_323:\n /* \"#utility.yul\":10263:10402 */\n swap1\n pop\n /* \"#utility.yul\":10161:10409 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10415:10834 */\n tag_206:\n 0x00\n /* \"#utility.yul\":10619:10621 */\n 0x20\n /* \"#utility.yul\":10608:10617 */\n dup3\n /* \"#utility.yul\":10604:10622 */\n add\n /* \"#utility.yul\":10596:10622 */\n swap1\n pop\n /* \"#utility.yul\":10668:10677 */\n dup2\n /* \"#utility.yul\":10662:10666 */\n dup2\n /* \"#utility.yul\":10658:10678 */\n sub\n /* \"#utility.yul\":10654:10655 */\n 0x00\n /* \"#utility.yul\":10643:10652 */\n dup4\n /* \"#utility.yul\":10639:10656 */\n add\n /* \"#utility.yul\":10632:10679 */\n mstore\n /* \"#utility.yul\":10696:10827 */\n tag_325\n /* \"#utility.yul\":10822:10826 */\n dup2\n /* \"#utility.yul\":10696:10827 */\n tag_287\n jump\t// in\n tag_325:\n /* \"#utility.yul\":10688:10827 */\n swap1\n pop\n /* \"#utility.yul\":10586:10834 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10840:11259 */\n tag_169:\n 0x00\n /* \"#utility.yul\":11044:11046 */\n 0x20\n /* \"#utility.yul\":11033:11042 */\n dup3\n /* \"#utility.yul\":11029:11047 */\n add\n /* \"#utility.yul\":11021:11047 */\n swap1\n pop\n /* \"#utility.yul\":11093:11102 */\n dup2\n /* \"#utility.yul\":11087:11091 */\n dup2\n /* \"#utility.yul\":11083:11103 */\n sub\n /* \"#utility.yul\":11079:11080 */\n 0x00\n /* \"#utility.yul\":11068:11077 */\n dup4\n /* \"#utility.yul\":11064:11081 */\n add\n /* \"#utility.yul\":11057:11104 */\n mstore\n /* \"#utility.yul\":11121:11252 */\n tag_327\n /* \"#utility.yul\":11247:11251 */\n dup2\n /* \"#utility.yul\":11121:11252 */\n tag_290\n jump\t// in\n tag_327:\n /* \"#utility.yul\":11113:11252 */\n swap1\n pop\n /* \"#utility.yul\":11011:11259 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11265:11684 */\n tag_146:\n 0x00\n /* \"#utility.yul\":11469:11471 */\n 0x20\n /* \"#utility.yul\":11458:11467 */\n dup3\n /* \"#utility.yul\":11454:11472 */\n add\n /* \"#utility.yul\":11446:11472 */\n swap1\n pop\n /* \"#utility.yul\":11518:11527 */\n dup2\n /* \"#utility.yul\":11512:11516 */\n dup2\n /* \"#utility.yul\":11508:11528 */\n sub\n /* \"#utility.yul\":11504:11505 */\n 0x00\n /* \"#utility.yul\":11493:11502 */\n dup4\n /* \"#utility.yul\":11489:11506 */\n add\n /* \"#utility.yul\":11482:11529 */\n mstore\n /* \"#utility.yul\":11546:11677 */\n tag_329\n /* \"#utility.yul\":11672:11676 */\n dup2\n /* \"#utility.yul\":11546:11677 */\n tag_293\n jump\t// in\n tag_329:\n /* \"#utility.yul\":11538:11677 */\n swap1\n pop\n /* \"#utility.yul\":11436:11684 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11690:11912 */\n tag_42:\n 0x00\n /* \"#utility.yul\":11821:11823 */\n 0x20\n /* \"#utility.yul\":11810:11819 */\n dup3\n /* \"#utility.yul\":11806:11824 */\n add\n /* \"#utility.yul\":11798:11824 */\n swap1\n pop\n /* \"#utility.yul\":11834:11905 */\n tag_331\n /* \"#utility.yul\":11902:11903 */\n 0x00\n /* \"#utility.yul\":11891:11900 */\n dup4\n /* \"#utility.yul\":11887:11904 */\n add\n /* \"#utility.yul\":11878:11884 */\n dup5\n /* \"#utility.yul\":11834:11905 */\n tag_296\n jump\t// in\n tag_331:\n /* \"#utility.yul\":11788:11912 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11918:12132 */\n tag_55:\n 0x00\n /* \"#utility.yul\":12045:12047 */\n 0x20\n /* \"#utility.yul\":12034:12043 */\n dup3\n /* \"#utility.yul\":12030:12048 */\n add\n /* \"#utility.yul\":12022:12048 */\n swap1\n pop\n /* \"#utility.yul\":12058:12125 */\n tag_333\n /* \"#utility.yul\":12122:12123 */\n 0x00\n /* \"#utility.yul\":12111:12120 */\n dup4\n /* \"#utility.yul\":12107:12124 */\n add\n /* \"#utility.yul\":12098:12104 */\n dup5\n /* \"#utility.yul\":12058:12125 */\n tag_300\n jump\t// in\n tag_333:\n /* \"#utility.yul\":12012:12132 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12138:12237 */\n tag_259:\n 0x00\n /* \"#utility.yul\":12224:12229 */\n dup2\n /* \"#utility.yul\":12218:12230 */\n mload\n /* \"#utility.yul\":12208:12230 */\n swap1\n pop\n /* \"#utility.yul\":12197:12237 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12243:12412 */\n tag_261:\n 0x00\n /* \"#utility.yul\":12361:12367 */\n dup3\n /* \"#utility.yul\":12356:12359 */\n dup3\n /* \"#utility.yul\":12349:12368 */\n mstore\n /* \"#utility.yul\":12401:12405 */\n 0x20\n /* \"#utility.yul\":12396:12399 */\n dup3\n /* \"#utility.yul\":12392:12406 */\n add\n /* \"#utility.yul\":12377:12406 */\n swap1\n pop\n /* \"#utility.yul\":12339:12412 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12418:12723 */\n tag_127:\n 0x00\n /* \"#utility.yul\":12477:12497 */\n tag_337\n /* \"#utility.yul\":12495:12496 */\n dup3\n /* \"#utility.yul\":12477:12497 */\n tag_299\n jump\t// in\n tag_337:\n /* \"#utility.yul\":12472:12497 */\n swap2\n pop\n /* \"#utility.yul\":12511:12531 */\n tag_338\n /* \"#utility.yul\":12529:12530 */\n dup4\n /* \"#utility.yul\":12511:12531 */\n tag_299\n jump\t// in\n tag_338:\n /* \"#utility.yul\":12506:12531 */\n swap3\n pop\n /* \"#utility.yul\":12665:12666 */\n dup3\n /* \"#utility.yul\":12597:12663 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":12593:12667 */\n sub\n /* \"#utility.yul\":12590:12591 */\n dup3\n /* \"#utility.yul\":12587:12668 */\n gt\n /* \"#utility.yul\":12584:12586 */\n iszero\n tag_339\n jumpi\n /* \"#utility.yul\":12671:12689 */\n tag_340\n tag_341\n jump\t// in\n tag_340:\n /* \"#utility.yul\":12584:12586 */\n tag_339:\n /* \"#utility.yul\":12715:12716 */\n dup3\n /* \"#utility.yul\":12712:12713 */\n dup3\n /* \"#utility.yul\":12708:12717 */\n add\n /* \"#utility.yul\":12701:12717 */\n swap1\n pop\n /* \"#utility.yul\":12462:12723 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12729:12914 */\n tag_185:\n 0x00\n /* \"#utility.yul\":12786:12806 */\n tag_343\n /* \"#utility.yul\":12804:12805 */\n dup3\n /* \"#utility.yul\":12786:12806 */\n tag_299\n jump\t// in\n tag_343:\n /* \"#utility.yul\":12781:12806 */\n swap2\n pop\n /* \"#utility.yul\":12820:12840 */\n tag_344\n /* \"#utility.yul\":12838:12839 */\n dup4\n /* \"#utility.yul\":12820:12840 */\n tag_299\n jump\t// in\n tag_344:\n /* \"#utility.yul\":12815:12840 */\n swap3\n pop\n /* \"#utility.yul\":12859:12860 */\n dup3\n /* \"#utility.yul\":12849:12851 */\n tag_345\n jumpi\n /* \"#utility.yul\":12864:12882 */\n tag_346\n tag_347\n jump\t// in\n tag_346:\n /* \"#utility.yul\":12849:12851 */\n tag_345:\n /* \"#utility.yul\":12906:12907 */\n dup3\n /* \"#utility.yul\":12903:12904 */\n dup3\n /* \"#utility.yul\":12899:12908 */\n div\n /* \"#utility.yul\":12894:12908 */\n swap1\n pop\n /* \"#utility.yul\":12771:12914 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12920:13268 */\n tag_183:\n 0x00\n /* \"#utility.yul\":12983:13003 */\n tag_349\n /* \"#utility.yul\":13001:13002 */\n dup3\n /* \"#utility.yul\":12983:13003 */\n tag_299\n jump\t// in\n tag_349:\n /* \"#utility.yul\":12978:13003 */\n swap2\n pop\n /* \"#utility.yul\":13017:13037 */\n tag_350\n /* \"#utility.yul\":13035:13036 */\n dup4\n /* \"#utility.yul\":13017:13037 */\n tag_299\n jump\t// in\n tag_350:\n /* \"#utility.yul\":13012:13037 */\n swap3\n pop\n /* \"#utility.yul\":13205:13206 */\n dup2\n /* \"#utility.yul\":13137:13203 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":13133:13207 */\n div\n /* \"#utility.yul\":13130:13131 */\n dup4\n /* \"#utility.yul\":13127:13208 */\n gt\n /* \"#utility.yul\":13122:13123 */\n dup3\n /* \"#utility.yul\":13115:13124 */\n iszero\n /* \"#utility.yul\":13108:13125 */\n iszero\n /* \"#utility.yul\":13104:13209 */\n and\n /* \"#utility.yul\":13101:13103 */\n iszero\n tag_351\n jumpi\n /* \"#utility.yul\":13212:13230 */\n tag_352\n tag_341\n jump\t// in\n tag_352:\n /* \"#utility.yul\":13101:13103 */\n tag_351:\n /* \"#utility.yul\":13260:13261 */\n dup3\n /* \"#utility.yul\":13257:13258 */\n dup3\n /* \"#utility.yul\":13253:13262 */\n mul\n /* \"#utility.yul\":13242:13262 */\n swap1\n pop\n /* \"#utility.yul\":12968:13268 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":13274:13465 */\n tag_187:\n 0x00\n /* \"#utility.yul\":13334:13354 */\n tag_354\n /* \"#utility.yul\":13352:13353 */\n dup3\n /* \"#utility.yul\":13334:13354 */\n tag_299\n jump\t// in\n tag_354:\n /* \"#utility.yul\":13329:13354 */\n swap2\n pop\n /* \"#utility.yul\":13368:13388 */\n tag_355\n /* \"#utility.yul\":13386:13387 */\n dup4\n /* \"#utility.yul\":13368:13388 */\n tag_299\n jump\t// in\n tag_355:\n /* \"#utility.yul\":13363:13388 */\n swap3\n pop\n /* \"#utility.yul\":13407:13408 */\n dup3\n /* \"#utility.yul\":13404:13405 */\n dup3\n /* \"#utility.yul\":13401:13409 */\n lt\n /* \"#utility.yul\":13398:13400 */\n iszero\n tag_356\n jumpi\n /* \"#utility.yul\":13412:13430 */\n tag_357\n tag_341\n jump\t// in\n tag_357:\n /* \"#utility.yul\":13398:13400 */\n tag_356:\n /* \"#utility.yul\":13457:13458 */\n dup3\n /* \"#utility.yul\":13454:13455 */\n dup3\n /* \"#utility.yul\":13450:13459 */\n sub\n /* \"#utility.yul\":13442:13459 */\n swap1\n pop\n /* \"#utility.yul\":13319:13465 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":13471:13567 */\n tag_251:\n 0x00\n /* \"#utility.yul\":13537:13561 */\n tag_359\n /* \"#utility.yul\":13555:13560 */\n dup3\n /* \"#utility.yul\":13537:13561 */\n tag_360\n jump\t// in\n tag_359:\n /* \"#utility.yul\":13526:13561 */\n swap1\n pop\n /* \"#utility.yul\":13516:13567 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13573:13663 */\n tag_255:\n 0x00\n /* \"#utility.yul\":13650:13655 */\n dup2\n /* \"#utility.yul\":13643:13656 */\n iszero\n /* \"#utility.yul\":13636:13657 */\n iszero\n /* \"#utility.yul\":13625:13657 */\n swap1\n pop\n /* \"#utility.yul\":13615:13663 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13669:13795 */\n tag_360:\n 0x00\n /* \"#utility.yul\":13746:13788 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":13739:13744 */\n dup3\n /* \"#utility.yul\":13735:13789 */\n and\n /* \"#utility.yul\":13724:13789 */\n swap1\n pop\n /* \"#utility.yul\":13714:13795 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13801:13878 */\n tag_299:\n 0x00\n /* \"#utility.yul\":13867:13872 */\n dup2\n /* \"#utility.yul\":13856:13872 */\n swap1\n pop\n /* \"#utility.yul\":13846:13878 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13884:13970 */\n tag_303:\n 0x00\n /* \"#utility.yul\":13959:13963 */\n 0xff\n /* \"#utility.yul\":13952:13957 */\n dup3\n /* \"#utility.yul\":13948:13964 */\n and\n /* \"#utility.yul\":13937:13964 */\n swap1\n pop\n /* \"#utility.yul\":13927:13970 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13976:14283 */\n tag_263:\n /* \"#utility.yul\":14044:14045 */\n 0x00\n /* \"#utility.yul\":14054:14167 */\n tag_366:\n /* \"#utility.yul\":14068:14074 */\n dup4\n /* \"#utility.yul\":14065:14066 */\n dup2\n /* \"#utility.yul\":14062:14075 */\n lt\n /* \"#utility.yul\":14054:14167 */\n iszero\n tag_368\n jumpi\n /* \"#utility.yul\":14153:14154 */\n dup1\n /* \"#utility.yul\":14148:14151 */\n dup3\n /* \"#utility.yul\":14144:14155 */\n add\n /* \"#utility.yul\":14138:14156 */\n mload\n /* \"#utility.yul\":14134:14135 */\n dup2\n /* \"#utility.yul\":14129:14132 */\n dup5\n /* \"#utility.yul\":14125:14136 */\n add\n /* \"#utility.yul\":14118:14157 */\n mstore\n /* \"#utility.yul\":14090:14092 */\n 0x20\n /* \"#utility.yul\":14087:14088 */\n dup2\n /* \"#utility.yul\":14083:14093 */\n add\n /* \"#utility.yul\":14078:14093 */\n swap1\n pop\n /* \"#utility.yul\":14054:14167 */\n jump(tag_366)\n tag_368:\n /* \"#utility.yul\":14185:14191 */\n dup4\n /* \"#utility.yul\":14182:14183 */\n dup2\n /* \"#utility.yul\":14179:14192 */\n gt\n /* \"#utility.yul\":14176:14178 */\n iszero\n tag_369\n jumpi\n /* \"#utility.yul\":14265:14266 */\n 0x00\n /* \"#utility.yul\":14256:14262 */\n dup5\n /* \"#utility.yul\":14251:14254 */\n dup5\n /* \"#utility.yul\":14247:14263 */\n add\n /* \"#utility.yul\":14240:14267 */\n mstore\n /* \"#utility.yul\":14176:14178 */\n tag_369:\n /* \"#utility.yul\":14025:14283 */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":14289:14609 */\n tag_100:\n 0x00\n /* \"#utility.yul\":14370:14371 */\n 0x02\n /* \"#utility.yul\":14364:14368 */\n dup3\n /* \"#utility.yul\":14360:14372 */\n div\n /* \"#utility.yul\":14350:14372 */\n swap1\n pop\n /* \"#utility.yul\":14417:14418 */\n 0x01\n /* \"#utility.yul\":14411:14415 */\n dup3\n /* \"#utility.yul\":14407:14419 */\n and\n /* \"#utility.yul\":14438:14456 */\n dup1\n /* \"#utility.yul\":14428:14430 */\n tag_371\n jumpi\n /* \"#utility.yul\":14494:14498 */\n 0x7f\n /* \"#utility.yul\":14486:14492 */\n dup3\n /* \"#utility.yul\":14482:14499 */\n and\n /* \"#utility.yul\":14472:14499 */\n swap2\n pop\n /* \"#utility.yul\":14428:14430 */\n tag_371:\n /* \"#utility.yul\":14556:14558 */\n 0x20\n /* \"#utility.yul\":14548:14554 */\n dup3\n /* \"#utility.yul\":14545:14559 */\n lt\n /* \"#utility.yul\":14525:14543 */\n dup2\n /* \"#utility.yul\":14522:14560 */\n eq\n /* \"#utility.yul\":14519:14521 */\n iszero\n tag_372\n jumpi\n /* \"#utility.yul\":14575:14593 */\n tag_373\n tag_374\n jump\t// in\n tag_373:\n /* \"#utility.yul\":14519:14521 */\n tag_372:\n /* \"#utility.yul\":14340:14609 */\n pop\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":14615:14795 */\n tag_341:\n /* \"#utility.yul\":14663:14740 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":14660:14661 */\n 0x00\n /* \"#utility.yul\":14653:14741 */\n mstore\n /* \"#utility.yul\":14760:14764 */\n 0x11\n /* \"#utility.yul\":14757:14758 */\n 0x04\n /* \"#utility.yul\":14750:14765 */\n mstore\n /* \"#utility.yul\":14784:14788 */\n 0x24\n /* \"#utility.yul\":14781:14782 */\n 0x00\n /* \"#utility.yul\":14774:14789 */\n revert\n /* \"#utility.yul\":14801:14981 */\n tag_347:\n /* \"#utility.yul\":14849:14926 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":14846:14847 */\n 0x00\n /* \"#utility.yul\":14839:14927 */\n mstore\n /* \"#utility.yul\":14946:14950 */\n 0x12\n /* \"#utility.yul\":14943:14944 */\n 0x04\n /* \"#utility.yul\":14936:14951 */\n mstore\n /* \"#utility.yul\":14970:14974 */\n 0x24\n /* \"#utility.yul\":14967:14968 */\n 0x00\n /* \"#utility.yul\":14960:14975 */\n revert\n /* \"#utility.yul\":14987:15167 */\n tag_374:\n /* \"#utility.yul\":15035:15112 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":15032:15033 */\n 0x00\n /* \"#utility.yul\":15025:15113 */\n mstore\n /* \"#utility.yul\":15132:15136 */\n 0x22\n /* \"#utility.yul\":15129:15130 */\n 0x04\n /* \"#utility.yul\":15122:15137 */\n mstore\n /* \"#utility.yul\":15156:15160 */\n 0x24\n /* \"#utility.yul\":15153:15154 */\n 0x00\n /* \"#utility.yul\":15146:15161 */\n revert\n /* \"#utility.yul\":15173:15275 */\n tag_265:\n 0x00\n /* \"#utility.yul\":15265:15267 */\n 0x1f\n /* \"#utility.yul\":15261:15268 */\n not\n /* \"#utility.yul\":15256:15258 */\n 0x1f\n /* \"#utility.yul\":15249:15254 */\n dup4\n /* \"#utility.yul\":15245:15259 */\n add\n /* \"#utility.yul\":15241:15269 */\n and\n /* \"#utility.yul\":15231:15269 */\n swap1\n pop\n /* \"#utility.yul\":15221:15275 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":15281:15403 */\n tag_224:\n /* \"#utility.yul\":15354:15378 */\n tag_380\n /* \"#utility.yul\":15372:15377 */\n dup2\n /* \"#utility.yul\":15354:15378 */\n tag_251\n jump\t// in\n tag_380:\n /* \"#utility.yul\":15347:15352 */\n dup2\n /* \"#utility.yul\":15344:15379 */\n eq\n /* \"#utility.yul\":15334:15336 */\n tag_381\n jumpi\n /* \"#utility.yul\":15393:15394 */\n 0x00\n /* \"#utility.yul\":15390:15391 */\n dup1\n /* \"#utility.yul\":15383:15395 */\n revert\n /* \"#utility.yul\":15334:15336 */\n tag_381:\n /* \"#utility.yul\":15324:15403 */\n pop\n jump\t// out\n /* \"#utility.yul\":15409:15531 */\n tag_228:\n /* \"#utility.yul\":15482:15506 */\n tag_383\n /* \"#utility.yul\":15500:15505 */\n dup2\n /* \"#utility.yul\":15482:15506 */\n tag_299\n jump\t// in\n tag_383:\n /* \"#utility.yul\":15475:15480 */\n dup2\n /* \"#utility.yul\":15472:15507 */\n eq\n /* \"#utility.yul\":15462:15464 */\n tag_384\n jumpi\n /* \"#utility.yul\":15521:15522 */\n 0x00\n /* \"#utility.yul\":15518:15519 */\n dup1\n /* \"#utility.yul\":15511:15523 */\n revert\n /* \"#utility.yul\":15462:15464 */\n tag_384:\n /* \"#utility.yul\":15452:15531 */\n pop\n jump\t// out\n\n auxdata: 0xa264697066735822122029a261b965a5fc17a346fefeacab6ae400b1ec2e127601b6c9d2045d0430248264736f6c63430008000033\n}\n", | |
"bytecode": { | |
"generatedSources": [ | |
{ | |
"ast": { | |
"nodeType": "YulBlock", | |
"src": "0:5157:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "153:183:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "163:74:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "229:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "234:2:6", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "170:58:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "170:67:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "163:3:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "258:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "263:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "254:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "254:11:6" | |
}, | |
{ | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "267:33:6", | |
"type": "", | |
"value": "ERC20: mint to the zero address" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "247:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "247:54:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "247:54:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "311:19:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "322:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "327:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "318:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "318:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "311:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "141:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "149:3:6", | |
"type": "" | |
} | |
], | |
"src": "7:329:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "407:53:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "424:3:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "447:5:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "429:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "429:24:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "417:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "417:37:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "417:37:6" | |
} | |
] | |
}, | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "395:5:6", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "402:3:6", | |
"type": "" | |
} | |
], | |
"src": "342:118:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "637:248:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "647:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "659:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "670:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "655:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "655:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "647:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "694:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "705:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "690:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "690:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "713:4:6" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "719:9:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "709:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "709:20:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "683:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "683:47:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "683:47:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "739:139:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "873:4:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "747:124:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "747:131:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "739:4:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "617:9:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "632:4:6", | |
"type": "" | |
} | |
], | |
"src": "466:419:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "989:124:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "999:26:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "1011:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1022:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1007:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1007:18:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "999:4:6" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "1079:6:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "1092:9:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1103:1:6", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1088:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1088:17:6" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "1035:43:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1035:71:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1035:71:6" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "961:9:6", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "973:6:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "984:4:6", | |
"type": "" | |
} | |
], | |
"src": "891:222:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1215:73:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "1232:3:6" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1237:6:6" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "1225:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1225:19:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1225:19:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1253:29:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "1272:3:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1277:4:6", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1268:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1268:14:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "1253:11:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "1187:3:6", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "1192:6:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "1203:11:6", | |
"type": "" | |
} | |
], | |
"src": "1119:169:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1338:261:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1348:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "1371:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "1353:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1353:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "1348:1:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1382:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "1405:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "1387:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1387:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "1382:1:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1545:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "1547:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1547:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1547:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "1466:1:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1473:66:6", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "1541:1:6" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "1469:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1469:74:6" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "1463:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1463:81:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "1460:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1577:16:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "1588:1:6" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "1591:1:6" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1584:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1584:9:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulIdentifier", | |
"src": "1577:3:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_add_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "1325:1:6", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "1328:1:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulTypedName", | |
"src": "1334:3:6", | |
"type": "" | |
} | |
], | |
"src": "1294:305:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1678:775:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1688:15:6", | |
"value": { | |
"name": "_power", | |
"nodeType": "YulIdentifier", | |
"src": "1697:6:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "1688:5:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1712:14:6", | |
"value": { | |
"name": "_base", | |
"nodeType": "YulIdentifier", | |
"src": "1721:5:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "1712:4:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1770:677:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1858:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "1860:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1860:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1860:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "1836:4:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "max", | |
"nodeType": "YulIdentifier", | |
"src": "1846:3:6" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "1851:4:6" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "1842:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1842:14:6" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "1833:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1833:24:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "1830:2:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1925:419:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2305:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "2318:5:6" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "2325:4:6" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nodeType": "YulIdentifier", | |
"src": "2314:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2314:16:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "2305:5:6" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "1900:8:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1910:1:6", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "1896:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1896:16:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "1893:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2357:23:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "2369:4:6" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "2375:4:6" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nodeType": "YulIdentifier", | |
"src": "2365:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2365:15:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "2357:4:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2393:44:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "2428:8:6" | |
} | |
], | |
"functionName": { | |
"name": "shift_right_1_unsigned", | |
"nodeType": "YulIdentifier", | |
"src": "2405:22:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2405:32:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "2393:8:6" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "1746:8:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1756:1:6", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "1743:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1743:15:6" | |
}, | |
"nodeType": "YulForLoop", | |
"post": { | |
"nodeType": "YulBlock", | |
"src": "1759:2:6", | |
"statements": [] | |
}, | |
"pre": { | |
"nodeType": "YulBlock", | |
"src": "1739:3:6", | |
"statements": [] | |
}, | |
"src": "1735:712:6" | |
} | |
] | |
}, | |
"name": "checked_exp_helper", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "_power", | |
"nodeType": "YulTypedName", | |
"src": "1633:6:6", | |
"type": "" | |
}, | |
{ | |
"name": "_base", | |
"nodeType": "YulTypedName", | |
"src": "1641:5:6", | |
"type": "" | |
}, | |
{ | |
"name": "exponent", | |
"nodeType": "YulTypedName", | |
"src": "1648:8:6", | |
"type": "" | |
}, | |
{ | |
"name": "max", | |
"nodeType": "YulTypedName", | |
"src": "1658:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "power", | |
"nodeType": "YulTypedName", | |
"src": "1666:5:6", | |
"type": "" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulTypedName", | |
"src": "1673:4:6", | |
"type": "" | |
} | |
], | |
"src": "1605:848:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2523:217:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2533:31:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "2559:4:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "2541:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2541:23:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "2533:4:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2573:37:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "2601:8:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint8", | |
"nodeType": "YulIdentifier", | |
"src": "2585:15:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2585:25:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "2573:8:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2620:113:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "2650:4:6" | |
}, | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "2656:8:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2666:66:6", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "checked_exp_unsigned", | |
"nodeType": "YulIdentifier", | |
"src": "2629:20:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2629:104:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "2620:5:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_exp_t_uint256_t_uint8", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "base", | |
"nodeType": "YulTypedName", | |
"src": "2498:4:6", | |
"type": "" | |
}, | |
{ | |
"name": "exponent", | |
"nodeType": "YulTypedName", | |
"src": "2504:8:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "power", | |
"nodeType": "YulTypedName", | |
"src": "2517:5:6", | |
"type": "" | |
} | |
], | |
"src": "2459:281:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2806:1013:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3001:20:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3003:10:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3012:1:6", | |
"type": "", | |
"value": "1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3003:5:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulLeave", | |
"src": "3014:5:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "2991:8:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "2984:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2984:16:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "2981:2:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3046:20:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3048:10:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3057:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3048:5:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulLeave", | |
"src": "3059:5:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3040:4:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "3033:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3033:12:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "3030:2:6" | |
}, | |
{ | |
"cases": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3176:20:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3178:10:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3187:1:6", | |
"type": "", | |
"value": "1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3178:5:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulLeave", | |
"src": "3189:5:6" | |
} | |
] | |
}, | |
"nodeType": "YulCase", | |
"src": "3169:27:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3174:1:6", | |
"type": "", | |
"value": "1" | |
} | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3220:176:6", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3255:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "3257:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3257:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3257:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "3240:8:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3250:3:6", | |
"type": "", | |
"value": "255" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "3237:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3237:17:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "3234:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3290:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3303:1:6", | |
"type": "", | |
"value": "2" | |
}, | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "3306:8:6" | |
} | |
], | |
"functionName": { | |
"name": "exp", | |
"nodeType": "YulIdentifier", | |
"src": "3299:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3299:16:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3290:5:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3346:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "3348:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3348:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3348:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3334:5:6" | |
}, | |
{ | |
"name": "max", | |
"nodeType": "YulIdentifier", | |
"src": "3341:3:6" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "3331:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3331:14:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "3328:2:6" | |
}, | |
{ | |
"nodeType": "YulLeave", | |
"src": "3381:5:6" | |
} | |
] | |
}, | |
"nodeType": "YulCase", | |
"src": "3205:191:6", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3210:1:6", | |
"type": "", | |
"value": "2" | |
} | |
} | |
], | |
"expression": { | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3126:4:6" | |
}, | |
"nodeType": "YulSwitch", | |
"src": "3119:277:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3528:123:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3542:28:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3555:4:6" | |
}, | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "3561:8:6" | |
} | |
], | |
"functionName": { | |
"name": "exp", | |
"nodeType": "YulIdentifier", | |
"src": "3551:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3551:19:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3542:5:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3601:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "3603:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3603:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3603:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3589:5:6" | |
}, | |
{ | |
"name": "max", | |
"nodeType": "YulIdentifier", | |
"src": "3596:3:6" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "3586:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3586:14:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "3583:2:6" | |
}, | |
{ | |
"nodeType": "YulLeave", | |
"src": "3636:5:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3431:4:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3437:2:6", | |
"type": "", | |
"value": "11" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "3428:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3428:12:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "3445:8:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3455:2:6", | |
"type": "", | |
"value": "78" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "3442:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3442:16:6" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "3424:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3424:35:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3480:4:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3486:3:6", | |
"type": "", | |
"value": "307" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "3477:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3477:13:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "3495:8:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3505:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "3492:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3492:16:6" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "3473:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3473:36:6" | |
} | |
], | |
"functionName": { | |
"name": "or", | |
"nodeType": "YulIdentifier", | |
"src": "3408:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3408:111:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "3405:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3661:57:6", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3695:1:6", | |
"type": "", | |
"value": "1" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3698:4:6" | |
}, | |
{ | |
"name": "exponent", | |
"nodeType": "YulIdentifier", | |
"src": "3704:8:6" | |
}, | |
{ | |
"name": "max", | |
"nodeType": "YulIdentifier", | |
"src": "3714:3:6" | |
} | |
], | |
"functionName": { | |
"name": "checked_exp_helper", | |
"nodeType": "YulIdentifier", | |
"src": "3676:18:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3676:42:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3661:5:6" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3668:4:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3757:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "3759:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3759:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3759:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3734:5:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "max", | |
"nodeType": "YulIdentifier", | |
"src": "3745:3:6" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3750:4:6" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "3741:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3741:14:6" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "3731:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3731:25:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "3728:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3788:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3801:5:6" | |
}, | |
{ | |
"name": "base", | |
"nodeType": "YulIdentifier", | |
"src": "3808:4:6" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nodeType": "YulIdentifier", | |
"src": "3797:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3797:16:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "power", | |
"nodeType": "YulIdentifier", | |
"src": "3788:5:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_exp_unsigned", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "base", | |
"nodeType": "YulTypedName", | |
"src": "2776:4:6", | |
"type": "" | |
}, | |
{ | |
"name": "exponent", | |
"nodeType": "YulTypedName", | |
"src": "2782:8:6", | |
"type": "" | |
}, | |
{ | |
"name": "max", | |
"nodeType": "YulTypedName", | |
"src": "2792:3:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "power", | |
"nodeType": "YulTypedName", | |
"src": "2800:5:6", | |
"type": "" | |
} | |
], | |
"src": "2746:1073:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3873:300:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3883:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "3906:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "3888:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3888:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "3883:1:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3917:25:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "3940:1:6" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "3922:17:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3922:20:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "3917:1:6" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4115:22:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "4117:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4117:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4117:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4027:1:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "4020:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4020:9:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "4013:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4013:17:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "4035:1:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4042:66:6", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
}, | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4110:1:6" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "4038:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4038:74:6" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "4032:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4032:81:6" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "4009:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4009:105:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "4006:2:6" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4147:20:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4162:1:6" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "4165:1:6" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nodeType": "YulIdentifier", | |
"src": "4158:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4158:9:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "product", | |
"nodeType": "YulIdentifier", | |
"src": "4147:7:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_mul_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "3856:1:6", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "3859:1:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "product", | |
"nodeType": "YulTypedName", | |
"src": "3865:7:6", | |
"type": "" | |
} | |
], | |
"src": "3825:348:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4224:32:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4234:16:6", | |
"value": { | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4245:5:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "4234:7:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "4206:5:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "4216:7:6", | |
"type": "" | |
} | |
], | |
"src": "4179:77:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4305:43:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4315:27:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4330:5:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4337:4:6", | |
"type": "", | |
"value": "0xff" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "4326:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4326:16:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "4315:7:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint8", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "4287:5:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "4297:7:6", | |
"type": "" | |
} | |
], | |
"src": "4262:86:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4405:269:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4415:22:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "4429:4:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4435:1:6", | |
"type": "", | |
"value": "2" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "4425:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4425:12:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "4415:6:6" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "4446:38:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "4476:4:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4482:1:6", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "4472:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4472:12:6" | |
}, | |
"variables": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulTypedName", | |
"src": "4450:18:6", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4523:51:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4537:27:6", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "4551:6:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4559:4:6", | |
"type": "", | |
"value": "0x7f" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "4547:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4547:17:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "4537:6:6" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulIdentifier", | |
"src": "4503:18:6" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "4496:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4496:26:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "4493:2:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4626:42:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x22", | |
"nodeType": "YulIdentifier", | |
"src": "4640:16:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4640:18:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4640:18:6" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulIdentifier", | |
"src": "4590:18:6" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "4613:6:6" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4621:2:6", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "4610:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4610:14:6" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "4587:2:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4587:38:6" | |
}, | |
"nodeType": "YulIf", | |
"src": "4584:2:6" | |
} | |
] | |
}, | |
"name": "extract_byte_array_length", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "data", | |
"nodeType": "YulTypedName", | |
"src": "4389:4:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "4398:6:6", | |
"type": "" | |
} | |
], | |
"src": "4354:320:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4708:152:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4725:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4728:77:6", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4718:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4718:88:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4718:88:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4822:1:6", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4825:4:6", | |
"type": "", | |
"value": "0x11" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4815:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4815:15:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4815:15:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4846:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4849:4:6", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "4839:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4839:15:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4839:15:6" | |
} | |
] | |
}, | |
"name": "panic_error_0x11", | |
"nodeType": "YulFunctionDefinition", | |
"src": "4680:180:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4894:152:6", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4911:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4914:77:6", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4904:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4904:88:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4904:88:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5008:1:6", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5011:4:6", | |
"type": "", | |
"value": "0x22" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "5001:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5001:15:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5001:15:6" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5032:1:6", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5035:4:6", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "5025:6:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5025:15:6" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5025:15:6" | |
} | |
] | |
}, | |
"name": "panic_error_0x22", | |
"nodeType": "YulFunctionDefinition", | |
"src": "4866:180:6" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5103:51:6", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5113:34:6", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5138:1:6", | |
"type": "", | |
"value": "1" | |
}, | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "5141:5:6" | |
} | |
], | |
"functionName": { | |
"name": "shr", | |
"nodeType": "YulIdentifier", | |
"src": "5134:3:6" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5134:13:6" | |
}, | |
"variableNames": [ | |
{ | |
"name": "newValue", | |
"nodeType": "YulIdentifier", | |
"src": "5113:8:6" | |
} | |
] | |
} | |
] | |
}, | |
"name": "shift_right_1_unsigned", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "5084:5:6", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "newValue", | |
"nodeType": "YulTypedName", | |
"src": "5094:8:6", | |
"type": "" | |
} | |
], | |
"src": "5052:102:6" | |
} | |
] | |
}, | |
"contents": "{\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n\n mstore(add(pos, 0), \"ERC20: mint to the zero address\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function 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 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": 6, | |
"language": "Yul", | |
"name": "#utility.yul" | |
} | |
], | |
"linkReferences": {}, | |
"object": "608060405260056006553480156200001657600080fd5b506040518060400160405280600881526020017f4661696c4c656f6e0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f464c4e000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009b92919062000404565b508060049080519060200190620000b492919062000404565b505050620000d7620000cb620001b560201b60201c565b620001bd60201b60201c565b6200011733620000ec6200028360201b60201c565b600a620000fa91906200060f565b639502f9006200010b91906200074c565b6200028c60201b60201c565b61dead600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737059f42396411106d99b0e9c18e66c009cca80d1600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000865565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f69062000507565b60405180910390fd5b6200031360008383620003fa60201b60201c565b806002600082825462000327919062000557565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003da919062000529565b60405180910390a3620003f660008383620003ff60201b60201c565b5050565b505050565b505050565b8280546200041290620007c4565b90600052602060002090601f01602090048101928262000436576000855562000482565b82601f106200045157805160ff191683800117855562000482565b8280016001018555821562000482579182015b828111156200048157825182559160200191906001019062000464565b5b50905062000491919062000495565b5090565b5b80821115620004b057600081600090555060010162000496565b5090565b6000620004c3601f8362000546565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200050181620007ad565b82525050565b600060208201905081810360008301526200052281620004b4565b9050919050565b6000602082019050620005406000830184620004f6565b92915050565b600082825260208201905092915050565b60006200056482620007ad565b91506200057183620007ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005a957620005a8620007fa565b5b828201905092915050565b6000808291508390505b60018511156200060657808604811115620005de57620005dd620007fa565b5b6001851615620005ee5780820291505b8081029050620005fe8562000858565b9450620005be565b94509492505050565b60006200061c82620007ad565b91506200062983620007b7565b9250620006587fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000660565b905092915050565b60008262000672576001905062000745565b8162000682576000905062000745565b81600181146200069b5760028114620006a657620006dc565b600191505062000745565b60ff841115620006bb57620006ba620007fa565b5b8360020a915084821115620006d557620006d4620007fa565b5b5062000745565b5060208310610133831016604e8410600b8410161715620007165782820a90508381111562000710576200070f620007fa565b5b62000745565b620007258484846001620005b4565b925090508184048111156200073f576200073e620007fa565b5b81810290505b9392505050565b60006200075982620007ad565b91506200076683620007ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007a257620007a1620007fa565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620007dd57607f821691505b60208210811415620007f457620007f362000829565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b61198f80620008756000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461030e578063c6d69a301461033e578063d46980161461035a578063dd62ed3e14610378578063f2fde38b146103a857610121565b8063715018a61461027a578063771a3a1d146102845780638da5cb5b146102a257806395d89b41146102c0578063a457c2d7146102de57610121565b806323b872dd116100f457806323b872dd146101b0578063296f0a0c146101e0578063313ce567146101fc578063395093511461021a57806370a082311461024a57610121565b8063062287491461012657806306fdde0314610144578063095ea7b31461016257806318160ddd14610192575b600080fd5b61012e6103c4565b60405161013b91906114d4565b60405180910390f35b61014c6103ea565b604051610159919061150a565b60405180910390f35b61017c60048036038101906101779190611070565b61047c565b60405161018991906114ef565b60405180910390f35b61019a61049f565b6040516101a7919061166c565b60405180910390f35b6101ca60048036038101906101c59190611021565b6104a9565b6040516101d791906114ef565b60405180910390f35b6101fa60048036038101906101f59190610fbc565b6104d8565b005b610204610524565b6040516102119190611687565b60405180910390f35b610234600480360381019061022f9190611070565b61052d565b60405161024191906114ef565b60405180910390f35b610264600480360381019061025f9190610fbc565b610564565b604051610271919061166c565b60405180910390f35b6102826105ac565b005b61028c6105c0565b604051610299919061166c565b60405180910390f35b6102aa6105c6565b6040516102b791906114d4565b60405180910390f35b6102c86105f0565b6040516102d5919061150a565b60405180910390f35b6102f860048036038101906102f39190611070565b610682565b60405161030591906114ef565b60405180910390f35b61032860048036038101906103239190611070565b6106f9565b60405161033591906114ef565b60405180910390f35b610358600480360381019061035391906110ac565b61071c565b005b610362610772565b60405161036f91906114d4565b60405180910390f35b610392600480360381019061038d9190610fe5565b610798565b60405161039f919061166c565b60405180910390f35b6103c260048036038101906103bd9190610fbc565b61081f565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546103f99061185b565b80601f01602080910402602001604051908101604052809291908181526020018280546104259061185b565b80156104725780601f1061044757610100808354040283529160200191610472565b820191906000526020600020905b81548152906001019060200180831161045557829003601f168201915b5050505050905090565b6000806104876108a3565b90506104948185856108ab565b600191505092915050565b6000600254905090565b6000806104b46108a3565b90506104c1858285610a76565b6104cc858585610b02565b60019150509392505050565b6104e0610bcc565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b6000806105386108a3565b905061055981858561054a8589610798565b61055491906116be565b6108ab565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b4610bcc565b6105be6000610c4a565b565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105ff9061185b565b80601f016020809104026020016040519081016040528092919081815260200182805461062b9061185b565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b60008061068d6108a3565b9050600061069b8286610798565b9050838110156106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d79061164c565b60405180910390fd5b6106ed82868684036108ab565b60019250505092915050565b6000806107046108a3565b9050610711818585610b02565b600191505092915050565b610724610bcc565b600a811115610768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075f906115cc565b60405180910390fd5b8060068190555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610827610bcc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e9061154c565b60405180910390fd5b6108a081610c4a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109129061162c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561098b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109829061156c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a69919061166c565b60405180910390a3505050565b6000610a828484610798565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610afc5781811015610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae59061158c565b60405180910390fd5b610afb84848484036108ab565b5b50505050565b6000606460065483610b149190611745565b610b1e9190611714565b905060008183610b2e919061179f565b9050610b7585600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166005600286610b669190611745565b610b709190611714565b610d10565b610bba85600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166005600386610bab9190611745565b610bb59190611714565b610d10565b610bc5858583610d10565b5050505050565b610bd46108a3565b73ffffffffffffffffffffffffffffffffffffffff16610bf26105c6565b73ffffffffffffffffffffffffffffffffffffffff1614610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f906115ec565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d779061160c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de79061152c565b60405180910390fd5b610dfb838383610f88565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e78906115ac565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f6f919061166c565b60405180910390a3610f82848484610f8d565b50505050565b505050565b505050565b600081359050610fa18161192b565b92915050565b600081359050610fb681611942565b92915050565b600060208284031215610fce57600080fd5b6000610fdc84828501610f92565b91505092915050565b60008060408385031215610ff857600080fd5b600061100685828601610f92565b925050602061101785828601610f92565b9150509250929050565b60008060006060848603121561103657600080fd5b600061104486828701610f92565b935050602061105586828701610f92565b925050604061106686828701610fa7565b9150509250925092565b6000806040838503121561108357600080fd5b600061109185828601610f92565b92505060206110a285828601610fa7565b9150509250929050565b6000602082840312156110be57600080fd5b60006110cc84828501610fa7565b91505092915050565b6110de816117d3565b82525050565b6110ed816117e5565b82525050565b60006110fe826116a2565b61110881856116ad565b9350611118818560208601611828565b6111218161191a565b840191505092915050565b60006111396023836116ad565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061119f6026836116ad565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112056022836116ad565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061126b601d836116ad565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006112ab6026836116ad565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611311600f836116ad565b91507f54617861206d7569746f20616c746100000000000000000000000000000000006000830152602082019050919050565b60006113516020836116ad565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006113916025836116ad565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113f76024836116ad565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061145d6025836116ad565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6114bf81611811565b82525050565b6114ce8161181b565b82525050565b60006020820190506114e960008301846110d5565b92915050565b600060208201905061150460008301846110e4565b92915050565b6000602082019050818103600083015261152481846110f3565b905092915050565b600060208201905081810360008301526115458161112c565b9050919050565b6000602082019050818103600083015261156581611192565b9050919050565b60006020820190508181036000830152611585816111f8565b9050919050565b600060208201905081810360008301526115a58161125e565b9050919050565b600060208201905081810360008301526115c58161129e565b9050919050565b600060208201905081810360008301526115e581611304565b9050919050565b6000602082019050818103600083015261160581611344565b9050919050565b6000602082019050818103600083015261162581611384565b9050919050565b60006020820190508181036000830152611645816113ea565b9050919050565b6000602082019050818103600083015261166581611450565b9050919050565b600060208201905061168160008301846114b6565b92915050565b600060208201905061169c60008301846114c5565b92915050565b600081519050919050565b600082825260208201905092915050565b60006116c982611811565b91506116d483611811565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117095761170861188d565b5b828201905092915050565b600061171f82611811565b915061172a83611811565b92508261173a576117396118bc565b5b828204905092915050565b600061175082611811565b915061175b83611811565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156117945761179361188d565b5b828202905092915050565b60006117aa82611811565b91506117b583611811565b9250828210156117c8576117c761188d565b5b828203905092915050565b60006117de826117f1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561184657808201518184015260208101905061182b565b83811115611855576000848401525b50505050565b6000600282049050600182168061187357607f821691505b60208210811415611887576118866118eb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611934816117d3565b811461193f57600080fd5b50565b61194b81611811565b811461195657600080fd5b5056fea264697066735822122029a261b965a5fc17a346fefeacab6ae400b1ec2e127601b6c9d2045d0430248264736f6c63430008000033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x5 PUSH1 0x6 SSTORE CALLVALUE DUP1 ISZERO PUSH3 0x16 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x8 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4661696C4C656F6E000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x464C4E0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x9B SWAP3 SWAP2 SWAP1 PUSH3 0x404 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xB4 SWAP3 SWAP2 SWAP1 PUSH3 0x404 JUMP JUMPDEST POP POP POP PUSH3 0xD7 PUSH3 0xCB PUSH3 0x1B5 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x1BD PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x117 CALLER PUSH3 0xEC PUSH3 0x283 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0xA PUSH3 0xFA SWAP2 SWAP1 PUSH3 0x60F JUMP JUMPDEST PUSH4 0x9502F900 PUSH3 0x10B SWAP2 SWAP1 PUSH3 0x74C JUMP JUMPDEST PUSH3 0x28C PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0xDEAD PUSH1 0x7 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH20 0x7059F42396411106D99B0E9C18E66C009CCA80D1 PUSH1 0x8 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH3 0x865 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x2FF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x2F6 SWAP1 PUSH3 0x507 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x313 PUSH1 0x0 DUP4 DUP4 PUSH3 0x3FA PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x327 SWAP2 SWAP1 PUSH3 0x557 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x3DA SWAP2 SWAP1 PUSH3 0x529 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH3 0x3F6 PUSH1 0x0 DUP4 DUP4 PUSH3 0x3FF PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x412 SWAP1 PUSH3 0x7C4 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x436 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x482 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x451 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x482 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x482 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x481 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x464 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x491 SWAP2 SWAP1 PUSH3 0x495 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x4B0 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x496 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4C3 PUSH1 0x1F DUP4 PUSH3 0x546 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x501 DUP2 PUSH3 0x7AD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x522 DUP2 PUSH3 0x4B4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x540 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x4F6 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 0x564 DUP3 PUSH3 0x7AD JUMP JUMPDEST SWAP2 POP PUSH3 0x571 DUP4 PUSH3 0x7AD JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x5A9 JUMPI PUSH3 0x5A8 PUSH3 0x7FA 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 0x606 JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH3 0x5DE JUMPI PUSH3 0x5DD PUSH3 0x7FA JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH3 0x5EE JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH3 0x5FE DUP6 PUSH3 0x858 JUMP JUMPDEST SWAP5 POP PUSH3 0x5BE JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x61C DUP3 PUSH3 0x7AD JUMP JUMPDEST SWAP2 POP PUSH3 0x629 DUP4 PUSH3 0x7B7 JUMP JUMPDEST SWAP3 POP PUSH3 0x658 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH3 0x660 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH3 0x672 JUMPI PUSH1 0x1 SWAP1 POP PUSH3 0x745 JUMP JUMPDEST DUP2 PUSH3 0x682 JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0x745 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH3 0x69B JUMPI PUSH1 0x2 DUP2 EQ PUSH3 0x6A6 JUMPI PUSH3 0x6DC JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH3 0x745 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH3 0x6BB JUMPI PUSH3 0x6BA PUSH3 0x7FA JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH3 0x6D5 JUMPI PUSH3 0x6D4 PUSH3 0x7FA JUMP JUMPDEST JUMPDEST POP PUSH3 0x745 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH3 0x716 JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH3 0x710 JUMPI PUSH3 0x70F PUSH3 0x7FA JUMP JUMPDEST JUMPDEST PUSH3 0x745 JUMP JUMPDEST PUSH3 0x725 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH3 0x5B4 JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH3 0x73F JUMPI PUSH3 0x73E PUSH3 0x7FA JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x759 DUP3 PUSH3 0x7AD JUMP JUMPDEST SWAP2 POP PUSH3 0x766 DUP4 PUSH3 0x7AD JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0x7A2 JUMPI PUSH3 0x7A1 PUSH3 0x7FA JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP 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 0x7DD JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x7F4 JUMPI PUSH3 0x7F3 PUSH3 0x829 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 PUSH2 0x198F DUP1 PUSH3 0x875 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x121 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0xAD JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x30E JUMPI DUP1 PUSH4 0xC6D69A30 EQ PUSH2 0x33E JUMPI DUP1 PUSH4 0xD4698016 EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x378 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x3A8 JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x27A JUMPI DUP1 PUSH4 0x771A3A1D EQ PUSH2 0x284 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2A2 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x2C0 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x2DE JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xF4 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1B0 JUMPI DUP1 PUSH4 0x296F0A0C EQ PUSH2 0x1E0 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x21A JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x24A JUMPI PUSH2 0x121 JUMP JUMPDEST DUP1 PUSH4 0x6228749 EQ PUSH2 0x126 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x144 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x162 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x192 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12E PUSH2 0x3C4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x14D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x14C PUSH2 0x3EA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x159 SWAP2 SWAP1 PUSH2 0x150A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x177 SWAP2 SWAP1 PUSH2 0x1070 JUMP JUMPDEST PUSH2 0x47C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x189 SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x19A PUSH2 0x49F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A7 SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C5 SWAP2 SWAP1 PUSH2 0x1021 JUMP JUMPDEST PUSH2 0x4A9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D7 SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F5 SWAP2 SWAP1 PUSH2 0xFBC JUMP JUMPDEST PUSH2 0x4D8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x204 PUSH2 0x524 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x211 SWAP2 SWAP1 PUSH2 0x1687 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x234 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22F SWAP2 SWAP1 PUSH2 0x1070 JUMP JUMPDEST PUSH2 0x52D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x241 SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x264 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25F SWAP2 SWAP1 PUSH2 0xFBC JUMP JUMPDEST PUSH2 0x564 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x271 SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x282 PUSH2 0x5AC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x28C PUSH2 0x5C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x299 SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2AA PUSH2 0x5C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B7 SWAP2 SWAP1 PUSH2 0x14D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C8 PUSH2 0x5F0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D5 SWAP2 SWAP1 PUSH2 0x150A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F3 SWAP2 SWAP1 PUSH2 0x1070 JUMP JUMPDEST PUSH2 0x682 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x305 SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x328 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x323 SWAP2 SWAP1 PUSH2 0x1070 JUMP JUMPDEST PUSH2 0x6F9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x14EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x358 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x353 SWAP2 SWAP1 PUSH2 0x10AC JUMP JUMPDEST PUSH2 0x71C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x362 PUSH2 0x772 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x36F SWAP2 SWAP1 PUSH2 0x14D4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x392 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x38D SWAP2 SWAP1 PUSH2 0xFE5 JUMP JUMPDEST PUSH2 0x798 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x39F SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3C2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3BD SWAP2 SWAP1 PUSH2 0xFBC JUMP JUMPDEST PUSH2 0x81F JUMP JUMPDEST STOP JUMPDEST PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x3F9 SWAP1 PUSH2 0x185B 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 0x425 SWAP1 PUSH2 0x185B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x472 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x447 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x472 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 0x455 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x487 PUSH2 0x8A3 JUMP JUMPDEST SWAP1 POP PUSH2 0x494 DUP2 DUP6 DUP6 PUSH2 0x8AB JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x4B4 PUSH2 0x8A3 JUMP JUMPDEST SWAP1 POP PUSH2 0x4C1 DUP6 DUP3 DUP6 PUSH2 0xA76 JUMP JUMPDEST PUSH2 0x4CC DUP6 DUP6 DUP6 PUSH2 0xB02 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x4E0 PUSH2 0xBCC JUMP JUMPDEST DUP1 PUSH1 0x8 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 PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x538 PUSH2 0x8A3 JUMP JUMPDEST SWAP1 POP PUSH2 0x559 DUP2 DUP6 DUP6 PUSH2 0x54A DUP6 DUP10 PUSH2 0x798 JUMP JUMPDEST PUSH2 0x554 SWAP2 SWAP1 PUSH2 0x16BE JUMP JUMPDEST PUSH2 0x8AB JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x5B4 PUSH2 0xBCC JUMP JUMPDEST PUSH2 0x5BE PUSH1 0x0 PUSH2 0xC4A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 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 0x5FF SWAP1 PUSH2 0x185B 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 0x62B SWAP1 PUSH2 0x185B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x678 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x64D JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x678 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 0x65B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x68D PUSH2 0x8A3 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x69B DUP3 DUP7 PUSH2 0x798 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x6E0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D7 SWAP1 PUSH2 0x164C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6ED DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x8AB JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x704 PUSH2 0x8A3 JUMP JUMPDEST SWAP1 POP PUSH2 0x711 DUP2 DUP6 DUP6 PUSH2 0xB02 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x724 PUSH2 0xBCC JUMP JUMPDEST PUSH1 0xA DUP2 GT ISZERO PUSH2 0x768 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75F SWAP1 PUSH2 0x15CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x6 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x8 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 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 0x827 PUSH2 0xBCC JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x897 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x88E SWAP1 PUSH2 0x154C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8A0 DUP2 PUSH2 0xC4A JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x91B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x912 SWAP1 PUSH2 0x162C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x98B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x982 SWAP1 PUSH2 0x156C 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 0xA69 SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA82 DUP5 DUP5 PUSH2 0x798 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0xAFC JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xAEE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAE5 SWAP1 PUSH2 0x158C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xAFB DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x8AB JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x64 PUSH1 0x6 SLOAD DUP4 PUSH2 0xB14 SWAP2 SWAP1 PUSH2 0x1745 JUMP JUMPDEST PUSH2 0xB1E SWAP2 SWAP1 PUSH2 0x1714 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 DUP4 PUSH2 0xB2E SWAP2 SWAP1 PUSH2 0x179F JUMP JUMPDEST SWAP1 POP PUSH2 0xB75 DUP6 PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x2 DUP7 PUSH2 0xB66 SWAP2 SWAP1 PUSH2 0x1745 JUMP JUMPDEST PUSH2 0xB70 SWAP2 SWAP1 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0xD10 JUMP JUMPDEST PUSH2 0xBBA DUP6 PUSH1 0x8 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 PUSH1 0x3 DUP7 PUSH2 0xBAB SWAP2 SWAP1 PUSH2 0x1745 JUMP JUMPDEST PUSH2 0xBB5 SWAP2 SWAP1 PUSH2 0x1714 JUMP JUMPDEST PUSH2 0xD10 JUMP JUMPDEST PUSH2 0xBC5 DUP6 DUP6 DUP4 PUSH2 0xD10 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0xBD4 PUSH2 0x8A3 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xBF2 PUSH2 0x5C6 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xC48 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC3F SWAP1 PUSH2 0x15EC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD80 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD77 SWAP1 PUSH2 0x160C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xDF0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDE7 SWAP1 PUSH2 0x152C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDFB DUP4 DUP4 DUP4 PUSH2 0xF88 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 0xE81 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE78 SWAP1 PUSH2 0x15AC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xF6F SWAP2 SWAP1 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xF82 DUP5 DUP5 DUP5 PUSH2 0xF8D JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xFA1 DUP2 PUSH2 0x192B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xFB6 DUP2 PUSH2 0x1942 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFCE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xFDC DUP5 DUP3 DUP6 ADD PUSH2 0xF92 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFF8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1006 DUP6 DUP3 DUP7 ADD PUSH2 0xF92 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1017 DUP6 DUP3 DUP7 ADD PUSH2 0xF92 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 0x1036 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1044 DUP7 DUP3 DUP8 ADD PUSH2 0xF92 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1055 DUP7 DUP3 DUP8 ADD PUSH2 0xF92 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1066 DUP7 DUP3 DUP8 ADD PUSH2 0xFA7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1083 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1091 DUP6 DUP3 DUP7 ADD PUSH2 0xF92 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x10A2 DUP6 DUP3 DUP7 ADD PUSH2 0xFA7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x10CC DUP5 DUP3 DUP6 ADD PUSH2 0xFA7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x10DE DUP2 PUSH2 0x17D3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x10ED DUP2 PUSH2 0x17E5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10FE DUP3 PUSH2 0x16A2 JUMP JUMPDEST PUSH2 0x1108 DUP2 DUP6 PUSH2 0x16AD JUMP JUMPDEST SWAP4 POP PUSH2 0x1118 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1828 JUMP JUMPDEST PUSH2 0x1121 DUP2 PUSH2 0x191A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1139 PUSH1 0x23 DUP4 PUSH2 0x16AD 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 0x119F PUSH1 0x26 DUP4 PUSH2 0x16AD 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 0x1205 PUSH1 0x22 DUP4 PUSH2 0x16AD 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 0x126B PUSH1 0x1D DUP4 PUSH2 0x16AD JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12AB PUSH1 0x26 DUP4 PUSH2 0x16AD 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 0x1311 PUSH1 0xF DUP4 PUSH2 0x16AD JUMP JUMPDEST SWAP2 POP PUSH32 0x54617861206D7569746F20616C74610000000000000000000000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1351 PUSH1 0x20 DUP4 PUSH2 0x16AD 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 0x1391 PUSH1 0x25 DUP4 PUSH2 0x16AD 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 0x13F7 PUSH1 0x24 DUP4 PUSH2 0x16AD 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 0x145D PUSH1 0x25 DUP4 PUSH2 0x16AD 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 0x14BF DUP2 PUSH2 0x1811 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x14CE DUP2 PUSH2 0x181B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x14E9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x10D5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1504 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x10E4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1524 DUP2 DUP5 PUSH2 0x10F3 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 0x1545 DUP2 PUSH2 0x112C 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 0x1565 DUP2 PUSH2 0x1192 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 0x1585 DUP2 PUSH2 0x11F8 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 0x15A5 DUP2 PUSH2 0x125E 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 0x15C5 DUP2 PUSH2 0x129E 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 0x15E5 DUP2 PUSH2 0x1304 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 0x1605 DUP2 PUSH2 0x1344 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 0x1625 DUP2 PUSH2 0x1384 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 0x1645 DUP2 PUSH2 0x13EA 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 0x1665 DUP2 PUSH2 0x1450 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1681 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x14B6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x169C PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x14C5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16C9 DUP3 PUSH2 0x1811 JUMP JUMPDEST SWAP2 POP PUSH2 0x16D4 DUP4 PUSH2 0x1811 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1709 JUMPI PUSH2 0x1708 PUSH2 0x188D JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x171F DUP3 PUSH2 0x1811 JUMP JUMPDEST SWAP2 POP PUSH2 0x172A DUP4 PUSH2 0x1811 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x173A JUMPI PUSH2 0x1739 PUSH2 0x18BC JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1750 DUP3 PUSH2 0x1811 JUMP JUMPDEST SWAP2 POP PUSH2 0x175B DUP4 PUSH2 0x1811 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1794 JUMPI PUSH2 0x1793 PUSH2 0x188D JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17AA DUP3 PUSH2 0x1811 JUMP JUMPDEST SWAP2 POP PUSH2 0x17B5 DUP4 PUSH2 0x1811 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x17C8 JUMPI PUSH2 0x17C7 PUSH2 0x188D JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17DE DUP3 PUSH2 0x17F1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1846 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x182B JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1855 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 0x1873 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1887 JUMPI PUSH2 0x1886 PUSH2 0x18EB JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1934 DUP2 PUSH2 0x17D3 JUMP JUMPDEST DUP2 EQ PUSH2 0x193F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x194B DUP2 PUSH2 0x1811 JUMP JUMPDEST DUP2 EQ PUSH2 0x1956 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x29 LOG2 PUSH2 0xB965 0xA5 0xFC OR LOG3 CHAINID INVALID INVALID 0xAC 0xAB PUSH11 0xE400B1EC2E127601B6C9D2 DIV 0x5D DIV ADDRESS 0x24 DUP3 PUSH5 0x736F6C6343 STOP ADDMOD STOP STOP CALLER ", | |
"sourceMap": "279:1378:0:-:0;;;347:1;322:26;;533:314;;;;;;;;;;1980:113:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2054:5;2046;:13;;;;;;;;;;;;:::i;:::-;;2079:7;2069;:17;;;;;;;;;;;;:::i;:::-;;1980:113;;936:32:1;955:12;:10;;;:12;;:::i;:::-;936:18;;;:32;;:::i;:::-;583:46:0::1;589:10;618;:8;;;:10;;:::i;:::-;614:2;:14;;;;:::i;:::-;601:10;:27;;;;:::i;:::-;583:5;;;:46;;:::i;:::-;687:6;666:10;;:28;;;;;;;;;;;;;;;;;;754:42;736:15;;:60;;;;;;;;;;;;;;;;;;279:1378:::0;;640:96:5;693:7;719:10;712:17;;640:96;:::o;2426:187:1:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2426:187;;:::o;3104:91:2:-;3162:5;3186:2;3179:9;;3104:91;:::o;8520:535::-;8622:1;8603:21;;:7;:21;;;;8595:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8671:49;8700:1;8704:7;8713:6;8671:20;;;:49;;:::i;:::-;8747:6;8731:12;;:22;;;;;;;:::i;:::-;;;;;;;;8921:6;8899:9;:18;8909:7;8899:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;8973:7;8952:37;;8969:1;8952:37;;;8982:6;8952:37;;;;;;:::i;:::-;;;;;;;;9000:48;9028:1;9032:7;9041:6;9000:19;;;:48;;:::i;:::-;8520:535;;:::o;12073:91::-;;;;:::o;12752:90::-;;;;:::o;279:1378:0:-;;; |
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