BNB Price: $616.70 (-1.10%)
 

Overview

Max Total Supply

1,000,000,000WoD

Holders

197,412 ( -0.002%)

Market

Price

$0.0086 @ 0.000014 BNB (-1.92%)

Onchain Market Cap

$8,630,180.00

Circulating Supply Market Cap

$4,087,194.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
1 WoD

Value
$0.01 ( ~1.62152519968329E-05 BNB) [0.0000%]
0x1bafa021b181c0e34edfc4a70068b0ba1622d605
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

World of Dypians is a revolutionary MMORPG available on Epic Games, set in a connected virtual world, featuring advanced AI, stunning graphics, and immersive gameplay. It is a dynamic gaming ecosystem that merges DeFi, NFTs, Gaming, and AI into a single immersive experience.

Market

Volume (24H):$696,303.00
Market Capitalization:$4,087,194.00
Circulating Supply:472,975,635.00 WoD
Market Data Source: Coinmarketcap


Update? Click here to update the token ICO / general information

Contract Source Code Verified (Exact Match)

Contract Name:
WorldOfDypians

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at BscScan.com on 2024-07-19
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

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

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

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

// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.20;

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

// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

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

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

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

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

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

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

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

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

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

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

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

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

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

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

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

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// File: contracts/WorldOfDypians.sol

contract WorldOfDypians is ERC20("World of Dypians", "WoD"), Ownable {
    uint256 public immutable  MAX_SUPPLY;

    // TokenLock Contract Address.
    address public constant tokenLockAddress = 0x3589Fcb5bEE84DbB4DA4f987Ed84a45F012d3890;
    
    /// @notice Creates max supply of WoD
    constructor(uint256 MAX_SUPPLY_TOKEN) Ownable(msg.sender) {
        MAX_SUPPLY = MAX_SUPPLY_TOKEN;
        _mint(tokenLockAddress, MAX_SUPPLY_TOKEN);
    }

}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"MAX_SUPPLY_TOKEN","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenLockAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405234801562000010575f80fd5b5060405162001afb38038062001afb833981810160405281019062000036919062000530565b336040518060400160405280601081526020017f576f726c64206f662044797069616e73000000000000000000000000000000008152506040518060400160405280600381526020017f576f4400000000000000000000000000000000000000000000000000000000008152508160039081620000b49190620007bb565b508060049081620000c69190620007bb565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200013c575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001339190620008e2565b60405180910390fd5b6200014d816200018360201b60201c565b5080608081815250506200017c733589fcb5bee84dbb4da4f987ed84a45f012d3890826200024660201b60201c565b50620009cb565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002b9575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620002b09190620008e2565b60405180910390fd5b620002cc5f8383620002d060201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000324578060025f8282546200031791906200092a565b92505081905550620003f5565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620003b0578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620003a79392919062000975565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200043e578060025f828254039250508190555062000488565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004e79190620009b0565b60405180910390a3505050565b5f80fd5b5f819050919050565b6200050c81620004f8565b811462000517575f80fd5b50565b5f815190506200052a8162000501565b92915050565b5f60208284031215620005485762000547620004f4565b5b5f62000557848285016200051a565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620005dc57607f821691505b602082108103620005f257620005f162000597565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006567fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000619565b62000662868362000619565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620006a36200069d6200069784620004f8565b6200067a565b620004f8565b9050919050565b5f819050919050565b620006be8362000683565b620006d6620006cd82620006aa565b84845462000625565b825550505050565b5f90565b620006ec620006de565b620006f9818484620006b3565b505050565b5b818110156200072057620007145f82620006e2565b600181019050620006ff565b5050565b601f8211156200076f576200073981620005f8565b62000744846200060a565b8101602085101562000754578190505b6200076c62000763856200060a565b830182620006fe565b50505b505050565b5f82821c905092915050565b5f620007915f198460080262000774565b1980831691505092915050565b5f620007ab838362000780565b9150826002028217905092915050565b620007c68262000560565b67ffffffffffffffff811115620007e257620007e16200056a565b5b620007ee8254620005c4565b620007fb82828562000724565b5f60209050601f83116001811462000831575f84156200081c578287015190505b6200082885826200079e565b86555062000897565b601f1984166200084186620005f8565b5f5b828110156200086a5784890151825560018201915060208501945060208101905062000843565b868310156200088a578489015162000886601f89168262000780565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620008ca826200089f565b9050919050565b620008dc81620008be565b82525050565b5f602082019050620008f75f830184620008d1565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200093682620004f8565b91506200094383620004f8565b92508282019050808211156200095e576200095d620008fd565b5b92915050565b6200096f81620004f8565b82525050565b5f6060820190506200098a5f830186620008d1565b62000999602083018562000964565b620009a8604083018462000964565b949350505050565b5f602082019050620009c55f83018462000964565b92915050565b608051611117620009e45f395f6103c701526111175ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b411461023a578063a9059cbb14610258578063dd62ed3e14610288578063f2fde38b146102b8576100e8565b806370a08231146101e2578063715018a6146102125780638da5cb5b1461021c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806332cb6b0c146101a65780634cc930d2146101c4576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102d4565b6040516101019190610d90565b60405180910390f35b610124600480360381019061011f9190610e41565b610364565b6040516101319190610e99565b60405180910390f35b610142610386565b60405161014f9190610ec1565b60405180910390f35b610172600480360381019061016d9190610eda565b61038f565b60405161017f9190610e99565b60405180910390f35b6101906103bd565b60405161019d9190610f45565b60405180910390f35b6101ae6103c5565b6040516101bb9190610ec1565b60405180910390f35b6101cc6103e9565b6040516101d99190610f6d565b60405180910390f35b6101fc60048036038101906101f79190610f86565b610401565b6040516102099190610ec1565b60405180910390f35b61021a610446565b005b610224610459565b6040516102319190610f6d565b60405180910390f35b610242610481565b60405161024f9190610d90565b60405180910390f35b610272600480360381019061026d9190610e41565b610511565b60405161027f9190610e99565b60405180910390f35b6102a2600480360381019061029d9190610fb1565b610533565b6040516102af9190610ec1565b60405180910390f35b6102d260048036038101906102cd9190610f86565b6105b5565b005b6060600380546102e39061101c565b80601f016020809104026020016040519081016040528092919081815260200182805461030f9061101c565b801561035a5780601f106103315761010080835404028352916020019161035a565b820191905f5260205f20905b81548152906001019060200180831161033d57829003601f168201915b5050505050905090565b5f8061036e610639565b905061037b818585610640565b600191505092915050565b5f600254905090565b5f80610399610639565b90506103a6858285610652565b6103b18585856106e4565b60019150509392505050565b5f6012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b733589fcb5bee84dbb4da4f987ed84a45f012d389081565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61044e6107d4565b6104575f61085b565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104909061101c565b80601f01602080910402602001604051908101604052809291908181526020018280546104bc9061101c565b80156105075780601f106104de57610100808354040283529160200191610507565b820191905f5260205f20905b8154815290600101906020018083116104ea57829003601f168201915b5050505050905090565b5f8061051b610639565b90506105288185856106e4565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105bd6107d4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361062d575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106249190610f6d565b60405180910390fd5b6106368161085b565b50565b5f33905090565b61064d838383600161091e565b505050565b5f61065d8484610533565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106de57818110156106cf578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106c69392919061104c565b60405180910390fd5b6106dd84848484035f61091e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610754575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161074b9190610f6d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107c4575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107bb9190610f6d565b60405180910390fd5b6107cf838383610aed565b505050565b6107dc610639565b73ffffffffffffffffffffffffffffffffffffffff166107fa610459565b73ffffffffffffffffffffffffffffffffffffffff16146108595761081d610639565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108509190610f6d565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361098e575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109859190610f6d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109fe575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109f59190610f6d565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ae7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ade9190610ec1565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3d578060025f828254610b3191906110ae565b92505081905550610c0b565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bc6578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bbd9392919061104c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c52578060025f8282540392505081905550610c9c565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cf99190610ec1565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d3d578082015181840152602081019050610d22565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d6282610d06565b610d6c8185610d10565b9350610d7c818560208601610d20565b610d8581610d48565b840191505092915050565b5f6020820190508181035f830152610da88184610d58565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610ddd82610db4565b9050919050565b610ded81610dd3565b8114610df7575f80fd5b50565b5f81359050610e0881610de4565b92915050565b5f819050919050565b610e2081610e0e565b8114610e2a575f80fd5b50565b5f81359050610e3b81610e17565b92915050565b5f8060408385031215610e5757610e56610db0565b5b5f610e6485828601610dfa565b9250506020610e7585828601610e2d565b9150509250929050565b5f8115159050919050565b610e9381610e7f565b82525050565b5f602082019050610eac5f830184610e8a565b92915050565b610ebb81610e0e565b82525050565b5f602082019050610ed45f830184610eb2565b92915050565b5f805f60608486031215610ef157610ef0610db0565b5b5f610efe86828701610dfa565b9350506020610f0f86828701610dfa565b9250506040610f2086828701610e2d565b9150509250925092565b5f60ff82169050919050565b610f3f81610f2a565b82525050565b5f602082019050610f585f830184610f36565b92915050565b610f6781610dd3565b82525050565b5f602082019050610f805f830184610f5e565b92915050565b5f60208284031215610f9b57610f9a610db0565b5b5f610fa884828501610dfa565b91505092915050565b5f8060408385031215610fc757610fc6610db0565b5b5f610fd485828601610dfa565b9250506020610fe585828601610dfa565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061103357607f821691505b60208210810361104657611045610fef565b5b50919050565b5f60608201905061105f5f830186610f5e565b61106c6020830185610eb2565b6110796040830184610eb2565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6110b882610e0e565b91506110c383610e0e565b92508282019050808211156110db576110da611081565b5b9291505056fea26469706673582212200f214ab6c0d3c44d7fff8ec5dcb35257f863664f2ae4e6cd5d3d6f304b278bd764736f6c634300081400330000000000000000000000000000000000000000033b2e3c9fd0803ce8000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b411461023a578063a9059cbb14610258578063dd62ed3e14610288578063f2fde38b146102b8576100e8565b806370a08231146101e2578063715018a6146102125780638da5cb5b1461021c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806332cb6b0c146101a65780634cc930d2146101c4576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102d4565b6040516101019190610d90565b60405180910390f35b610124600480360381019061011f9190610e41565b610364565b6040516101319190610e99565b60405180910390f35b610142610386565b60405161014f9190610ec1565b60405180910390f35b610172600480360381019061016d9190610eda565b61038f565b60405161017f9190610e99565b60405180910390f35b6101906103bd565b60405161019d9190610f45565b60405180910390f35b6101ae6103c5565b6040516101bb9190610ec1565b60405180910390f35b6101cc6103e9565b6040516101d99190610f6d565b60405180910390f35b6101fc60048036038101906101f79190610f86565b610401565b6040516102099190610ec1565b60405180910390f35b61021a610446565b005b610224610459565b6040516102319190610f6d565b60405180910390f35b610242610481565b60405161024f9190610d90565b60405180910390f35b610272600480360381019061026d9190610e41565b610511565b60405161027f9190610e99565b60405180910390f35b6102a2600480360381019061029d9190610fb1565b610533565b6040516102af9190610ec1565b60405180910390f35b6102d260048036038101906102cd9190610f86565b6105b5565b005b6060600380546102e39061101c565b80601f016020809104026020016040519081016040528092919081815260200182805461030f9061101c565b801561035a5780601f106103315761010080835404028352916020019161035a565b820191905f5260205f20905b81548152906001019060200180831161033d57829003601f168201915b5050505050905090565b5f8061036e610639565b905061037b818585610640565b600191505092915050565b5f600254905090565b5f80610399610639565b90506103a6858285610652565b6103b18585856106e4565b60019150509392505050565b5f6012905090565b7f0000000000000000000000000000000000000000033b2e3c9fd0803ce800000081565b733589fcb5bee84dbb4da4f987ed84a45f012d389081565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61044e6107d4565b6104575f61085b565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104909061101c565b80601f01602080910402602001604051908101604052809291908181526020018280546104bc9061101c565b80156105075780601f106104de57610100808354040283529160200191610507565b820191905f5260205f20905b8154815290600101906020018083116104ea57829003601f168201915b5050505050905090565b5f8061051b610639565b90506105288185856106e4565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105bd6107d4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361062d575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106249190610f6d565b60405180910390fd5b6106368161085b565b50565b5f33905090565b61064d838383600161091e565b505050565b5f61065d8484610533565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106de57818110156106cf578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106c69392919061104c565b60405180910390fd5b6106dd84848484035f61091e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610754575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161074b9190610f6d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107c4575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107bb9190610f6d565b60405180910390fd5b6107cf838383610aed565b505050565b6107dc610639565b73ffffffffffffffffffffffffffffffffffffffff166107fa610459565b73ffffffffffffffffffffffffffffffffffffffff16146108595761081d610639565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108509190610f6d565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361098e575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109859190610f6d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109fe575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109f59190610f6d565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ae7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ade9190610ec1565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3d578060025f828254610b3191906110ae565b92505081905550610c0b565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bc6578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bbd9392919061104c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c52578060025f8282540392505081905550610c9c565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cf99190610ec1565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d3d578082015181840152602081019050610d22565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d6282610d06565b610d6c8185610d10565b9350610d7c818560208601610d20565b610d8581610d48565b840191505092915050565b5f6020820190508181035f830152610da88184610d58565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610ddd82610db4565b9050919050565b610ded81610dd3565b8114610df7575f80fd5b50565b5f81359050610e0881610de4565b92915050565b5f819050919050565b610e2081610e0e565b8114610e2a575f80fd5b50565b5f81359050610e3b81610e17565b92915050565b5f8060408385031215610e5757610e56610db0565b5b5f610e6485828601610dfa565b9250506020610e7585828601610e2d565b9150509250929050565b5f8115159050919050565b610e9381610e7f565b82525050565b5f602082019050610eac5f830184610e8a565b92915050565b610ebb81610e0e565b82525050565b5f602082019050610ed45f830184610eb2565b92915050565b5f805f60608486031215610ef157610ef0610db0565b5b5f610efe86828701610dfa565b9350506020610f0f86828701610dfa565b9250506040610f2086828701610e2d565b9150509250925092565b5f60ff82169050919050565b610f3f81610f2a565b82525050565b5f602082019050610f585f830184610f36565b92915050565b610f6781610dd3565b82525050565b5f602082019050610f805f830184610f5e565b92915050565b5f60208284031215610f9b57610f9a610db0565b5b5f610fa884828501610dfa565b91505092915050565b5f8060408385031215610fc757610fc6610db0565b5b5f610fd485828601610dfa565b9250506020610fe585828601610dfa565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061103357607f821691505b60208210810361104657611045610fef565b5b50919050565b5f60608201905061105f5f830186610f5e565b61106c6020830185610eb2565b6110796040830184610eb2565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6110b882610e0e565b91506110c383610e0e565b92508282019050808211156110db576110da611081565b5b9291505056fea26469706673582212200f214ab6c0d3c44d7fff8ec5dcb35257f863664f2ae4e6cd5d3d6f304b278bd764736f6c63430008140033

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

0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000

-----Decoded View---------------
Arg [0] : MAX_SUPPLY_TOKEN (uint256): 1000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000


Deployed Bytecode Sourcemap

25381:461:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12888:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15181:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13990:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15949:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13841:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25457:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25538:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14152:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24504:103;;;:::i;:::-;;23829:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13098:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14475:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14720:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24762:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12888:91;12933:13;12966:5;12959:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12888:91;:::o;15181:190::-;15254:4;15271:13;15287:12;:10;:12::i;:::-;15271:28;;15310:31;15319:5;15326:7;15335:5;15310:8;:31::i;:::-;15359:4;15352:11;;;15181:190;;;;:::o;13990:99::-;14042:7;14069:12;;14062:19;;13990:99;:::o;15949:249::-;16036:4;16053:15;16071:12;:10;:12::i;:::-;16053:30;;16094:37;16110:4;16116:7;16125:5;16094:15;:37::i;:::-;16142:26;16152:4;16158:2;16162:5;16142:9;:26::i;:::-;16186:4;16179:11;;;15949:249;;;;;:::o;13841:84::-;13890:5;13915:2;13908:9;;13841:84;:::o;25457:36::-;;;:::o;25538:85::-;25581:42;25538:85;:::o;14152:118::-;14217:7;14244:9;:18;14254:7;14244:18;;;;;;;;;;;;;;;;14237:25;;14152:118;;;:::o;24504:103::-;23715:13;:11;:13::i;:::-;24569:30:::1;24596:1;24569:18;:30::i;:::-;24504:103::o:0;23829:87::-;23875:7;23902:6;;;;;;;;;;;23895:13;;23829:87;:::o;13098:95::-;13145:13;13178:7;13171:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13098:95;:::o;14475:182::-;14544:4;14561:13;14577:12;:10;:12::i;:::-;14561:28;;14600:27;14610:5;14617:2;14621:5;14600:9;:27::i;:::-;14645:4;14638:11;;;14475:182;;;;:::o;14720:142::-;14800:7;14827:11;:18;14839:5;14827:18;;;;;;;;;;;;;;;:27;14846:7;14827:27;;;;;;;;;;;;;;;;14820:34;;14720:142;;;;:::o;24762:220::-;23715:13;:11;:13::i;:::-;24867:1:::1;24847:22;;:8;:22;;::::0;24843:93:::1;;24921:1;24893:31;;;;;;;;;;;:::i;:::-;;;;;;;;24843:93;24946:28;24965:8;24946:18;:28::i;:::-;24762:220:::0;:::o;4136:98::-;4189:7;4216:10;4209:17;;4136:98;:::o;20008:130::-;20093:37;20102:5;20109:7;20118:5;20125:4;20093:8;:37::i;:::-;20008:130;;;:::o;21724:487::-;21824:24;21851:25;21861:5;21868:7;21851:9;:25::i;:::-;21824:52;;21911:17;21891:16;:37;21887:317;;21968:5;21949:16;:24;21945:132;;;22028:7;22037:16;22055:5;22001:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;21945:132;22120:57;22129:5;22136:7;22164:5;22145:16;:24;22171:5;22120:8;:57::i;:::-;21887:317;21813:398;21724:487;;;:::o;16583:308::-;16683:1;16667:18;;:4;:18;;;16663:88;;16736:1;16709:30;;;;;;;;;;;:::i;:::-;;;;;;;;16663:88;16779:1;16765:16;;:2;:16;;;16761:88;;16834:1;16805:32;;;;;;;;;;;:::i;:::-;;;;;;;;16761:88;16859:24;16867:4;16873:2;16877:5;16859:7;:24::i;:::-;16583:308;;;:::o;23994:166::-;24065:12;:10;:12::i;:::-;24054:23;;:7;:5;:7::i;:::-;:23;;;24050:103;;24128:12;:10;:12::i;:::-;24101:40;;;;;;;;;;;:::i;:::-;;;;;;;;24050:103;23994:166::o;25142:191::-;25216:16;25235:6;;;;;;;;;;;25216:25;;25261:8;25252:6;;:17;;;;;;;;;;;;;;;;;;25316:8;25285:40;;25306:8;25285:40;;;;;;;;;;;;25205:128;25142:191;:::o;20989:443::-;21119:1;21102:19;;:5;:19;;;21098:91;;21174:1;21145:32;;;;;;;;;;;:::i;:::-;;;;;;;;21098:91;21222:1;21203:21;;:7;:21;;;21199:92;;21276:1;21248:31;;;;;;;;;;;:::i;:::-;;;;;;;;21199:92;21331:5;21301:11;:18;21313:5;21301:18;;;;;;;;;;;;;;;:27;21320:7;21301:27;;;;;;;;;;;;;;;:35;;;;21351:9;21347:78;;;21398:7;21382:31;;21391:5;21382:31;;;21407:5;21382:31;;;;;;:::i;:::-;;;;;;;;21347:78;20989:443;;;;:::o;17215:1135::-;17321:1;17305:18;;:4;:18;;;17301:552;;17459:5;17443:12;;:21;;;;;;;:::i;:::-;;;;;;;;17301:552;;;17497:19;17519:9;:15;17529:4;17519:15;;;;;;;;;;;;;;;;17497:37;;17567:5;17553:11;:19;17549:117;;;17625:4;17631:11;17644:5;17600:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17549:117;17821:5;17807:11;:19;17789:9;:15;17799:4;17789:15;;;;;;;;;;;;;;;:37;;;;17482:371;17301:552;17883:1;17869:16;;:2;:16;;;17865:435;;18051:5;18035:12;;:21;;;;;;;;;;;17865:435;;;18268:5;18251:9;:13;18261:2;18251:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;17865:435;18332:2;18317:25;;18326:4;18317:25;;;18336:5;18317:25;;;;;;:::i;:::-;;;;;;;;17215:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:118::-;4940:24;4958:5;4940:24;:::i;:::-;4935:3;4928:37;4853:118;;:::o;4977:222::-;5070:4;5108:2;5097:9;5093:18;5085:26;;5121:71;5189:1;5178:9;5174:17;5165:6;5121:71;:::i;:::-;4977:222;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:442::-;6681:4;6719:2;6708:9;6704:18;6696:26;;6732:71;6800:1;6789:9;6785:17;6776:6;6732:71;:::i;:::-;6813:72;6881:2;6870:9;6866:18;6857:6;6813:72;:::i;:::-;6895;6963:2;6952:9;6948:18;6939:6;6895:72;:::i;:::-;6532:442;;;;;;:::o;6980:180::-;7028:77;7025:1;7018:88;7125:4;7122:1;7115:15;7149:4;7146:1;7139:15;7166:191;7206:3;7225:20;7243:1;7225:20;:::i;:::-;7220:25;;7259:20;7277:1;7259:20;:::i;:::-;7254:25;;7302:1;7299;7295:9;7288:16;;7323:3;7320:1;7317:10;7314:36;;;7330:18;;:::i;:::-;7314:36;7166:191;;;;:::o

Swarm Source

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