ETH Price: $3,264.19 (-2.28%)

Token

gkongz (GKONGZ)
 

Overview

Max Total Supply

284,260.858587962962961747 GKONGZ

Holders

81

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Crazy Panther Art Collabs: Deployer
Balance
1,258.233587962962962952 GKONGZ

Value
$0.00
0xD49322ADD203C8e04ACDD53B7fF14B5E0AC861D7
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:
GuardianKongzToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : GKongz_ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

interface iGuardianKongz {
    function walletOfOwner(address _owner) external view returns (uint256[] memory);
    function balanceOf(address account) external view returns (uint256);
}

contract GuardianKongzToken is ERC20, Ownable {
    address private GuardianKongz = 0x5E90bB26A930038d7c139cA6a39CB1b5dA8e5f60;

    uint256 public productIndex = 1;

    bool claimPaused = true;

    uint256 constant private GEN_LEG_BASE = 50 ether;
    uint256 constant private GEN_BASE = 30 ether;
    uint256 constant private LEG_BASE = 10 ether;
    uint256 constant private ORI_BASE = 2 ether;

    uint256 private START_TIME = 1643673600; // GMT: Tuesday, 1 February 2022 00:00:00

    mapping(uint256 => uint256) public lastClaim;
    mapping(uint256 => bool) public isLegendary;

      struct Products {
        string name;
        uint256 price;
        uint256 quantity;
        uint256 limit;
    }

    mapping(uint256 => Products) public shopProducts;
    mapping(address => mapping(uint256 => uint256)) public userInventory;

    constructor() ERC20("gkongz", "GKONGZ") {}

    function getBaseRate(uint256 _id) private view returns (uint256) {
        if(_id > 0 && _id < 223) {
            if(isLegendary[_id]) {
                return GEN_LEG_BASE;
            }
            return GEN_BASE;
        }
        if(isLegendary[_id]){
            return LEG_BASE;
        }
        return ORI_BASE;
    }

    function getClaimableRewards(uint256[] memory _id) public view returns (uint256) {
        uint256 rewards = 0;
        uint256 baseRate;

        for (uint256 i = 0; i < _id.length; i++) {
            uint256 id = _id[i];
            baseRate = getBaseRate(id);
            rewards = rewards + (baseRate * (block.timestamp - (lastClaim[id] > START_TIME ? lastClaim[id] : START_TIME)) / 86400);
        }
        return rewards;
    }

    function claimReward() external {
        require(!claimPaused, "Claiming reward has been paused");

        uint256[] memory KongzId = iGuardianKongz(GuardianKongz).walletOfOwner(msg.sender);

        uint256 claimAmount = getClaimableRewards(KongzId);
        _mint(msg.sender, claimAmount);

        for (uint256 j = 0; j < KongzId.length; j++) {
            lastClaim[KongzId[j]] = block.timestamp;
        }
    }

    function flipReward() external onlyOwner {
        claimPaused = !claimPaused;
    }

    function setLegendary(uint256[] memory _tokenId) external onlyOwner {
        for (uint256 i = 0; i < _tokenId.length; i++){
            isLegendary[_tokenId[i]] = true;
        }
    }

    function buy(uint256 _index, uint256 _qty) external {
        uint256 NFTOwned = iGuardianKongz(GuardianKongz).balanceOf(msg.sender);
        uint256 TokenOwned = balanceOf(msg.sender);
        
        require(NFTOwned > 0, "NFT, Not eligible");
        require(TokenOwned > 0, "Token, Not eligible");
        require(TokenOwned >= shopProducts[_index].price, "Insufficient $GKongz!");
        require(shopProducts[_index].quantity >= _qty, "No stock!");
        require(userInventory[msg.sender][_index] + _qty <= shopProducts[_index].limit, "Over limit");

        _burn(msg.sender, shopProducts[_index].price * _qty);
        shopProducts[_index].quantity -= _qty;
        userInventory[msg.sender][_index] += _qty;
    }

    function addNewProduct(string memory _name, uint256 _price, uint256 _quantity, uint256 _limit) external onlyOwner {
        shopProducts[productIndex].name = _name;
        shopProducts[productIndex].price = _price;
        shopProducts[productIndex].quantity = _quantity;
        shopProducts[productIndex].limit = _limit;
        productIndex++;
    }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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

File 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":"string","name":"_name","type":"string"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"addNewProduct","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_id","type":"uint256[]"}],"name":"getClaimableRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"","type":"uint256"}],"name":"isLegendary","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"productIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"}],"name":"setLegendary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"shopProducts","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userInventory","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600680546001600160a01b031916735e90bb26a930038d7c139ca6a39cb1b5da8e5f60179055600160078190556008805460ff191690911790556361f878006009553480156200005357600080fd5b506040518060400160405280600681526020016533b5b7b733bd60d11b8152506040518060400160405280600681526020016523a5a7a723ad60d11b8152508160039080519060200190620000aa92919062000139565b508051620000c090600490602084019062000139565b505050620000dd620000d7620000e360201b60201c565b620000e7565b6200021c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014790620001df565b90600052602060002090601f0160209004810192826200016b5760008555620001b6565b82601f106200018657805160ff1916838001178555620001b6565b82800160010185558215620001b6579182015b82811115620001b657825182559160200191906001019062000199565b50620001c4929150620001c8565b5090565b5b80821115620001c45760008155600101620001c9565b600181811c90821680620001f457607f821691505b602082108114156200021657634e487b7160e01b600052602260045260246000fd5b50919050565b611978806200022c6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de578063b11ebc9b11610097578063c897d5a611610071578063c897d5a614610356578063d6febde81461035f578063dd62ed3e14610372578063f2fde38b146103ab57600080fd5b8063b11ebc9b14610323578063b88a802f1461032b578063c5a991f81461033357600080fd5b806370a08231146102a9578063715018a6146102d25780638da5cb5b146102da57806395d89b41146102f5578063a457c2d7146102fd578063a9059cbb1461031057600080fd5b806326a2823e1161013057806326a2823e14610216578063313ce5671461022957806339509351146102385780633d3728b51461024b57806344cdac8d1461026b5780635c0529a31461027e57600080fd5b8063036738c91461017857806306fdde031461018d578063095ea7b3146101ab57806313dccad8146101ce57806318160ddd146101f157806323b872dd14610203575b600080fd5b61018b6101863660046114f8565b6103be565b005b610195610459565b6040516101a2919061176e565b60405180910390f35b6101be6101b93660046114ce565b6104eb565b60405190151581526020016101a2565b6101e16101dc3660046116cd565b610501565b6040516101a29493929190611781565b6002545b6040519081526020016101a2565b6101be610211366004611492565b6105b1565b61018b610224366004611621565b61065b565b604051601281526020016101a2565b6101be6102463660046114ce565b6106f2565b6101f56102593660046116cd565b600a6020526000908152604090205481565b6101f56102793660046114f8565b61072e565b6101f561028c3660046114ce565b600d60209081526000928352604080842090915290825290205481565b6101f56102b736600461143d565b6001600160a01b031660009081526020819052604090205490565b61018b6107e2565b6005546040516001600160a01b0390911681526020016101a2565b610195610818565b6101be61030b3660046114ce565b610827565b6101be61031e3660046114ce565b6108c0565b61018b6108cd565b61018b61090b565b6101be6103413660046116cd565b600b6020526000908152604090205460ff1681565b6101f560075481565b61018b61036d3660046116ff565b610a4b565b6101f561038036600461145f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61018b6103b936600461143d565b610cf9565b6005546001600160a01b031633146103f15760405162461bcd60e51b81526004016103e8906117b0565b60405180910390fd5b60005b8151811015610455576001600b600084848151811061041557610415611916565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550808061044d906118e5565b9150506103f4565b5050565b606060038054610468906118aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610494906118aa565b80156104e15780601f106104b6576101008083540402835291602001916104e1565b820191906000526020600020905b8154815290600101906020018083116104c457829003601f168201915b5050505050905090565b60006104f8338484610d94565b50600192915050565b600c6020526000908152604090208054819061051c906118aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610548906118aa565b80156105955780601f1061056a57610100808354040283529160200191610595565b820191906000526020600020905b81548152906001019060200180831161057857829003601f168201915b5050505050908060010154908060020154908060030154905084565b60006105be848484610eb8565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106435760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016103e8565b6106508533858403610d94565b506001949350505050565b6005546001600160a01b031633146106855760405162461bcd60e51b81526004016103e8906117b0565b6007546000908152600c6020908152604090912085516106a792870190611388565b50600780546000908152600c602052604080822060010186905582548252808220600201859055825482528120600301839055815491906106e7836118e5565b919050555050505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104f891859061072990869061183a565b610d94565b60008080805b84518110156107d957600085828151811061075157610751611916565b6020026020010151905061076481611087565b6009546000838152600a602052604090205491945062015180911161078b5760095461079b565b6000828152600a60205260409020545b6107a59042611893565b6107af9085611874565b6107b99190611852565b6107c3908561183a565b93505080806107d1906118e5565b915050610734565b50909392505050565b6005546001600160a01b0316331461080c5760405162461bcd60e51b81526004016103e8906117b0565b6108166000611109565b565b606060048054610468906118aa565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108a95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103e8565b6108b63385858403610d94565b5060019392505050565b60006104f8338484610eb8565b6005546001600160a01b031633146108f75760405162461bcd60e51b81526004016103e8906117b0565b6008805460ff19811660ff90911615179055565b60085460ff161561095e5760405162461bcd60e51b815260206004820152601f60248201527f436c61696d696e672072657761726420686173206265656e207061757365640060448201526064016103e8565b60065460405162438b6360e81b81523360048201526000916001600160a01b03169063438b63009060240160006040518083038186803b1580156109a157600080fd5b505afa1580156109b5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109dd9190810190611595565b905060006109ea8261072e565b90506109f6338261115b565b60005b8251811015610a465742600a6000858481518110610a1957610a19611916565b60200260200101518152602001908152602001600020819055508080610a3e906118e5565b9150506109f9565b505050565b6006546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610a8f57600080fd5b505afa158015610aa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac791906116e6565b3360009081526020819052604090205490915081610b1b5760405162461bcd60e51b81526020600482015260116024820152704e46542c204e6f7420656c696769626c6560781b60448201526064016103e8565b60008111610b615760405162461bcd60e51b8152602060048201526013602482015272546f6b656e2c204e6f7420656c696769626c6560681b60448201526064016103e8565b6000848152600c6020526040902060010154811015610bba5760405162461bcd60e51b8152602060048201526015602482015274496e73756666696369656e742024474b6f6e677a2160581b60448201526064016103e8565b6000848152600c6020526040902060020154831115610c075760405162461bcd60e51b81526020600482015260096024820152684e6f2073746f636b2160b81b60448201526064016103e8565b6000848152600c6020908152604080832060030154338452600d835281842088855290925290912054610c3b90859061183a565b1115610c765760405162461bcd60e51b815260206004820152600a60248201526913dd995c881b1a5b5a5d60b21b60448201526064016103e8565b6000848152600c6020526040902060010154610c9e903390610c99908690611874565b61123a565b6000848152600c602052604081206002018054859290610cbf908490611893565b9091555050336000908152600d6020908152604080832087845290915281208054859290610cee90849061183a565b909155505050505050565b6005546001600160a01b03163314610d235760405162461bcd60e51b81526004016103e8906117b0565b6001600160a01b038116610d885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103e8565b610d9181611109565b50565b6001600160a01b038316610df65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103e8565b6001600160a01b038216610e575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103e8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f1c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103e8565b6001600160a01b038216610f7e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103e8565b6001600160a01b03831660009081526020819052604090205481811015610ff65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103e8565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061102d90849061183a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107991815260200190565b60405180910390a350505050565b60008082118015611098575060df82105b156110d4576000828152600b602052604090205460ff16156110c457506802b5e3af16b1880000919050565b506801a055690d9db80000919050565b6000828152600b602052604090205460ff16156110fa5750678ac7230489e80000919050565b50671bc16d674ec80000919050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166111b15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103e8565b80600260008282546111c3919061183a565b90915550506001600160a01b038216600090815260208190526040812080548392906111f090849061183a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03821661129a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103e8565b6001600160a01b0382166000908152602081905260409020548181101561130e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103e8565b6001600160a01b038316600090815260208190526040812083830390556002805484929061133d908490611893565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b828054611394906118aa565b90600052602060002090601f0160209004810192826113b657600085556113fc565b82601f106113cf57805160ff19168380011785556113fc565b828001600101855582156113fc579182015b828111156113fc5782518255916020019190600101906113e1565b5061140892915061140c565b5090565b5b80821115611408576000815560010161140d565b80356001600160a01b038116811461143857600080fd5b919050565b60006020828403121561144f57600080fd5b61145882611421565b9392505050565b6000806040838503121561147257600080fd5b61147b83611421565b915061148960208401611421565b90509250929050565b6000806000606084860312156114a757600080fd5b6114b084611421565b92506114be60208501611421565b9150604084013590509250925092565b600080604083850312156114e157600080fd5b6114ea83611421565b946020939093013593505050565b6000602080838503121561150b57600080fd5b823567ffffffffffffffff81111561152257600080fd5b8301601f8101851361153357600080fd5b803561154661154182611816565b6117e5565b80828252848201915084840188868560051b870101111561156657600080fd5b600094505b8385101561158957803583526001949094019391850191850161156b565b50979650505050505050565b600060208083850312156115a857600080fd5b825167ffffffffffffffff8111156115bf57600080fd5b8301601f810185136115d057600080fd5b80516115de61154182611816565b80828252848201915084840188868560051b87010111156115fe57600080fd5b600094505b83851015611589578051835260019490940193918501918501611603565b6000806000806080858703121561163757600080fd5b843567ffffffffffffffff8082111561164f57600080fd5b818701915087601f83011261166357600080fd5b81356020828211156116775761167761192c565b611689601f8301601f191682016117e5565b9250818352898183860101111561169f57600080fd5b8181850182850137600091830181019190915290989087013597506040870135966060013595509350505050565b6000602082840312156116df57600080fd5b5035919050565b6000602082840312156116f857600080fd5b5051919050565b6000806040838503121561171257600080fd5b50508035926020909101359150565b6000815180845260005b818110156117475760208185018101518683018201520161172b565b81811115611759576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006114586020830184611721565b6080815260006117946080830187611721565b6020830195909552506040810192909252606090910152919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561180e5761180e61192c565b604052919050565b600067ffffffffffffffff8211156118305761183061192c565b5060051b60200190565b6000821982111561184d5761184d611900565b500190565b60008261186f57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561188e5761188e611900565b500290565b6000828210156118a5576118a5611900565b500390565b600181811c908216806118be57607f821691505b602082108114156118df57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156118f9576118f9611900565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220d56b0bbcc0e8b215e15ab4b5a52da9e71edbfe28613a235b7fbed08e331ca62c64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de578063b11ebc9b11610097578063c897d5a611610071578063c897d5a614610356578063d6febde81461035f578063dd62ed3e14610372578063f2fde38b146103ab57600080fd5b8063b11ebc9b14610323578063b88a802f1461032b578063c5a991f81461033357600080fd5b806370a08231146102a9578063715018a6146102d25780638da5cb5b146102da57806395d89b41146102f5578063a457c2d7146102fd578063a9059cbb1461031057600080fd5b806326a2823e1161013057806326a2823e14610216578063313ce5671461022957806339509351146102385780633d3728b51461024b57806344cdac8d1461026b5780635c0529a31461027e57600080fd5b8063036738c91461017857806306fdde031461018d578063095ea7b3146101ab57806313dccad8146101ce57806318160ddd146101f157806323b872dd14610203575b600080fd5b61018b6101863660046114f8565b6103be565b005b610195610459565b6040516101a2919061176e565b60405180910390f35b6101be6101b93660046114ce565b6104eb565b60405190151581526020016101a2565b6101e16101dc3660046116cd565b610501565b6040516101a29493929190611781565b6002545b6040519081526020016101a2565b6101be610211366004611492565b6105b1565b61018b610224366004611621565b61065b565b604051601281526020016101a2565b6101be6102463660046114ce565b6106f2565b6101f56102593660046116cd565b600a6020526000908152604090205481565b6101f56102793660046114f8565b61072e565b6101f561028c3660046114ce565b600d60209081526000928352604080842090915290825290205481565b6101f56102b736600461143d565b6001600160a01b031660009081526020819052604090205490565b61018b6107e2565b6005546040516001600160a01b0390911681526020016101a2565b610195610818565b6101be61030b3660046114ce565b610827565b6101be61031e3660046114ce565b6108c0565b61018b6108cd565b61018b61090b565b6101be6103413660046116cd565b600b6020526000908152604090205460ff1681565b6101f560075481565b61018b61036d3660046116ff565b610a4b565b6101f561038036600461145f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61018b6103b936600461143d565b610cf9565b6005546001600160a01b031633146103f15760405162461bcd60e51b81526004016103e8906117b0565b60405180910390fd5b60005b8151811015610455576001600b600084848151811061041557610415611916565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550808061044d906118e5565b9150506103f4565b5050565b606060038054610468906118aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610494906118aa565b80156104e15780601f106104b6576101008083540402835291602001916104e1565b820191906000526020600020905b8154815290600101906020018083116104c457829003601f168201915b5050505050905090565b60006104f8338484610d94565b50600192915050565b600c6020526000908152604090208054819061051c906118aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610548906118aa565b80156105955780601f1061056a57610100808354040283529160200191610595565b820191906000526020600020905b81548152906001019060200180831161057857829003601f168201915b5050505050908060010154908060020154908060030154905084565b60006105be848484610eb8565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106435760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016103e8565b6106508533858403610d94565b506001949350505050565b6005546001600160a01b031633146106855760405162461bcd60e51b81526004016103e8906117b0565b6007546000908152600c6020908152604090912085516106a792870190611388565b50600780546000908152600c602052604080822060010186905582548252808220600201859055825482528120600301839055815491906106e7836118e5565b919050555050505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104f891859061072990869061183a565b610d94565b60008080805b84518110156107d957600085828151811061075157610751611916565b6020026020010151905061076481611087565b6009546000838152600a602052604090205491945062015180911161078b5760095461079b565b6000828152600a60205260409020545b6107a59042611893565b6107af9085611874565b6107b99190611852565b6107c3908561183a565b93505080806107d1906118e5565b915050610734565b50909392505050565b6005546001600160a01b0316331461080c5760405162461bcd60e51b81526004016103e8906117b0565b6108166000611109565b565b606060048054610468906118aa565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108a95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103e8565b6108b63385858403610d94565b5060019392505050565b60006104f8338484610eb8565b6005546001600160a01b031633146108f75760405162461bcd60e51b81526004016103e8906117b0565b6008805460ff19811660ff90911615179055565b60085460ff161561095e5760405162461bcd60e51b815260206004820152601f60248201527f436c61696d696e672072657761726420686173206265656e207061757365640060448201526064016103e8565b60065460405162438b6360e81b81523360048201526000916001600160a01b03169063438b63009060240160006040518083038186803b1580156109a157600080fd5b505afa1580156109b5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109dd9190810190611595565b905060006109ea8261072e565b90506109f6338261115b565b60005b8251811015610a465742600a6000858481518110610a1957610a19611916565b60200260200101518152602001908152602001600020819055508080610a3e906118e5565b9150506109f9565b505050565b6006546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610a8f57600080fd5b505afa158015610aa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac791906116e6565b3360009081526020819052604090205490915081610b1b5760405162461bcd60e51b81526020600482015260116024820152704e46542c204e6f7420656c696769626c6560781b60448201526064016103e8565b60008111610b615760405162461bcd60e51b8152602060048201526013602482015272546f6b656e2c204e6f7420656c696769626c6560681b60448201526064016103e8565b6000848152600c6020526040902060010154811015610bba5760405162461bcd60e51b8152602060048201526015602482015274496e73756666696369656e742024474b6f6e677a2160581b60448201526064016103e8565b6000848152600c6020526040902060020154831115610c075760405162461bcd60e51b81526020600482015260096024820152684e6f2073746f636b2160b81b60448201526064016103e8565b6000848152600c6020908152604080832060030154338452600d835281842088855290925290912054610c3b90859061183a565b1115610c765760405162461bcd60e51b815260206004820152600a60248201526913dd995c881b1a5b5a5d60b21b60448201526064016103e8565b6000848152600c6020526040902060010154610c9e903390610c99908690611874565b61123a565b6000848152600c602052604081206002018054859290610cbf908490611893565b9091555050336000908152600d6020908152604080832087845290915281208054859290610cee90849061183a565b909155505050505050565b6005546001600160a01b03163314610d235760405162461bcd60e51b81526004016103e8906117b0565b6001600160a01b038116610d885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103e8565b610d9181611109565b50565b6001600160a01b038316610df65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103e8565b6001600160a01b038216610e575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103e8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f1c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103e8565b6001600160a01b038216610f7e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103e8565b6001600160a01b03831660009081526020819052604090205481811015610ff65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103e8565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061102d90849061183a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107991815260200190565b60405180910390a350505050565b60008082118015611098575060df82105b156110d4576000828152600b602052604090205460ff16156110c457506802b5e3af16b1880000919050565b506801a055690d9db80000919050565b6000828152600b602052604090205460ff16156110fa5750678ac7230489e80000919050565b50671bc16d674ec80000919050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166111b15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103e8565b80600260008282546111c3919061183a565b90915550506001600160a01b038216600090815260208190526040812080548392906111f090849061183a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03821661129a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103e8565b6001600160a01b0382166000908152602081905260409020548181101561130e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103e8565b6001600160a01b038316600090815260208190526040812083830390556002805484929061133d908490611893565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b828054611394906118aa565b90600052602060002090601f0160209004810192826113b657600085556113fc565b82601f106113cf57805160ff19168380011785556113fc565b828001600101855582156113fc579182015b828111156113fc5782518255916020019190600101906113e1565b5061140892915061140c565b5090565b5b80821115611408576000815560010161140d565b80356001600160a01b038116811461143857600080fd5b919050565b60006020828403121561144f57600080fd5b61145882611421565b9392505050565b6000806040838503121561147257600080fd5b61147b83611421565b915061148960208401611421565b90509250929050565b6000806000606084860312156114a757600080fd5b6114b084611421565b92506114be60208501611421565b9150604084013590509250925092565b600080604083850312156114e157600080fd5b6114ea83611421565b946020939093013593505050565b6000602080838503121561150b57600080fd5b823567ffffffffffffffff81111561152257600080fd5b8301601f8101851361153357600080fd5b803561154661154182611816565b6117e5565b80828252848201915084840188868560051b870101111561156657600080fd5b600094505b8385101561158957803583526001949094019391850191850161156b565b50979650505050505050565b600060208083850312156115a857600080fd5b825167ffffffffffffffff8111156115bf57600080fd5b8301601f810185136115d057600080fd5b80516115de61154182611816565b80828252848201915084840188868560051b87010111156115fe57600080fd5b600094505b83851015611589578051835260019490940193918501918501611603565b6000806000806080858703121561163757600080fd5b843567ffffffffffffffff8082111561164f57600080fd5b818701915087601f83011261166357600080fd5b81356020828211156116775761167761192c565b611689601f8301601f191682016117e5565b9250818352898183860101111561169f57600080fd5b8181850182850137600091830181019190915290989087013597506040870135966060013595509350505050565b6000602082840312156116df57600080fd5b5035919050565b6000602082840312156116f857600080fd5b5051919050565b6000806040838503121561171257600080fd5b50508035926020909101359150565b6000815180845260005b818110156117475760208185018101518683018201520161172b565b81811115611759576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006114586020830184611721565b6080815260006117946080830187611721565b6020830195909552506040810192909252606090910152919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561180e5761180e61192c565b604052919050565b600067ffffffffffffffff8211156118305761183061192c565b5060051b60200190565b6000821982111561184d5761184d611900565b500190565b60008261186f57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561188e5761188e611900565b500290565b6000828210156118a5576118a5611900565b500390565b600181811c908216806118be57607f821691505b602082108114156118df57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156118f9576118f9611900565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220d56b0bbcc0e8b215e15ab4b5a52da9e71edbfe28613a235b7fbed08e331ca62c64736f6c63430008070033

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.