Token

PUNT (PUNT)

Overview

Max Total Supply

100,000,000,000 PUNT

Holders

19

Market

Price

-

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
47,100,576.974241197520049729 PUNT

Value
$0.00
0xd5a4fefee79118af72b40e42e111b8e80aec5b23
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
PUNT

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;



contract PUNT is ERC20, Ownable {
    uint256 private _totalSupply = 100000000000 * (10 ** 18);
    uint256 private _tokenPrice = 200000 * (10 ** 18);

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

    // Withdraw Ether from the contract (only the owner can call this)
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "No balance to withdraw");
        payable(msg.sender).transfer(balance);
    }

    // Set token price (only the owner can call this)
    function setTokenPrice(uint256 newTokenPrice) external onlyOwner {
        require(newTokenPrice > 0, "Token price should be greater than 0");
        _tokenPrice = newTokenPrice;
    }

    // Get the current token price
    function getTokenPrice() external view returns (uint256) {
        return _tokenPrice;
    }

    // Burn tokens from the sender's balance
    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);
    }

    // Function to withdraw ERC20 tokens (only owner can call this)
    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); // Instantiate the ERC20 token contract
        uint256 tokenBalance = token.balanceOf(address(this)); // Get the contract's token balance
        require(tokenBalance >= amount, "Not enough tokens to withdraw");

        // Transfer the specified amount of the ERC20 token to the owner's address
        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":[],"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":[],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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"}]

60806040526c01431e0fae6d7217caa0000000600655692a5a058fc295ed0000006007553480156200002f575f80fd5b506040518060400160405280600481526020017f50554e54000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f50554e54000000000000000000000000000000000000000000000000000000008152508160039081620000ad919062000599565b508060049081620000bf919062000599565b505050620000e2620000d6620000fc60201b60201c565b6200010360201b60201c565b620000f633600654620001c660201b60201c565b6200078e565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000237576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022e90620006db565b60405180910390fd5b6200024a5f83836200032b60201b60201c565b8060025f8282546200025d919062000728565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030c919062000773565b60405180910390a3620003275f83836200033060201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620003b157607f821691505b602082108103620003c757620003c66200036c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200042b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003ee565b620004378683620003ee565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004816200047b62000475846200044f565b62000458565b6200044f565b9050919050565b5f819050919050565b6200049c8362000461565b620004b4620004ab8262000488565b848454620003fa565b825550505050565b5f90565b620004ca620004bc565b620004d781848462000491565b505050565b5b81811015620004fe57620004f25f82620004c0565b600181019050620004dd565b5050565b601f8211156200054d576200051781620003cd565b6200052284620003df565b8101602085101562000532578190505b6200054a6200054185620003df565b830182620004dc565b50505b505050565b5f82821c905092915050565b5f6200056f5f198460080262000552565b1980831691505092915050565b5f6200058983836200055e565b9150826002028217905092915050565b620005a48262000335565b67ffffffffffffffff811115620005c057620005bf6200033f565b5b620005cc825462000399565b620005d982828562000502565b5f60209050601f8311600181146200060f575f8415620005fa578287015190505b6200060685826200057c565b86555062000675565b601f1984166200061f86620003cd565b5f5b82811015620006485784890151825560018201915060208501945060208101905062000621565b8683101562000668578489015162000664601f8916826200055e565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620006c3601f836200067d565b9150620006d0826200068d565b602082019050919050565b5f6020820190508181035f830152620006f481620006b5565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000734826200044f565b915062000741836200044f565b92508282019050808211156200075c576200075b620006fb565b5b92915050565b6200076d816200044f565b82525050565b5f602082019050620007885f83018462000762565b92915050565b612088806200079c5f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c80636a61e5fc116100ab578063a1db97821161006f578063a1db9782146102e3578063a457c2d7146102ff578063a9059cbb1461032f578063dd62ed3e1461035f578063f2fde38b1461038f5761011f565b80636a61e5fc1461025157806370a082311461026d578063715018a61461029d5780638da5cb5b146102a757806395d89b41146102c55761011f565b8063313ce567116100f2578063313ce567146101bf57806339509351146101dd5780633ccfd60b1461020d57806342966c68146102175780634b94f50e146102335761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103ab565b604051610138919061135e565b60405180910390f35b61015b6004803603810190610156919061140f565b61043b565b6040516101689190611467565b60405180910390f35b61017961045d565b604051610186919061148f565b60405180910390f35b6101a960048036038101906101a491906114a8565b610466565b6040516101b69190611467565b60405180910390f35b6101c7610494565b6040516101d49190611513565b60405180910390f35b6101f760048036038101906101f2919061140f565b61049c565b6040516102049190611467565b60405180910390f35b6102156104d2565b005b610231600480360381019061022c919061152c565b610567565b005b61023b610601565b604051610248919061148f565b60405180910390f35b61026b6004803603810190610266919061152c565b61060a565b005b61028760048036038101906102829190611557565b61065e565b604051610294919061148f565b60405180910390f35b6102a56106a3565b005b6102af6106b6565b6040516102bc9190611591565b60405180910390f35b6102cd6106de565b6040516102da919061135e565b60405180910390f35b6102fd60048036038101906102f8919061140f565b61076e565b005b6103196004803603810190610314919061140f565b61096a565b6040516103269190611467565b60405180910390f35b6103496004803603810190610344919061140f565b6109df565b6040516103569190611467565b60405180910390f35b610379600480360381019061037491906115aa565b610a01565b604051610386919061148f565b60405180910390f35b6103a960048036038101906103a49190611557565b610a83565b005b6060600380546103ba90611615565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611615565b80156104315780601f1061040857610100808354040283529160200191610431565b820191905f5260205f20905b81548152906001019060200180831161041457829003601f168201915b5050505050905090565b5f80610445610b05565b9050610452818585610b0c565b600191505092915050565b5f600254905090565b5f80610470610b05565b905061047d858285610ccf565b610488858585610d5a565b60019150509392505050565b5f6012905090565b5f806104a6610b05565b90506104c78185856104b88589610a01565b6104c29190611672565b610b0c565b600191505092915050565b6104da610fc6565b5f4790505f8111610520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610517906116ef565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610563573d5f803e3d5ffd5b5050565b5f81116105a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a09061177d565b60405180910390fd5b806105b33361065e565b10156105f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105eb906117e5565b60405180910390fd5b6105fe3382611044565b50565b5f600754905090565b610612610fc6565b5f8111610654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064b90611873565b60405180910390fd5b8060078190555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106ab610fc6565b6106b45f611207565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106ed90611615565b80601f016020809104026020016040519081016040528092919081815260200182805461071990611615565b80156107645780601f1061073b57610100808354040283529160200191610764565b820191905f5260205f20905b81548152906001019060200180831161074757829003601f168201915b5050505050905090565b610776610fc6565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107db906118db565b60405180910390fd5b5f8111610826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081d90611943565b60405180910390fd5b5f8290505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016108649190611591565b602060405180830381865afa15801561087f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a39190611975565b9050828110156108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df906119ea565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33856040518363ffffffff1660e01b8152600401610923929190611a08565b6020604051808303815f875af115801561093f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109639190611a59565b5050505050565b5f80610974610b05565b90505f6109818286610a01565b9050838110156109c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bd90611af4565b60405180910390fd5b6109d38286868403610b0c565b60019250505092915050565b5f806109e9610b05565b90506109f6818585610d5a565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a8b610fc6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090611b82565b60405180910390fd5b610b0281611207565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190611c10565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90611c9e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cc2919061148f565b60405180910390a3505050565b5f610cda8484610a01565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d545781811015610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90611d06565b60405180910390fd5b610d538484848403610b0c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf90611d94565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d90611e22565b60405180910390fd5b610e418383836112ca565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90611eb0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fad919061148f565b60405180910390a3610fc08484846112cf565b50505050565b610fce610b05565b73ffffffffffffffffffffffffffffffffffffffff16610fec6106b6565b73ffffffffffffffffffffffffffffffffffffffff1614611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990611f18565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990611fa6565b60405180910390fd5b6110bd825f836112ca565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790612034565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111ef919061148f565b60405180910390a3611202835f846112cf565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561130b5780820151818401526020810190506112f0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611330826112d4565b61133a81856112de565b935061134a8185602086016112ee565b61135381611316565b840191505092915050565b5f6020820190508181035f8301526113768184611326565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6113ab82611382565b9050919050565b6113bb816113a1565b81146113c5575f80fd5b50565b5f813590506113d6816113b2565b92915050565b5f819050919050565b6113ee816113dc565b81146113f8575f80fd5b50565b5f81359050611409816113e5565b92915050565b5f80604083850312156114255761142461137e565b5b5f611432858286016113c8565b9250506020611443858286016113fb565b9150509250929050565b5f8115159050919050565b6114618161144d565b82525050565b5f60208201905061147a5f830184611458565b92915050565b611489816113dc565b82525050565b5f6020820190506114a25f830184611480565b92915050565b5f805f606084860312156114bf576114be61137e565b5b5f6114cc868287016113c8565b93505060206114dd868287016113c8565b92505060406114ee868287016113fb565b9150509250925092565b5f60ff82169050919050565b61150d816114f8565b82525050565b5f6020820190506115265f830184611504565b92915050565b5f602082840312156115415761154061137e565b5b5f61154e848285016113fb565b91505092915050565b5f6020828403121561156c5761156b61137e565b5b5f611579848285016113c8565b91505092915050565b61158b816113a1565b82525050565b5f6020820190506115a45f830184611582565b92915050565b5f80604083850312156115c0576115bf61137e565b5b5f6115cd858286016113c8565b92505060206115de858286016113c8565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061162c57607f821691505b60208210810361163f5761163e6115e8565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61167c826113dc565b9150611687836113dc565b925082820190508082111561169f5761169e611645565b5b92915050565b7f4e6f2062616c616e636520746f207769746864726177000000000000000000005f82015250565b5f6116d96016836112de565b91506116e4826116a5565b602082019050919050565b5f6020820190508181035f830152611706816116cd565b9050919050565b7f416d6f756e7420746f206275726e2073686f756c6420626520677265617465725f8201527f207468616e203000000000000000000000000000000000000000000000000000602082015250565b5f6117676027836112de565b91506117728261170d565b604082019050919050565b5f6020820190508181035f8301526117948161175b565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320746f206275726e000000000000005f82015250565b5f6117cf6019836112de565b91506117da8261179b565b602082019050919050565b5f6020820190508181035f8301526117fc816117c3565b9050919050565b7f546f6b656e2070726963652073686f756c6420626520677265617465722074685f8201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b5f61185d6024836112de565b915061186882611803565b604082019050919050565b5f6020820190508181035f83015261188a81611851565b9050919050565b7f496e76616c696420746f6b656e206164647265737300000000000000000000005f82015250565b5f6118c56015836112de565b91506118d082611891565b602082019050919050565b5f6020820190508181035f8301526118f2816118b9565b9050919050565b7f416d6f756e742073686f756c642062652067726561746572207468616e2030005f82015250565b5f61192d601f836112de565b9150611938826118f9565b602082019050919050565b5f6020820190508181035f83015261195a81611921565b9050919050565b5f8151905061196f816113e5565b92915050565b5f6020828403121561198a5761198961137e565b5b5f61199784828501611961565b91505092915050565b7f4e6f7420656e6f75676820746f6b656e7320746f2077697468647261770000005f82015250565b5f6119d4601d836112de565b91506119df826119a0565b602082019050919050565b5f6020820190508181035f830152611a01816119c8565b9050919050565b5f604082019050611a1b5f830185611582565b611a286020830184611480565b9392505050565b611a388161144d565b8114611a42575f80fd5b50565b5f81519050611a5381611a2f565b92915050565b5f60208284031215611a6e57611a6d61137e565b5b5f611a7b84828501611a45565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611ade6025836112de565b9150611ae982611a84565b604082019050919050565b5f6020820190508181035f830152611b0b81611ad2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611b6c6026836112de565b9150611b7782611b12565b604082019050919050565b5f6020820190508181035f830152611b9981611b60565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611bfa6024836112de565b9150611c0582611ba0565b604082019050919050565b5f6020820190508181035f830152611c2781611bee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c886022836112de565b9150611c9382611c2e565b604082019050919050565b5f6020820190508181035f830152611cb581611c7c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611cf0601d836112de565b9150611cfb82611cbc565b602082019050919050565b5f6020820190508181035f830152611d1d81611ce4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611d7e6025836112de565b9150611d8982611d24565b604082019050919050565b5f6020820190508181035f830152611dab81611d72565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611e0c6023836112de565b9150611e1782611db2565b604082019050919050565b5f6020820190508181035f830152611e3981611e00565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611e9a6026836112de565b9150611ea582611e40565b604082019050919050565b5f6020820190508181035f830152611ec781611e8e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611f026020836112de565b9150611f0d82611ece565b602082019050919050565b5f6020820190508181035f830152611f2f81611ef6565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611f906021836112de565b9150611f9b82611f36565b604082019050919050565b5f6020820190508181035f830152611fbd81611f84565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61201e6022836112de565b915061202982611fc4565b604082019050919050565b5f6020820190508181035f83015261204b81612012565b905091905056fea264697066735822122033114fd1293cc123acfbec756cb1b20cbd93312f4a4140455cb1476ce0a2747064736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c80636a61e5fc116100ab578063a1db97821161006f578063a1db9782146102e3578063a457c2d7146102ff578063a9059cbb1461032f578063dd62ed3e1461035f578063f2fde38b1461038f5761011f565b80636a61e5fc1461025157806370a082311461026d578063715018a61461029d5780638da5cb5b146102a757806395d89b41146102c55761011f565b8063313ce567116100f2578063313ce567146101bf57806339509351146101dd5780633ccfd60b1461020d57806342966c68146102175780634b94f50e146102335761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103ab565b604051610138919061135e565b60405180910390f35b61015b6004803603810190610156919061140f565b61043b565b6040516101689190611467565b60405180910390f35b61017961045d565b604051610186919061148f565b60405180910390f35b6101a960048036038101906101a491906114a8565b610466565b6040516101b69190611467565b60405180910390f35b6101c7610494565b6040516101d49190611513565b60405180910390f35b6101f760048036038101906101f2919061140f565b61049c565b6040516102049190611467565b60405180910390f35b6102156104d2565b005b610231600480360381019061022c919061152c565b610567565b005b61023b610601565b604051610248919061148f565b60405180910390f35b61026b6004803603810190610266919061152c565b61060a565b005b61028760048036038101906102829190611557565b61065e565b604051610294919061148f565b60405180910390f35b6102a56106a3565b005b6102af6106b6565b6040516102bc9190611591565b60405180910390f35b6102cd6106de565b6040516102da919061135e565b60405180910390f35b6102fd60048036038101906102f8919061140f565b61076e565b005b6103196004803603810190610314919061140f565b61096a565b6040516103269190611467565b60405180910390f35b6103496004803603810190610344919061140f565b6109df565b6040516103569190611467565b60405180910390f35b610379600480360381019061037491906115aa565b610a01565b604051610386919061148f565b60405180910390f35b6103a960048036038101906103a49190611557565b610a83565b005b6060600380546103ba90611615565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611615565b80156104315780601f1061040857610100808354040283529160200191610431565b820191905f5260205f20905b81548152906001019060200180831161041457829003601f168201915b5050505050905090565b5f80610445610b05565b9050610452818585610b0c565b600191505092915050565b5f600254905090565b5f80610470610b05565b905061047d858285610ccf565b610488858585610d5a565b60019150509392505050565b5f6012905090565b5f806104a6610b05565b90506104c78185856104b88589610a01565b6104c29190611672565b610b0c565b600191505092915050565b6104da610fc6565b5f4790505f8111610520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610517906116ef565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610563573d5f803e3d5ffd5b5050565b5f81116105a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a09061177d565b60405180910390fd5b806105b33361065e565b10156105f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105eb906117e5565b60405180910390fd5b6105fe3382611044565b50565b5f600754905090565b610612610fc6565b5f8111610654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064b90611873565b60405180910390fd5b8060078190555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106ab610fc6565b6106b45f611207565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106ed90611615565b80601f016020809104026020016040519081016040528092919081815260200182805461071990611615565b80156107645780601f1061073b57610100808354040283529160200191610764565b820191905f5260205f20905b81548152906001019060200180831161074757829003601f168201915b5050505050905090565b610776610fc6565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107db906118db565b60405180910390fd5b5f8111610826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081d90611943565b60405180910390fd5b5f8290505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016108649190611591565b602060405180830381865afa15801561087f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a39190611975565b9050828110156108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df906119ea565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33856040518363ffffffff1660e01b8152600401610923929190611a08565b6020604051808303815f875af115801561093f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109639190611a59565b5050505050565b5f80610974610b05565b90505f6109818286610a01565b9050838110156109c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bd90611af4565b60405180910390fd5b6109d38286868403610b0c565b60019250505092915050565b5f806109e9610b05565b90506109f6818585610d5a565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a8b610fc6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090611b82565b60405180910390fd5b610b0281611207565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190611c10565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90611c9e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cc2919061148f565b60405180910390a3505050565b5f610cda8484610a01565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d545781811015610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90611d06565b60405180910390fd5b610d538484848403610b0c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf90611d94565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d90611e22565b60405180910390fd5b610e418383836112ca565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90611eb0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fad919061148f565b60405180910390a3610fc08484846112cf565b50505050565b610fce610b05565b73ffffffffffffffffffffffffffffffffffffffff16610fec6106b6565b73ffffffffffffffffffffffffffffffffffffffff1614611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990611f18565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990611fa6565b60405180910390fd5b6110bd825f836112ca565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790612034565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111ef919061148f565b60405180910390a3611202835f846112cf565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561130b5780820151818401526020810190506112f0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611330826112d4565b61133a81856112de565b935061134a8185602086016112ee565b61135381611316565b840191505092915050565b5f6020820190508181035f8301526113768184611326565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6113ab82611382565b9050919050565b6113bb816113a1565b81146113c5575f80fd5b50565b5f813590506113d6816113b2565b92915050565b5f819050919050565b6113ee816113dc565b81146113f8575f80fd5b50565b5f81359050611409816113e5565b92915050565b5f80604083850312156114255761142461137e565b5b5f611432858286016113c8565b9250506020611443858286016113fb565b9150509250929050565b5f8115159050919050565b6114618161144d565b82525050565b5f60208201905061147a5f830184611458565b92915050565b611489816113dc565b82525050565b5f6020820190506114a25f830184611480565b92915050565b5f805f606084860312156114bf576114be61137e565b5b5f6114cc868287016113c8565b93505060206114dd868287016113c8565b92505060406114ee868287016113fb565b9150509250925092565b5f60ff82169050919050565b61150d816114f8565b82525050565b5f6020820190506115265f830184611504565b92915050565b5f602082840312156115415761154061137e565b5b5f61154e848285016113fb565b91505092915050565b5f6020828403121561156c5761156b61137e565b5b5f611579848285016113c8565b91505092915050565b61158b816113a1565b82525050565b5f6020820190506115a45f830184611582565b92915050565b5f80604083850312156115c0576115bf61137e565b5b5f6115cd858286016113c8565b92505060206115de858286016113c8565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061162c57607f821691505b60208210810361163f5761163e6115e8565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61167c826113dc565b9150611687836113dc565b925082820190508082111561169f5761169e611645565b5b92915050565b7f4e6f2062616c616e636520746f207769746864726177000000000000000000005f82015250565b5f6116d96016836112de565b91506116e4826116a5565b602082019050919050565b5f6020820190508181035f830152611706816116cd565b9050919050565b7f416d6f756e7420746f206275726e2073686f756c6420626520677265617465725f8201527f207468616e203000000000000000000000000000000000000000000000000000602082015250565b5f6117676027836112de565b91506117728261170d565b604082019050919050565b5f6020820190508181035f8301526117948161175b565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320746f206275726e000000000000005f82015250565b5f6117cf6019836112de565b91506117da8261179b565b602082019050919050565b5f6020820190508181035f8301526117fc816117c3565b9050919050565b7f546f6b656e2070726963652073686f756c6420626520677265617465722074685f8201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b5f61185d6024836112de565b915061186882611803565b604082019050919050565b5f6020820190508181035f83015261188a81611851565b9050919050565b7f496e76616c696420746f6b656e206164647265737300000000000000000000005f82015250565b5f6118c56015836112de565b91506118d082611891565b602082019050919050565b5f6020820190508181035f8301526118f2816118b9565b9050919050565b7f416d6f756e742073686f756c642062652067726561746572207468616e2030005f82015250565b5f61192d601f836112de565b9150611938826118f9565b602082019050919050565b5f6020820190508181035f83015261195a81611921565b9050919050565b5f8151905061196f816113e5565b92915050565b5f6020828403121561198a5761198961137e565b5b5f61199784828501611961565b91505092915050565b7f4e6f7420656e6f75676820746f6b656e7320746f2077697468647261770000005f82015250565b5f6119d4601d836112de565b91506119df826119a0565b602082019050919050565b5f6020820190508181035f830152611a01816119c8565b9050919050565b5f604082019050611a1b5f830185611582565b611a286020830184611480565b9392505050565b611a388161144d565b8114611a42575f80fd5b50565b5f81519050611a5381611a2f565b92915050565b5f60208284031215611a6e57611a6d61137e565b5b5f611a7b84828501611a45565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611ade6025836112de565b9150611ae982611a84565b604082019050919050565b5f6020820190508181035f830152611b0b81611ad2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611b6c6026836112de565b9150611b7782611b12565b604082019050919050565b5f6020820190508181035f830152611b9981611b60565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611bfa6024836112de565b9150611c0582611ba0565b604082019050919050565b5f6020820190508181035f830152611c2781611bee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c886022836112de565b9150611c9382611c2e565b604082019050919050565b5f6020820190508181035f830152611cb581611c7c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611cf0601d836112de565b9150611cfb82611cbc565b602082019050919050565b5f6020820190508181035f830152611d1d81611ce4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611d7e6025836112de565b9150611d8982611d24565b604082019050919050565b5f6020820190508181035f830152611dab81611d72565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611e0c6023836112de565b9150611e1782611db2565b604082019050919050565b5f6020820190508181035f830152611e3981611e00565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611e9a6026836112de565b9150611ea582611e40565b604082019050919050565b5f6020820190508181035f830152611ec781611e8e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611f026020836112de565b9150611f0d82611ece565b602082019050919050565b5f6020820190508181035f830152611f2f81611ef6565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611f906021836112de565b9150611f9b82611f36565b604082019050919050565b5f6020820190508181035f830152611fbd81611f84565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61201e6022836112de565b915061202982611fc4565b604082019050919050565b5f6020820190508181035f83015261204b81612012565b905091905056fea264697066735822122033114fd1293cc123acfbec756cb1b20cbd93312f4a4140455cb1476ce0a2747064736f6c63430008180033

Deployed Bytecode Sourcemap

20709:1905:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9470:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11821:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10590:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12602:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10432:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13306:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21035:202;;;:::i;:::-;;21680:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21532:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21300:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10761:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2895:103;;;:::i;:::-;;2247:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9689:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21993:618;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14047:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11094:193;;;;;;;;;;;;;:::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;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;21035:202::-;2133:13;:11;:13::i;:::-;21085:15:::1;21103:21;21085:39;;21153:1;21143:7;:11;21135:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;21200:10;21192:28;;:37;21221:7;21192:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;21074:163;21035:202::o:0;21680:236::-;21747:1;21738:6;:10;21730:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;21836:6;21811:21;21821:10;21811:9;:21::i;:::-;:31;;21803:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;21883:25;21889:10;21901:6;21883:5;:25::i;:::-;21680:236;:::o;21532:94::-;21580:7;21607:11;;21600:18;;21532:94;:::o;21300:188::-;2133:13;:11;:13::i;:::-;21400:1:::1;21384:13;:17;21376:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;21467:13;21453:11;:27;;;;21300: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;21993:618::-;2133:13;:11;:13::i;:::-;22116:1:::1;22092:26;;:12;:26;;::::0;22084:60:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22172:1;22163:6;:10;22155:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;22222:12;22244;22222:35;;22308:20;22331:5;:15;;;22355:4;22331:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22308:53;;22432:6;22416:12;:22;;22408:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22569:5;:14;;;22584:10;22596:6;22569:34;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22073:538;;21993:618:::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;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;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;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;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:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:172::-;7390:24;7386:1;7378:6;7374:14;7367:48;7250:172;:::o;7428:366::-;7570:3;7591:67;7655:2;7650:3;7591:67;:::i;:::-;7584:74;;7667:93;7756:3;7667:93;:::i;:::-;7785:2;7780:3;7776:12;7769:19;;7428:366;;;:::o;7800:419::-;7966:4;8004:2;7993:9;7989:18;7981:26;;8053:9;8047:4;8043:20;8039:1;8028:9;8024:17;8017:47;8081:131;8207:4;8081:131;:::i;:::-;8073:139;;7800:419;;;:::o;8225:226::-;8365:34;8361:1;8353:6;8349:14;8342:58;8434:9;8429:2;8421:6;8417:15;8410:34;8225:226;:::o;8457:366::-;8599:3;8620:67;8684:2;8679:3;8620:67;:::i;:::-;8613:74;;8696:93;8785:3;8696:93;:::i;:::-;8814:2;8809:3;8805:12;8798:19;;8457:366;;;:::o;8829:419::-;8995:4;9033:2;9022:9;9018:18;9010:26;;9082:9;9076:4;9072:20;9068:1;9057:9;9053:17;9046:47;9110:131;9236:4;9110:131;:::i;:::-;9102:139;;8829:419;;;:::o;9254:175::-;9394:27;9390:1;9382:6;9378:14;9371:51;9254:175;:::o;9435:366::-;9577:3;9598:67;9662:2;9657:3;9598:67;:::i;:::-;9591:74;;9674:93;9763:3;9674:93;:::i;:::-;9792:2;9787:3;9783:12;9776:19;;9435:366;;;:::o;9807:419::-;9973:4;10011:2;10000:9;9996:18;9988:26;;10060:9;10054:4;10050:20;10046:1;10035:9;10031:17;10024:47;10088:131;10214:4;10088:131;:::i;:::-;10080:139;;9807:419;;;:::o;10232:223::-;10372:34;10368:1;10360:6;10356:14;10349:58;10441:6;10436:2;10428:6;10424:15;10417:31;10232:223;:::o;10461:366::-;10603:3;10624:67;10688:2;10683:3;10624:67;:::i;:::-;10617:74;;10700:93;10789:3;10700:93;:::i;:::-;10818:2;10813:3;10809:12;10802:19;;10461:366;;;:::o;10833:419::-;10999:4;11037:2;11026:9;11022:18;11014:26;;11086:9;11080:4;11076:20;11072:1;11061:9;11057:17;11050:47;11114:131;11240:4;11114:131;:::i;:::-;11106:139;;10833:419;;;:::o;11258:171::-;11398:23;11394:1;11386:6;11382:14;11375:47;11258:171;:::o;11435:366::-;11577:3;11598:67;11662:2;11657:3;11598:67;:::i;:::-;11591:74;;11674:93;11763:3;11674:93;:::i;:::-;11792:2;11787:3;11783:12;11776:19;;11435:366;;;:::o;11807:419::-;11973:4;12011:2;12000:9;11996:18;11988:26;;12060:9;12054:4;12050:20;12046:1;12035:9;12031:17;12024:47;12088:131;12214:4;12088:131;:::i;:::-;12080:139;;11807:419;;;:::o;12232:181::-;12372:33;12368:1;12360:6;12356:14;12349:57;12232:181;:::o;12419:366::-;12561:3;12582:67;12646:2;12641:3;12582:67;:::i;:::-;12575:74;;12658:93;12747:3;12658:93;:::i;:::-;12776:2;12771:3;12767:12;12760:19;;12419:366;;;:::o;12791:419::-;12957:4;12995:2;12984:9;12980:18;12972:26;;13044:9;13038:4;13034:20;13030:1;13019:9;13015:17;13008:47;13072:131;13198:4;13072:131;:::i;:::-;13064:139;;12791:419;;;:::o;13216:143::-;13273:5;13304:6;13298:13;13289:22;;13320:33;13347:5;13320:33;:::i;:::-;13216:143;;;;:::o;13365:351::-;13435:6;13484:2;13472:9;13463:7;13459:23;13455:32;13452:119;;;13490:79;;:::i;:::-;13452:119;13610:1;13635:64;13691:7;13682:6;13671:9;13667:22;13635:64;:::i;:::-;13625:74;;13581:128;13365:351;;;;:::o;13722:179::-;13862:31;13858:1;13850:6;13846:14;13839:55;13722:179;:::o;13907:366::-;14049:3;14070:67;14134:2;14129:3;14070:67;:::i;:::-;14063:74;;14146:93;14235:3;14146:93;:::i;:::-;14264:2;14259:3;14255:12;14248:19;;13907:366;;;:::o;14279:419::-;14445:4;14483:2;14472:9;14468:18;14460:26;;14532:9;14526:4;14522:20;14518:1;14507:9;14503:17;14496:47;14560:131;14686:4;14560:131;:::i;:::-;14552:139;;14279:419;;;:::o;14704:332::-;14825:4;14863:2;14852:9;14848:18;14840:26;;14876:71;14944:1;14933:9;14929:17;14920:6;14876:71;:::i;:::-;14957:72;15025:2;15014:9;15010:18;15001:6;14957:72;:::i;:::-;14704:332;;;;;:::o;15042:116::-;15112:21;15127:5;15112:21;:::i;:::-;15105:5;15102:32;15092:60;;15148:1;15145;15138:12;15092:60;15042:116;:::o;15164:137::-;15218:5;15249:6;15243:13;15234:22;;15265:30;15289:5;15265:30;:::i;:::-;15164:137;;;;:::o;15307:345::-;15374:6;15423:2;15411:9;15402:7;15398:23;15394:32;15391:119;;;15429:79;;:::i;:::-;15391:119;15549:1;15574:61;15627:7;15618:6;15607:9;15603:22;15574:61;:::i;:::-;15564:71;;15520:125;15307:345;;;;:::o;15658:224::-;15798:34;15794:1;15786:6;15782:14;15775:58;15867:7;15862:2;15854:6;15850:15;15843:32;15658:224;:::o;15888:366::-;16030:3;16051:67;16115:2;16110:3;16051:67;:::i;:::-;16044:74;;16127:93;16216:3;16127:93;:::i;:::-;16245:2;16240:3;16236:12;16229:19;;15888:366;;;:::o;16260:419::-;16426:4;16464:2;16453:9;16449:18;16441:26;;16513:9;16507:4;16503:20;16499:1;16488:9;16484:17;16477:47;16541:131;16667:4;16541:131;:::i;:::-;16533:139;;16260:419;;;:::o;16685:225::-;16825:34;16821:1;16813:6;16809:14;16802:58;16894:8;16889:2;16881:6;16877:15;16870:33;16685:225;:::o;16916:366::-;17058:3;17079:67;17143:2;17138:3;17079:67;:::i;:::-;17072:74;;17155:93;17244:3;17155:93;:::i;:::-;17273:2;17268:3;17264:12;17257:19;;16916:366;;;:::o;17288:419::-;17454:4;17492:2;17481:9;17477:18;17469:26;;17541:9;17535:4;17531:20;17527:1;17516:9;17512:17;17505:47;17569:131;17695:4;17569:131;:::i;:::-;17561:139;;17288:419;;;:::o;17713:223::-;17853:34;17849:1;17841:6;17837:14;17830:58;17922:6;17917:2;17909:6;17905:15;17898:31;17713:223;:::o;17942:366::-;18084:3;18105:67;18169:2;18164:3;18105:67;:::i;:::-;18098:74;;18181:93;18270:3;18181:93;:::i;:::-;18299:2;18294:3;18290:12;18283:19;;17942:366;;;:::o;18314:419::-;18480:4;18518:2;18507:9;18503:18;18495:26;;18567:9;18561:4;18557:20;18553:1;18542:9;18538:17;18531:47;18595:131;18721:4;18595:131;:::i;:::-;18587:139;;18314:419;;;:::o;18739:221::-;18879:34;18875:1;18867:6;18863:14;18856:58;18948:4;18943:2;18935:6;18931:15;18924:29;18739:221;:::o;18966:366::-;19108:3;19129:67;19193:2;19188:3;19129:67;:::i;:::-;19122:74;;19205:93;19294:3;19205:93;:::i;:::-;19323:2;19318:3;19314:12;19307:19;;18966:366;;;:::o;19338:419::-;19504:4;19542:2;19531:9;19527:18;19519:26;;19591:9;19585:4;19581:20;19577:1;19566:9;19562:17;19555:47;19619:131;19745:4;19619:131;:::i;:::-;19611:139;;19338:419;;;:::o;19763:179::-;19903:31;19899:1;19891:6;19887:14;19880:55;19763:179;:::o;19948:366::-;20090:3;20111:67;20175:2;20170:3;20111:67;:::i;:::-;20104:74;;20187:93;20276:3;20187:93;:::i;:::-;20305:2;20300:3;20296:12;20289:19;;19948:366;;;:::o;20320:419::-;20486:4;20524:2;20513:9;20509:18;20501:26;;20573:9;20567:4;20563:20;20559:1;20548:9;20544:17;20537:47;20601:131;20727:4;20601:131;:::i;:::-;20593:139;;20320:419;;;:::o;20745:224::-;20885:34;20881:1;20873:6;20869:14;20862:58;20954:7;20949:2;20941:6;20937:15;20930:32;20745:224;:::o;20975:366::-;21117:3;21138:67;21202:2;21197:3;21138:67;:::i;:::-;21131:74;;21214:93;21303:3;21214:93;:::i;:::-;21332:2;21327:3;21323:12;21316:19;;20975:366;;;:::o;21347:419::-;21513:4;21551:2;21540:9;21536:18;21528:26;;21600:9;21594:4;21590:20;21586:1;21575:9;21571:17;21564:47;21628:131;21754:4;21628:131;:::i;:::-;21620:139;;21347:419;;;:::o;21772:222::-;21912:34;21908:1;21900:6;21896:14;21889:58;21981:5;21976:2;21968:6;21964:15;21957:30;21772:222;:::o;22000:366::-;22142:3;22163:67;22227:2;22222:3;22163:67;:::i;:::-;22156:74;;22239:93;22328:3;22239:93;:::i;:::-;22357:2;22352:3;22348:12;22341:19;;22000:366;;;:::o;22372:419::-;22538:4;22576:2;22565:9;22561:18;22553:26;;22625:9;22619:4;22615:20;22611:1;22600:9;22596:17;22589:47;22653:131;22779:4;22653:131;:::i;:::-;22645:139;;22372:419;;;:::o;22797:225::-;22937:34;22933:1;22925:6;22921:14;22914:58;23006:8;23001:2;22993:6;22989:15;22982:33;22797:225;:::o;23028:366::-;23170:3;23191:67;23255:2;23250:3;23191:67;:::i;:::-;23184:74;;23267:93;23356:3;23267:93;:::i;:::-;23385:2;23380:3;23376:12;23369:19;;23028:366;;;:::o;23400:419::-;23566:4;23604:2;23593:9;23589:18;23581:26;;23653:9;23647:4;23643:20;23639:1;23628:9;23624:17;23617:47;23681:131;23807:4;23681:131;:::i;:::-;23673:139;;23400:419;;;:::o;23825:182::-;23965:34;23961:1;23953:6;23949:14;23942:58;23825:182;:::o;24013:366::-;24155:3;24176:67;24240:2;24235:3;24176:67;:::i;:::-;24169:74;;24252:93;24341:3;24252:93;:::i;:::-;24370:2;24365:3;24361:12;24354:19;;24013:366;;;:::o;24385:419::-;24551:4;24589:2;24578:9;24574:18;24566:26;;24638:9;24632:4;24628:20;24624:1;24613:9;24609:17;24602:47;24666:131;24792:4;24666:131;:::i;:::-;24658:139;;24385:419;;;:::o;24810:220::-;24950:34;24946:1;24938:6;24934:14;24927:58;25019:3;25014:2;25006:6;25002:15;24995:28;24810:220;:::o;25036:366::-;25178:3;25199:67;25263:2;25258:3;25199:67;:::i;:::-;25192:74;;25275:93;25364:3;25275:93;:::i;:::-;25393:2;25388:3;25384:12;25377:19;;25036:366;;;:::o;25408:419::-;25574:4;25612:2;25601:9;25597:18;25589:26;;25661:9;25655:4;25651:20;25647:1;25636:9;25632:17;25625:47;25689:131;25815:4;25689:131;:::i;:::-;25681:139;;25408:419;;;:::o;25833:221::-;25973:34;25969:1;25961:6;25957:14;25950:58;26042:4;26037:2;26029:6;26025:15;26018:29;25833:221;:::o;26060:366::-;26202:3;26223:67;26287:2;26282:3;26223:67;:::i;:::-;26216:74;;26299:93;26388:3;26299:93;:::i;:::-;26417:2;26412:3;26408:12;26401:19;;26060:366;;;:::o;26432:419::-;26598:4;26636:2;26625:9;26621:18;26613:26;;26685:9;26679:4;26675:20;26671:1;26660:9;26656:17;26649:47;26713:131;26839:4;26713:131;:::i;:::-;26705:139;;26432:419;;;:::o

Swarm Source

ipfs://33114fd1293cc123acfbec756cb1b20cbd93312f4a4140455cb1476ce0a27470
[ 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.