ETH Price: $2,474.21 (-7.89%)

Token

Bitneuron (NEURON)
 

Overview

Max Total Supply

100,000,000,000 NEURON

Holders

313 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
166,334 NEURON

Value
$0.00
0x2cb255345940494ecb400704f3ff7b387bf912e9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

$NEURON is the native token of the BrainTensor API ecosystem, powering multiple products built on the Bittensor Network and $TAO. It rewards $TAO delegators with an ERC20 token, reflecting the influence of Validators, which is tied to the amount of TAO staked in the network.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NEURON

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-29
*/

///SPDX-License-Identifier: MIT
pragma solidity 0.8.23;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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 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;
    }
}


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}


/**
 * @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 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:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * 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);
}


/**
 * @dev Interface for the optional metadata functions from the ERC20 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);
}


/**
 * @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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual 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}.
     *
     * 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 `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 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 {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @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)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            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(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), 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:
     * ```
     * 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.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

/// @title ERC20 token with airdrop and burn function
contract NEURON is ERC20, Ownable {
    /// Custom Errors
    error ArrayLengthMismatch();
    error ZeroAddress();
    error ZeroAmount();

    ///Max_Supply
    uint256 public constant MAX_SUPPLY = 100_000_000_000 * 1e18;
    /// Global Burn Address
    address public constant BURN_ADDRESS = address(0xdead);

    /// create ERC20 token by initializing the token name, symbol
    /// mint the supply to owner
    constructor() ERC20("Bitneuron", "NEURON") Ownable(msg.sender) {
        _mint(msg.sender, MAX_SUPPLY);
    }
    
    /// @dev airdrop multiple users with custom amounts
    /// @param users: users address array 
    /// @param amounts: amounts array
    function airdropCustomAmount(address[] calldata users, uint256[] calldata amounts)
        external
        onlyOwner
    {
        uint256 userLength = users.length;
        uint256 amountLength = amounts.length;
        if (userLength != amountLength) {
            revert ArrayLengthMismatch();
        }

        for (uint256 i = 0; i < userLength; ++i) {
            address user = users[i];
            uint256 amount = amounts[i];
            if (user == address(0)) {
                revert ZeroAddress();
            }
            if (amount == 0) {
                revert ZeroAmount();
            }
            super._transfer(msg.sender, user, amount);
        }
    }
    
    /// @dev airdrop users same amount
    /// @param users: users array
    /// @param amount: amount to airdrop
    function airdropSameAmount(address[] calldata users, uint256 amount)
        external
        onlyOwner
    {
        if (amount == 0) {
                revert ZeroAmount();
            }
        uint256 userLength = users.length;
      
        for (uint256 i = 0; i < userLength; ++i) {
            address user = users[i];
            if (user == address(0)) {
                revert ZeroAddress();
            }
            super._transfer(msg.sender, user, amount);
        }
    }
    
    /// @dev burn tokens, send caller tokens to global burn address
    /// @param amount: amount to burn
    function burn(uint256 amount) external {
        super._transfer(msg.sender, BURN_ADDRESS, amount);
    }

    /// @dev claim stucked ERC20
    /// @param token: token address to rescue
    /// @param amount: amount to rescue
    function claimStuckedERC20 (address token, uint256 amount) external onlyOwner {
        // bytes4(keccak256(bytes('transfer(address,uint256)')));
        (bool success, bytes memory data) = token.call(
            abi.encodeWithSelector(0xa9059cbb, owner(), amount)
        );
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            "ERC20: TOKEN_CLAIM_FAILED"
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ArrayLengthMismatch","type":"error"},{"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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"inputs":[],"name":"ZeroAmount","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropCustomAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdropSameAmount","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimStuckedERC20","outputs":[],"stateMutability":"nonpayable","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b5033604051806040016040528060098152602001682134ba3732bab937b760b91b815250604051806040016040528060068152602001652722aaa927a760d11b81525081600390816200006491906200032a565b5060046200007382826200032a565b5050506001600160a01b038116620000a557604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000b081620000d0565b50620000ca336c01431e0fae6d7217caa000000062000121565b6200041c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166200014c5760405163ec442f0560e01b81525f60048201526024016200009c565b620001595f83836200015d565b5050565b6001600160a01b0383166200018b578060025f8282546200017f9190620003f6565b90915550620001fd9050565b6001600160a01b0383165f9081526020819052604090205481811015620001df5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200009c565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166200021b5760028054829003905562000239565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200027f91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002b557607f821691505b602082108103620002d457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200032557805f5260205f20601f840160051c81016020851015620003015750805b601f840160051c820191505b8181101562000322575f81556001016200030d565b50505b505050565b81516001600160401b038111156200034657620003466200028c565b6200035e81620003578454620002a0565b84620002da565b602080601f83116001811462000394575f84156200037c5750858301515b5f19600386901b1c1916600185901b178555620003ee565b5f85815260208120601f198616915b82811015620003c457888601518255948401946001909101908401620003a3565b5085821015620003e257878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b808201808211156200041657634e487b7160e01b5f52601160045260245ffd5b92915050565b610d19806200042a5f395ff3fe608060405234801561000f575f80fd5b5060043610610111575f3560e01c80637a20d3da1161009e578063b60c8acd1161006e578063b60c8acd14610236578063dd62ed3e14610249578063ea8ef51514610281578063f2fde38b14610294578063fccc2813146102a7575f80fd5b80637a20d3da146101e35780638da5cb5b146101f657806395d89b411461021b578063a9059cbb14610223575f80fd5b8063313ce567116100e4578063313ce5671461017b57806332cb6b0c1461018a57806342966c681461019e57806370a08231146101b3578063715018a6146101db575f80fd5b806306fdde0314610115578063095ea7b31461013357806318160ddd1461015657806323b872dd14610168575b5f80fd5b61011d6102b0565b60405161012a9190610a31565b60405180910390f35b610146610141366004610a7e565b610340565b604051901515815260200161012a565b6002545b60405190815260200161012a565b610146610176366004610aa6565b610359565b6040516012815260200161012a565b61015a6c01431e0fae6d7217caa000000081565b6101b16101ac366004610adf565b61037c565b005b61015a6101c1366004610af6565b6001600160a01b03165f9081526020819052604090205490565b6101b161038c565b6101b16101f1366004610a7e565b61039f565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161012a565b61011d6104df565b610146610231366004610a7e565b6104ee565b6101b1610244366004610b5e565b6104fb565b61015a610257366004610bc5565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101b161028f366004610bf6565b6105dc565b6101b16102a2366004610af6565b61067b565b61020361dead81565b6060600380546102bf90610c3e565b80601f01602080910402602001604051908101604052809291908181526020018280546102eb90610c3e565b80156103365780601f1061030d57610100808354040283529160200191610336565b820191905f5260205f20905b81548152906001019060200180831161031957829003601f168201915b5050505050905090565b5f3361034d8185856106b5565b60019150505b92915050565b5f336103668582856106c7565b61037185858561073c565b506001949350505050565b6103893361dead8361073c565b50565b610394610799565b61039d5f6107c6565b565b6103a7610799565b5f80836001600160a01b031663a9059cbb6103ca6005546001600160a01b031690565b6040516001600160a01b039091166024820152604481018690526064016040516020818303038152906040529060e01b6020820180516001600160e01b0383818316178352505050506040516104209190610c76565b5f604051808303815f865af19150503d805f8114610459576040519150601f19603f3d011682016040523d82523d5f602084013e61045e565b606091505b50915091508180156104885750805115806104885750808060200190518101906104889190610c91565b6104d95760405162461bcd60e51b815260206004820152601960248201527f45524332303a20544f4b454e5f434c41494d5f4641494c45440000000000000060448201526064015b60405180910390fd5b50505050565b6060600480546102bf90610c3e565b5f3361034d81858561073c565b610503610799565b82818082146105255760405163512509d360e11b815260040160405180910390fd5b5f5b828110156105d3575f87878381811061054257610542610cb0565b90506020020160208101906105579190610af6565b90505f86868481811061056c5761056c610cb0565b60200291909101359150506001600160a01b03821661059e5760405163d92e233d60e01b815260040160405180910390fd5b805f036105be57604051631f2a200560e01b815260040160405180910390fd5b6105c933838361073c565b5050600101610527565b50505050505050565b6105e4610799565b805f0361060457604051631f2a200560e01b815260040160405180910390fd5b815f5b81811015610674575f85858381811061062257610622610cb0565b90506020020160208101906106379190610af6565b90506001600160a01b0381166106605760405163d92e233d60e01b815260040160405180910390fd5b61066b33828661073c565b50600101610607565b5050505050565b610683610799565b6001600160a01b0381166106ac57604051631e4fbdf760e01b81525f60048201526024016104d0565b610389816107c6565b6106c28383836001610817565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146104d9578181101561072e57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016104d0565b6104d984848484035f610817565b6001600160a01b03831661076557604051634b637e8f60e11b81525f60048201526024016104d0565b6001600160a01b03821661078e5760405163ec442f0560e01b81525f60048201526024016104d0565b6106c28383836108e9565b6005546001600160a01b0316331461039d5760405163118cdaa760e01b81523360048201526024016104d0565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166108405760405163e602df0560e01b81525f60048201526024016104d0565b6001600160a01b03831661086957604051634a1406b160e11b81525f60048201526024016104d0565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156104d957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108db91815260200190565b60405180910390a350505050565b6001600160a01b038316610913578060025f8282546109089190610cc4565b909155506109839050565b6001600160a01b0383165f90815260208190526040902054818110156109655760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016104d0565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661099f576002805482900390556109bd565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a0291815260200190565b60405180910390a3505050565b5f5b83811015610a29578181015183820152602001610a11565b50505f910152565b602081525f8251806020840152610a4f816040850160208701610a0f565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610a79575f80fd5b919050565b5f8060408385031215610a8f575f80fd5b610a9883610a63565b946020939093013593505050565b5f805f60608486031215610ab8575f80fd5b610ac184610a63565b9250610acf60208501610a63565b9150604084013590509250925092565b5f60208284031215610aef575f80fd5b5035919050565b5f60208284031215610b06575f80fd5b610b0f82610a63565b9392505050565b5f8083601f840112610b26575f80fd5b50813567ffffffffffffffff811115610b3d575f80fd5b6020830191508360208260051b8501011115610b57575f80fd5b9250929050565b5f805f8060408587031215610b71575f80fd5b843567ffffffffffffffff80821115610b88575f80fd5b610b9488838901610b16565b90965094506020870135915080821115610bac575f80fd5b50610bb987828801610b16565b95989497509550505050565b5f8060408385031215610bd6575f80fd5b610bdf83610a63565b9150610bed60208401610a63565b90509250929050565b5f805f60408486031215610c08575f80fd5b833567ffffffffffffffff811115610c1e575f80fd5b610c2a86828701610b16565b909790965060209590950135949350505050565b600181811c90821680610c5257607f821691505b602082108103610c7057634e487b7160e01b5f52602260045260245ffd5b50919050565b5f8251610c87818460208701610a0f565b9190910192915050565b5f60208284031215610ca1575f80fd5b81518015158114610b0f575f80fd5b634e487b7160e01b5f52603260045260245ffd5b8082018082111561035357634e487b7160e01b5f52601160045260245ffdfea264697066735822122021802b359592bd59d24bbc6fc5376068d066efb5e013a7a63c5580a53ba3e13564736f6c63430008170033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610111575f3560e01c80637a20d3da1161009e578063b60c8acd1161006e578063b60c8acd14610236578063dd62ed3e14610249578063ea8ef51514610281578063f2fde38b14610294578063fccc2813146102a7575f80fd5b80637a20d3da146101e35780638da5cb5b146101f657806395d89b411461021b578063a9059cbb14610223575f80fd5b8063313ce567116100e4578063313ce5671461017b57806332cb6b0c1461018a57806342966c681461019e57806370a08231146101b3578063715018a6146101db575f80fd5b806306fdde0314610115578063095ea7b31461013357806318160ddd1461015657806323b872dd14610168575b5f80fd5b61011d6102b0565b60405161012a9190610a31565b60405180910390f35b610146610141366004610a7e565b610340565b604051901515815260200161012a565b6002545b60405190815260200161012a565b610146610176366004610aa6565b610359565b6040516012815260200161012a565b61015a6c01431e0fae6d7217caa000000081565b6101b16101ac366004610adf565b61037c565b005b61015a6101c1366004610af6565b6001600160a01b03165f9081526020819052604090205490565b6101b161038c565b6101b16101f1366004610a7e565b61039f565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161012a565b61011d6104df565b610146610231366004610a7e565b6104ee565b6101b1610244366004610b5e565b6104fb565b61015a610257366004610bc5565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101b161028f366004610bf6565b6105dc565b6101b16102a2366004610af6565b61067b565b61020361dead81565b6060600380546102bf90610c3e565b80601f01602080910402602001604051908101604052809291908181526020018280546102eb90610c3e565b80156103365780601f1061030d57610100808354040283529160200191610336565b820191905f5260205f20905b81548152906001019060200180831161031957829003601f168201915b5050505050905090565b5f3361034d8185856106b5565b60019150505b92915050565b5f336103668582856106c7565b61037185858561073c565b506001949350505050565b6103893361dead8361073c565b50565b610394610799565b61039d5f6107c6565b565b6103a7610799565b5f80836001600160a01b031663a9059cbb6103ca6005546001600160a01b031690565b6040516001600160a01b039091166024820152604481018690526064016040516020818303038152906040529060e01b6020820180516001600160e01b0383818316178352505050506040516104209190610c76565b5f604051808303815f865af19150503d805f8114610459576040519150601f19603f3d011682016040523d82523d5f602084013e61045e565b606091505b50915091508180156104885750805115806104885750808060200190518101906104889190610c91565b6104d95760405162461bcd60e51b815260206004820152601960248201527f45524332303a20544f4b454e5f434c41494d5f4641494c45440000000000000060448201526064015b60405180910390fd5b50505050565b6060600480546102bf90610c3e565b5f3361034d81858561073c565b610503610799565b82818082146105255760405163512509d360e11b815260040160405180910390fd5b5f5b828110156105d3575f87878381811061054257610542610cb0565b90506020020160208101906105579190610af6565b90505f86868481811061056c5761056c610cb0565b60200291909101359150506001600160a01b03821661059e5760405163d92e233d60e01b815260040160405180910390fd5b805f036105be57604051631f2a200560e01b815260040160405180910390fd5b6105c933838361073c565b5050600101610527565b50505050505050565b6105e4610799565b805f0361060457604051631f2a200560e01b815260040160405180910390fd5b815f5b81811015610674575f85858381811061062257610622610cb0565b90506020020160208101906106379190610af6565b90506001600160a01b0381166106605760405163d92e233d60e01b815260040160405180910390fd5b61066b33828661073c565b50600101610607565b5050505050565b610683610799565b6001600160a01b0381166106ac57604051631e4fbdf760e01b81525f60048201526024016104d0565b610389816107c6565b6106c28383836001610817565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146104d9578181101561072e57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016104d0565b6104d984848484035f610817565b6001600160a01b03831661076557604051634b637e8f60e11b81525f60048201526024016104d0565b6001600160a01b03821661078e5760405163ec442f0560e01b81525f60048201526024016104d0565b6106c28383836108e9565b6005546001600160a01b0316331461039d5760405163118cdaa760e01b81523360048201526024016104d0565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166108405760405163e602df0560e01b81525f60048201526024016104d0565b6001600160a01b03831661086957604051634a1406b160e11b81525f60048201526024016104d0565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156104d957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108db91815260200190565b60405180910390a350505050565b6001600160a01b038316610913578060025f8282546109089190610cc4565b909155506109839050565b6001600160a01b0383165f90815260208190526040902054818110156109655760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016104d0565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661099f576002805482900390556109bd565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a0291815260200190565b60405180910390a3505050565b5f5b83811015610a29578181015183820152602001610a11565b50505f910152565b602081525f8251806020840152610a4f816040850160208701610a0f565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610a79575f80fd5b919050565b5f8060408385031215610a8f575f80fd5b610a9883610a63565b946020939093013593505050565b5f805f60608486031215610ab8575f80fd5b610ac184610a63565b9250610acf60208501610a63565b9150604084013590509250925092565b5f60208284031215610aef575f80fd5b5035919050565b5f60208284031215610b06575f80fd5b610b0f82610a63565b9392505050565b5f8083601f840112610b26575f80fd5b50813567ffffffffffffffff811115610b3d575f80fd5b6020830191508360208260051b8501011115610b57575f80fd5b9250929050565b5f805f8060408587031215610b71575f80fd5b843567ffffffffffffffff80821115610b88575f80fd5b610b9488838901610b16565b90965094506020870135915080821115610bac575f80fd5b50610bb987828801610b16565b95989497509550505050565b5f8060408385031215610bd6575f80fd5b610bdf83610a63565b9150610bed60208401610a63565b90509250929050565b5f805f60408486031215610c08575f80fd5b833567ffffffffffffffff811115610c1e575f80fd5b610c2a86828701610b16565b909790965060209590950135949350505050565b600181811c90821680610c5257607f821691505b602082108103610c7057634e487b7160e01b5f52602260045260245ffd5b50919050565b5f8251610c87818460208701610a0f565b9190910192915050565b5f60208284031215610ca1575f80fd5b81518015158114610b0f575f80fd5b634e487b7160e01b5f52603260045260245ffd5b8082018082111561035357634e487b7160e01b5f52601160045260245ffdfea264697066735822122021802b359592bd59d24bbc6fc5376068d066efb5e013a7a63c5580a53ba3e13564736f6c63430008170033

Deployed Bytecode Sourcemap

20193:2814:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10808:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13101:190;;;;;;:::i;:::-;;:::i;:::-;;;1272:14:1;;1265:22;1247:41;;1235:2;1220:18;13101:190:0;1107:187:1;11910:99:0;11989:12;;11910:99;;;1445:25:1;;;1433:2;1418:18;11910:99:0;1299:177:1;13869:249:0;;;;;;:::i;:::-;;:::i;11761:84::-;;;11835:2;1956:36:1;;1944:2;1929:18;11761:84:0;1814:184:1;20363:59:0;;20400:22;20363:59;;22337:107;;;;;;:::i;:::-;;:::i;:::-;;12072:118;;;;;;:::i;:::-;-1:-1:-1;;;;;12164:18:0;12137:7;12164:18;;;;;;;;;;;;12072:118;4956:103;;;:::i;22574:430::-;;;;;;:::i;:::-;;:::i;4281:87::-;4354:6;;-1:-1:-1;;;;;4354:6:0;4281:87;;;-1:-1:-1;;;;;2543:32:1;;;2525:51;;2513:2;2498:18;4281:87:0;2379:203:1;11018:95:0;;;:::i;12395:182::-;;;;;;:::i;:::-;;:::i;20885:701::-;;;;;;:::i;:::-;;:::i;12640:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12747:18:0;;;12720:7;12747:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12640:142;21715:502;;;;;;:::i;:::-;;:::i;5214:220::-;;;;;;:::i;:::-;;:::i;20458:54::-;;20505:6;20458:54;;10808:91;10853:13;10886:5;10879:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10808:91;:::o;13101:190::-;13174:4;2634:10;13230:31;2634:10;13246:7;13255:5;13230:8;:31::i;:::-;13279:4;13272:11;;;13101:190;;;;;:::o;13869:249::-;13956:4;2634:10;14014:37;14030:4;2634:10;14045:5;14014:15;:37::i;:::-;14062:26;14072:4;14078:2;14082:5;14062:9;:26::i;:::-;-1:-1:-1;14106:4:0;;13869:249;-1:-1:-1;;;;13869:249:0:o;22337:107::-;22387:49;22403:10;20505:6;22429;22387:15;:49::i;:::-;22337:107;:::o;4956:103::-;4167:13;:11;:13::i;:::-;5021:30:::1;5048:1;5021:18;:30::i;:::-;4956:103::o:0;22574:430::-;4167:13;:11;:13::i;:::-;22731:12:::1;22745:17:::0;22766:5:::1;-1:-1:-1::0;;;;;22766:10:0::1;22814;22826:7;4354:6:::0;;-1:-1:-1;;;;;4354:6:0;;4281:87;22826:7:::1;22791:51;::::0;-1:-1:-1;;;;;5089:32:1;;;22791:51:0::1;::::0;::::1;5071::1::0;5138:18;;;5131:34;;;5044:18;;22791:51:0::1;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;22791:51:0::1;;;;;;;;;;;22766:87;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22730:123;;;;22886:7;:57;;;;-1:-1:-1::0;22898:11:0;;:16;;:44:::1;;;22929:4;22918:24;;;;;;;;;;;;:::i;:::-;22864:132;;;::::0;-1:-1:-1;;;22864:132:0;;5952:2:1;22864:132:0::1;::::0;::::1;5934:21:1::0;5991:2;5971:18;;;5964:30;6030:27;6010:18;;;6003:55;6075:18;;22864:132:0::1;;;;;;;;;22652:352;;22574:430:::0;;:::o;11018:95::-;11065:13;11098:7;11091:14;;;;;:::i;12395:182::-;12464:4;2634:10;12520:27;2634:10;12537:2;12541:5;12520:9;:27::i;20885:701::-;4167:13;:11;:13::i;:::-;21042:5;21088:7;21117:26;;::::1;21113:87;;21167:21;;-1:-1:-1::0;;;21167:21:0::1;;;;;;;;;;;21113:87;21217:9;21212:367;21236:10;21232:1;:14;21212:367;;;21268:12;21283:5;;21289:1;21283:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;21268:23;;21306:14;21323:7;;21331:1;21323:10;;;;;;;:::i;:::-;;;::::0;;;::::1;;::::0;-1:-1:-1;;;;;;;21352:18:0;::::1;21348:79;;21398:13;;-1:-1:-1::0;;;21398:13:0::1;;;;;;;;;;;21348:79;21445:6;21455:1;21445:11:::0;21441:71:::1;;21484:12;;-1:-1:-1::0;;;21484:12:0::1;;;;;;;;;;;21441:71;21526:41;21542:10;21554:4;21560:6;21526:15;:41::i;:::-;-1:-1:-1::0;;21248:3:0::1;;21212:367;;;;21010:576;;20885:701:::0;;;;:::o;21715:502::-;4167:13;:11;:13::i;:::-;21841:6:::1;21851:1;21841:11:::0;21837:71:::1;;21880:12;;-1:-1:-1::0;;;21880:12:0::1;;;;;;;;;;;21837:71;21939:5:::0;21918:18:::1;21970:240;21994:10;21990:1;:14;21970:240;;;22026:12;22041:5;;22047:1;22041:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;22026:23:::0;-1:-1:-1;;;;;;22068:18:0;::::1;22064:79;;22114:13;;-1:-1:-1::0;;;22114:13:0::1;;;;;;;;;;;22064:79;22157:41;22173:10;22185:4;22191:6;22157:15;:41::i;:::-;-1:-1:-1::0;22006:3:0::1;;21970:240;;;;21826:391;21715:502:::0;;;:::o;5214:220::-;4167:13;:11;:13::i;:::-;-1:-1:-1;;;;;5299:22:0;::::1;5295:93;;5345:31;::::0;-1:-1:-1;;;5345:31:0;;5373:1:::1;5345:31;::::0;::::1;2525:51:1::0;2498:18;;5345:31:0::1;2379:203:1::0;5295:93:0::1;5398:28;5417:8;5398:18;:28::i;17928:130::-:0;18013:37;18022:5;18029:7;18038:5;18045:4;18013:8;:37::i;:::-;17928:130;;;:::o;19644:487::-;-1:-1:-1;;;;;12747:18:0;;;19744:24;12747:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;19811:37:0;;19807:317;;19888:5;19869:16;:24;19865:132;;;19921:60;;-1:-1:-1;;;19921:60:0;;-1:-1:-1;;;;;6456:32:1;;19921:60:0;;;6438:51:1;6505:18;;;6498:34;;;6548:18;;;6541:34;;;6411:18;;19921:60:0;6236:345:1;19865:132:0;20040:57;20049:5;20056:7;20084:5;20065:16;:24;20091:5;20040:8;:57::i;14503:308::-;-1:-1:-1;;;;;14587:18:0;;14583:88;;14629:30;;-1:-1:-1;;;14629:30:0;;14656:1;14629:30;;;2525:51:1;2498:18;;14629:30:0;2379:203:1;14583:88:0;-1:-1:-1;;;;;14685:16:0;;14681:88;;14725:32;;-1:-1:-1;;;14725:32:0;;14754:1;14725:32;;;2525:51:1;2498:18;;14725:32:0;2379:203:1;14681:88:0;14779:24;14787:4;14793:2;14797:5;14779:7;:24::i;4446:166::-;4354:6;;-1:-1:-1;;;;;4354:6:0;2634:10;4506:23;4502:103;;4553:40;;-1:-1:-1;;;4553:40:0;;2634:10;4553:40;;;2525:51:1;2498:18;;4553:40:0;2379:203:1;5594:191:0;5687:6;;;-1:-1:-1;;;;;5704:17:0;;;-1:-1:-1;;;;;;5704:17:0;;;;;;;5737:40;;5687:6;;;5704:17;5687:6;;5737:40;;5668:16;;5737:40;5657:128;5594:191;:::o;18909:443::-;-1:-1:-1;;;;;19022:19:0;;19018:91;;19065:32;;-1:-1:-1;;;19065:32:0;;19094:1;19065:32;;;2525:51:1;2498:18;;19065:32:0;2379:203:1;19018:91:0;-1:-1:-1;;;;;19123:21:0;;19119:92;;19168:31;;-1:-1:-1;;;19168:31:0;;19196:1;19168:31;;;2525:51:1;2498:18;;19168:31:0;2379:203:1;19119:92:0;-1:-1:-1;;;;;19221:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;19267:78;;;;19318:7;-1:-1:-1;;;;;19302:31:0;19311:5;-1:-1:-1;;;;;19302:31:0;;19327:5;19302:31;;;;1445:25:1;;1433:2;1418:18;;1299:177;19302:31:0;;;;;;;;18909:443;;;;:::o;15135:1135::-;-1:-1:-1;;;;;15225:18:0;;15221:552;;15379:5;15363:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;15221:552:0;;-1:-1:-1;15221:552:0;;-1:-1:-1;;;;;15439:15:0;;15417:19;15439:15;;;;;;;;;;;15473:19;;;15469:117;;;15520:50;;-1:-1:-1;;;15520:50:0;;-1:-1:-1;;;;;6456:32:1;;15520:50:0;;;6438:51:1;6505:18;;;6498:34;;;6548:18;;;6541:34;;;6411:18;;15520:50:0;6236:345:1;15469:117:0;-1:-1:-1;;;;;15709:15:0;;:9;:15;;;;;;;;;;15727:19;;;;15709:37;;15221:552;-1:-1:-1;;;;;15789:16:0;;15785:435;;15955:12;:21;;;;;;;15785:435;;;-1:-1:-1;;;;;16171:13:0;;:9;:13;;;;;;;;;;:22;;;;;;15785:435;16252:2;-1:-1:-1;;;;;16237:25:0;16246:4;-1:-1:-1;;;;;16237:25:0;;16256:5;16237:25;;;;1445::1;;1433:2;1418:18;;1299:177;16237:25:0;;;;;;;;15135:1135;;;:::o;14:250:1:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:1;238:16;;231:27;14:250::o;269:396::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;649:2;628:15;-1:-1:-1;;624:29:1;609:45;;;;656:2;605:54;;269:396;-1:-1:-1;;269:396:1:o;670:173::-;738:20;;-1:-1:-1;;;;;787:31:1;;777:42;;767:70;;833:1;830;823:12;767:70;670:173;;;:::o;848:254::-;916:6;924;977:2;965:9;956:7;952:23;948:32;945:52;;;993:1;990;983:12;945:52;1016:29;1035:9;1016:29;:::i;:::-;1006:39;1092:2;1077:18;;;;1064:32;;-1:-1:-1;;;848:254:1:o;1481:328::-;1558:6;1566;1574;1627:2;1615:9;1606:7;1602:23;1598:32;1595:52;;;1643:1;1640;1633:12;1595:52;1666:29;1685:9;1666:29;:::i;:::-;1656:39;;1714:38;1748:2;1737:9;1733:18;1714:38;:::i;:::-;1704:48;;1799:2;1788:9;1784:18;1771:32;1761:42;;1481:328;;;;;:::o;2003:180::-;2062:6;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;-1:-1:-1;2154:23:1;;2003:180;-1:-1:-1;2003:180:1:o;2188:186::-;2247:6;2300:2;2288:9;2279:7;2275:23;2271:32;2268:52;;;2316:1;2313;2306:12;2268:52;2339:29;2358:9;2339:29;:::i;:::-;2329:39;2188:186;-1:-1:-1;;;2188:186:1:o;2587:367::-;2650:8;2660:6;2714:3;2707:4;2699:6;2695:17;2691:27;2681:55;;2732:1;2729;2722:12;2681:55;-1:-1:-1;2755:20:1;;2798:18;2787:30;;2784:50;;;2830:1;2827;2820:12;2784:50;2867:4;2859:6;2855:17;2843:29;;2927:3;2920:4;2910:6;2907:1;2903:14;2895:6;2891:27;2887:38;2884:47;2881:67;;;2944:1;2941;2934:12;2881:67;2587:367;;;;;:::o;2959:773::-;3081:6;3089;3097;3105;3158:2;3146:9;3137:7;3133:23;3129:32;3126:52;;;3174:1;3171;3164:12;3126:52;3214:9;3201:23;3243:18;3284:2;3276:6;3273:14;3270:34;;;3300:1;3297;3290:12;3270:34;3339:70;3401:7;3392:6;3381:9;3377:22;3339:70;:::i;:::-;3428:8;;-1:-1:-1;3313:96:1;-1:-1:-1;3516:2:1;3501:18;;3488:32;;-1:-1:-1;3532:16:1;;;3529:36;;;3561:1;3558;3551:12;3529:36;;3600:72;3664:7;3653:8;3642:9;3638:24;3600:72;:::i;:::-;2959:773;;;;-1:-1:-1;3691:8:1;-1:-1:-1;;;;2959:773:1:o;3737:260::-;3805:6;3813;3866:2;3854:9;3845:7;3841:23;3837:32;3834:52;;;3882:1;3879;3872:12;3834:52;3905:29;3924:9;3905:29;:::i;:::-;3895:39;;3953:38;3987:2;3976:9;3972:18;3953:38;:::i;:::-;3943:48;;3737:260;;;;;:::o;4002:505::-;4097:6;4105;4113;4166:2;4154:9;4145:7;4141:23;4137:32;4134:52;;;4182:1;4179;4172:12;4134:52;4222:9;4209:23;4255:18;4247:6;4244:30;4241:50;;;4287:1;4284;4277:12;4241:50;4326:70;4388:7;4379:6;4368:9;4364:22;4326:70;:::i;:::-;4415:8;;4300:96;;-1:-1:-1;4497:2:1;4482:18;;;;4469:32;;4002:505;-1:-1:-1;;;;4002:505:1:o;4512:380::-;4591:1;4587:12;;;;4634;;;4655:61;;4709:4;4701:6;4697:17;4687:27;;4655:61;4762:2;4754:6;4751:14;4731:18;4728:38;4725:161;;4808:10;4803:3;4799:20;4796:1;4789:31;4843:4;4840:1;4833:15;4871:4;4868:1;4861:15;4725:161;;4512:380;;;:::o;5176:287::-;5305:3;5343:6;5337:13;5359:66;5418:6;5413:3;5406:4;5398:6;5394:17;5359:66;:::i;:::-;5441:16;;;;;5176:287;-1:-1:-1;;5176:287:1:o;5468:277::-;5535:6;5588:2;5576:9;5567:7;5563:23;5559:32;5556:52;;;5604:1;5601;5594:12;5556:52;5636:9;5630:16;5689:5;5682:13;5675:21;5668:5;5665:32;5655:60;;5711:1;5708;5701:12;6104:127;6165:10;6160:3;6156:20;6153:1;6146:31;6196:4;6193:1;6186:15;6220:4;6217:1;6210:15;6586:222;6651:9;;;6672:10;;;6669:133;;;6724:10;6719:3;6715:20;6712:1;6705:31;6759:4;6756:1;6749:15;6787:4;6784:1;6777:15

Swarm Source

ipfs://21802b359592bd59d24bbc6fc5376068d066efb5e013a7a63c5580a53ba3e135
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.