Token

BOME (BOME)

Overview

Max Total Supply

100,000,000,000 BOME

Holders

12

Market

Price

-

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,183,145.376500978203789278 BOME

Value
$0.00
0x47fc9d7751806339d820e1c26cf0badb04363196
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
BOME

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2024-12-18
*/

/**
 *Submitted for verification at Etherscan.io on 2023-04-28
*/

// SPDX-License-Identifier: MIT
/**

 *
*/

// File: @openzeppelin/contracts/utils/Context.sol

// 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;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: v11.sol



pragma solidity ^0.8.0;

// 引入OpenZeppelin合约库


contract BOME is ERC20, Ownable {
    uint256 private _totalSupply = 100000000000 * (10 ** 18);
    uint256 private _tokenPrice = 200000 * (10 ** 18);
    
    // 记录每个地址的购买区块
    mapping(address => uint256) public purchaseBlock;

    constructor() ERC20("BOME", "BOME") {
        _mint(msg.sender, _totalSupply);
    }

    // 购买代币时设置购买区块
    function buyTokens(uint256 amount) external payable {
        uint256 cost = amount * _tokenPrice;
        require(msg.value >= cost, "Insufficient Ether sent");
        _mint(msg.sender, amount);
        purchaseBlock[msg.sender] = block.number;  // 记录购买时的区块
    }

    // 设置代币价格
    function setTokenPrice(uint256 newTokenPrice) external onlyOwner {
        require(newTokenPrice > 0, "Token price should be greater than 0");
        _tokenPrice = newTokenPrice;
    }

    // 获取当前代币价格
    function getTokenPrice() external view returns (uint256) {
        return _tokenPrice;
    }

    // 赎回代币功能,只有购买区块超过500个区块才能卖出
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(block.number >= purchaseBlock[msg.sender] + 500, "You cannot transfer within 500 blocks of purchase");
        return super.transfer(recipient, amount);
    }

    // 销毁代币功能
    function burn(uint256 amount) external {
        require(amount > 0, "Amount to burn should be greater than 0");
        require(balanceOf(msg.sender) >= amount, "Not enough tokens to burn");
        _burn(msg.sender, amount);
    }

    // 提取合约中的Ether余额
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "No balance to withdraw");
        payable(msg.sender).transfer(balance);
    }

    // 提取ERC20代币
    function withdrawERC20(address tokenAddress, uint256 amount) external onlyOwner {
        require(tokenAddress != address(0), "Invalid token address");
        require(amount > 0, "Amount should be greater than 0");

        IERC20 token = IERC20(tokenAddress); // 实例化ERC20代币合约
        uint256 tokenBalance = token.balanceOf(address(this)); // 获取合约的代币余额
        require(tokenBalance >= amount, "Not enough tokens to withdraw");

        // 将指定数量的ERC20代币转移到所有者地址
        token.transfer(msg.sender, amount);
    }
}

Contract Security Audit

Contract 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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buyTokens","outputs":[],"stateMutability":"payable","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":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"purchaseBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526c01431e0fae6d7217caa0000000600655692a5a058fc295ed0000006007553480156200002f575f80fd5b506040518060400160405280600481526020017f424f4d45000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424f4d45000000000000000000000000000000000000000000000000000000008152508160039081620000ad919062000599565b508060049081620000bf919062000599565b505050620000e2620000d6620000fc60201b60201c565b6200010360201b60201c565b620000f633600654620001c660201b60201c565b6200078e565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000237576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022e90620006db565b60405180910390fd5b6200024a5f83836200032b60201b60201c565b8060025f8282546200025d919062000728565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030c919062000773565b60405180910390a3620003275f83836200033060201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620003b157607f821691505b602082108103620003c757620003c66200036c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200042b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003ee565b620004378683620003ee565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004816200047b62000475846200044f565b62000458565b6200044f565b9050919050565b5f819050919050565b6200049c8362000461565b620004b4620004ab8262000488565b848454620003fa565b825550505050565b5f90565b620004ca620004bc565b620004d781848462000491565b505050565b5b81811015620004fe57620004f25f82620004c0565b600181019050620004dd565b5050565b601f8211156200054d576200051781620003cd565b6200052284620003df565b8101602085101562000532578190505b6200054a6200054185620003df565b830182620004dc565b50505b505050565b5f82821c905092915050565b5f6200056f5f198460080262000552565b1980831691505092915050565b5f6200058983836200055e565b9150826002028217905092915050565b620005a48262000335565b67ffffffffffffffff811115620005c057620005bf6200033f565b5b620005cc825462000399565b620005d982828562000502565b5f60209050601f8311600181146200060f575f8415620005fa578287015190505b6200060685826200057c565b86555062000675565b601f1984166200061f86620003cd565b5f5b82811015620006485784890151825560018201915060208501945060208101905062000621565b8683101562000668578489015162000664601f8916826200055e565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620006c3601f836200067d565b9150620006d0826200068d565b602082019050919050565b5f6020820190508181035f830152620006f481620006b5565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000734826200044f565b915062000741836200044f565b92508282019050808211156200075c576200075b620006fb565b5b92915050565b6200076d816200044f565b82525050565b5f602082019050620007885f83018462000762565b92915050565b612614806200079c5f395ff3fe608060405260043610610129575f3560e01c80635e391dfe116100aa57806395d89b411161006e57806395d89b41146103c3578063a1db9782146103ed578063a457c2d714610415578063a9059cbb14610451578063dd62ed3e1461048d578063f2fde38b146104c957610129565b80635e391dfe146102e35780636a61e5fc1461031f57806370a0823114610347578063715018a6146103835780638da5cb5b1461039957610129565b80633610724e116100f15780633610724e14610223578063395093511461023f5780633ccfd60b1461027b57806342966c68146102915780634b94f50e146102b957610129565b806306fdde031461012d578063095ea7b31461015757806318160ddd1461019357806323b872dd146101bd578063313ce567146101f9575b5f80fd5b348015610138575f80fd5b506101416104f1565b60405161014e919061174b565b60405180910390f35b348015610162575f80fd5b5061017d600480360381019061017891906117fc565b610581565b60405161018a9190611854565b60405180910390f35b34801561019e575f80fd5b506101a76105a3565b6040516101b4919061187c565b60405180910390f35b3480156101c8575f80fd5b506101e360048036038101906101de9190611895565b6105ac565b6040516101f09190611854565b60405180910390f35b348015610204575f80fd5b5061020d6105da565b60405161021a9190611900565b60405180910390f35b61023d60048036038101906102389190611919565b6105e2565b005b34801561024a575f80fd5b50610265600480360381019061026091906117fc565b610686565b6040516102729190611854565b60405180910390f35b348015610286575f80fd5b5061028f6106bc565b005b34801561029c575f80fd5b506102b760048036038101906102b29190611919565b610751565b005b3480156102c4575f80fd5b506102cd6107eb565b6040516102da919061187c565b60405180910390f35b3480156102ee575f80fd5b5061030960048036038101906103049190611944565b6107f4565b604051610316919061187c565b60405180910390f35b34801561032a575f80fd5b5061034560048036038101906103409190611919565b610809565b005b348015610352575f80fd5b5061036d60048036038101906103689190611944565b61085d565b60405161037a919061187c565b60405180910390f35b34801561038e575f80fd5b506103976108a2565b005b3480156103a4575f80fd5b506103ad6108b5565b6040516103ba919061197e565b60405180910390f35b3480156103ce575f80fd5b506103d76108dd565b6040516103e4919061174b565b60405180910390f35b3480156103f8575f80fd5b50610413600480360381019061040e91906117fc565b61096d565b005b348015610420575f80fd5b5061043b600480360381019061043691906117fc565b610b69565b6040516104489190611854565b60405180910390f35b34801561045c575f80fd5b50610477600480360381019061047291906117fc565b610bde565b6040516104849190611854565b60405180910390f35b348015610498575f80fd5b506104b360048036038101906104ae9190611997565b610c7e565b6040516104c0919061187c565b60405180910390f35b3480156104d4575f80fd5b506104ef60048036038101906104ea9190611944565b610d00565b005b60606003805461050090611a02565b80601f016020809104026020016040519081016040528092919081815260200182805461052c90611a02565b80156105775780601f1061054e57610100808354040283529160200191610577565b820191905f5260205f20905b81548152906001019060200180831161055a57829003601f168201915b5050505050905090565b5f8061058b610d82565b9050610598818585610d89565b600191505092915050565b5f600254905090565b5f806105b6610d82565b90506105c3858285610f4c565b6105ce858585610fd7565b60019150509392505050565b5f6012905090565b5f600754826105f19190611a5f565b905080341015610636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062d90611aea565b60405180910390fd5b6106403383611243565b4360085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f80610690610d82565b90506106b18185856106a28589610c7e565b6106ac9190611b08565b610d89565b600191505092915050565b6106c4611391565b5f4790505f811161070a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070190611b85565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f1935050505015801561074d573d5f803e3d5ffd5b5050565b5f8111610793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078a90611c13565b60405180910390fd5b8061079d3361085d565b10156107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d590611c7b565b60405180910390fd5b6107e8338261140f565b50565b5f600754905090565b6008602052805f5260405f205f915090505481565b610811611391565b5f8111610853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084a90611d09565b60405180910390fd5b8060078190555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108aa611391565b6108b35f6115d2565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108ec90611a02565b80601f016020809104026020016040519081016040528092919081815260200182805461091890611a02565b80156109635780601f1061093a57610100808354040283529160200191610963565b820191905f5260205f20905b81548152906001019060200180831161094657829003601f168201915b5050505050905090565b610975611391565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da90611d71565b60405180910390fd5b5f8111610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90611dd9565b60405180910390fd5b5f8290505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a63919061197e565b602060405180830381865afa158015610a7e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa29190611e0b565b905082811015610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade90611e80565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33856040518363ffffffff1660e01b8152600401610b22929190611e9e565b6020604051808303815f875af1158015610b3e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b629190611eef565b5050505050565b5f80610b73610d82565b90505f610b808286610c7e565b905083811015610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc90611f8a565b60405180910390fd5b610bd28286868403610d89565b60019250505092915050565b5f6101f460085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610c2a9190611b08565b431015610c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6390612018565b60405180910390fd5b610c768383611695565b905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d08611391565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d906120a6565b60405180910390fd5b610d7f816115d2565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90612134565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c906121c2565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f3f919061187c565b60405180910390a3505050565b5f610f578484610c7e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fd15781811015610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba9061222a565b60405180910390fd5b610fd08484848403610d89565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c906122b8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90612346565b60405180910390fd5b6110be8383836116b7565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611138906123d4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161122a919061187c565b60405180910390a361123d8484846116bc565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a89061243c565b60405180910390fd5b6112bc5f83836116b7565b8060025f8282546112cd9190611b08565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161137a919061187c565b60405180910390a361138d5f83836116bc565b5050565b611399610d82565b73ffffffffffffffffffffffffffffffffffffffff166113b76108b5565b73ffffffffffffffffffffffffffffffffffffffff161461140d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611404906124a4565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490612532565b60405180910390fd5b611488825f836116b7565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561150b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611502906125c0565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115ba919061187c565b60405180910390a36115cd835f846116bc565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8061169f610d82565b90506116ac818585610fd7565b600191505092915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156116f85780820151818401526020810190506116dd565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61171d826116c1565b61172781856116cb565b93506117378185602086016116db565b61174081611703565b840191505092915050565b5f6020820190508181035f8301526117638184611713565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6117988261176f565b9050919050565b6117a88161178e565b81146117b2575f80fd5b50565b5f813590506117c38161179f565b92915050565b5f819050919050565b6117db816117c9565b81146117e5575f80fd5b50565b5f813590506117f6816117d2565b92915050565b5f80604083850312156118125761181161176b565b5b5f61181f858286016117b5565b9250506020611830858286016117e8565b9150509250929050565b5f8115159050919050565b61184e8161183a565b82525050565b5f6020820190506118675f830184611845565b92915050565b611876816117c9565b82525050565b5f60208201905061188f5f83018461186d565b92915050565b5f805f606084860312156118ac576118ab61176b565b5b5f6118b9868287016117b5565b93505060206118ca868287016117b5565b92505060406118db868287016117e8565b9150509250925092565b5f60ff82169050919050565b6118fa816118e5565b82525050565b5f6020820190506119135f8301846118f1565b92915050565b5f6020828403121561192e5761192d61176b565b5b5f61193b848285016117e8565b91505092915050565b5f602082840312156119595761195861176b565b5b5f611966848285016117b5565b91505092915050565b6119788161178e565b82525050565b5f6020820190506119915f83018461196f565b92915050565b5f80604083850312156119ad576119ac61176b565b5b5f6119ba858286016117b5565b92505060206119cb858286016117b5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a1957607f821691505b602082108103611a2c57611a2b6119d5565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a69826117c9565b9150611a74836117c9565b9250828202611a82816117c9565b91508282048414831517611a9957611a98611a32565b5b5092915050565b7f496e73756666696369656e742045746865722073656e740000000000000000005f82015250565b5f611ad46017836116cb565b9150611adf82611aa0565b602082019050919050565b5f6020820190508181035f830152611b0181611ac8565b9050919050565b5f611b12826117c9565b9150611b1d836117c9565b9250828201905080821115611b3557611b34611a32565b5b92915050565b7f4e6f2062616c616e636520746f207769746864726177000000000000000000005f82015250565b5f611b6f6016836116cb565b9150611b7a82611b3b565b602082019050919050565b5f6020820190508181035f830152611b9c81611b63565b9050919050565b7f416d6f756e7420746f206275726e2073686f756c6420626520677265617465725f8201527f207468616e203000000000000000000000000000000000000000000000000000602082015250565b5f611bfd6027836116cb565b9150611c0882611ba3565b604082019050919050565b5f6020820190508181035f830152611c2a81611bf1565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320746f206275726e000000000000005f82015250565b5f611c656019836116cb565b9150611c7082611c31565b602082019050919050565b5f6020820190508181035f830152611c9281611c59565b9050919050565b7f546f6b656e2070726963652073686f756c6420626520677265617465722074685f8201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b5f611cf36024836116cb565b9150611cfe82611c99565b604082019050919050565b5f6020820190508181035f830152611d2081611ce7565b9050919050565b7f496e76616c696420746f6b656e206164647265737300000000000000000000005f82015250565b5f611d5b6015836116cb565b9150611d6682611d27565b602082019050919050565b5f6020820190508181035f830152611d8881611d4f565b9050919050565b7f416d6f756e742073686f756c642062652067726561746572207468616e2030005f82015250565b5f611dc3601f836116cb565b9150611dce82611d8f565b602082019050919050565b5f6020820190508181035f830152611df081611db7565b9050919050565b5f81519050611e05816117d2565b92915050565b5f60208284031215611e2057611e1f61176b565b5b5f611e2d84828501611df7565b91505092915050565b7f4e6f7420656e6f75676820746f6b656e7320746f2077697468647261770000005f82015250565b5f611e6a601d836116cb565b9150611e7582611e36565b602082019050919050565b5f6020820190508181035f830152611e9781611e5e565b9050919050565b5f604082019050611eb15f83018561196f565b611ebe602083018461186d565b9392505050565b611ece8161183a565b8114611ed8575f80fd5b50565b5f81519050611ee981611ec5565b92915050565b5f60208284031215611f0457611f0361176b565b5b5f611f1184828501611edb565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611f746025836116cb565b9150611f7f82611f1a565b604082019050919050565b5f6020820190508181035f830152611fa181611f68565b9050919050565b7f596f752063616e6e6f74207472616e736665722077697468696e2035303020625f8201527f6c6f636b73206f66207075726368617365000000000000000000000000000000602082015250565b5f6120026031836116cb565b915061200d82611fa8565b604082019050919050565b5f6020820190508181035f83015261202f81611ff6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6120906026836116cb565b915061209b82612036565b604082019050919050565b5f6020820190508181035f8301526120bd81612084565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61211e6024836116cb565b9150612129826120c4565b604082019050919050565b5f6020820190508181035f83015261214b81612112565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6121ac6022836116cb565b91506121b782612152565b604082019050919050565b5f6020820190508181035f8301526121d9816121a0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612214601d836116cb565b915061221f826121e0565b602082019050919050565b5f6020820190508181035f83015261224181612208565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6122a26025836116cb565b91506122ad82612248565b604082019050919050565b5f6020820190508181035f8301526122cf81612296565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6123306023836116cb565b915061233b826122d6565b604082019050919050565b5f6020820190508181035f83015261235d81612324565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6123be6026836116cb565b91506123c982612364565b604082019050919050565b5f6020820190508181035f8301526123eb816123b2565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f612426601f836116cb565b9150612431826123f2565b602082019050919050565b5f6020820190508181035f8301526124538161241a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61248e6020836116cb565b91506124998261245a565b602082019050919050565b5f6020820190508181035f8301526124bb81612482565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61251c6021836116cb565b9150612527826124c2565b604082019050919050565b5f6020820190508181035f83015261254981612510565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6125aa6022836116cb565b91506125b582612550565b604082019050919050565b5f6020820190508181035f8301526125d78161259e565b905091905056fea264697066735822122090441a6c70e8ffce77c03ad99718ffd2988685a94b09a61d10de72b156ab995c64736f6c63430008180033

Deployed Bytecode

0x608060405260043610610129575f3560e01c80635e391dfe116100aa57806395d89b411161006e57806395d89b41146103c3578063a1db9782146103ed578063a457c2d714610415578063a9059cbb14610451578063dd62ed3e1461048d578063f2fde38b146104c957610129565b80635e391dfe146102e35780636a61e5fc1461031f57806370a0823114610347578063715018a6146103835780638da5cb5b1461039957610129565b80633610724e116100f15780633610724e14610223578063395093511461023f5780633ccfd60b1461027b57806342966c68146102915780634b94f50e146102b957610129565b806306fdde031461012d578063095ea7b31461015757806318160ddd1461019357806323b872dd146101bd578063313ce567146101f9575b5f80fd5b348015610138575f80fd5b506101416104f1565b60405161014e919061174b565b60405180910390f35b348015610162575f80fd5b5061017d600480360381019061017891906117fc565b610581565b60405161018a9190611854565b60405180910390f35b34801561019e575f80fd5b506101a76105a3565b6040516101b4919061187c565b60405180910390f35b3480156101c8575f80fd5b506101e360048036038101906101de9190611895565b6105ac565b6040516101f09190611854565b60405180910390f35b348015610204575f80fd5b5061020d6105da565b60405161021a9190611900565b60405180910390f35b61023d60048036038101906102389190611919565b6105e2565b005b34801561024a575f80fd5b50610265600480360381019061026091906117fc565b610686565b6040516102729190611854565b60405180910390f35b348015610286575f80fd5b5061028f6106bc565b005b34801561029c575f80fd5b506102b760048036038101906102b29190611919565b610751565b005b3480156102c4575f80fd5b506102cd6107eb565b6040516102da919061187c565b60405180910390f35b3480156102ee575f80fd5b5061030960048036038101906103049190611944565b6107f4565b604051610316919061187c565b60405180910390f35b34801561032a575f80fd5b5061034560048036038101906103409190611919565b610809565b005b348015610352575f80fd5b5061036d60048036038101906103689190611944565b61085d565b60405161037a919061187c565b60405180910390f35b34801561038e575f80fd5b506103976108a2565b005b3480156103a4575f80fd5b506103ad6108b5565b6040516103ba919061197e565b60405180910390f35b3480156103ce575f80fd5b506103d76108dd565b6040516103e4919061174b565b60405180910390f35b3480156103f8575f80fd5b50610413600480360381019061040e91906117fc565b61096d565b005b348015610420575f80fd5b5061043b600480360381019061043691906117fc565b610b69565b6040516104489190611854565b60405180910390f35b34801561045c575f80fd5b50610477600480360381019061047291906117fc565b610bde565b6040516104849190611854565b60405180910390f35b348015610498575f80fd5b506104b360048036038101906104ae9190611997565b610c7e565b6040516104c0919061187c565b60405180910390f35b3480156104d4575f80fd5b506104ef60048036038101906104ea9190611944565b610d00565b005b60606003805461050090611a02565b80601f016020809104026020016040519081016040528092919081815260200182805461052c90611a02565b80156105775780601f1061054e57610100808354040283529160200191610577565b820191905f5260205f20905b81548152906001019060200180831161055a57829003601f168201915b5050505050905090565b5f8061058b610d82565b9050610598818585610d89565b600191505092915050565b5f600254905090565b5f806105b6610d82565b90506105c3858285610f4c565b6105ce858585610fd7565b60019150509392505050565b5f6012905090565b5f600754826105f19190611a5f565b905080341015610636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062d90611aea565b60405180910390fd5b6106403383611243565b4360085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f80610690610d82565b90506106b18185856106a28589610c7e565b6106ac9190611b08565b610d89565b600191505092915050565b6106c4611391565b5f4790505f811161070a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070190611b85565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f1935050505015801561074d573d5f803e3d5ffd5b5050565b5f8111610793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078a90611c13565b60405180910390fd5b8061079d3361085d565b10156107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d590611c7b565b60405180910390fd5b6107e8338261140f565b50565b5f600754905090565b6008602052805f5260405f205f915090505481565b610811611391565b5f8111610853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084a90611d09565b60405180910390fd5b8060078190555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108aa611391565b6108b35f6115d2565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108ec90611a02565b80601f016020809104026020016040519081016040528092919081815260200182805461091890611a02565b80156109635780601f1061093a57610100808354040283529160200191610963565b820191905f5260205f20905b81548152906001019060200180831161094657829003601f168201915b5050505050905090565b610975611391565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da90611d71565b60405180910390fd5b5f8111610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90611dd9565b60405180910390fd5b5f8290505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a63919061197e565b602060405180830381865afa158015610a7e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa29190611e0b565b905082811015610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade90611e80565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33856040518363ffffffff1660e01b8152600401610b22929190611e9e565b6020604051808303815f875af1158015610b3e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b629190611eef565b5050505050565b5f80610b73610d82565b90505f610b808286610c7e565b905083811015610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc90611f8a565b60405180910390fd5b610bd28286868403610d89565b60019250505092915050565b5f6101f460085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610c2a9190611b08565b431015610c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6390612018565b60405180910390fd5b610c768383611695565b905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d08611391565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d906120a6565b60405180910390fd5b610d7f816115d2565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90612134565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c906121c2565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f3f919061187c565b60405180910390a3505050565b5f610f578484610c7e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fd15781811015610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba9061222a565b60405180910390fd5b610fd08484848403610d89565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c906122b8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90612346565b60405180910390fd5b6110be8383836116b7565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611138906123d4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161122a919061187c565b60405180910390a361123d8484846116bc565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a89061243c565b60405180910390fd5b6112bc5f83836116b7565b8060025f8282546112cd9190611b08565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161137a919061187c565b60405180910390a361138d5f83836116bc565b5050565b611399610d82565b73ffffffffffffffffffffffffffffffffffffffff166113b76108b5565b73ffffffffffffffffffffffffffffffffffffffff161461140d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611404906124a4565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490612532565b60405180910390fd5b611488825f836116b7565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561150b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611502906125c0565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115ba919061187c565b60405180910390a36115cd835f846116bc565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8061169f610d82565b90506116ac818585610fd7565b600191505092915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156116f85780820151818401526020810190506116dd565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61171d826116c1565b61172781856116cb565b93506117378185602086016116db565b61174081611703565b840191505092915050565b5f6020820190508181035f8301526117638184611713565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6117988261176f565b9050919050565b6117a88161178e565b81146117b2575f80fd5b50565b5f813590506117c38161179f565b92915050565b5f819050919050565b6117db816117c9565b81146117e5575f80fd5b50565b5f813590506117f6816117d2565b92915050565b5f80604083850312156118125761181161176b565b5b5f61181f858286016117b5565b9250506020611830858286016117e8565b9150509250929050565b5f8115159050919050565b61184e8161183a565b82525050565b5f6020820190506118675f830184611845565b92915050565b611876816117c9565b82525050565b5f60208201905061188f5f83018461186d565b92915050565b5f805f606084860312156118ac576118ab61176b565b5b5f6118b9868287016117b5565b93505060206118ca868287016117b5565b92505060406118db868287016117e8565b9150509250925092565b5f60ff82169050919050565b6118fa816118e5565b82525050565b5f6020820190506119135f8301846118f1565b92915050565b5f6020828403121561192e5761192d61176b565b5b5f61193b848285016117e8565b91505092915050565b5f602082840312156119595761195861176b565b5b5f611966848285016117b5565b91505092915050565b6119788161178e565b82525050565b5f6020820190506119915f83018461196f565b92915050565b5f80604083850312156119ad576119ac61176b565b5b5f6119ba858286016117b5565b92505060206119cb858286016117b5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a1957607f821691505b602082108103611a2c57611a2b6119d5565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a69826117c9565b9150611a74836117c9565b9250828202611a82816117c9565b91508282048414831517611a9957611a98611a32565b5b5092915050565b7f496e73756666696369656e742045746865722073656e740000000000000000005f82015250565b5f611ad46017836116cb565b9150611adf82611aa0565b602082019050919050565b5f6020820190508181035f830152611b0181611ac8565b9050919050565b5f611b12826117c9565b9150611b1d836117c9565b9250828201905080821115611b3557611b34611a32565b5b92915050565b7f4e6f2062616c616e636520746f207769746864726177000000000000000000005f82015250565b5f611b6f6016836116cb565b9150611b7a82611b3b565b602082019050919050565b5f6020820190508181035f830152611b9c81611b63565b9050919050565b7f416d6f756e7420746f206275726e2073686f756c6420626520677265617465725f8201527f207468616e203000000000000000000000000000000000000000000000000000602082015250565b5f611bfd6027836116cb565b9150611c0882611ba3565b604082019050919050565b5f6020820190508181035f830152611c2a81611bf1565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320746f206275726e000000000000005f82015250565b5f611c656019836116cb565b9150611c7082611c31565b602082019050919050565b5f6020820190508181035f830152611c9281611c59565b9050919050565b7f546f6b656e2070726963652073686f756c6420626520677265617465722074685f8201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b5f611cf36024836116cb565b9150611cfe82611c99565b604082019050919050565b5f6020820190508181035f830152611d2081611ce7565b9050919050565b7f496e76616c696420746f6b656e206164647265737300000000000000000000005f82015250565b5f611d5b6015836116cb565b9150611d6682611d27565b602082019050919050565b5f6020820190508181035f830152611d8881611d4f565b9050919050565b7f416d6f756e742073686f756c642062652067726561746572207468616e2030005f82015250565b5f611dc3601f836116cb565b9150611dce82611d8f565b602082019050919050565b5f6020820190508181035f830152611df081611db7565b9050919050565b5f81519050611e05816117d2565b92915050565b5f60208284031215611e2057611e1f61176b565b5b5f611e2d84828501611df7565b91505092915050565b7f4e6f7420656e6f75676820746f6b656e7320746f2077697468647261770000005f82015250565b5f611e6a601d836116cb565b9150611e7582611e36565b602082019050919050565b5f6020820190508181035f830152611e9781611e5e565b9050919050565b5f604082019050611eb15f83018561196f565b611ebe602083018461186d565b9392505050565b611ece8161183a565b8114611ed8575f80fd5b50565b5f81519050611ee981611ec5565b92915050565b5f60208284031215611f0457611f0361176b565b5b5f611f1184828501611edb565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611f746025836116cb565b9150611f7f82611f1a565b604082019050919050565b5f6020820190508181035f830152611fa181611f68565b9050919050565b7f596f752063616e6e6f74207472616e736665722077697468696e2035303020625f8201527f6c6f636b73206f66207075726368617365000000000000000000000000000000602082015250565b5f6120026031836116cb565b915061200d82611fa8565b604082019050919050565b5f6020820190508181035f83015261202f81611ff6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6120906026836116cb565b915061209b82612036565b604082019050919050565b5f6020820190508181035f8301526120bd81612084565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61211e6024836116cb565b9150612129826120c4565b604082019050919050565b5f6020820190508181035f83015261214b81612112565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6121ac6022836116cb565b91506121b782612152565b604082019050919050565b5f6020820190508181035f8301526121d9816121a0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612214601d836116cb565b915061221f826121e0565b602082019050919050565b5f6020820190508181035f83015261224181612208565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6122a26025836116cb565b91506122ad82612248565b604082019050919050565b5f6020820190508181035f8301526122cf81612296565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6123306023836116cb565b915061233b826122d6565b604082019050919050565b5f6020820190508181035f83015261235d81612324565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6123be6026836116cb565b91506123c982612364565b604082019050919050565b5f6020820190508181035f8301526123eb816123b2565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f612426601f836116cb565b9150612431826123f2565b602082019050919050565b5f6020820190508181035f8301526124538161241a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61248e6020836116cb565b91506124998261245a565b602082019050919050565b5f6020820190508181035f8301526124bb81612482565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61251c6021836116cb565b9150612527826124c2565b604082019050919050565b5f6020820190508181035f83015261254981612510565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6125aa6022836116cb565b91506125b582612550565b604082019050919050565b5f6020820190508181035f8301526125d78161259e565b905091905056fea264697066735822122090441a6c70e8ffce77c03ad99718ffd2988685a94b09a61d10de72b156ab995c64736f6c63430008180033

Deployed Bytecode Sourcemap

20745:2533:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9470:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11821:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10590:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12602:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10432:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21144:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13306:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22454:202;;;;;;;;;;;;;:::i;:::-;;22172:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21694:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20951:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21465:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10761:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2895:103;;;;;;;;;;;;;:::i;:::-;;2247:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9689:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22690:585;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14047:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21874:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11350:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3153:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9470:100;9524:13;9557:5;9550:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9470:100;:::o;11821:201::-;11904:4;11921:13;11937:12;:10;:12::i;:::-;11921:28;;11960:32;11969:5;11976:7;11985:6;11960:8;:32::i;:::-;12010:4;12003:11;;;11821:201;;;;:::o;10590:108::-;10651:7;10678:12;;10671:19;;10590:108;:::o;12602:295::-;12733:4;12750:15;12768:12;:10;:12::i;:::-;12750:30;;12791:38;12807:4;12813:7;12822:6;12791:15;:38::i;:::-;12840:27;12850:4;12856:2;12860:6;12840:9;:27::i;:::-;12885:4;12878:11;;;12602:295;;;;;:::o;10432:93::-;10490:5;10515:2;10508:9;;10432:93;:::o;21144:286::-;21207:12;21231:11;;21222:6;:20;;;;:::i;:::-;21207:35;;21274:4;21261:9;:17;;21253:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;21317:25;21323:10;21335:6;21317:5;:25::i;:::-;21381:12;21353:13;:25;21367:10;21353:25;;;;;;;;;;;;;;;:40;;;;21196:234;21144:286;:::o;13306:238::-;13394:4;13411:13;13427:12;:10;:12::i;:::-;13411:28;;13450:64;13459:5;13466:7;13503:10;13475:25;13485:5;13492:7;13475:9;:25::i;:::-;:38;;;;:::i;:::-;13450:8;:64::i;:::-;13532:4;13525:11;;;13306:238;;;;:::o;22454:202::-;2133:13;:11;:13::i;:::-;22504:15:::1;22522:21;22504:39;;22572:1;22562:7;:11;22554:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;22619:10;22611:28;;:37;22640:7;22611:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;22493:163;22454:202::o:0;22172:236::-;22239:1;22230:6;:10;22222:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22328:6;22303:21;22313:10;22303:9;:21::i;:::-;:31;;22295:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;22375:25;22381:10;22393:6;22375:5;:25::i;:::-;22172:236;:::o;21694:94::-;21742:7;21769:11;;21762:18;;21694:94;:::o;20951:48::-;;;;;;;;;;;;;;;;;:::o;21465:188::-;2133:13;:11;:13::i;:::-;21565:1:::1;21549:13;:17;21541:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;21632:13;21618:11;:27;;;;21465:188:::0;:::o;10761:127::-;10835:7;10862:9;:18;10872:7;10862:18;;;;;;;;;;;;;;;;10855:25;;10761:127;;;:::o;2895:103::-;2133:13;:11;:13::i;:::-;2960:30:::1;2987:1;2960:18;:30::i;:::-;2895:103::o:0;2247:87::-;2293:7;2320:6;;;;;;;;;;;2313:13;;2247:87;:::o;9689:104::-;9745:13;9778:7;9771:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9689:104;:::o;22690:585::-;2133:13;:11;:13::i;:::-;22813:1:::1;22789:26;;:12;:26;;::::0;22781:60:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22869:1;22860:6;:10;22852:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;22919:12;22941;22919:35;;22995:20;23018:5;:15;;;23042:4;23018:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22995:53;;23114:6;23098:12;:22;;23090:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;23233:5;:14;;;23248:10;23260:6;23233:34;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22770:505;;22690:585:::0;;:::o;14047:436::-;14140:4;14157:13;14173:12;:10;:12::i;:::-;14157:28;;14196:24;14223:25;14233:5;14240:7;14223:9;:25::i;:::-;14196:52;;14287:15;14267:16;:35;;14259:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14380:60;14389:5;14396:7;14424:15;14405:16;:34;14380:8;:60::i;:::-;14471:4;14464:11;;;;14047:436;;;;:::o;21874:263::-;21952:4;22021:3;21993:13;:25;22007:10;21993:25;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;21977:12;:47;;21969:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;22096:33;22111:9;22122:6;22096:14;:33::i;:::-;22089:40;;21874:263;;;;:::o;11350:151::-;11439:7;11466:11;:18;11478:5;11466:18;;;;;;;;;;;;;;;:27;11485:7;11466:27;;;;;;;;;;;;;;;;11459:34;;11350:151;;;;:::o;3153:201::-;2133:13;:11;:13::i;:::-;3262:1:::1;3242:22;;:8;:22;;::::0;3234:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3318:28;3337:8;3318:18;:28::i;:::-;3153:201:::0;:::o;798:98::-;851:7;878:10;871:17;;798:98;:::o;18074:380::-;18227:1;18210:19;;:5;:19;;;18202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18308:1;18289:21;;:7;:21;;;18281:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18392:6;18362:11;:18;18374:5;18362:18;;;;;;;;;;;;;;;:27;18381:7;18362:27;;;;;;;;;;;;;;;:36;;;;18430:7;18414:32;;18423:5;18414:32;;;18439:6;18414:32;;;;;;:::i;:::-;;;;;;;;18074:380;;;:::o;18745:453::-;18880:24;18907:25;18917:5;18924:7;18907:9;:25::i;:::-;18880:52;;18967:17;18947:16;:37;18943:248;;19029:6;19009:16;:26;;19001:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19113:51;19122:5;19129:7;19157:6;19138:16;:25;19113:8;:51::i;:::-;18943:248;18869:329;18745:453;;;:::o;14953:840::-;15100:1;15084:18;;:4;:18;;;15076:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15177:1;15163:16;;:2;:16;;;15155:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15232:38;15253:4;15259:2;15263:6;15232:20;:38::i;:::-;15283:19;15305:9;:15;15315:4;15305:15;;;;;;;;;;;;;;;;15283:37;;15354:6;15339:11;:21;;15331:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15471:6;15457:11;:20;15439:9;:15;15449:4;15439:15;;;;;;;;;;;;;;;:38;;;;15674:6;15657:9;:13;15667:2;15657:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15724:2;15709:26;;15718:4;15709:26;;;15728:6;15709:26;;;;;;:::i;:::-;;;;;;;;15748:37;15768:4;15774:2;15778:6;15748:19;:37::i;:::-;15065:728;14953:840;;;:::o;16080:548::-;16183:1;16164:21;;:7;:21;;;16156:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16234:49;16263:1;16267:7;16276:6;16234:20;:49::i;:::-;16312:6;16296:12;;:22;;;;;;;:::i;:::-;;;;;;;;16489:6;16467:9;:18;16477:7;16467:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;16543:7;16522:37;;16539:1;16522:37;;;16552:6;16522:37;;;;;;:::i;:::-;;;;;;;;16572:48;16600:1;16604:7;16613:6;16572:19;:48::i;:::-;16080:548;;:::o;2412:132::-;2487:12;:10;:12::i;:::-;2476:23;;:7;:5;:7::i;:::-;:23;;;2468:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2412:132::o;16961:675::-;17064:1;17045:21;;:7;:21;;;17037:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17117:49;17138:7;17155:1;17159:6;17117:20;:49::i;:::-;17179:22;17204:9;:18;17214:7;17204:18;;;;;;;;;;;;;;;;17179:43;;17259:6;17241:14;:24;;17233:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17378:6;17361:14;:23;17340:9;:18;17350:7;17340:18;;;;;;;;;;;;;;;:44;;;;17495:6;17479:12;;:22;;;;;;;;;;;17556:1;17530:37;;17539:7;17530:37;;;17560:6;17530:37;;;;;;:::i;:::-;;;;;;;;17580:48;17600:7;17617:1;17621:6;17580:19;:48::i;:::-;17026:610;16961:675;;:::o;3514:191::-;3588:16;3607:6;;;;;;;;;;;3588:25;;3633:8;3624:6;;:17;;;;;;;;;;;;;;;;;;3688:8;3657:40;;3678:8;3657:40;;;;;;;;;;;;3577:128;3514:191;:::o;11094:193::-;11173:4;11190:13;11206:12;:10;:12::i;:::-;11190:28;;11229;11239:5;11246:2;11250:6;11229:9;:28::i;:::-;11275:4;11268:11;;;11094:193;;;;:::o;19798:125::-;;;;:::o;20527:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:410;7093:7;7116:20;7134:1;7116:20;:::i;:::-;7111:25;;7150:20;7168:1;7150:20;:::i;:::-;7145:25;;7205:1;7202;7198:9;7227:30;7245:11;7227:30;:::i;:::-;7216:41;;7406:1;7397:7;7393:15;7390:1;7387:22;7367:1;7360:9;7340:83;7317:139;;7436:18;;:::i;:::-;7317:139;7101:362;7053:410;;;;:::o;7469:173::-;7609:25;7605:1;7597:6;7593:14;7586:49;7469:173;:::o;7648:366::-;7790:3;7811:67;7875:2;7870:3;7811:67;:::i;:::-;7804:74;;7887:93;7976:3;7887:93;:::i;:::-;8005:2;8000:3;7996:12;7989:19;;7648:366;;;:::o;8020:419::-;8186:4;8224:2;8213:9;8209:18;8201:26;;8273:9;8267:4;8263:20;8259:1;8248:9;8244:17;8237:47;8301:131;8427:4;8301:131;:::i;:::-;8293:139;;8020:419;;;:::o;8445:191::-;8485:3;8504:20;8522:1;8504:20;:::i;:::-;8499:25;;8538:20;8556:1;8538:20;:::i;:::-;8533:25;;8581:1;8578;8574:9;8567:16;;8602:3;8599:1;8596:10;8593:36;;;8609:18;;:::i;:::-;8593:36;8445:191;;;;:::o;8642:172::-;8782:24;8778:1;8770:6;8766:14;8759:48;8642:172;:::o;8820:366::-;8962:3;8983:67;9047:2;9042:3;8983:67;:::i;:::-;8976:74;;9059:93;9148:3;9059:93;:::i;:::-;9177:2;9172:3;9168:12;9161:19;;8820:366;;;:::o;9192:419::-;9358:4;9396:2;9385:9;9381:18;9373:26;;9445:9;9439:4;9435:20;9431:1;9420:9;9416:17;9409:47;9473:131;9599:4;9473:131;:::i;:::-;9465:139;;9192:419;;;:::o;9617:226::-;9757:34;9753:1;9745:6;9741:14;9734:58;9826:9;9821:2;9813:6;9809:15;9802:34;9617:226;:::o;9849:366::-;9991:3;10012:67;10076:2;10071:3;10012:67;:::i;:::-;10005:74;;10088:93;10177:3;10088:93;:::i;:::-;10206:2;10201:3;10197:12;10190:19;;9849:366;;;:::o;10221:419::-;10387:4;10425:2;10414:9;10410:18;10402:26;;10474:9;10468:4;10464:20;10460:1;10449:9;10445:17;10438:47;10502:131;10628:4;10502:131;:::i;:::-;10494:139;;10221:419;;;:::o;10646:175::-;10786:27;10782:1;10774:6;10770:14;10763:51;10646:175;:::o;10827:366::-;10969:3;10990:67;11054:2;11049:3;10990:67;:::i;:::-;10983:74;;11066:93;11155:3;11066:93;:::i;:::-;11184:2;11179:3;11175:12;11168:19;;10827:366;;;:::o;11199:419::-;11365:4;11403:2;11392:9;11388:18;11380:26;;11452:9;11446:4;11442:20;11438:1;11427:9;11423:17;11416:47;11480:131;11606:4;11480:131;:::i;:::-;11472:139;;11199:419;;;:::o;11624:223::-;11764:34;11760:1;11752:6;11748:14;11741:58;11833:6;11828:2;11820:6;11816:15;11809:31;11624:223;:::o;11853:366::-;11995:3;12016:67;12080:2;12075:3;12016:67;:::i;:::-;12009:74;;12092:93;12181:3;12092:93;:::i;:::-;12210:2;12205:3;12201:12;12194:19;;11853:366;;;:::o;12225:419::-;12391:4;12429:2;12418:9;12414:18;12406:26;;12478:9;12472:4;12468:20;12464:1;12453:9;12449:17;12442:47;12506:131;12632:4;12506:131;:::i;:::-;12498:139;;12225:419;;;:::o;12650:171::-;12790:23;12786:1;12778:6;12774:14;12767:47;12650:171;:::o;12827:366::-;12969:3;12990:67;13054:2;13049:3;12990:67;:::i;:::-;12983:74;;13066:93;13155:3;13066:93;:::i;:::-;13184:2;13179:3;13175:12;13168:19;;12827:366;;;:::o;13199:419::-;13365:4;13403:2;13392:9;13388:18;13380:26;;13452:9;13446:4;13442:20;13438:1;13427:9;13423:17;13416:47;13480:131;13606:4;13480:131;:::i;:::-;13472:139;;13199:419;;;:::o;13624:181::-;13764:33;13760:1;13752:6;13748:14;13741:57;13624:181;:::o;13811:366::-;13953:3;13974:67;14038:2;14033:3;13974:67;:::i;:::-;13967:74;;14050:93;14139:3;14050:93;:::i;:::-;14168:2;14163:3;14159:12;14152:19;;13811:366;;;:::o;14183:419::-;14349:4;14387:2;14376:9;14372:18;14364:26;;14436:9;14430:4;14426:20;14422:1;14411:9;14407:17;14400:47;14464:131;14590:4;14464:131;:::i;:::-;14456:139;;14183:419;;;:::o;14608:143::-;14665:5;14696:6;14690:13;14681:22;;14712:33;14739:5;14712:33;:::i;:::-;14608:143;;;;:::o;14757:351::-;14827:6;14876:2;14864:9;14855:7;14851:23;14847:32;14844:119;;;14882:79;;:::i;:::-;14844:119;15002:1;15027:64;15083:7;15074:6;15063:9;15059:22;15027:64;:::i;:::-;15017:74;;14973:128;14757:351;;;;:::o;15114:179::-;15254:31;15250:1;15242:6;15238:14;15231:55;15114:179;:::o;15299:366::-;15441:3;15462:67;15526:2;15521:3;15462:67;:::i;:::-;15455:74;;15538:93;15627:3;15538:93;:::i;:::-;15656:2;15651:3;15647:12;15640:19;;15299:366;;;:::o;15671:419::-;15837:4;15875:2;15864:9;15860:18;15852:26;;15924:9;15918:4;15914:20;15910:1;15899:9;15895:17;15888:47;15952:131;16078:4;15952:131;:::i;:::-;15944:139;;15671:419;;;:::o;16096:332::-;16217:4;16255:2;16244:9;16240:18;16232:26;;16268:71;16336:1;16325:9;16321:17;16312:6;16268:71;:::i;:::-;16349:72;16417:2;16406:9;16402:18;16393:6;16349:72;:::i;:::-;16096:332;;;;;:::o;16434:116::-;16504:21;16519:5;16504:21;:::i;:::-;16497:5;16494:32;16484:60;;16540:1;16537;16530:12;16484:60;16434:116;:::o;16556:137::-;16610:5;16641:6;16635:13;16626:22;;16657:30;16681:5;16657:30;:::i;:::-;16556:137;;;;:::o;16699:345::-;16766:6;16815:2;16803:9;16794:7;16790:23;16786:32;16783:119;;;16821:79;;:::i;:::-;16783:119;16941:1;16966:61;17019:7;17010:6;16999:9;16995:22;16966:61;:::i;:::-;16956:71;;16912:125;16699:345;;;;:::o;17050:224::-;17190:34;17186:1;17178:6;17174:14;17167:58;17259:7;17254:2;17246:6;17242:15;17235:32;17050:224;:::o;17280:366::-;17422:3;17443:67;17507:2;17502:3;17443:67;:::i;:::-;17436:74;;17519:93;17608:3;17519:93;:::i;:::-;17637:2;17632:3;17628:12;17621:19;;17280:366;;;:::o;17652:419::-;17818:4;17856:2;17845:9;17841:18;17833:26;;17905:9;17899:4;17895:20;17891:1;17880:9;17876:17;17869:47;17933:131;18059:4;17933:131;:::i;:::-;17925:139;;17652:419;;;:::o;18077:236::-;18217:34;18213:1;18205:6;18201:14;18194:58;18286:19;18281:2;18273:6;18269:15;18262:44;18077:236;:::o;18319:366::-;18461:3;18482:67;18546:2;18541:3;18482:67;:::i;:::-;18475:74;;18558:93;18647:3;18558:93;:::i;:::-;18676:2;18671:3;18667:12;18660:19;;18319:366;;;:::o;18691:419::-;18857:4;18895:2;18884:9;18880:18;18872:26;;18944:9;18938:4;18934:20;18930:1;18919:9;18915:17;18908:47;18972:131;19098:4;18972:131;:::i;:::-;18964:139;;18691:419;;;:::o;19116:225::-;19256:34;19252:1;19244:6;19240:14;19233:58;19325:8;19320:2;19312:6;19308:15;19301:33;19116:225;:::o;19347:366::-;19489:3;19510:67;19574:2;19569:3;19510:67;:::i;:::-;19503:74;;19586:93;19675:3;19586:93;:::i;:::-;19704:2;19699:3;19695:12;19688:19;;19347:366;;;:::o;19719:419::-;19885:4;19923:2;19912:9;19908:18;19900:26;;19972:9;19966:4;19962:20;19958:1;19947:9;19943:17;19936:47;20000:131;20126:4;20000:131;:::i;:::-;19992:139;;19719:419;;;:::o;20144:223::-;20284:34;20280:1;20272:6;20268:14;20261:58;20353:6;20348:2;20340:6;20336:15;20329:31;20144:223;:::o;20373:366::-;20515:3;20536:67;20600:2;20595:3;20536:67;:::i;:::-;20529:74;;20612:93;20701:3;20612:93;:::i;:::-;20730:2;20725:3;20721:12;20714:19;;20373:366;;;:::o;20745:419::-;20911:4;20949:2;20938:9;20934:18;20926:26;;20998:9;20992:4;20988:20;20984:1;20973:9;20969:17;20962:47;21026:131;21152:4;21026:131;:::i;:::-;21018:139;;20745:419;;;:::o;21170:221::-;21310:34;21306:1;21298:6;21294:14;21287:58;21379:4;21374:2;21366:6;21362:15;21355:29;21170:221;:::o;21397:366::-;21539:3;21560:67;21624:2;21619:3;21560:67;:::i;:::-;21553:74;;21636:93;21725:3;21636:93;:::i;:::-;21754:2;21749:3;21745:12;21738:19;;21397:366;;;:::o;21769:419::-;21935:4;21973:2;21962:9;21958:18;21950:26;;22022:9;22016:4;22012:20;22008:1;21997:9;21993:17;21986:47;22050:131;22176:4;22050:131;:::i;:::-;22042:139;;21769:419;;;:::o;22194:179::-;22334:31;22330:1;22322:6;22318:14;22311:55;22194:179;:::o;22379:366::-;22521:3;22542:67;22606:2;22601:3;22542:67;:::i;:::-;22535:74;;22618:93;22707:3;22618:93;:::i;:::-;22736:2;22731:3;22727:12;22720:19;;22379:366;;;:::o;22751:419::-;22917:4;22955:2;22944:9;22940:18;22932:26;;23004:9;22998:4;22994:20;22990:1;22979:9;22975:17;22968:47;23032:131;23158:4;23032:131;:::i;:::-;23024:139;;22751:419;;;:::o;23176:224::-;23316:34;23312:1;23304:6;23300:14;23293:58;23385:7;23380:2;23372:6;23368:15;23361:32;23176:224;:::o;23406:366::-;23548:3;23569:67;23633:2;23628:3;23569:67;:::i;:::-;23562:74;;23645:93;23734:3;23645:93;:::i;:::-;23763:2;23758:3;23754:12;23747:19;;23406:366;;;:::o;23778:419::-;23944:4;23982:2;23971:9;23967:18;23959:26;;24031:9;24025:4;24021:20;24017:1;24006:9;24002:17;23995:47;24059:131;24185:4;24059:131;:::i;:::-;24051:139;;23778:419;;;:::o;24203:222::-;24343:34;24339:1;24331:6;24327:14;24320:58;24412:5;24407:2;24399:6;24395:15;24388:30;24203:222;:::o;24431:366::-;24573:3;24594:67;24658:2;24653:3;24594:67;:::i;:::-;24587:74;;24670:93;24759:3;24670:93;:::i;:::-;24788:2;24783:3;24779:12;24772:19;;24431:366;;;:::o;24803:419::-;24969:4;25007:2;24996:9;24992:18;24984:26;;25056:9;25050:4;25046:20;25042:1;25031:9;25027:17;25020:47;25084:131;25210:4;25084:131;:::i;:::-;25076:139;;24803:419;;;:::o;25228:225::-;25368:34;25364:1;25356:6;25352:14;25345:58;25437:8;25432:2;25424:6;25420:15;25413:33;25228:225;:::o;25459:366::-;25601:3;25622:67;25686:2;25681:3;25622:67;:::i;:::-;25615:74;;25698:93;25787:3;25698:93;:::i;:::-;25816:2;25811:3;25807:12;25800:19;;25459:366;;;:::o;25831:419::-;25997:4;26035:2;26024:9;26020:18;26012:26;;26084:9;26078:4;26074:20;26070:1;26059:9;26055:17;26048:47;26112:131;26238:4;26112:131;:::i;:::-;26104:139;;25831:419;;;:::o;26256:181::-;26396:33;26392:1;26384:6;26380:14;26373:57;26256:181;:::o;26443:366::-;26585:3;26606:67;26670:2;26665:3;26606:67;:::i;:::-;26599:74;;26682:93;26771:3;26682:93;:::i;:::-;26800:2;26795:3;26791:12;26784:19;;26443:366;;;:::o;26815:419::-;26981:4;27019:2;27008:9;27004:18;26996:26;;27068:9;27062:4;27058:20;27054:1;27043:9;27039:17;27032:47;27096:131;27222:4;27096:131;:::i;:::-;27088:139;;26815:419;;;:::o;27240:182::-;27380:34;27376:1;27368:6;27364:14;27357:58;27240:182;:::o;27428:366::-;27570:3;27591:67;27655:2;27650:3;27591:67;:::i;:::-;27584:74;;27667:93;27756:3;27667:93;:::i;:::-;27785:2;27780:3;27776:12;27769:19;;27428:366;;;:::o;27800:419::-;27966:4;28004:2;27993:9;27989:18;27981:26;;28053:9;28047:4;28043:20;28039:1;28028:9;28024:17;28017:47;28081:131;28207:4;28081:131;:::i;:::-;28073:139;;27800:419;;;:::o;28225:220::-;28365:34;28361:1;28353:6;28349:14;28342:58;28434:3;28429:2;28421:6;28417:15;28410:28;28225:220;:::o;28451:366::-;28593:3;28614:67;28678:2;28673:3;28614:67;:::i;:::-;28607:74;;28690:93;28779:3;28690:93;:::i;:::-;28808:2;28803:3;28799:12;28792:19;;28451:366;;;:::o;28823:419::-;28989:4;29027:2;29016:9;29012:18;29004:26;;29076:9;29070:4;29066:20;29062:1;29051:9;29047:17;29040:47;29104:131;29230:4;29104:131;:::i;:::-;29096:139;;28823:419;;;:::o;29248:221::-;29388:34;29384:1;29376:6;29372:14;29365:58;29457:4;29452:2;29444:6;29440:15;29433:29;29248:221;:::o;29475:366::-;29617:3;29638:67;29702:2;29697:3;29638:67;:::i;:::-;29631:74;;29714:93;29803:3;29714:93;:::i;:::-;29832:2;29827:3;29823:12;29816:19;;29475:366;;;:::o;29847:419::-;30013:4;30051:2;30040:9;30036:18;30028:26;;30100:9;30094:4;30090:20;30086:1;30075:9;30071:17;30064:47;30128:131;30254:4;30128:131;:::i;:::-;30120:139;;29847:419;;;:::o

Swarm Source

ipfs://90441a6c70e8ffce77c03ad99718ffd2988685a94b09a61d10de72b156ab995c
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.