ETH Price: $2,573.22 (-2.76%)

Token

Cobie Token (COBIE)
 

Overview

Max Total Supply

150,000,000 COBIE

Holders

149

Total Transfers

-

Market

Onchain Market Cap

$0.00

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
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CobieToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-28
*/

//
//      COBIE TOKEN 
//      
//      @sterlingcrispin 
// 
//      NotAudited.xyz
//
//      no warranty expressed or implied
//
//      this is a social experiment and not an investment
//

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

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


// OpenZeppelin Contracts (last updated v4.6.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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;
        }
        _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;
        _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;
        }
        _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: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: Cobie.sol


//
//      COBIE TOKEN 
//      
//      @sterlingcrispin 
// 
//      NotAudited.xyz
//
//      no warranty expressed or implied
//
//      this is a social experiment and not an investment
//



pragma solidity ^0.8.0;
/*
@Btc_grinder:
Hey 
@cobie
 you still offer $10k for deleting account
 https://twitter.com/Btc_grinder/status/1530503513737945090

------
@cobie:
Yes I will delete my account for $10k
https://twitter.com/cobie/status/1530504925582700545 
------
@EvgenyGaevoy:
That’s boring, let’s release a $COBIE token, 
let it trade on uniswap for a day and then all resulting 
token holders can vote whether cobie deletes his account or not
//https://twitter.com/EvgenyGaevoy/status/1530507700668334081

*/
contract CobieToken is ERC20 , ReentrancyGuard, Ownable {
    constructor() ERC20("Cobie Token", "COBIE") {}
    bool claimEnabled = true;
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }
    function toggleClaimEnabled() external onlyOwner {
        claimEnabled = !claimEnabled;
    }
    function claimSocialExperimentTokenThisIsNotAnInvestment() external nonReentrant callerIsUser {
        require(claimEnabled == true, "Claim Disabled");
        require(balanceOf(msg.sender) == 0, "Claim Disabled");
        _mint(msg.sender, 1000000 * 10 ** 18 );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimSocialExperimentTokenThisIsNotAnInvestment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleClaimEnabled","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526001600660146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600b81526020017f436f62696520546f6b656e0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f434f4249450000000000000000000000000000000000000000000000000000008152508160039080519060200190620000b1929190620001c9565b508060049080519060200190620000ca929190620001c9565b5050506001600581905550620000f5620000e9620000fb60201b60201c565b6200010360201b60201c565b620002de565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d79062000279565b90600052602060002090601f016020900481019282620001fb576000855562000247565b82601f106200021657805160ff191683800117855562000247565b8280016001018555821562000247579182015b828111156200024657825182559160200191906001019062000229565b5b5090506200025691906200025a565b5090565b5b80821115620002755760008160009055506001016200025b565b5090565b600060028204905060018216806200029257607f821691505b60208210811415620002a957620002a8620002af565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611be280620002ee6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638708140c11610097578063a457c2d711610066578063a457c2d714610279578063a9059cbb146102a9578063dd62ed3e146102d9578063f2fde38b1461030957610100565b80638708140c146102295780638ce0400c146102335780638da5cb5b1461023d57806395d89b411461025b57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610325565b60405161011a91906114c7565b60405180910390f35b61013d60048036038101906101389190611215565b6103b7565b60405161014a91906114ac565b60405180910390f35b61015b6103da565b6040516101689190611689565b60405180910390f35b61018b600480360381019061018691906111c2565b6103e4565b60405161019891906114ac565b60405180910390f35b6101a9610413565b6040516101b691906116a4565b60405180910390f35b6101d960048036038101906101d49190611215565b61041c565b6040516101e691906114ac565b60405180910390f35b61020960048036038101906102049190611155565b610453565b6040516102169190611689565b60405180910390f35b61022761049b565b005b610231610523565b005b61023b61069e565b005b610245610746565b6040516102529190611491565b60405180910390f35b610263610770565b60405161027091906114c7565b60405180910390f35b610293600480360381019061028e9190611215565b610802565b6040516102a091906114ac565b60405180910390f35b6102c360048036038101906102be9190611215565b610879565b6040516102d091906114ac565b60405180910390f35b6102f360048036038101906102ee9190611182565b61089c565b6040516103009190611689565b60405180910390f35b610323600480360381019061031e9190611155565b610923565b005b606060038054610334906117b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610360906117b9565b80156103ad5780601f10610382576101008083540402835291602001916103ad565b820191906000526020600020905b81548152906001019060200180831161039057829003601f168201915b5050505050905090565b6000806103c2610a1b565b90506103cf818585610a23565b600191505092915050565b6000600254905090565b6000806103ef610a1b565b90506103fc858285610bee565b610407858585610c7a565b60019150509392505050565b60006012905090565b600080610427610a1b565b9050610448818585610439858961089c565b61044391906116db565b610a23565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a3610a1b565b73ffffffffffffffffffffffffffffffffffffffff166104c1610746565b73ffffffffffffffffffffffffffffffffffffffff1614610517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050e906115c9565b60405180910390fd5b6105216000610efb565b565b60026005541415610569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056090611629565b60405180910390fd5b60026005819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146105df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d6906115a9565b60405180910390fd5b60011515600660149054906101000a900460ff16151514610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c90611589565b60405180910390fd5b600061064033610453565b14610680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067790611589565b60405180910390fd5b6106943369d3c21bcecceda1000000610fc1565b6001600581905550565b6106a6610a1b565b73ffffffffffffffffffffffffffffffffffffffff166106c4610746565b73ffffffffffffffffffffffffffffffffffffffff161461071a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610711906115c9565b60405180910390fd5b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461077f906117b9565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab906117b9565b80156107f85780601f106107cd576101008083540402835291602001916107f8565b820191906000526020600020905b8154815290600101906020018083116107db57829003601f168201915b5050505050905090565b60008061080d610a1b565b9050600061081b828661089c565b905083811015610860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085790611649565b60405180910390fd5b61086d8286868403610a23565b60019250505092915050565b600080610884610a1b565b9050610891818585610c7a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61092b610a1b565b73ffffffffffffffffffffffffffffffffffffffff16610949610746565b73ffffffffffffffffffffffffffffffffffffffff161461099f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610996906115c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0690611509565b60405180910390fd5b610a1881610efb565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90611609565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa90611529565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610be19190611689565b60405180910390a3505050565b6000610bfa848461089c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c745781811015610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d90611549565b60405180910390fd5b610c738484848403610a23565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce1906115e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d51906114e9565b60405180910390fd5b610d65838383611121565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290611569565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e7e91906116db565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee29190611689565b60405180910390a3610ef5848484611126565b50505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890611669565b60405180910390fd5b61103d60008383611121565b806002600082825461104f91906116db565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110a491906116db565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111099190611689565b60405180910390a361111d60008383611126565b5050565b505050565b505050565b60008135905061113a81611b7e565b92915050565b60008135905061114f81611b95565b92915050565b60006020828403121561116b5761116a611849565b5b60006111798482850161112b565b91505092915050565b6000806040838503121561119957611198611849565b5b60006111a78582860161112b565b92505060206111b88582860161112b565b9150509250929050565b6000806000606084860312156111db576111da611849565b5b60006111e98682870161112b565b93505060206111fa8682870161112b565b925050604061120b86828701611140565b9150509250925092565b6000806040838503121561122c5761122b611849565b5b600061123a8582860161112b565b925050602061124b85828601611140565b9150509250929050565b61125e81611731565b82525050565b61126d81611743565b82525050565b600061127e826116bf565b61128881856116ca565b9350611298818560208601611786565b6112a18161184e565b840191505092915050565b60006112b96023836116ca565b91506112c48261185f565b604082019050919050565b60006112dc6026836116ca565b91506112e7826118ae565b604082019050919050565b60006112ff6022836116ca565b915061130a826118fd565b604082019050919050565b6000611322601d836116ca565b915061132d8261194c565b602082019050919050565b60006113456026836116ca565b915061135082611975565b604082019050919050565b6000611368600e836116ca565b9150611373826119c4565b602082019050919050565b600061138b601e836116ca565b9150611396826119ed565b602082019050919050565b60006113ae6020836116ca565b91506113b982611a16565b602082019050919050565b60006113d16025836116ca565b91506113dc82611a3f565b604082019050919050565b60006113f46024836116ca565b91506113ff82611a8e565b604082019050919050565b6000611417601f836116ca565b915061142282611add565b602082019050919050565b600061143a6025836116ca565b915061144582611b06565b604082019050919050565b600061145d601f836116ca565b915061146882611b55565b602082019050919050565b61147c8161176f565b82525050565b61148b81611779565b82525050565b60006020820190506114a66000830184611255565b92915050565b60006020820190506114c16000830184611264565b92915050565b600060208201905081810360008301526114e18184611273565b905092915050565b60006020820190508181036000830152611502816112ac565b9050919050565b60006020820190508181036000830152611522816112cf565b9050919050565b60006020820190508181036000830152611542816112f2565b9050919050565b6000602082019050818103600083015261156281611315565b9050919050565b6000602082019050818103600083015261158281611338565b9050919050565b600060208201905081810360008301526115a28161135b565b9050919050565b600060208201905081810360008301526115c28161137e565b9050919050565b600060208201905081810360008301526115e2816113a1565b9050919050565b60006020820190508181036000830152611602816113c4565b9050919050565b60006020820190508181036000830152611622816113e7565b9050919050565b600060208201905081810360008301526116428161140a565b9050919050565b600060208201905081810360008301526116628161142d565b9050919050565b6000602082019050818103600083015261168281611450565b9050919050565b600060208201905061169e6000830184611473565b92915050565b60006020820190506116b96000830184611482565b92915050565b600081519050919050565b600082825260208201905092915050565b60006116e68261176f565b91506116f18361176f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611726576117256117eb565b5b828201905092915050565b600061173c8261174f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156117a4578082015181840152602081019050611789565b838111156117b3576000848401525b50505050565b600060028204905060018216806117d157607f821691505b602082108114156117e5576117e461181a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f436c61696d2044697361626c6564000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611b8781611731565b8114611b9257600080fd5b50565b611b9e8161176f565b8114611ba957600080fd5b5056fea264697066735822122080e7f2e70531c93a0637228c879c8ee00224e4ed4f29e9c26beff72c4dadec9264736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638708140c11610097578063a457c2d711610066578063a457c2d714610279578063a9059cbb146102a9578063dd62ed3e146102d9578063f2fde38b1461030957610100565b80638708140c146102295780638ce0400c146102335780638da5cb5b1461023d57806395d89b411461025b57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610325565b60405161011a91906114c7565b60405180910390f35b61013d60048036038101906101389190611215565b6103b7565b60405161014a91906114ac565b60405180910390f35b61015b6103da565b6040516101689190611689565b60405180910390f35b61018b600480360381019061018691906111c2565b6103e4565b60405161019891906114ac565b60405180910390f35b6101a9610413565b6040516101b691906116a4565b60405180910390f35b6101d960048036038101906101d49190611215565b61041c565b6040516101e691906114ac565b60405180910390f35b61020960048036038101906102049190611155565b610453565b6040516102169190611689565b60405180910390f35b61022761049b565b005b610231610523565b005b61023b61069e565b005b610245610746565b6040516102529190611491565b60405180910390f35b610263610770565b60405161027091906114c7565b60405180910390f35b610293600480360381019061028e9190611215565b610802565b6040516102a091906114ac565b60405180910390f35b6102c360048036038101906102be9190611215565b610879565b6040516102d091906114ac565b60405180910390f35b6102f360048036038101906102ee9190611182565b61089c565b6040516103009190611689565b60405180910390f35b610323600480360381019061031e9190611155565b610923565b005b606060038054610334906117b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610360906117b9565b80156103ad5780601f10610382576101008083540402835291602001916103ad565b820191906000526020600020905b81548152906001019060200180831161039057829003601f168201915b5050505050905090565b6000806103c2610a1b565b90506103cf818585610a23565b600191505092915050565b6000600254905090565b6000806103ef610a1b565b90506103fc858285610bee565b610407858585610c7a565b60019150509392505050565b60006012905090565b600080610427610a1b565b9050610448818585610439858961089c565b61044391906116db565b610a23565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a3610a1b565b73ffffffffffffffffffffffffffffffffffffffff166104c1610746565b73ffffffffffffffffffffffffffffffffffffffff1614610517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050e906115c9565b60405180910390fd5b6105216000610efb565b565b60026005541415610569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056090611629565b60405180910390fd5b60026005819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146105df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d6906115a9565b60405180910390fd5b60011515600660149054906101000a900460ff16151514610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c90611589565b60405180910390fd5b600061064033610453565b14610680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067790611589565b60405180910390fd5b6106943369d3c21bcecceda1000000610fc1565b6001600581905550565b6106a6610a1b565b73ffffffffffffffffffffffffffffffffffffffff166106c4610746565b73ffffffffffffffffffffffffffffffffffffffff161461071a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610711906115c9565b60405180910390fd5b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461077f906117b9565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab906117b9565b80156107f85780601f106107cd576101008083540402835291602001916107f8565b820191906000526020600020905b8154815290600101906020018083116107db57829003601f168201915b5050505050905090565b60008061080d610a1b565b9050600061081b828661089c565b905083811015610860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085790611649565b60405180910390fd5b61086d8286868403610a23565b60019250505092915050565b600080610884610a1b565b9050610891818585610c7a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61092b610a1b565b73ffffffffffffffffffffffffffffffffffffffff16610949610746565b73ffffffffffffffffffffffffffffffffffffffff161461099f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610996906115c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0690611509565b60405180910390fd5b610a1881610efb565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90611609565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa90611529565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610be19190611689565b60405180910390a3505050565b6000610bfa848461089c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c745781811015610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d90611549565b60405180910390fd5b610c738484848403610a23565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce1906115e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d51906114e9565b60405180910390fd5b610d65838383611121565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290611569565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e7e91906116db565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee29190611689565b60405180910390a3610ef5848484611126565b50505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890611669565b60405180910390fd5b61103d60008383611121565b806002600082825461104f91906116db565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110a491906116db565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111099190611689565b60405180910390a361111d60008383611126565b5050565b505050565b505050565b60008135905061113a81611b7e565b92915050565b60008135905061114f81611b95565b92915050565b60006020828403121561116b5761116a611849565b5b60006111798482850161112b565b91505092915050565b6000806040838503121561119957611198611849565b5b60006111a78582860161112b565b92505060206111b88582860161112b565b9150509250929050565b6000806000606084860312156111db576111da611849565b5b60006111e98682870161112b565b93505060206111fa8682870161112b565b925050604061120b86828701611140565b9150509250925092565b6000806040838503121561122c5761122b611849565b5b600061123a8582860161112b565b925050602061124b85828601611140565b9150509250929050565b61125e81611731565b82525050565b61126d81611743565b82525050565b600061127e826116bf565b61128881856116ca565b9350611298818560208601611786565b6112a18161184e565b840191505092915050565b60006112b96023836116ca565b91506112c48261185f565b604082019050919050565b60006112dc6026836116ca565b91506112e7826118ae565b604082019050919050565b60006112ff6022836116ca565b915061130a826118fd565b604082019050919050565b6000611322601d836116ca565b915061132d8261194c565b602082019050919050565b60006113456026836116ca565b915061135082611975565b604082019050919050565b6000611368600e836116ca565b9150611373826119c4565b602082019050919050565b600061138b601e836116ca565b9150611396826119ed565b602082019050919050565b60006113ae6020836116ca565b91506113b982611a16565b602082019050919050565b60006113d16025836116ca565b91506113dc82611a3f565b604082019050919050565b60006113f46024836116ca565b91506113ff82611a8e565b604082019050919050565b6000611417601f836116ca565b915061142282611add565b602082019050919050565b600061143a6025836116ca565b915061144582611b06565b604082019050919050565b600061145d601f836116ca565b915061146882611b55565b602082019050919050565b61147c8161176f565b82525050565b61148b81611779565b82525050565b60006020820190506114a66000830184611255565b92915050565b60006020820190506114c16000830184611264565b92915050565b600060208201905081810360008301526114e18184611273565b905092915050565b60006020820190508181036000830152611502816112ac565b9050919050565b60006020820190508181036000830152611522816112cf565b9050919050565b60006020820190508181036000830152611542816112f2565b9050919050565b6000602082019050818103600083015261156281611315565b9050919050565b6000602082019050818103600083015261158281611338565b9050919050565b600060208201905081810360008301526115a28161135b565b9050919050565b600060208201905081810360008301526115c28161137e565b9050919050565b600060208201905081810360008301526115e2816113a1565b9050919050565b60006020820190508181036000830152611602816113c4565b9050919050565b60006020820190508181036000830152611622816113e7565b9050919050565b600060208201905081810360008301526116428161140a565b9050919050565b600060208201905081810360008301526116628161142d565b9050919050565b6000602082019050818103600083015261168281611450565b9050919050565b600060208201905061169e6000830184611473565b92915050565b60006020820190506116b96000830184611482565b92915050565b600081519050919050565b600082825260208201905092915050565b60006116e68261176f565b91506116f18361176f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611726576117256117eb565b5b828201905092915050565b600061173c8261174f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156117a4578082015181840152602081019050611789565b838111156117b3576000848401525b50505050565b600060028204905060018216806117d157607f821691505b602082108114156117e5576117e461181a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f436c61696d2044697361626c6564000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611b8781611731565b8114611b9257600080fd5b50565b611b9e8161176f565b8114611ba957600080fd5b5056fea264697066735822122080e7f2e70531c93a0637228c879c8ee00224e4ed4f29e9c26beff72c4dadec9264736f6c63430008070033

Deployed Bytecode Sourcemap

23723:651:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9390:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11741:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10510:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12522:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10352:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13226:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10681:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2813:103;;;:::i;:::-;;24098:273;;;:::i;:::-;;23996:96;;;:::i;:::-;;2162:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9609:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13967:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11014:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11270:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3071:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9390:100;9444:13;9477:5;9470:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9390:100;:::o;11741:201::-;11824:4;11841:13;11857:12;:10;:12::i;:::-;11841:28;;11880:32;11889:5;11896:7;11905:6;11880:8;:32::i;:::-;11930:4;11923:11;;;11741:201;;;;:::o;10510:108::-;10571:7;10598:12;;10591:19;;10510:108;:::o;12522:295::-;12653:4;12670:15;12688:12;:10;:12::i;:::-;12670:30;;12711:38;12727:4;12733:7;12742:6;12711:15;:38::i;:::-;12760:27;12770:4;12776:2;12780:6;12760:9;:27::i;:::-;12805:4;12798:11;;;12522:295;;;;;:::o;10352:93::-;10410:5;10435:2;10428:9;;10352:93;:::o;13226:238::-;13314:4;13331:13;13347:12;:10;:12::i;:::-;13331:28;;13370:64;13379:5;13386:7;13423:10;13395:25;13405:5;13412:7;13395:9;:25::i;:::-;:38;;;;:::i;:::-;13370:8;:64::i;:::-;13452:4;13445:11;;;13226:238;;;;:::o;10681:127::-;10755:7;10782:9;:18;10792:7;10782:18;;;;;;;;;;;;;;;;10775:25;;10681:127;;;:::o;2813:103::-;2393:12;:10;:12::i;:::-;2382:23;;:7;:5;:7::i;:::-;:23;;;2374:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2878:30:::1;2905:1;2878:18;:30::i;:::-;2813:103::o:0;24098:273::-;21997:1;22595:7;;:19;;22587:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;21997:1;22728:7;:18;;;;23925:10:::1;23912:23;;:9;:23;;;23904:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;24227:4:::2;24211:20;;:12;;;;;;;;;;;:20;;;24203:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;24294:1;24269:21;24279:10;24269:9;:21::i;:::-;:26;24261:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;24325:38;24331:10;24343:18;24325:5;:38::i;:::-;21953:1:::0;22907:7;:22;;;;24098:273::o;23996:96::-;2393:12;:10;:12::i;:::-;2382:23;;:7;:5;:7::i;:::-;:23;;;2374:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24072:12:::1;;;;;;;;;;;24071:13;24056:12;;:28;;;;;;;;;;;;;;;;;;23996:96::o:0;2162:87::-;2208:7;2235:6;;;;;;;;;;;2228:13;;2162:87;:::o;9609:104::-;9665:13;9698:7;9691:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9609:104;:::o;13967:436::-;14060:4;14077:13;14093:12;:10;:12::i;:::-;14077:28;;14116:24;14143:25;14153:5;14160:7;14143:9;:25::i;:::-;14116:52;;14207:15;14187:16;:35;;14179:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14300:60;14309:5;14316:7;14344:15;14325:16;:34;14300:8;:60::i;:::-;14391:4;14384:11;;;;13967:436;;;;:::o;11014:193::-;11093:4;11110:13;11126:12;:10;:12::i;:::-;11110:28;;11149;11159:5;11166:2;11170:6;11149:9;:28::i;:::-;11195:4;11188:11;;;11014:193;;;;:::o;11270:151::-;11359:7;11386:11;:18;11398:5;11386:18;;;;;;;;;;;;;;;:27;11405:7;11386:27;;;;;;;;;;;;;;;;11379:34;;11270:151;;;;:::o;3071:201::-;2393:12;:10;:12::i;:::-;2382:23;;:7;:5;:7::i;:::-;:23;;;2374:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3180:1:::1;3160:22;;:8;:22;;;;3152:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3236:28;3255:8;3236:18;:28::i;:::-;3071:201:::0;:::o;886:98::-;939:7;966:10;959:17;;886:98;:::o;17601:380::-;17754:1;17737:19;;:5;:19;;;;17729:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17835:1;17816:21;;:7;:21;;;;17808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17919:6;17889:11;:18;17901:5;17889:18;;;;;;;;;;;;;;;:27;17908:7;17889:27;;;;;;;;;;;;;;;:36;;;;17957:7;17941:32;;17950:5;17941:32;;;17966:6;17941:32;;;;;;:::i;:::-;;;;;;;;17601:380;;;:::o;18272:453::-;18407:24;18434:25;18444:5;18451:7;18434:9;:25::i;:::-;18407:52;;18494:17;18474:16;:37;18470:248;;18556:6;18536:16;:26;;18528:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18640:51;18649:5;18656:7;18684:6;18665:16;:25;18640:8;:51::i;:::-;18470:248;18396:329;18272:453;;;:::o;14882:671::-;15029:1;15013:18;;:4;:18;;;;15005:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15106:1;15092:16;;:2;:16;;;;15084:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15161:38;15182:4;15188:2;15192:6;15161:20;:38::i;:::-;15212:19;15234:9;:15;15244:4;15234:15;;;;;;;;;;;;;;;;15212:37;;15283:6;15268:11;:21;;15260:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15400:6;15386:11;:20;15368:9;:15;15378:4;15368:15;;;;;;;;;;;;;;;:38;;;;15445:6;15428:9;:13;15438:2;15428:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15484:2;15469:26;;15478:4;15469:26;;;15488:6;15469:26;;;;;;:::i;:::-;;;;;;;;15508:37;15528:4;15534:2;15538:6;15508:19;:37::i;:::-;14994:559;14882:671;;;:::o;3432:191::-;3506:16;3525:6;;;;;;;;;;;3506:25;;3551:8;3542:6;;:17;;;;;;;;;;;;;;;;;;3606:8;3575:40;;3596:8;3575:40;;;;;;;;;;;;3495:128;3432:191;:::o;15840:399::-;15943:1;15924:21;;:7;:21;;;;15916:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15994:49;16023:1;16027:7;16036:6;15994:20;:49::i;:::-;16072:6;16056:12;;:22;;;;;;;:::i;:::-;;;;;;;;16111:6;16089:9;:18;16099:7;16089:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;16154:7;16133:37;;16150:1;16133:37;;;16163:6;16133:37;;;;;;:::i;:::-;;;;;;;;16183:48;16211:1;16215:7;16224:6;16183:19;:48::i;:::-;15840:399;;:::o;19325:125::-;;;;:::o;20054:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2217:118;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2341:109;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;2456:364;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2826:366;;;:::o;3198:::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3198:366;;;:::o;3570:::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3570:366;;;:::o;3942:::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;3942:366;;;:::o;4314:::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4314:366;;;:::o;4686:::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4686:366;;;:::o;5058:::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5058:366;;;:::o;5430:::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5430:366;;;:::o;5802:::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5802:366;;;:::o;6174:::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6174:366;;;:::o;6546:::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6546:366;;;:::o;6918:::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;6918:366;;;:::o;7290:::-;7432:3;7453:67;7517:2;7512:3;7453:67;:::i;:::-;7446:74;;7529:93;7618:3;7529:93;:::i;:::-;7647:2;7642:3;7638:12;7631:19;;7290:366;;;:::o;7662:118::-;7749:24;7767:5;7749:24;:::i;:::-;7744:3;7737:37;7662:118;;:::o;7786:112::-;7869:22;7885:5;7869:22;:::i;:::-;7864:3;7857:35;7786:112;;:::o;7904:222::-;7997:4;8035:2;8024:9;8020:18;8012:26;;8048:71;8116:1;8105:9;8101:17;8092:6;8048:71;:::i;:::-;7904:222;;;;:::o;8132:210::-;8219:4;8257:2;8246:9;8242:18;8234:26;;8270:65;8332:1;8321:9;8317:17;8308:6;8270:65;:::i;:::-;8132:210;;;;:::o;8348:313::-;8461:4;8499:2;8488:9;8484:18;8476:26;;8548:9;8542:4;8538:20;8534:1;8523:9;8519:17;8512:47;8576:78;8649:4;8640:6;8576:78;:::i;:::-;8568:86;;8348:313;;;;:::o;8667:419::-;8833:4;8871:2;8860:9;8856:18;8848:26;;8920:9;8914:4;8910:20;8906:1;8895:9;8891:17;8884:47;8948:131;9074:4;8948:131;:::i;:::-;8940:139;;8667:419;;;:::o;9092:::-;9258:4;9296:2;9285:9;9281:18;9273:26;;9345:9;9339:4;9335:20;9331:1;9320:9;9316:17;9309:47;9373:131;9499:4;9373:131;:::i;:::-;9365:139;;9092:419;;;:::o;9517:::-;9683:4;9721:2;9710:9;9706:18;9698:26;;9770:9;9764:4;9760:20;9756:1;9745:9;9741:17;9734:47;9798:131;9924:4;9798:131;:::i;:::-;9790:139;;9517:419;;;:::o;9942:::-;10108:4;10146:2;10135:9;10131:18;10123:26;;10195:9;10189:4;10185:20;10181:1;10170:9;10166:17;10159:47;10223:131;10349:4;10223:131;:::i;:::-;10215:139;;9942:419;;;:::o;10367:::-;10533:4;10571:2;10560:9;10556:18;10548:26;;10620:9;10614:4;10610:20;10606:1;10595:9;10591:17;10584:47;10648:131;10774:4;10648:131;:::i;:::-;10640:139;;10367:419;;;:::o;10792:::-;10958:4;10996:2;10985:9;10981:18;10973:26;;11045:9;11039:4;11035:20;11031:1;11020:9;11016:17;11009:47;11073:131;11199:4;11073:131;:::i;:::-;11065:139;;10792:419;;;:::o;11217:::-;11383:4;11421:2;11410:9;11406:18;11398:26;;11470:9;11464:4;11460:20;11456:1;11445:9;11441:17;11434:47;11498:131;11624:4;11498:131;:::i;:::-;11490:139;;11217:419;;;:::o;11642:::-;11808:4;11846:2;11835:9;11831:18;11823:26;;11895:9;11889:4;11885:20;11881:1;11870:9;11866:17;11859:47;11923:131;12049:4;11923:131;:::i;:::-;11915:139;;11642:419;;;:::o;12067:::-;12233:4;12271:2;12260:9;12256:18;12248:26;;12320:9;12314:4;12310:20;12306:1;12295:9;12291:17;12284:47;12348:131;12474:4;12348:131;:::i;:::-;12340:139;;12067:419;;;:::o;12492:::-;12658:4;12696:2;12685:9;12681:18;12673:26;;12745:9;12739:4;12735:20;12731:1;12720:9;12716:17;12709:47;12773:131;12899:4;12773:131;:::i;:::-;12765:139;;12492:419;;;:::o;12917:::-;13083:4;13121:2;13110:9;13106:18;13098:26;;13170:9;13164:4;13160:20;13156:1;13145:9;13141:17;13134:47;13198:131;13324:4;13198:131;:::i;:::-;13190:139;;12917:419;;;:::o;13342:::-;13508:4;13546:2;13535:9;13531:18;13523:26;;13595:9;13589:4;13585:20;13581:1;13570:9;13566:17;13559:47;13623:131;13749:4;13623:131;:::i;:::-;13615:139;;13342:419;;;:::o;13767:::-;13933:4;13971:2;13960:9;13956:18;13948:26;;14020:9;14014:4;14010:20;14006:1;13995:9;13991:17;13984:47;14048:131;14174:4;14048:131;:::i;:::-;14040:139;;13767:419;;;:::o;14192:222::-;14285:4;14323:2;14312:9;14308:18;14300:26;;14336:71;14404:1;14393:9;14389:17;14380:6;14336:71;:::i;:::-;14192:222;;;;:::o;14420:214::-;14509:4;14547:2;14536:9;14532:18;14524:26;;14560:67;14624:1;14613:9;14609:17;14600:6;14560:67;:::i;:::-;14420:214;;;;:::o;14721:99::-;14773:6;14807:5;14801:12;14791:22;;14721:99;;;:::o;14826:169::-;14910:11;14944:6;14939:3;14932:19;14984:4;14979:3;14975:14;14960:29;;14826:169;;;;:::o;15001:305::-;15041:3;15060:20;15078:1;15060:20;:::i;:::-;15055:25;;15094:20;15112:1;15094:20;:::i;:::-;15089:25;;15248:1;15180:66;15176:74;15173:1;15170:81;15167:107;;;15254:18;;:::i;:::-;15167:107;15298:1;15295;15291:9;15284:16;;15001:305;;;;:::o;15312:96::-;15349:7;15378:24;15396:5;15378:24;:::i;:::-;15367:35;;15312:96;;;:::o;15414:90::-;15448:7;15491:5;15484:13;15477:21;15466:32;;15414:90;;;:::o;15510:126::-;15547:7;15587:42;15580:5;15576:54;15565:65;;15510:126;;;:::o;15642:77::-;15679:7;15708:5;15697:16;;15642:77;;;:::o;15725:86::-;15760:7;15800:4;15793:5;15789:16;15778:27;;15725:86;;;:::o;15817:307::-;15885:1;15895:113;15909:6;15906:1;15903:13;15895:113;;;15994:1;15989:3;15985:11;15979:18;15975:1;15970:3;15966:11;15959:39;15931:2;15928:1;15924:10;15919:15;;15895:113;;;16026:6;16023:1;16020:13;16017:101;;;16106:1;16097:6;16092:3;16088:16;16081:27;16017:101;15866:258;15817:307;;;:::o;16130:320::-;16174:6;16211:1;16205:4;16201:12;16191:22;;16258:1;16252:4;16248:12;16279:18;16269:81;;16335:4;16327:6;16323:17;16313:27;;16269:81;16397:2;16389:6;16386:14;16366:18;16363:38;16360:84;;;16416:18;;:::i;:::-;16360:84;16181:269;16130:320;;;:::o;16456:180::-;16504:77;16501:1;16494:88;16601:4;16598:1;16591:15;16625:4;16622:1;16615:15;16642:180;16690:77;16687:1;16680:88;16787:4;16784:1;16777:15;16811:4;16808:1;16801:15;16951:117;17060:1;17057;17050:12;17074:102;17115:6;17166:2;17162:7;17157:2;17150:5;17146:14;17142:28;17132:38;;17074:102;;;:::o;17182:222::-;17322:34;17318:1;17310:6;17306:14;17299:58;17391:5;17386:2;17378:6;17374:15;17367:30;17182:222;:::o;17410:225::-;17550:34;17546:1;17538:6;17534:14;17527:58;17619:8;17614:2;17606:6;17602:15;17595:33;17410:225;:::o;17641:221::-;17781:34;17777:1;17769:6;17765:14;17758:58;17850:4;17845:2;17837:6;17833:15;17826:29;17641:221;:::o;17868:179::-;18008:31;18004:1;17996:6;17992:14;17985:55;17868:179;:::o;18053:225::-;18193:34;18189:1;18181:6;18177:14;18170:58;18262:8;18257:2;18249:6;18245:15;18238:33;18053:225;:::o;18284:164::-;18424:16;18420:1;18412:6;18408:14;18401:40;18284:164;:::o;18454:180::-;18594:32;18590:1;18582:6;18578:14;18571:56;18454:180;:::o;18640:182::-;18780:34;18776:1;18768:6;18764:14;18757:58;18640:182;:::o;18828:224::-;18968:34;18964:1;18956:6;18952:14;18945:58;19037:7;19032:2;19024:6;19020:15;19013:32;18828:224;:::o;19058:223::-;19198:34;19194:1;19186:6;19182:14;19175:58;19267:6;19262:2;19254:6;19250:15;19243:31;19058:223;:::o;19287:181::-;19427:33;19423:1;19415:6;19411:14;19404:57;19287:181;:::o;19474:224::-;19614:34;19610:1;19602:6;19598:14;19591:58;19683:7;19678:2;19670:6;19666:15;19659:32;19474:224;:::o;19704:181::-;19844:33;19840:1;19832:6;19828:14;19821:57;19704:181;:::o;19891:122::-;19964:24;19982:5;19964:24;:::i;:::-;19957:5;19954:35;19944:63;;20003:1;20000;19993:12;19944:63;19891:122;:::o;20019:::-;20092:24;20110:5;20092:24;:::i;:::-;20085:5;20082:35;20072:63;;20131:1;20128;20121:12;20072:63;20019:122;:::o

Swarm Source

ipfs://80e7f2e70531c93a0637228c879c8ee00224e4ed4f29e9c26beff72c4dadec92
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.