POL Price: $0.628716 (+5.18%)
 

Overview

Max Total Supply

1,000,000,000 BWO

Holders

5,884 (0.00%)

Total Transfers

-

Market

Price

$0.0033 @ 0.005298 POL (+4.65%)

Onchain Market Cap

$3,330,870.00

Circulating Supply Market Cap

$2,475,581.00

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

Battle World is a Gamefi Metaverse project built on Polygon network. A globally appealing mid-core game for the masses.

Market

Volume (24H):$136,726.00
Market Capitalization:$2,475,581.00
Circulating Supply:740,781,358.00 BWO
Market Data Source: Coinmarketcap

Contract Source Code Verified (Exact Match)

Contract Name:
BattleWorld

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license
/**
 *Submitted for verification at polygonscan.com on 2022-04-12
*/

// SPDX-License-Identifier: UNLICENSED

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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @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, Ownable {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimal;

    /**
     * @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_, uint8 decimal_) {
        _name = name_;
        _symbol = symbol_;
        _decimal = decimal_;
    }

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

    /**
     * @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");
        _transfer(owner(), newOwner, _balances[owner()]);
        _transferOwnership(newOwner);
    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * 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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

contract BattleWorld is ERC20 {
    constructor() ERC20("Battle World", "BWO", 18) {
        _mint(msg.sender, 1000000000 * 10 ** 18);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600c81526020016b10985d1d1b194815dbdc9b1960a21b8152506040518060400160405280600381526020016242574f60e81b81525060126200006f62000069620000d060201b60201c565b620000d4565b8251620000849060049060208601906200020c565b5081516200009a9060059060208501906200020c565b506006805460ff191660ff9290921691909117905550620000ca9050336b033b2e3c9fd0803ce800000062000124565b62000316565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200017f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620001939190620002b2565b90915550506001600160a01b03821660009081526001602052604081208054839290620001c2908490620002b2565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200021a90620002d9565b90600052602060002090601f0160209004810192826200023e576000855562000289565b82601f106200025957805160ff191683800117855562000289565b8280016001018555821562000289579182015b82811115620002895782518255916020019190600101906200026c565b50620002979291506200029b565b5090565b5b808211156200029757600081556001016200029c565b60008219821115620002d457634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002ee57607f821691505b602082108114156200031057634e487b7160e01b600052602260045260246000fd5b50919050565b6109f380620003266000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c8063715018a611610071578063715018a61461015d5780638da5cb5b1461016757806395d89b4114610182578063a9059cbb1461018a578063dd62ed3e1461019d578063f2fde38b146101d657600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f57806370a0823114610134575b600080fd5b6100c16101e9565b6040516100ce9190610830565b60405180910390f35b6100ea6100e53660046108a1565b61027b565b60405190151581526020016100ce565b6003545b6040519081526020016100ce565b6100ea61011a3660046108cb565b610293565b60065460405160ff90911681526020016100ce565b6100fe610142366004610907565b6001600160a01b031660009081526001602052604090205490565b6101656102b7565b005b6000546040516001600160a01b0390911681526020016100ce565b6100c1610322565b6100ea6101983660046108a1565b610331565b6100fe6101ab366004610929565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101656101e4366004610907565b61033f565b6060600480546101f89061095c565b80601f01602080910402602001604051908101604052809291908181526020018280546102249061095c565b80156102715780601f1061024657610100808354040283529160200191610271565b820191906000526020600020905b81548152906001019060200180831161025457829003601f168201915b5050505050905090565b60003361028981858561045c565b5060019392505050565b6000336102a1858285610580565b6102ac858585610612565b506001949350505050565b6000546001600160a01b031633146103165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61032060006107e0565b565b6060600580546101f89061095c565b600033610289818585610612565b6000546001600160a01b031633146103995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030d565b6001600160a01b0381166103fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161030d565b6104506104136000546001600160a01b031690565b826001600061042a6000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002054610612565b610459816107e0565b50565b6001600160a01b0383166104be5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161030d565b6001600160a01b03821661051f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161030d565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260026020908152604080832093861683529290522054600019811461060c57818110156105ff5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161030d565b61060c848484840361045c565b50505050565b6001600160a01b0383166106765760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161030d565b6001600160a01b0382166106d85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161030d565b6001600160a01b038316600090815260016020526040902054818110156107505760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161030d565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610787908490610997565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107d391815260200190565b60405180910390a361060c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561085d57858101830151858201604001528201610841565b8181111561086f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461089c57600080fd5b919050565b600080604083850312156108b457600080fd5b6108bd83610885565b946020939093013593505050565b6000806000606084860312156108e057600080fd5b6108e984610885565b92506108f760208501610885565b9150604084013590509250925092565b60006020828403121561091957600080fd5b61092282610885565b9392505050565b6000806040838503121561093c57600080fd5b61094583610885565b915061095360208401610885565b90509250929050565b600181811c9082168061097057607f821691505b6020821081141561099157634e487b7160e01b600052602260045260246000fd5b50919050565b600082198211156109b857634e487b7160e01b600052601160045260246000fd5b50019056fea264697066735822122050c13f458268b006029532de1bdad11a86d5691901c207abb73566d5ed4a85d664736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c8063715018a611610071578063715018a61461015d5780638da5cb5b1461016757806395d89b4114610182578063a9059cbb1461018a578063dd62ed3e1461019d578063f2fde38b146101d657600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f57806370a0823114610134575b600080fd5b6100c16101e9565b6040516100ce9190610830565b60405180910390f35b6100ea6100e53660046108a1565b61027b565b60405190151581526020016100ce565b6003545b6040519081526020016100ce565b6100ea61011a3660046108cb565b610293565b60065460405160ff90911681526020016100ce565b6100fe610142366004610907565b6001600160a01b031660009081526001602052604090205490565b6101656102b7565b005b6000546040516001600160a01b0390911681526020016100ce565b6100c1610322565b6100ea6101983660046108a1565b610331565b6100fe6101ab366004610929565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101656101e4366004610907565b61033f565b6060600480546101f89061095c565b80601f01602080910402602001604051908101604052809291908181526020018280546102249061095c565b80156102715780601f1061024657610100808354040283529160200191610271565b820191906000526020600020905b81548152906001019060200180831161025457829003601f168201915b5050505050905090565b60003361028981858561045c565b5060019392505050565b6000336102a1858285610580565b6102ac858585610612565b506001949350505050565b6000546001600160a01b031633146103165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61032060006107e0565b565b6060600580546101f89061095c565b600033610289818585610612565b6000546001600160a01b031633146103995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030d565b6001600160a01b0381166103fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161030d565b6104506104136000546001600160a01b031690565b826001600061042a6000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002054610612565b610459816107e0565b50565b6001600160a01b0383166104be5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161030d565b6001600160a01b03821661051f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161030d565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260026020908152604080832093861683529290522054600019811461060c57818110156105ff5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161030d565b61060c848484840361045c565b50505050565b6001600160a01b0383166106765760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161030d565b6001600160a01b0382166106d85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161030d565b6001600160a01b038316600090815260016020526040902054818110156107505760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161030d565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610787908490610997565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107d391815260200190565b60405180910390a361060c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561085d57858101830151858201604001528201610841565b8181111561086f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461089c57600080fd5b919050565b600080604083850312156108b457600080fd5b6108bd83610885565b946020939093013593505050565b6000806000606084860312156108e057600080fd5b6108e984610885565b92506108f760208501610885565b9150604084013590509250925092565b60006020828403121561091957600080fd5b61092282610885565b9392505050565b6000806040838503121561093c57600080fd5b61094583610885565b915061095360208401610885565b90509250929050565b600181811c9082168061097057607f821691505b6020821081141561099157634e487b7160e01b600052602260045260246000fd5b50919050565b600082198211156109b857634e487b7160e01b600052601160045260246000fd5b50019056fea264697066735822122050c13f458268b006029532de1bdad11a86d5691901c207abb73566d5ed4a85d664736f6c634300080c0033

Deployed Bytecode Sourcemap

16883:146:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8177:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10949:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;10949:201:0;1053:187:1;9718:108:0;9806:12;;9718:108;;;1391:25:1;;;1379:2;1364:18;9718:108:0;1245:177:1;11730:295:0;;;;;;:::i;:::-;;:::i;9139:99::-;9222:8;;9139:99;;9222:8;;;;1902:36:1;;1890:2;1875:18;9139:99:0;1760:184:1;9889:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;9990:18:0;9963:7;9990:18;;;:9;:18;;;;;;;9889:127;5654:103;;;:::i;:::-;;5003:87;5049:7;5076:6;5003:87;;-1:-1:-1;;;;;5076:6:0;;;2286:51:1;;2274:2;2259:18;5003:87:0;2140:203:1;8396:104:0;;;:::i;10222:193::-;;;;;;:::i;:::-;;:::i;10478:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10594:18:0;;;10567:7;10594:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10478:151;9393:260;;;;;;:::i;:::-;;:::i;8177:100::-;8231:13;8264:5;8257:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8177:100;:::o;10949:201::-;11032:4;3950:10;11088:32;3950:10;11104:7;11113:6;11088:8;:32::i;:::-;-1:-1:-1;11138:4:0;;10949:201;-1:-1:-1;;;10949:201:0:o;11730:295::-;11861:4;3950:10;11919:38;11935:4;3950:10;11950:6;11919:15;:38::i;:::-;11968:27;11978:4;11984:2;11988:6;11968:9;:27::i;:::-;-1:-1:-1;12013:4:0;;11730:295;-1:-1:-1;;;;11730:295:0:o;5654:103::-;5049:7;5076:6;-1:-1:-1;;;;;5076:6:0;3950:10;5223:23;5215:68;;;;-1:-1:-1;;;5215:68:0;;3200:2:1;5215:68:0;;;3182:21:1;;;3219:18;;;3212:30;3278:34;3258:18;;;3251:62;3330:18;;5215:68:0;;;;;;;;;5719:30:::1;5746:1;5719:18;:30::i;:::-;5654:103::o:0;8396:104::-;8452:13;8485:7;8478:14;;;;;:::i;10222:193::-;10301:4;3950:10;10357:28;3950:10;10374:2;10378:6;10357:9;:28::i;9393:260::-;5049:7;5076:6;-1:-1:-1;;;;;5076:6:0;3950:10;5223:23;5215:68;;;;-1:-1:-1;;;5215:68:0;;3200:2:1;5215:68:0;;;3182:21:1;;;3219:18;;;3212:30;3278:34;3258:18;;;3251:62;3330:18;;5215:68:0;2998:356:1;5215:68:0;-1:-1:-1;;;;;9482:22:0;::::1;9474:73;;;::::0;-1:-1:-1;;;9474:73:0;;3561:2:1;9474:73:0::1;::::0;::::1;3543:21:1::0;3600:2;3580:18;;;3573:30;3639:34;3619:18;;;3612:62;-1:-1:-1;;;3690:18:1;;;3683:36;3736:19;;9474:73:0::1;3359:402:1::0;9474:73:0::1;9558:48;9568:7;5049::::0;5076:6;-1:-1:-1;;;;;5076:6:0;;5003:87;9568:7:::1;9577:8;9587:9;:18;9597:7;5049::::0;5076:6;-1:-1:-1;;;;;5076:6:0;;5003:87;9597:7:::1;-1:-1:-1::0;;;;;9587:18:0::1;-1:-1:-1::0;;;;;9587:18:0::1;;;;;;;;;;;;;9558:9;:48::i;:::-;9617:28;9636:8;9617:18;:28::i;:::-;9393:260:::0;:::o;14299:380::-;-1:-1:-1;;;;;14435:19:0;;14427:68;;;;-1:-1:-1;;;14427:68:0;;3968:2:1;14427:68:0;;;3950:21:1;4007:2;3987:18;;;3980:30;4046:34;4026:18;;;4019:62;-1:-1:-1;;;4097:18:1;;;4090:34;4141:19;;14427:68:0;3766:400:1;14427:68:0;-1:-1:-1;;;;;14514:21:0;;14506:68;;;;-1:-1:-1;;;14506:68:0;;4373:2:1;14506:68:0;;;4355:21:1;4412:2;4392:18;;;4385:30;4451:34;4431:18;;;4424:62;-1:-1:-1;;;4502:18:1;;;4495:32;4544:19;;14506:68:0;4171:398:1;14506:68:0;-1:-1:-1;;;;;14587:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14639:32;;1391:25:1;;;14639:32:0;;1364:18:1;14639:32:0;;;;;;;14299:380;;;:::o;14970:453::-;-1:-1:-1;;;;;10594:18:0;;;15105:24;10594:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;15172:37:0;;15168:248;;15254:6;15234:16;:26;;15226:68;;;;-1:-1:-1;;;15226:68:0;;4776:2:1;15226:68:0;;;4758:21:1;4815:2;4795:18;;;4788:30;4854:31;4834:18;;;4827:59;4903:18;;15226:68:0;4574:353:1;15226:68:0;15338:51;15347:5;15354:7;15382:6;15363:16;:25;15338:8;:51::i;:::-;15094:329;14970:453;;;:::o;12504:671::-;-1:-1:-1;;;;;12635:18:0;;12627:68;;;;-1:-1:-1;;;12627:68:0;;5134:2:1;12627:68:0;;;5116:21:1;5173:2;5153:18;;;5146:30;5212:34;5192:18;;;5185:62;-1:-1:-1;;;5263:18:1;;;5256:35;5308:19;;12627:68:0;4932:401:1;12627:68:0;-1:-1:-1;;;;;12714:16:0;;12706:64;;;;-1:-1:-1;;;12706:64:0;;5540:2:1;12706:64:0;;;5522:21:1;5579:2;5559:18;;;5552:30;5618:34;5598:18;;;5591:62;-1:-1:-1;;;5669:18:1;;;5662:33;5712:19;;12706:64:0;5338:399:1;12706:64:0;-1:-1:-1;;;;;12856:15:0;;12834:19;12856:15;;;:9;:15;;;;;;12890:21;;;;12882:72;;;;-1:-1:-1;;;12882:72:0;;5944:2:1;12882:72:0;;;5926:21:1;5983:2;5963:18;;;5956:30;6022:34;6002:18;;;5995:62;-1:-1:-1;;;6073:18:1;;;6066:36;6119:19;;12882:72:0;5742:402:1;12882:72:0;-1:-1:-1;;;;;12990:15:0;;;;;;;:9;:15;;;;;;13008:20;;;12990:38;;13050:13;;;;;;;;:23;;13022:6;;12990:15;13050:23;;13022:6;;13050:23;:::i;:::-;;;;;;;;13106:2;-1:-1:-1;;;;;13091:26:0;13100:4;-1:-1:-1;;;;;13091:26:0;;13110:6;13091:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;13091:26:0;;;;;;;;13130:37;16023:125;5917:191;5991:16;6010:6;;-1:-1:-1;;;;;6027:17:0;;;-1:-1:-1;;;;;;6027:17:0;;;;;;6060:40;;6010:6;;;;;;;6060:40;;5991:16;6060:40;5980:128;5917:191;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;6149:225::-;6189:3;6220:1;6216:6;6213:1;6210:13;6207:136;;;6265:10;6260:3;6256:20;6253:1;6246:31;6300:4;6297:1;6290:15;6328:4;6325:1;6318:15;6207:136;-1:-1:-1;6359:9:1;;6149:225::o

Swarm Source

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