ETH Price: $2,436.83 (+4.57%)

Token

MetaGochi Nft Twin Egg (MGINFT-2)
 

Overview

Max Total Supply

1,000,667 MGINFT-2

Holders

205

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
5 MGINFT-2

Value
$0.00
0x7be1fc9460a5f331e984e8064b6b6f0399cb5b82
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:
MetaGochiNftTwinEgg

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-13
*/

/**
 *Submitted for verification at Etherscan.io on 2021-11-09
*/

// SPDX-License-Identifier: UNLICENSED

pragma solidity 0.8.6;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @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 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 payable) {
        return payable(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;
    }
}



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    /**
     * @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 value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * 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 _decimals;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

/**
 * @dev 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract MetaGochiNftTwinEgg is ERC20("MetaGochi Nft Twin Egg", "MGINFT-2"), Ownable {

    constructor() {
       _setupDecimals(0);
       _mint(address(msg.sender), 1000000);// aidrop  for existing holders
    }

    function getOwner() external view returns (address) {
        return owner();
    }
    
    function mint(address _to, uint256 _amount) public onlyOwner {
        _mint(_to, _amount);
    }

    function website() external pure returns (string memory) {
        return "https://app.metagochi.com";
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"website","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601681527f4d657461476f636869204e6674205477696e204567670000000000000000000060208083019182528351808501909452600884526726a3a4a7232a169960c11b908401528151919291620000779160039162000286565b5080516200008d90600490602084019062000286565b50506005805460ff19166012179055506000620000a73390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506005805460ff191690556200011633620f42406200011c565b62000390565b6001600160a01b038216620001785760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b62000194816002546200021c60201b620006a61790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001c7918390620006a66200021c821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000806200022b83856200032c565b9050838110156200027f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200016f565b9392505050565b828054620002949062000353565b90600052602060002090601f016020900481019282620002b8576000855562000303565b82601f10620002d357805160ff191683800117855562000303565b8280016001018555821562000303579182015b8281111562000303578251825591602001919060010190620002e6565b506200031192915062000315565b5090565b5b8082111562000311576000815560010162000316565b600082198211156200034e57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200036857607f821691505b602082108114156200038a57634e487b7160e01b600052602260045260246000fd5b50919050565b610d4c80620003a06000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d71461022c578063a9059cbb1461023f578063beb0a41614610252578063dd62ed3e1461028b578063f2fde38b146102c457600080fd5b8063715018a6146101dc578063893d20e8146101e45780638da5cb5b1461020e57806395d89b411461022457600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018b57806340c10f191461019e57806370a08231146101b357600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102d7565b6040516101259190610b99565b60405180910390f35b61014161013c366004610b6f565b610369565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610b33565b61037f565b60055460405160ff9091168152602001610125565b610141610199366004610b6f565b6103e8565b6101b16101ac366004610b6f565b61041e565b005b6101556101c1366004610ae5565b6001600160a01b031660009081526020819052604090205490565b6101b1610483565b60055461010090046001600160a01b03165b6040516001600160a01b039091168152602001610125565b60055461010090046001600160a01b03166101f6565b610118610521565b61014161023a366004610b6f565b610530565b61014161024d366004610b6f565b61057f565b60408051808201909152601981527f68747470733a2f2f6170702e6d657461676f6368692e636f6d000000000000006020820152610118565b610155610299366004610b00565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101b16102d2366004610ae5565b61058c565b6060600380546102e690610c52565b80601f016020809104026020016040519081016040528092919081815260200182805461031290610c52565b801561035f5780601f106103345761010080835404028352916020019161035f565b820191906000526020600020905b81548152906001019060200180831161034257829003601f168201915b5050505050905090565b600061037633848461070c565b50600192915050565b600061038c848484610831565b6103de84336103d985604051806060016040528060288152602001610cca602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906109b4565b61070c565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103769185906103d990866106a6565b6005546001600160a01b03610100909104163314806104505750737cbd384b73d3ff4b278023b3e8a354c436bdc60f33145b6104755760405162461bcd60e51b815260040161046c90610bee565b60405180910390fd5b61047f82826109eb565b5050565b6005546001600160a01b03610100909104163314806104b55750737cbd384b73d3ff4b278023b3e8a354c436bdc60f33145b6104d15760405162461bcd60e51b815260040161046c90610bee565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6060600480546102e690610c52565b600061037633846103d985604051806060016040528060258152602001610cf2602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906109b4565b6000610376338484610831565b6005546001600160a01b03610100909104163314806105be5750737cbd384b73d3ff4b278023b3e8a354c436bdc60f33145b6105da5760405162461bcd60e51b815260040161046c90610bee565b6001600160a01b03811661063f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161046c565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000806106b38385610c23565b9050838110156107055760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161046c565b9392505050565b6001600160a01b03831661076e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161046c565b6001600160a01b0382166107cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161046c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108955760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161046c565b6001600160a01b0382166108f75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161046c565b61093481604051806060016040528060268152602001610ca4602691396001600160a01b03861660009081526020819052604090205491906109b4565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461096390826106a6565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610824565b600081848411156109d85760405162461bcd60e51b815260040161046c9190610b99565b506109e38385610c3b565b949350505050565b6001600160a01b038216610a415760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161046c565b600254610a4e90826106a6565b6002556001600160a01b038216600090815260208190526040902054610a7490826106a6565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b80356001600160a01b0381168114610ae057600080fd5b919050565b600060208284031215610af757600080fd5b61070582610ac9565b60008060408385031215610b1357600080fd5b610b1c83610ac9565b9150610b2a60208401610ac9565b90509250929050565b600080600060608486031215610b4857600080fd5b610b5184610ac9565b9250610b5f60208501610ac9565b9150604084013590509250925092565b60008060408385031215610b8257600080fd5b610b8b83610ac9565b946020939093013593505050565b600060208083528351808285015260005b81811015610bc657858101830151858201604001528201610baa565b81811115610bd8576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610c3657610c36610c8d565b500190565b600082821015610c4d57610c4d610c8d565b500390565b600181811c90821680610c6657607f821691505b60208210811415610c8757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122065614c041de23a181532267480c7eca66269ef108a576e955c541f814a3f656164736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d71461022c578063a9059cbb1461023f578063beb0a41614610252578063dd62ed3e1461028b578063f2fde38b146102c457600080fd5b8063715018a6146101dc578063893d20e8146101e45780638da5cb5b1461020e57806395d89b411461022457600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018b57806340c10f191461019e57806370a08231146101b357600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102d7565b6040516101259190610b99565b60405180910390f35b61014161013c366004610b6f565b610369565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610b33565b61037f565b60055460405160ff9091168152602001610125565b610141610199366004610b6f565b6103e8565b6101b16101ac366004610b6f565b61041e565b005b6101556101c1366004610ae5565b6001600160a01b031660009081526020819052604090205490565b6101b1610483565b60055461010090046001600160a01b03165b6040516001600160a01b039091168152602001610125565b60055461010090046001600160a01b03166101f6565b610118610521565b61014161023a366004610b6f565b610530565b61014161024d366004610b6f565b61057f565b60408051808201909152601981527f68747470733a2f2f6170702e6d657461676f6368692e636f6d000000000000006020820152610118565b610155610299366004610b00565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101b16102d2366004610ae5565b61058c565b6060600380546102e690610c52565b80601f016020809104026020016040519081016040528092919081815260200182805461031290610c52565b801561035f5780601f106103345761010080835404028352916020019161035f565b820191906000526020600020905b81548152906001019060200180831161034257829003601f168201915b5050505050905090565b600061037633848461070c565b50600192915050565b600061038c848484610831565b6103de84336103d985604051806060016040528060288152602001610cca602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906109b4565b61070c565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103769185906103d990866106a6565b6005546001600160a01b03610100909104163314806104505750737cbd384b73d3ff4b278023b3e8a354c436bdc60f33145b6104755760405162461bcd60e51b815260040161046c90610bee565b60405180910390fd5b61047f82826109eb565b5050565b6005546001600160a01b03610100909104163314806104b55750737cbd384b73d3ff4b278023b3e8a354c436bdc60f33145b6104d15760405162461bcd60e51b815260040161046c90610bee565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6060600480546102e690610c52565b600061037633846103d985604051806060016040528060258152602001610cf2602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906109b4565b6000610376338484610831565b6005546001600160a01b03610100909104163314806105be5750737cbd384b73d3ff4b278023b3e8a354c436bdc60f33145b6105da5760405162461bcd60e51b815260040161046c90610bee565b6001600160a01b03811661063f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161046c565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000806106b38385610c23565b9050838110156107055760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161046c565b9392505050565b6001600160a01b03831661076e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161046c565b6001600160a01b0382166107cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161046c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108955760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161046c565b6001600160a01b0382166108f75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161046c565b61093481604051806060016040528060268152602001610ca4602691396001600160a01b03861660009081526020819052604090205491906109b4565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461096390826106a6565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610824565b600081848411156109d85760405162461bcd60e51b815260040161046c9190610b99565b506109e38385610c3b565b949350505050565b6001600160a01b038216610a415760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161046c565b600254610a4e90826106a6565b6002556001600160a01b038216600090815260208190526040902054610a7490826106a6565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b80356001600160a01b0381168114610ae057600080fd5b919050565b600060208284031215610af757600080fd5b61070582610ac9565b60008060408385031215610b1357600080fd5b610b1c83610ac9565b9150610b2a60208401610ac9565b90509250929050565b600080600060608486031215610b4857600080fd5b610b5184610ac9565b9250610b5f60208501610ac9565b9150604084013590509250925092565b60008060408385031215610b8257600080fd5b610b8b83610ac9565b946020939093013593505050565b600060208083528351808285015260005b81811015610bc657858101830151858201604001528201610baa565b81811115610bd8576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610c3657610c36610c8d565b500190565b600082821015610c4d57610c4d610c8d565b500390565b600181811c90821680610c6657607f821691505b60208210811415610c8757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122065614c041de23a181532267480c7eca66269ef108a576e955c541f814a3f656164736f6c63430008060033

Deployed Bytecode Sourcemap

24345:546:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13197:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15343:169;;;;;;:::i;:::-;;:::i;:::-;;;1613:14:1;;1606:22;1588:41;;1576:2;1561:18;15343:169:0;1543:92:1;14296:108:0;14384:12;;14296:108;;;5490:25:1;;;5478:2;5463:18;14296:108:0;5445:76:1;15994:321:0;;;;;;:::i;:::-;;:::i;14140:91::-;14214:9;;14140:91;;14214:9;;;;5668:36:1;;5656:2;5641:18;14140:91:0;5623:87:1;16724:218:0;;;;;;:::i;:::-;;:::i;24669:99::-;;;;;;:::i;:::-;;:::i;:::-;;14467:127;;;;;;:::i;:::-;-1:-1:-1;;;;;14568:18:0;14541:7;14568:18;;;;;;;;;;;;14467:127;23791:148;;;:::i;24572:85::-;23151:6;;;;;-1:-1:-1;;;;;23151:6:0;24572:85;;;-1:-1:-1;;;;;1404:32:1;;;1386:51;;1374:2;1359:18;24572:85:0;1341:102:1;23078:87:0;23151:6;;;;;-1:-1:-1;;;;;23151:6:0;23078:87;;13407:95;;;:::i;17445:269::-;;;;;;:::i;:::-;;:::i;14807:175::-;;;;;;:::i;:::-;;:::i;24776:110::-;24844:34;;;;;;;;;;;;;;;;;24776:110;;15045:151;;;;;;:::i;:::-;-1:-1:-1;;;;;15161:18:0;;;15134:7;15161:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15045:151;24094:244;;;;;;:::i;:::-;;:::i;13197:91::-;13242:13;13275:5;13268:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13197:91;:::o;15343:169::-;15426:4;15443:39;10868:10;15466:7;15475:6;15443:8;:39::i;:::-;-1:-1:-1;15500:4:0;15343:169;;;;:::o;15994:321::-;16100:4;16117:36;16127:6;16135:9;16146:6;16117:9;:36::i;:::-;16164:121;16173:6;10868:10;16195:89;16233:6;16195:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16195:19:0;;;;;;:11;:19;;;;;;;;10868:10;16195:33;;;;;;;;;;:37;:89::i;:::-;16164:8;:121::i;:::-;-1:-1:-1;16303:4:0;15994:321;;;;;:::o;16724:218::-;10868:10;16812:4;16861:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16861:34:0;;;;;;;;;;16812:4;;16829:83;;16852:7;;16861:50;;16900:10;16861:38;:50::i;24669:99::-;23151:6;;-1:-1:-1;;;;;23151:6:0;;;;;10868:10;23298:23;;:85;;-1:-1:-1;23341:42:0;10868:10;23325:58;23298:85;23290:130;;;;-1:-1:-1;;;23290:130:0;;;;;;;:::i;:::-;;;;;;;;;24741:19:::1;24747:3;24752:7;24741:5;:19::i;:::-;24669:99:::0;;:::o;23791:148::-;23151:6;;-1:-1:-1;;;;;23151:6:0;;;;;10868:10;23298:23;;:85;;-1:-1:-1;23341:42:0;10868:10;23325:58;23298:85;23290:130;;;;-1:-1:-1;;;23290:130:0;;;;;;;:::i;:::-;23882:6:::1;::::0;23861:40:::1;::::0;23898:1:::1;::::0;23882:6:::1;::::0;::::1;-1:-1:-1::0;;;;;23882:6:0::1;::::0;23861:40:::1;::::0;23898:1;;23861:40:::1;23912:6;:19:::0;;-1:-1:-1;;;;;;23912:19:0::1;::::0;;23791:148::o;13407:95::-;13454:13;13487:7;13480:14;;;;;:::i;17445:269::-;17538:4;17555:129;10868:10;17578:7;17587:96;17626:15;17587:96;;;;;;;;;;;;;;;;;10868:10;17587:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17587:34:0;;;;;;;;;;;;:38;:96::i;14807:175::-;14893:4;14910:42;10868:10;14934:9;14945:6;14910:9;:42::i;24094:244::-;23151:6;;-1:-1:-1;;;;;23151:6:0;;;;;10868:10;23298:23;;:85;;-1:-1:-1;23341:42:0;10868:10;23325:58;23298:85;23290:130;;;;-1:-1:-1;;;23290:130:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24183:22:0;::::1;24175:73;;;::::0;-1:-1:-1;;;24175:73:0;;2848:2:1;24175:73:0::1;::::0;::::1;2830:21:1::0;2887:2;2867:18;;;2860:30;2926:34;2906:18;;;2899:62;-1:-1:-1;;;2977:18:1;;;2970:36;3023:19;;24175:73:0::1;2820:228:1::0;24175:73:0::1;24285:6;::::0;24264:38:::1;::::0;-1:-1:-1;;;;;24264:38:0;;::::1;::::0;24285:6:::1;::::0;::::1;;::::0;24264:38:::1;::::0;;;::::1;24313:6;:17:::0;;-1:-1:-1;;;;;24313:17:0;;::::1;;;-1:-1:-1::0;;;;;;24313:17:0;;::::1;::::0;;;::::1;::::0;;24094:244::o;2843:179::-;2901:7;;2933:5;2937:1;2933;:5;:::i;:::-;2921:17;;2962:1;2957;:6;;2949:46;;;;-1:-1:-1;;;2949:46:0;;3658:2:1;2949:46:0;;;3640:21:1;3697:2;3677:18;;;3670:30;3736:29;3716:18;;;3709:57;3783:18;;2949:46:0;3630:177:1;2949:46:0;3013:1;2843:179;-1:-1:-1;;;2843:179:0:o;20592:346::-;-1:-1:-1;;;;;20694:19:0;;20686:68;;;;-1:-1:-1;;;20686:68:0;;4781:2:1;20686:68:0;;;4763:21:1;4820:2;4800:18;;;4793:30;4859:34;4839:18;;;4832:62;-1:-1:-1;;;4910:18:1;;;4903:34;4954:19;;20686:68:0;4753:226:1;20686:68:0;-1:-1:-1;;;;;20773:21:0;;20765:68;;;;-1:-1:-1;;;20765:68:0;;3255:2:1;20765:68:0;;;3237:21:1;3294:2;3274:18;;;3267:30;3333:34;3313:18;;;3306:62;-1:-1:-1;;;3384:18:1;;;3377:32;3426:19;;20765:68:0;3227:224:1;20765:68:0;-1:-1:-1;;;;;20846:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20898:32;;5490:25:1;;;20898:32:0;;5463:18:1;20898:32:0;;;;;;;;20592:346;;;:::o;18204:539::-;-1:-1:-1;;;;;18310:20:0;;18302:70;;;;-1:-1:-1;;;18302:70:0;;4375:2:1;18302:70:0;;;4357:21:1;4414:2;4394:18;;;4387:30;4453:34;4433:18;;;4426:62;-1:-1:-1;;;4504:18:1;;;4497:35;4549:19;;18302:70:0;4347:227:1;18302:70:0;-1:-1:-1;;;;;18391:23:0;;18383:71;;;;-1:-1:-1;;;18383:71:0;;2444:2:1;18383:71:0;;;2426:21:1;2483:2;2463:18;;;2456:30;2522:34;2502:18;;;2495:62;-1:-1:-1;;;2573:18:1;;;2566:33;2616:19;;18383:71:0;2416:225:1;18383:71:0;18547;18569:6;18547:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18547:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18527:17:0;;;:9;:17;;;;;;;;;;;:91;;;;18652:20;;;;;;;:32;;18677:6;18652:24;:32::i;:::-;-1:-1:-1;;;;;18629:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;18700:35;5490:25:1;;;18629:20:0;;18700:35;;;;;;5463:18:1;18700:35:0;5445:76:1;5670:166:0;5756:7;5792:12;5784:6;;;;5776:29;;;;-1:-1:-1;;;5776:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5823:5:0;5827:1;5823;:5;:::i;:::-;5816:12;5670:166;-1:-1:-1;;;;5670:166:0:o;19025:378::-;-1:-1:-1;;;;;19109:21:0;;19101:65;;;;-1:-1:-1;;;19101:65:0;;5186:2:1;19101:65:0;;;5168:21:1;5225:2;5205:18;;;5198:30;5264:33;5244:18;;;5237:61;5315:18;;19101:65:0;5158:181:1;19101:65:0;19256:12;;:24;;19273:6;19256:16;:24::i;:::-;19241:12;:39;-1:-1:-1;;;;;19312:18:0;;:9;:18;;;;;;;;;;;:30;;19335:6;19312:22;:30::i;:::-;-1:-1:-1;;;;;19291:18:0;;:9;:18;;;;;;;;;;;:51;;;;19358:37;;5490:25:1;;;19291:18:0;;:9;;19358:37;;5463:18:1;19358:37:0;;;;;;;19025:378;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:2;;;1126:1;1123;1116:12;1078:2;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;1068:167:1:o;1640:597::-;1752:4;1781:2;1810;1799:9;1792:21;1842:6;1836:13;1885:6;1880:2;1869:9;1865:18;1858:34;1910:1;1920:140;1934:6;1931:1;1928:13;1920:140;;;2029:14;;;2025:23;;2019:30;1995:17;;;2014:2;1991:26;1984:66;1949:10;;1920:140;;;2078:6;2075:1;2072:13;2069:2;;;2148:1;2143:2;2134:6;2123:9;2119:22;2115:31;2108:42;2069:2;-1:-1:-1;2221:2:1;2200:15;-1:-1:-1;;2196:29:1;2181:45;;;;2228:2;2177:54;;1761:476;-1:-1:-1;;;1761:476:1:o;3812:356::-;4014:2;3996:21;;;4033:18;;;4026:30;4092:34;4087:2;4072:18;;4065:62;4159:2;4144:18;;3986:182::o;5715:128::-;5755:3;5786:1;5782:6;5779:1;5776:13;5773:2;;;5792:18;;:::i;:::-;-1:-1:-1;5828:9:1;;5763:80::o;5848:125::-;5888:4;5916:1;5913;5910:8;5907:2;;;5921:18;;:::i;:::-;-1:-1:-1;5958:9:1;;5897:76::o;5978:380::-;6057:1;6053:12;;;;6100;;;6121:2;;6175:4;6167:6;6163:17;6153:27;;6121:2;6228;6220:6;6217:14;6197:18;6194:38;6191:2;;;6274:10;6269:3;6265:20;6262:1;6255:31;6309:4;6306:1;6299:15;6337:4;6334:1;6327:15;6191:2;;6033:325;;;:::o;6363:127::-;6424:10;6419:3;6415:20;6412:1;6405:31;6455:4;6452:1;6445:15;6479:4;6476:1;6469:15

Swarm Source

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