ETH Price: $3,117.00 (+1.69%)

Token

Cosmic Network (COSMIC)
 

Overview

Max Total Supply

100,000,000 COSMIC

Holders

2,317

Market

Price

$0.08 @ 0.000026 ETH (-8.93%)

Onchain Market Cap

$8,122,700.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,997.989377245782247964 COSMIC

Value
$324.74 ( ~0.104183544516554 Eth) [0.0040%]
0x0c50e79726c95495e3c7138e327ca5d32787af05
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cosmic Network provides a decentralized VPN leveraging a peer-to-peer model for cost-effective, secure internet access. It features digital and physical nodes worldwide, allowing for secure service sharing and opportunities for node operators to earn passive income.

Market

Volume (24H):$188,033.00
Market Capitalization:$0.00
Circulating Supply:0.00 COSMIC
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CosmicNetwork

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-09-02
*/

// SPDX-License-Identifier: MIT

// Website: https://cosmicnetwork.io/
// TG: https://t.me/cosmic_network_portal
// Twitter: https://x.com/Network_Cosmic_

// File @openzeppelin/contracts/utils/[email protected]
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// 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/[email protected]

// OpenZeppelin Contracts (last updated v4.9.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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/token.sol
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.20;


contract CosmicNetwork is ERC20, Ownable {

    uint256 public constant TIMELOCK = 1 days;
    uint256 public mintQueueCounter = 0;
    uint256 public mintExecutedCounter = 0;

    uint256 public maxSupply;
    uint256 public initialSupply = 100_000_000 * (10 ** decimals());

    struct MintRequest {
        uint256 amount;
        address to;
        uint256 mintAfter;
        uint256 executedOn;
    }

    mapping(uint256 => MintRequest) public mintQueue;

    constructor()
        ERC20("Cosmic Network", "COSMIC")
    {
        maxSupply = 200_000_000 * (10 ** decimals());
        _mint(msg.sender, initialSupply);
    }

    function mintRequest(uint256 amount, address to) external onlyOwner {
        mintQueue[mintQueueCounter] = MintRequest(amount, to, block.timestamp + TIMELOCK, 0);
        mintQueueCounter++;
    }

    function mintApprove(uint256 _id) external onlyOwner {
        // Timelock based minting
        MintRequest storage request = mintQueue[_id];
        require(request.mintAfter <= block.timestamp, "Mint request is not yet approved");
        require(request.executedOn == 0, "Mint request is already executed");
        require(request.amount > 0, "Invalid mint amount");
        require(totalSupply() + request.amount <= maxSupply, "Max supply reached");
        request.executedOn = block.timestamp;
        mintExecutedCounter++;
        _mint(request.to, request.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":[],"name":"TIMELOCK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"mintApprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintExecutedCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintQueue","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"mintAfter","type":"uint256"},{"internalType":"uint256","name":"executedOn","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintQueueCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"mintRequest","outputs":[],"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":[],"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"}]

60806040525f6006555f6007556200001c6200014c60201b60201c565b600a6200002a91906200051f565b6305f5e1006200003b91906200056f565b6009553480156200004a575f80fd5b506040518060400160405280600e81526020017f436f736d6963204e6574776f726b0000000000000000000000000000000000008152506040518060400160405280600681526020017f434f534d494300000000000000000000000000000000000000000000000000008152508160039081620000c8919062000814565b508060049081620000da919062000814565b505050620000fd620000f16200015460201b60201c565b6200015b60201b60201c565b6200010d6200014c60201b60201c565b600a6200011b91906200051f565b630bebc2006200012c91906200056f565b60088190555062000146336009546200021e60201b60201c565b620009dc565b5f6012905090565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200028f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002869062000956565b60405180910390fd5b620002a25f83836200038360201b60201c565b8060025f828254620002b5919062000976565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003649190620009c1565b60405180910390a36200037f5f83836200038860201b60201c565b5050565b505050565b505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200041757808604811115620003ef57620003ee6200038d565b5b6001851615620003ff5780820291505b80810290506200040f85620003ba565b9450620003cf565b94509492505050565b5f8262000431576001905062000503565b8162000440575f905062000503565b816001811462000459576002811462000464576200049a565b600191505062000503565b60ff8411156200047957620004786200038d565b5b8360020a9150848211156200049357620004926200038d565b5b5062000503565b5060208310610133831016604e8410600b8410161715620004d45782820a905083811115620004ce57620004cd6200038d565b5b62000503565b620004e38484846001620003c6565b92509050818404811115620004fd57620004fc6200038d565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f6200052b826200050a565b9150620005388362000513565b9250620005677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000420565b905092915050565b5f6200057b826200050a565b915062000588836200050a565b925082820262000598816200050a565b91508282048414831517620005b257620005b16200038d565b5b5092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200063557607f821691505b6020821081036200064b576200064a620005f0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006af7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000672565b620006bb868362000672565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620006fc620006f6620006f0846200050a565b620006d3565b6200050a565b9050919050565b5f819050919050565b6200071783620006dc565b6200072f620007268262000703565b8484546200067e565b825550505050565b5f90565b6200074562000737565b620007528184846200070c565b505050565b5b8181101562000779576200076d5f826200073b565b60018101905062000758565b5050565b601f821115620007c857620007928162000651565b6200079d8462000663565b81016020851015620007ad578190505b620007c5620007bc8562000663565b83018262000757565b50505b505050565b5f82821c905092915050565b5f620007ea5f1984600802620007cd565b1980831691505092915050565b5f620008048383620007d9565b9150826002028217905092915050565b6200081f82620005b9565b67ffffffffffffffff8111156200083b576200083a620005c3565b5b6200084782546200061d565b620008548282856200077d565b5f60209050601f8311600181146200088a575f841562000875578287015190505b620008818582620007f7565b865550620008f0565b601f1984166200089a8662000651565b5f5b82811015620008c3578489015182556001820191506020850194506020810190506200089c565b86831015620008e35784890151620008df601f891682620007d9565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6200093e601f83620008f8565b91506200094b8262000908565b602082019050919050565b5f6020820190508181035f8301526200096f8162000930565b9050919050565b5f62000982826200050a565b91506200098f836200050a565b9250828201905080821115620009aa57620009a96200038d565b5b92915050565b620009bb816200050a565b82525050565b5f602082019050620009d65f830184620009b0565b92915050565b611dec80620009ea5f395ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c80638a2e6f40116100b6578063a9059cbb1161007a578063a9059cbb14610368578063d5abeb0114610398578063dd62ed3e146103b6578063e789057d146103e6578063eeca149614610402578063f2fde38b1461043557610140565b80638a2e6f40146102c05780638da5cb5b146102de57806395d89b41146102fc57806398a1eb201461031a578063a457c2d71461033857610140565b8063378dc3dc11610108578063378dc3dc146101fe578063395093511461021c5780636f1fcb251461024c57806370a0823114610268578063715018a6146102985780637aadef8b146102a257610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd1461019257806323b872dd146101b0578063313ce567146101e0575b5f80fd5b61014c610451565b60405161015991906112ed565b60405180910390f35b61017c6004803603810190610177919061139e565b6104e1565b60405161018991906113f6565b60405180910390f35b61019a610503565b6040516101a7919061141e565b60405180910390f35b6101ca60048036038101906101c59190611437565b61050c565b6040516101d791906113f6565b60405180910390f35b6101e861053a565b6040516101f591906114a2565b60405180910390f35b610206610542565b604051610213919061141e565b60405180910390f35b6102366004803603810190610231919061139e565b610548565b60405161024391906113f6565b60405180910390f35b610266600480360381019061026191906114bb565b61057e565b005b610282600480360381019061027d91906114f9565b61065e565b60405161028f919061141e565b60405180910390f35b6102a06106a3565b005b6102aa6106b6565b6040516102b7919061141e565b60405180910390f35b6102c86106bd565b6040516102d5919061141e565b60405180910390f35b6102e66106c3565b6040516102f39190611533565b60405180910390f35b6103046106eb565b60405161031191906112ed565b60405180910390f35b61032261077b565b60405161032f919061141e565b60405180910390f35b610352600480360381019061034d919061139e565b610781565b60405161035f91906113f6565b60405180910390f35b610382600480360381019061037d919061139e565b6107f6565b60405161038f91906113f6565b60405180910390f35b6103a0610818565b6040516103ad919061141e565b60405180910390f35b6103d060048036038101906103cb919061154c565b61081e565b6040516103dd919061141e565b60405180910390f35b61040060048036038101906103fb919061158a565b6108a0565b005b61041c6004803603810190610417919061158a565b610a3c565b60405161042c94939291906115b5565b60405180910390f35b61044f600480360381019061044a91906114f9565b610a87565b005b60606003805461046090611625565b80601f016020809104026020016040519081016040528092919081815260200182805461048c90611625565b80156104d75780601f106104ae576101008083540402835291602001916104d7565b820191905f5260205f20905b8154815290600101906020018083116104ba57829003601f168201915b5050505050905090565b5f806104eb610b09565b90506104f8818585610b10565b600191505092915050565b5f600254905090565b5f80610516610b09565b9050610523858285610cd3565b61052e858585610d5e565b60019150509392505050565b5f6012905090565b60095481565b5f80610552610b09565b9050610573818585610564858961081e565b61056e9190611682565b610b10565b600191505092915050565b610586610fca565b60405180608001604052808381526020018273ffffffffffffffffffffffffffffffffffffffff16815260200162015180426105c29190611682565b81526020015f815250600a5f60065481526020019081526020015f205f820151815f01556020820151816001015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604082015181600201556060820151816003015590505060065f815480929190610655906116b5565b91905055505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106ab610fca565b6106b45f611048565b565b6201518081565b60065481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106fa90611625565b80601f016020809104026020016040519081016040528092919081815260200182805461072690611625565b80156107715780601f1061074857610100808354040283529160200191610771565b820191905f5260205f20905b81548152906001019060200180831161075457829003601f168201915b5050505050905090565b60075481565b5f8061078b610b09565b90505f610798828661081e565b9050838110156107dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d49061176c565b60405180910390fd5b6107ea8286868403610b10565b60019250505092915050565b5f80610800610b09565b905061080d818585610d5e565b600191505092915050565b60085481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108a8610fca565b5f600a5f8381526020019081526020015f2090504281600201541115610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa906117d4565b60405180910390fd5b5f816003015414610949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109409061183c565b60405180910390fd5b5f815f01541161098e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610985906118a4565b60405180910390fd5b600854815f015461099d610503565b6109a79190611682565b11156109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df9061190c565b60405180910390fd5b42816003018190555060075f815480929190610a03906116b5565b9190505550610a38816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16825f015461110b565b5050565b600a602052805f5260405f205f91509050805f015490806001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020154908060030154905084565b610a8f610fca565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af49061199a565b60405180910390fd5b610b0681611048565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590611a28565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390611ab6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cc6919061141e565b60405180910390a3505050565b5f610cde848461081e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d585781811015610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190611b1e565b60405180910390fd5b610d578484848403610b10565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390611bac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190611c3a565b60405180910390fd5b610e45838383611259565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90611cc8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fb1919061141e565b60405180910390a3610fc484848461125e565b50505050565b610fd2610b09565b73ffffffffffffffffffffffffffffffffffffffff16610ff06106c3565b73ffffffffffffffffffffffffffffffffffffffff1614611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90611d30565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090611d98565b60405180910390fd5b6111845f8383611259565b8060025f8282546111959190611682565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611242919061141e565b60405180910390a36112555f838361125e565b5050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561129a57808201518184015260208101905061127f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6112bf82611263565b6112c9818561126d565b93506112d981856020860161127d565b6112e2816112a5565b840191505092915050565b5f6020820190508181035f83015261130581846112b5565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61133a82611311565b9050919050565b61134a81611330565b8114611354575f80fd5b50565b5f8135905061136581611341565b92915050565b5f819050919050565b61137d8161136b565b8114611387575f80fd5b50565b5f8135905061139881611374565b92915050565b5f80604083850312156113b4576113b361130d565b5b5f6113c185828601611357565b92505060206113d28582860161138a565b9150509250929050565b5f8115159050919050565b6113f0816113dc565b82525050565b5f6020820190506114095f8301846113e7565b92915050565b6114188161136b565b82525050565b5f6020820190506114315f83018461140f565b92915050565b5f805f6060848603121561144e5761144d61130d565b5b5f61145b86828701611357565b935050602061146c86828701611357565b925050604061147d8682870161138a565b9150509250925092565b5f60ff82169050919050565b61149c81611487565b82525050565b5f6020820190506114b55f830184611493565b92915050565b5f80604083850312156114d1576114d061130d565b5b5f6114de8582860161138a565b92505060206114ef85828601611357565b9150509250929050565b5f6020828403121561150e5761150d61130d565b5b5f61151b84828501611357565b91505092915050565b61152d81611330565b82525050565b5f6020820190506115465f830184611524565b92915050565b5f80604083850312156115625761156161130d565b5b5f61156f85828601611357565b925050602061158085828601611357565b9150509250929050565b5f6020828403121561159f5761159e61130d565b5b5f6115ac8482850161138a565b91505092915050565b5f6080820190506115c85f83018761140f565b6115d56020830186611524565b6115e2604083018561140f565b6115ef606083018461140f565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061163c57607f821691505b60208210810361164f5761164e6115f8565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61168c8261136b565b91506116978361136b565b92508282019050808211156116af576116ae611655565b5b92915050565b5f6116bf8261136b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036116f1576116f0611655565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61175660258361126d565b9150611761826116fc565b604082019050919050565b5f6020820190508181035f8301526117838161174a565b9050919050565b7f4d696e742072657175657374206973206e6f742079657420617070726f7665645f82015250565b5f6117be60208361126d565b91506117c98261178a565b602082019050919050565b5f6020820190508181035f8301526117eb816117b2565b9050919050565b7f4d696e74207265717565737420697320616c72656164792065786563757465645f82015250565b5f61182660208361126d565b9150611831826117f2565b602082019050919050565b5f6020820190508181035f8301526118538161181a565b9050919050565b7f496e76616c6964206d696e7420616d6f756e74000000000000000000000000005f82015250565b5f61188e60138361126d565b91506118998261185a565b602082019050919050565b5f6020820190508181035f8301526118bb81611882565b9050919050565b7f4d617820737570706c79207265616368656400000000000000000000000000005f82015250565b5f6118f660128361126d565b9150611901826118c2565b602082019050919050565b5f6020820190508181035f830152611923816118ea565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61198460268361126d565b915061198f8261192a565b604082019050919050565b5f6020820190508181035f8301526119b181611978565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a1260248361126d565b9150611a1d826119b8565b604082019050919050565b5f6020820190508181035f830152611a3f81611a06565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611aa060228361126d565b9150611aab82611a46565b604082019050919050565b5f6020820190508181035f830152611acd81611a94565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611b08601d8361126d565b9150611b1382611ad4565b602082019050919050565b5f6020820190508181035f830152611b3581611afc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611b9660258361126d565b9150611ba182611b3c565b604082019050919050565b5f6020820190508181035f830152611bc381611b8a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611c2460238361126d565b9150611c2f82611bca565b604082019050919050565b5f6020820190508181035f830152611c5181611c18565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611cb260268361126d565b9150611cbd82611c58565b604082019050919050565b5f6020820190508181035f830152611cdf81611ca6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611d1a60208361126d565b9150611d2582611ce6565b602082019050919050565b5f6020820190508181035f830152611d4781611d0e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611d82601f8361126d565b9150611d8d82611d4e565b602082019050919050565b5f6020820190508181035f830152611daf81611d76565b905091905056fea2646970667358221220b13aa2b93f0e355a66f2cd4ce5a397adec8e5e60651f1ce3723db66b60b5f35664736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c80638a2e6f40116100b6578063a9059cbb1161007a578063a9059cbb14610368578063d5abeb0114610398578063dd62ed3e146103b6578063e789057d146103e6578063eeca149614610402578063f2fde38b1461043557610140565b80638a2e6f40146102c05780638da5cb5b146102de57806395d89b41146102fc57806398a1eb201461031a578063a457c2d71461033857610140565b8063378dc3dc11610108578063378dc3dc146101fe578063395093511461021c5780636f1fcb251461024c57806370a0823114610268578063715018a6146102985780637aadef8b146102a257610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd1461019257806323b872dd146101b0578063313ce567146101e0575b5f80fd5b61014c610451565b60405161015991906112ed565b60405180910390f35b61017c6004803603810190610177919061139e565b6104e1565b60405161018991906113f6565b60405180910390f35b61019a610503565b6040516101a7919061141e565b60405180910390f35b6101ca60048036038101906101c59190611437565b61050c565b6040516101d791906113f6565b60405180910390f35b6101e861053a565b6040516101f591906114a2565b60405180910390f35b610206610542565b604051610213919061141e565b60405180910390f35b6102366004803603810190610231919061139e565b610548565b60405161024391906113f6565b60405180910390f35b610266600480360381019061026191906114bb565b61057e565b005b610282600480360381019061027d91906114f9565b61065e565b60405161028f919061141e565b60405180910390f35b6102a06106a3565b005b6102aa6106b6565b6040516102b7919061141e565b60405180910390f35b6102c86106bd565b6040516102d5919061141e565b60405180910390f35b6102e66106c3565b6040516102f39190611533565b60405180910390f35b6103046106eb565b60405161031191906112ed565b60405180910390f35b61032261077b565b60405161032f919061141e565b60405180910390f35b610352600480360381019061034d919061139e565b610781565b60405161035f91906113f6565b60405180910390f35b610382600480360381019061037d919061139e565b6107f6565b60405161038f91906113f6565b60405180910390f35b6103a0610818565b6040516103ad919061141e565b60405180910390f35b6103d060048036038101906103cb919061154c565b61081e565b6040516103dd919061141e565b60405180910390f35b61040060048036038101906103fb919061158a565b6108a0565b005b61041c6004803603810190610417919061158a565b610a3c565b60405161042c94939291906115b5565b60405180910390f35b61044f600480360381019061044a91906114f9565b610a87565b005b60606003805461046090611625565b80601f016020809104026020016040519081016040528092919081815260200182805461048c90611625565b80156104d75780601f106104ae576101008083540402835291602001916104d7565b820191905f5260205f20905b8154815290600101906020018083116104ba57829003601f168201915b5050505050905090565b5f806104eb610b09565b90506104f8818585610b10565b600191505092915050565b5f600254905090565b5f80610516610b09565b9050610523858285610cd3565b61052e858585610d5e565b60019150509392505050565b5f6012905090565b60095481565b5f80610552610b09565b9050610573818585610564858961081e565b61056e9190611682565b610b10565b600191505092915050565b610586610fca565b60405180608001604052808381526020018273ffffffffffffffffffffffffffffffffffffffff16815260200162015180426105c29190611682565b81526020015f815250600a5f60065481526020019081526020015f205f820151815f01556020820151816001015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604082015181600201556060820151816003015590505060065f815480929190610655906116b5565b91905055505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106ab610fca565b6106b45f611048565b565b6201518081565b60065481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106fa90611625565b80601f016020809104026020016040519081016040528092919081815260200182805461072690611625565b80156107715780601f1061074857610100808354040283529160200191610771565b820191905f5260205f20905b81548152906001019060200180831161075457829003601f168201915b5050505050905090565b60075481565b5f8061078b610b09565b90505f610798828661081e565b9050838110156107dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d49061176c565b60405180910390fd5b6107ea8286868403610b10565b60019250505092915050565b5f80610800610b09565b905061080d818585610d5e565b600191505092915050565b60085481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108a8610fca565b5f600a5f8381526020019081526020015f2090504281600201541115610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa906117d4565b60405180910390fd5b5f816003015414610949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109409061183c565b60405180910390fd5b5f815f01541161098e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610985906118a4565b60405180910390fd5b600854815f015461099d610503565b6109a79190611682565b11156109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df9061190c565b60405180910390fd5b42816003018190555060075f815480929190610a03906116b5565b9190505550610a38816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16825f015461110b565b5050565b600a602052805f5260405f205f91509050805f015490806001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020154908060030154905084565b610a8f610fca565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af49061199a565b60405180910390fd5b610b0681611048565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590611a28565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390611ab6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cc6919061141e565b60405180910390a3505050565b5f610cde848461081e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d585781811015610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190611b1e565b60405180910390fd5b610d578484848403610b10565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390611bac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190611c3a565b60405180910390fd5b610e45838383611259565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90611cc8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fb1919061141e565b60405180910390a3610fc484848461125e565b50505050565b610fd2610b09565b73ffffffffffffffffffffffffffffffffffffffff16610ff06106c3565b73ffffffffffffffffffffffffffffffffffffffff1614611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90611d30565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090611d98565b60405180910390fd5b6111845f8383611259565b8060025f8282546111959190611682565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611242919061141e565b60405180910390a36112555f838361125e565b5050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561129a57808201518184015260208101905061127f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6112bf82611263565b6112c9818561126d565b93506112d981856020860161127d565b6112e2816112a5565b840191505092915050565b5f6020820190508181035f83015261130581846112b5565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61133a82611311565b9050919050565b61134a81611330565b8114611354575f80fd5b50565b5f8135905061136581611341565b92915050565b5f819050919050565b61137d8161136b565b8114611387575f80fd5b50565b5f8135905061139881611374565b92915050565b5f80604083850312156113b4576113b361130d565b5b5f6113c185828601611357565b92505060206113d28582860161138a565b9150509250929050565b5f8115159050919050565b6113f0816113dc565b82525050565b5f6020820190506114095f8301846113e7565b92915050565b6114188161136b565b82525050565b5f6020820190506114315f83018461140f565b92915050565b5f805f6060848603121561144e5761144d61130d565b5b5f61145b86828701611357565b935050602061146c86828701611357565b925050604061147d8682870161138a565b9150509250925092565b5f60ff82169050919050565b61149c81611487565b82525050565b5f6020820190506114b55f830184611493565b92915050565b5f80604083850312156114d1576114d061130d565b5b5f6114de8582860161138a565b92505060206114ef85828601611357565b9150509250929050565b5f6020828403121561150e5761150d61130d565b5b5f61151b84828501611357565b91505092915050565b61152d81611330565b82525050565b5f6020820190506115465f830184611524565b92915050565b5f80604083850312156115625761156161130d565b5b5f61156f85828601611357565b925050602061158085828601611357565b9150509250929050565b5f6020828403121561159f5761159e61130d565b5b5f6115ac8482850161138a565b91505092915050565b5f6080820190506115c85f83018761140f565b6115d56020830186611524565b6115e2604083018561140f565b6115ef606083018461140f565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061163c57607f821691505b60208210810361164f5761164e6115f8565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61168c8261136b565b91506116978361136b565b92508282019050808211156116af576116ae611655565b5b92915050565b5f6116bf8261136b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036116f1576116f0611655565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61175660258361126d565b9150611761826116fc565b604082019050919050565b5f6020820190508181035f8301526117838161174a565b9050919050565b7f4d696e742072657175657374206973206e6f742079657420617070726f7665645f82015250565b5f6117be60208361126d565b91506117c98261178a565b602082019050919050565b5f6020820190508181035f8301526117eb816117b2565b9050919050565b7f4d696e74207265717565737420697320616c72656164792065786563757465645f82015250565b5f61182660208361126d565b9150611831826117f2565b602082019050919050565b5f6020820190508181035f8301526118538161181a565b9050919050565b7f496e76616c6964206d696e7420616d6f756e74000000000000000000000000005f82015250565b5f61188e60138361126d565b91506118998261185a565b602082019050919050565b5f6020820190508181035f8301526118bb81611882565b9050919050565b7f4d617820737570706c79207265616368656400000000000000000000000000005f82015250565b5f6118f660128361126d565b9150611901826118c2565b602082019050919050565b5f6020820190508181035f830152611923816118ea565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61198460268361126d565b915061198f8261192a565b604082019050919050565b5f6020820190508181035f8301526119b181611978565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a1260248361126d565b9150611a1d826119b8565b604082019050919050565b5f6020820190508181035f830152611a3f81611a06565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611aa060228361126d565b9150611aab82611a46565b604082019050919050565b5f6020820190508181035f830152611acd81611a94565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611b08601d8361126d565b9150611b1382611ad4565b602082019050919050565b5f6020820190508181035f830152611b3581611afc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611b9660258361126d565b9150611ba182611b3c565b604082019050919050565b5f6020820190508181035f830152611bc381611b8a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611c2460238361126d565b9150611c2f82611bca565b604082019050919050565b5f6020820190508181035f830152611c5181611c18565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611cb260268361126d565b9150611cbd82611c58565b604082019050919050565b5f6020820190508181035f830152611cdf81611ca6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611d1a60208361126d565b9150611d2582611ce6565b602082019050919050565b5f6020820190508181035f830152611d4781611d0e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611d82601f8361126d565b9150611d8d82611d4e565b602082019050919050565b5f6020820190508181035f830152611daf81611d76565b905091905056fea2646970667358221220b13aa2b93f0e355a66f2cd4ce5a397adec8e5e60651f1ce3723db66b60b5f35664736f6c63430008140033

Deployed Bytecode Sourcemap

20722:1463:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9618:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11978:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10747:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12759:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10589:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20940:63;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13429:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21383:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10918:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3059:103;;;:::i;:::-;;20772:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20820:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2418:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9837:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20862:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14170:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11251:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20909:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11507:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21591:591;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21150:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;3317:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9618:100;9672:13;9705:5;9698:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9618:100;:::o;11978:201::-;12061:4;12078:13;12094:12;:10;:12::i;:::-;12078:28;;12117:32;12126:5;12133:7;12142:6;12117:8;:32::i;:::-;12167:4;12160:11;;;11978:201;;;;:::o;10747:108::-;10808:7;10835:12;;10828:19;;10747:108;:::o;12759:261::-;12856:4;12873:15;12891:12;:10;:12::i;:::-;12873:30;;12914:38;12930:4;12936:7;12945:6;12914:15;:38::i;:::-;12963:27;12973:4;12979:2;12983:6;12963:9;:27::i;:::-;13008:4;13001:11;;;12759:261;;;;;:::o;10589:93::-;10647:5;10672:2;10665:9;;10589:93;:::o;20940:63::-;;;;:::o;13429:238::-;13517:4;13534:13;13550:12;:10;:12::i;:::-;13534:28;;13573:64;13582:5;13589:7;13626:10;13598:25;13608:5;13615:7;13598:9;:25::i;:::-;:38;;;;:::i;:::-;13573:8;:64::i;:::-;13655:4;13648:11;;;13429:238;;;;:::o;21383:200::-;2304:13;:11;:13::i;:::-;21492:54:::1;;;;;;;;21504:6;21492:54;;;;21512:2;21492:54;;;;;;20807:6;21516:15;:26;;;;:::i;:::-;21492:54;;;;21544:1;21492:54;;::::0;21462:9:::1;:27;21472:16;;21462:27;;;;;;;;;;;:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21557:16;;:18;;;;;;;;;:::i;:::-;;;;;;21383:200:::0;;:::o;10918:127::-;10992:7;11019:9;:18;11029:7;11019:18;;;;;;;;;;;;;;;;11012:25;;10918:127;;;:::o;3059:103::-;2304:13;:11;:13::i;:::-;3124:30:::1;3151:1;3124:18;:30::i;:::-;3059:103::o:0;20772:41::-;20807:6;20772:41;:::o;20820:35::-;;;;:::o;2418:87::-;2464:7;2491:6;;;;;;;;;;;2484:13;;2418:87;:::o;9837:104::-;9893:13;9926:7;9919:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9837:104;:::o;20862:38::-;;;;:::o;14170:436::-;14263:4;14280:13;14296:12;:10;:12::i;:::-;14280:28;;14319:24;14346:25;14356:5;14363:7;14346:9;:25::i;:::-;14319:52;;14410:15;14390:16;:35;;14382:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14503:60;14512:5;14519:7;14547:15;14528:16;:34;14503:8;:60::i;:::-;14594:4;14587:11;;;;14170:436;;;;:::o;11251:193::-;11330:4;11347:13;11363:12;:10;:12::i;:::-;11347:28;;11386;11396:5;11403:2;11407:6;11386:9;:28::i;:::-;11432:4;11425:11;;;11251:193;;;;:::o;20909:24::-;;;;:::o;11507:151::-;11596:7;11623:11;:18;11635:5;11623:18;;;;;;;;;;;;;;;:27;11642:7;11623:27;;;;;;;;;;;;;;;;11616:34;;11507:151;;;;:::o;21591:591::-;2304:13;:11;:13::i;:::-;21690:27:::1;21720:9;:14;21730:3;21720:14;;;;;;;;;;;21690:44;;21774:15;21753:7;:17;;;:36;;21745:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;21867:1;21845:7;:18;;;:23;21837:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21941:1;21924:7;:14;;;:18;21916:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;22019:9;;22001:7;:14;;;21985:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;21977:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22083:15;22062:7;:18;;:36;;;;22109:19;;:21;;;;;;;;;:::i;:::-;;;;;;22141:33;22147:7;:10;;;;;;;;;;;;22159:7;:14;;;22141:5;:33::i;:::-;21644:538;21591:591:::0;:::o;21150:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3317:201::-;2304:13;:11;:13::i;:::-;3426:1:::1;3406:22;;:8;:22;;::::0;3398:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3482:28;3501:8;3482:18;:28::i;:::-;3317:201:::0;:::o;858:98::-;911:7;938:10;931:17;;858:98;:::o;18163:346::-;18282:1;18265:19;;:5;:19;;;18257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18363:1;18344:21;;:7;:21;;;18336:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18447:6;18417:11;:18;18429:5;18417:18;;;;;;;;;;;;;;;:27;18436:7;18417:27;;;;;;;;;;;;;;;:36;;;;18485:7;18469:32;;18478:5;18469:32;;;18494:6;18469:32;;;;;;:::i;:::-;;;;;;;;18163:346;;;:::o;18800:419::-;18901:24;18928:25;18938:5;18945:7;18928:9;:25::i;:::-;18901:52;;18988:17;18968:16;:37;18964:248;;19050:6;19030:16;:26;;19022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19134:51;19143:5;19150:7;19178:6;19159:16;:25;19134:8;:51::i;:::-;18964:248;18890:329;18800:419;;;:::o;15076:806::-;15189:1;15173:18;;:4;:18;;;15165:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15266:1;15252:16;;:2;:16;;;15244:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15321:38;15342:4;15348:2;15352:6;15321:20;:38::i;:::-;15372:19;15394:9;:15;15404:4;15394:15;;;;;;;;;;;;;;;;15372:37;;15443:6;15428:11;:21;;15420:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15560:6;15546:11;:20;15528:9;:15;15538:4;15528:15;;;;;;;;;;;;;;;:38;;;;15763:6;15746:9;:13;15756:2;15746:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15813:2;15798:26;;15807:4;15798:26;;;15817:6;15798:26;;;;;;:::i;:::-;;;;;;;;15837:37;15857:4;15863:2;15867:6;15837:19;:37::i;:::-;15154:728;15076:806;;;:::o;2583:132::-;2658:12;:10;:12::i;:::-;2647:23;;:7;:5;:7::i;:::-;:23;;;2639:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2583:132::o;3678:191::-;3752:16;3771:6;;;;;;;;;;;3752:25;;3797:8;3788:6;;:17;;;;;;;;;;;;;;;;;;3852:8;3821:40;;3842:8;3821:40;;;;;;;;;;;;3741:128;3678:191;:::o;16169:548::-;16272:1;16253:21;;:7;:21;;;16245:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16323:49;16352:1;16356:7;16365:6;16323:20;:49::i;:::-;16401:6;16385:12;;:22;;;;;;;:::i;:::-;;;;;;;;16578:6;16556:9;:18;16566:7;16556:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;16632:7;16611:37;;16628:1;16611:37;;;16641:6;16611:37;;;;;;:::i;:::-;;;;;;;;16661:48;16689:1;16693:7;16702:6;16661:19;:48::i;:::-;16169:548;;:::o;19819:91::-;;;;:::o;20514:90::-;;;;:::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:474::-;4921:6;4929;4978:2;4966:9;4957:7;4953:23;4949:32;4946:119;;;4984:79;;:::i;:::-;4946:119;5104:1;5129:53;5174:7;5165:6;5154:9;5150:22;5129:53;:::i;:::-;5119:63;;5075:117;5231:2;5257:53;5302:7;5293:6;5282:9;5278:22;5257:53;:::i;:::-;5247:63;;5202:118;4853:474;;;;;:::o;5333:329::-;5392:6;5441:2;5429:9;5420:7;5416:23;5412:32;5409:119;;;5447:79;;:::i;:::-;5409:119;5567:1;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5538:117;5333:329;;;;:::o;5668:118::-;5755:24;5773:5;5755:24;:::i;:::-;5750:3;5743:37;5668:118;;:::o;5792:222::-;5885:4;5923:2;5912:9;5908:18;5900:26;;5936:71;6004:1;5993:9;5989:17;5980:6;5936:71;:::i;:::-;5792:222;;;;:::o;6020:474::-;6088:6;6096;6145:2;6133:9;6124:7;6120:23;6116:32;6113:119;;;6151:79;;:::i;:::-;6113:119;6271:1;6296:53;6341:7;6332:6;6321:9;6317:22;6296:53;:::i;:::-;6286:63;;6242:117;6398:2;6424:53;6469:7;6460:6;6449:9;6445:22;6424:53;:::i;:::-;6414:63;;6369:118;6020:474;;;;;:::o;6500:329::-;6559:6;6608:2;6596:9;6587:7;6583:23;6579:32;6576:119;;;6614:79;;:::i;:::-;6576:119;6734:1;6759:53;6804:7;6795:6;6784:9;6780:22;6759:53;:::i;:::-;6749:63;;6705:117;6500:329;;;;:::o;6835:553::-;7012:4;7050:3;7039:9;7035:19;7027:27;;7064:71;7132:1;7121:9;7117:17;7108:6;7064:71;:::i;:::-;7145:72;7213:2;7202:9;7198:18;7189:6;7145:72;:::i;:::-;7227;7295:2;7284:9;7280:18;7271:6;7227:72;:::i;:::-;7309;7377:2;7366:9;7362:18;7353:6;7309:72;:::i;:::-;6835:553;;;;;;;:::o;7394:180::-;7442:77;7439:1;7432:88;7539:4;7536:1;7529:15;7563:4;7560:1;7553:15;7580:320;7624:6;7661:1;7655:4;7651:12;7641:22;;7708:1;7702:4;7698:12;7729:18;7719:81;;7785:4;7777:6;7773:17;7763:27;;7719:81;7847:2;7839:6;7836:14;7816:18;7813:38;7810:84;;7866:18;;:::i;:::-;7810:84;7631:269;7580:320;;;:::o;7906:180::-;7954:77;7951:1;7944:88;8051:4;8048:1;8041:15;8075:4;8072:1;8065:15;8092:191;8132:3;8151:20;8169:1;8151:20;:::i;:::-;8146:25;;8185:20;8203:1;8185:20;:::i;:::-;8180:25;;8228:1;8225;8221:9;8214:16;;8249:3;8246:1;8243:10;8240:36;;;8256:18;;:::i;:::-;8240:36;8092:191;;;;:::o;8289:233::-;8328:3;8351:24;8369:5;8351:24;:::i;:::-;8342:33;;8397:66;8390:5;8387:77;8384:103;;8467:18;;:::i;:::-;8384:103;8514:1;8507:5;8503:13;8496:20;;8289:233;;;:::o;8528:224::-;8668:34;8664:1;8656:6;8652:14;8645:58;8737:7;8732:2;8724:6;8720:15;8713:32;8528:224;:::o;8758:366::-;8900:3;8921:67;8985:2;8980:3;8921:67;:::i;:::-;8914:74;;8997:93;9086:3;8997:93;:::i;:::-;9115:2;9110:3;9106:12;9099:19;;8758:366;;;:::o;9130:419::-;9296:4;9334:2;9323:9;9319:18;9311:26;;9383:9;9377:4;9373:20;9369:1;9358:9;9354:17;9347:47;9411:131;9537:4;9411:131;:::i;:::-;9403:139;;9130:419;;;:::o;9555:182::-;9695:34;9691:1;9683:6;9679:14;9672:58;9555:182;:::o;9743:366::-;9885:3;9906:67;9970:2;9965:3;9906:67;:::i;:::-;9899:74;;9982:93;10071:3;9982:93;:::i;:::-;10100:2;10095:3;10091:12;10084:19;;9743:366;;;:::o;10115:419::-;10281:4;10319:2;10308:9;10304:18;10296:26;;10368:9;10362:4;10358:20;10354:1;10343:9;10339:17;10332:47;10396:131;10522:4;10396:131;:::i;:::-;10388:139;;10115:419;;;:::o;10540:182::-;10680:34;10676:1;10668:6;10664:14;10657:58;10540:182;:::o;10728:366::-;10870:3;10891:67;10955:2;10950:3;10891:67;:::i;:::-;10884:74;;10967:93;11056:3;10967:93;:::i;:::-;11085:2;11080:3;11076:12;11069:19;;10728:366;;;:::o;11100:419::-;11266:4;11304:2;11293:9;11289:18;11281:26;;11353:9;11347:4;11343:20;11339:1;11328:9;11324:17;11317:47;11381:131;11507:4;11381:131;:::i;:::-;11373:139;;11100:419;;;:::o;11525:169::-;11665:21;11661:1;11653:6;11649:14;11642:45;11525:169;:::o;11700:366::-;11842:3;11863:67;11927:2;11922:3;11863:67;:::i;:::-;11856:74;;11939:93;12028:3;11939:93;:::i;:::-;12057:2;12052:3;12048:12;12041:19;;11700:366;;;:::o;12072:419::-;12238:4;12276:2;12265:9;12261:18;12253:26;;12325:9;12319:4;12315:20;12311:1;12300:9;12296:17;12289:47;12353:131;12479:4;12353:131;:::i;:::-;12345:139;;12072:419;;;:::o;12497:168::-;12637:20;12633:1;12625:6;12621:14;12614:44;12497:168;:::o;12671:366::-;12813:3;12834:67;12898:2;12893:3;12834:67;:::i;:::-;12827:74;;12910:93;12999:3;12910:93;:::i;:::-;13028:2;13023:3;13019:12;13012:19;;12671:366;;;:::o;13043:419::-;13209:4;13247:2;13236:9;13232:18;13224:26;;13296:9;13290:4;13286:20;13282:1;13271:9;13267:17;13260:47;13324:131;13450:4;13324:131;:::i;:::-;13316:139;;13043:419;;;:::o;13468:225::-;13608:34;13604:1;13596:6;13592:14;13585:58;13677:8;13672:2;13664:6;13660:15;13653:33;13468:225;:::o;13699:366::-;13841:3;13862:67;13926:2;13921:3;13862:67;:::i;:::-;13855:74;;13938:93;14027:3;13938:93;:::i;:::-;14056:2;14051:3;14047:12;14040:19;;13699:366;;;:::o;14071:419::-;14237:4;14275:2;14264:9;14260:18;14252:26;;14324:9;14318:4;14314:20;14310:1;14299:9;14295:17;14288:47;14352:131;14478:4;14352:131;:::i;:::-;14344:139;;14071:419;;;:::o;14496:223::-;14636:34;14632:1;14624:6;14620:14;14613:58;14705:6;14700:2;14692:6;14688:15;14681:31;14496:223;:::o;14725:366::-;14867:3;14888:67;14952:2;14947:3;14888:67;:::i;:::-;14881:74;;14964:93;15053:3;14964:93;:::i;:::-;15082:2;15077:3;15073:12;15066:19;;14725:366;;;:::o;15097:419::-;15263:4;15301:2;15290:9;15286:18;15278:26;;15350:9;15344:4;15340:20;15336:1;15325:9;15321:17;15314:47;15378:131;15504:4;15378:131;:::i;:::-;15370:139;;15097:419;;;:::o;15522:221::-;15662:34;15658:1;15650:6;15646:14;15639:58;15731:4;15726:2;15718:6;15714:15;15707:29;15522:221;:::o;15749:366::-;15891:3;15912:67;15976:2;15971:3;15912:67;:::i;:::-;15905:74;;15988:93;16077:3;15988:93;:::i;:::-;16106:2;16101:3;16097:12;16090:19;;15749:366;;;:::o;16121:419::-;16287:4;16325:2;16314:9;16310:18;16302:26;;16374:9;16368:4;16364:20;16360:1;16349:9;16345:17;16338:47;16402:131;16528:4;16402:131;:::i;:::-;16394:139;;16121:419;;;:::o;16546:179::-;16686:31;16682:1;16674:6;16670:14;16663:55;16546:179;:::o;16731:366::-;16873:3;16894:67;16958:2;16953:3;16894:67;:::i;:::-;16887:74;;16970:93;17059:3;16970:93;:::i;:::-;17088:2;17083:3;17079:12;17072:19;;16731:366;;;:::o;17103:419::-;17269:4;17307:2;17296:9;17292:18;17284:26;;17356:9;17350:4;17346:20;17342:1;17331:9;17327:17;17320:47;17384:131;17510:4;17384:131;:::i;:::-;17376:139;;17103:419;;;:::o;17528:224::-;17668:34;17664:1;17656:6;17652:14;17645:58;17737:7;17732:2;17724:6;17720:15;17713:32;17528:224;:::o;17758:366::-;17900:3;17921:67;17985:2;17980:3;17921:67;:::i;:::-;17914:74;;17997:93;18086:3;17997:93;:::i;:::-;18115:2;18110:3;18106:12;18099:19;;17758:366;;;:::o;18130:419::-;18296:4;18334:2;18323:9;18319:18;18311:26;;18383:9;18377:4;18373:20;18369:1;18358:9;18354:17;18347:47;18411:131;18537:4;18411:131;:::i;:::-;18403:139;;18130:419;;;:::o;18555:222::-;18695:34;18691:1;18683:6;18679:14;18672:58;18764:5;18759:2;18751:6;18747:15;18740:30;18555:222;:::o;18783:366::-;18925:3;18946:67;19010:2;19005:3;18946:67;:::i;:::-;18939:74;;19022:93;19111:3;19022:93;:::i;:::-;19140:2;19135:3;19131:12;19124:19;;18783:366;;;:::o;19155:419::-;19321:4;19359:2;19348:9;19344:18;19336:26;;19408:9;19402:4;19398:20;19394:1;19383:9;19379:17;19372:47;19436:131;19562:4;19436:131;:::i;:::-;19428:139;;19155:419;;;:::o;19580:225::-;19720:34;19716:1;19708:6;19704:14;19697:58;19789:8;19784:2;19776:6;19772:15;19765:33;19580:225;:::o;19811:366::-;19953:3;19974:67;20038:2;20033:3;19974:67;:::i;:::-;19967:74;;20050:93;20139:3;20050:93;:::i;:::-;20168:2;20163:3;20159:12;20152:19;;19811:366;;;:::o;20183:419::-;20349:4;20387:2;20376:9;20372:18;20364:26;;20436:9;20430:4;20426:20;20422:1;20411:9;20407:17;20400:47;20464:131;20590:4;20464:131;:::i;:::-;20456:139;;20183:419;;;:::o;20608:182::-;20748:34;20744:1;20736:6;20732:14;20725:58;20608:182;:::o;20796:366::-;20938:3;20959:67;21023:2;21018:3;20959:67;:::i;:::-;20952:74;;21035:93;21124:3;21035:93;:::i;:::-;21153:2;21148:3;21144:12;21137:19;;20796:366;;;:::o;21168:419::-;21334:4;21372:2;21361:9;21357:18;21349:26;;21421:9;21415:4;21411:20;21407:1;21396:9;21392:17;21385:47;21449:131;21575:4;21449:131;:::i;:::-;21441:139;;21168:419;;;:::o;21593:181::-;21733:33;21729:1;21721:6;21717:14;21710:57;21593:181;:::o;21780:366::-;21922:3;21943:67;22007:2;22002:3;21943:67;:::i;:::-;21936:74;;22019:93;22108:3;22019:93;:::i;:::-;22137:2;22132:3;22128:12;22121:19;;21780:366;;;:::o;22152:419::-;22318:4;22356:2;22345:9;22341:18;22333:26;;22405:9;22399:4;22395:20;22391:1;22380:9;22376:17;22369:47;22433:131;22559:4;22433:131;:::i;:::-;22425:139;;22152:419;;;:::o

Swarm Source

ipfs://b13aa2b93f0e355a66f2cd4ce5a397adec8e5e60651f1ce3723db66b60b5f356
Loading...
Loading
Loading...
Loading
[ 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.