ETH Price: $2,258.05 (-0.97%)
 

Overview

Max Total Supply

750,000,000 ESPRO

Holders

10 (0.00%)

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

Next generation of competitive gaming and sponsorship.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EsportsPro

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-05-19
*/

// File: node_modules\@openzeppelin\contracts\utils\Context.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin\contracts\access\Ownable.sol



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

// File: node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

// File: node_modules\@openzeppelin\contracts\math\SafeMath.sol



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin\contracts\token\ERC20\ERC20.sol



pragma solidity >=0.6.0 <0.8.0;




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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin\contracts\token\ERC20\ERC20Capped.sol



pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    using SafeMath for uint256;

    uint256 private _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor (uint256 cap_) internal {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - minted tokens must not cause the total supply to go over the cap.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) { // When minting tokens
            require(totalSupply().add(amount) <= cap(), "ERC20Capped: cap exceeded");
        }
    }
}

// File: @openzeppelin\contracts\token\ERC20\ERC20Burnable.sol



pragma solidity >=0.6.0 <0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

// File: contracts\token\EsportsPro.sol

// contracts/token/WrapperMachinecoin.sol

pragma solidity ^0.6.0;





contract EsportsPro is ERC20,
    ERC20Capped,
    ERC20Burnable,
    Ownable {

    constructor() public ERC20("EsportsPro", "ESPRO") ERC20Capped(1000000000 * (10**uint256(18))) {
        _setupDecimals(18);
        _mint(msg.sender, 1000000000 * (10**uint256(18)));
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function burn(address from, uint256 amount) public onlyOwner {
        _burn(from, amount);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override(ERC20, ERC20Capped) {
        super._beforeTokenTransfer(from, to, amount);
    }

}

Contract Security Audit

Contract ABI

API
[{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600a8152694573706f72747350726f60b01b602080830191825283518085019094526005845264455350524f60d81b9084015281516b033b2e3c9fd0803ce800000093916200006e9160039190620003ca565b50805162000084906004906020840190620003ca565b50506005805460ff191660121790555080620000e7576040805162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b6006556000620000f66200016e565b600780546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000150601262000172565b62000168336b033b2e3c9fd0803ce800000062000188565b62000466565b3390565b6005805460ff191660ff92909216919091179055565b6001600160a01b038216620001e4576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001f26000838362000297565b6200020e81600254620002b460201b620009f61790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000241918390620009f6620002b4821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620002af8383836200031660201b62000a571760201c565b505050565b6000828201838110156200030f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6200032e838383620002af60201b6200076b1760201c565b6001600160a01b038316620002af5762000347620003be565b6200036a8262000356620003c4565b620002b460201b620009f61790919060201c565b1115620002af576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b60065490565b60025490565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200040d57805160ff19168380011785556200043d565b828001600101855582156200043d579182015b828111156200043d57825182559160200191906001019062000420565b506200044b9291506200044f565b5090565b5b808211156200044b576000815560010162000450565b6111f780620004766000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad5780639dc29fac116100715780639dc29fac14610356578063a457c2d714610382578063a9059cbb146103ae578063dd62ed3e146103da578063f2fde38b1461040857610121565b806370a08231146102d0578063715018a6146102f657806379cc6790146102fe5780638da5cb5b1461032a57806395d89b411461034e57610121565b8063313ce567116100f4578063313ce56714610233578063355274ea14610251578063395093511461025957806340c10f191461028557806342966c68146102b357610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e61042e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b0381351690602001356104c4565b604080519115158252519081900360200190f35b6101eb6104e1565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b038135811691602081013590911690604001356104e7565b61023b61056e565b6040805160ff9092168252519081900360200190f35b6101eb610577565b6101cf6004803603604081101561026f57600080fd5b506001600160a01b03813516906020013561057d565b6102b16004803603604081101561029b57600080fd5b506001600160a01b0381351690602001356105cb565b005b6102b1600480360360208110156102c957600080fd5b503561063b565b6101eb600480360360208110156102e657600080fd5b50356001600160a01b031661064f565b6102b161066a565b6102b16004803603604081101561031457600080fd5b506001600160a01b038135169060200135610716565b610332610770565b604080516001600160a01b039092168252519081900360200190f35b61012e61077f565b6102b16004803603604081101561036c57600080fd5b506001600160a01b0381351690602001356107e0565b6101cf6004803603604081101561039857600080fd5b506001600160a01b03813516906020013561084c565b6101cf600480360360408110156103c457600080fd5b506001600160a01b0381351690602001356108b4565b6101eb600480360360408110156103f057600080fd5b506001600160a01b03813581169160200135166108c8565b6102b16004803603602081101561041e57600080fd5b50356001600160a01b03166108f3565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104d86104d1610add565b8484610ae1565b50600192915050565b60025490565b60006104f4848484610bcd565b61056484610500610add565b61055f856040518060600160405280602881526020016110c7602891396001600160a01b038a1660009081526001602052604081209061053e610add565b6001600160a01b031681526020810191909152604001600020549190610d28565b610ae1565b5060019392505050565b60055460ff1690565b60065490565b60006104d861058a610add565b8461055f856001600061059b610add565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906109f6565b6105d3610add565b6001600160a01b03166105e4610770565b6001600160a01b03161461062d576040805162461bcd60e51b815260206004820181905260248201526000805160206110ef833981519152604482015290519081900360640190fd5b6106378282610dbf565b5050565b61064c610646610add565b82610eaf565b50565b6001600160a01b031660009081526020819052604090205490565b610672610add565b6001600160a01b0316610683610770565b6001600160a01b0316146106cc576040805162461bcd60e51b815260206004820181905260248201526000805160206110ef833981519152604482015290519081900360640190fd5b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b600061074d8260405180606001604052806024815260200161110f6024913961074686610741610add565b6108c8565b9190610d28565b90506107618361075b610add565b83610ae1565b61076b8383610eaf565b505050565b6007546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b6107e8610add565b6001600160a01b03166107f9610770565b6001600160a01b031614610842576040805162461bcd60e51b815260206004820181905260248201526000805160206110ef833981519152604482015290519081900360640190fd5b6106378282610eaf565b60006104d8610859610add565b8461055f8560405180606001604052806025815260200161119d6025913960016000610883610add565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610d28565b60006104d86108c1610add565b8484610bcd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6108fb610add565b6001600160a01b031661090c610770565b6001600160a01b031614610955576040805162461bcd60e51b815260206004820181905260248201526000805160206110ef833981519152604482015290519081900360640190fd5b6001600160a01b03811661099a5760405162461bcd60e51b81526004018080602001828103825260268152602001806110596026913960400191505060405180910390fd5b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610a50576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b610a6283838361076b565b6001600160a01b03831661076b57610a78610577565b610a8a82610a846104e1565b906109f6565b111561076b576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b3390565b6001600160a01b038316610b265760405162461bcd60e51b81526004018080602001828103825260248152602001806111796024913960400191505060405180910390fd5b6001600160a01b038216610b6b5760405162461bcd60e51b815260040180806020018281038252602281526020018061107f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610c125760405162461bcd60e51b81526004018080602001828103825260258152602001806111546025913960400191505060405180910390fd5b6001600160a01b038216610c575760405162461bcd60e51b81526004018080602001828103825260238152602001806110146023913960400191505060405180910390fd5b610c62838383610fab565b610c9f816040518060600160405280602681526020016110a1602691396001600160a01b0386166000908152602081905260409020549190610d28565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610cce90826109f6565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610db75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d7c578181015183820152602001610d64565b50505050905090810190601f168015610da95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216610e1a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610e2660008383610fab565b600254610e3390826109f6565b6002556001600160a01b038216600090815260208190526040902054610e5990826109f6565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610ef45760405162461bcd60e51b81526004018080602001828103825260218152602001806111336021913960400191505060405180910390fd5b610f0082600083610fab565b610f3d81604051806060016040528060228152602001611037602291396001600160a01b0385166000908152602081905260409020549190610d28565b6001600160a01b038316600090815260208190526040902055600254610f639082610fb6565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b61076b838383610a57565b60008282111561100d576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e48c8eeefff0faddbad81c0ec41116429af4e84586d2d4749ad34c84e493fa7564736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad5780639dc29fac116100715780639dc29fac14610356578063a457c2d714610382578063a9059cbb146103ae578063dd62ed3e146103da578063f2fde38b1461040857610121565b806370a08231146102d0578063715018a6146102f657806379cc6790146102fe5780638da5cb5b1461032a57806395d89b411461034e57610121565b8063313ce567116100f4578063313ce56714610233578063355274ea14610251578063395093511461025957806340c10f191461028557806342966c68146102b357610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e61042e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b0381351690602001356104c4565b604080519115158252519081900360200190f35b6101eb6104e1565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b038135811691602081013590911690604001356104e7565b61023b61056e565b6040805160ff9092168252519081900360200190f35b6101eb610577565b6101cf6004803603604081101561026f57600080fd5b506001600160a01b03813516906020013561057d565b6102b16004803603604081101561029b57600080fd5b506001600160a01b0381351690602001356105cb565b005b6102b1600480360360208110156102c957600080fd5b503561063b565b6101eb600480360360208110156102e657600080fd5b50356001600160a01b031661064f565b6102b161066a565b6102b16004803603604081101561031457600080fd5b506001600160a01b038135169060200135610716565b610332610770565b604080516001600160a01b039092168252519081900360200190f35b61012e61077f565b6102b16004803603604081101561036c57600080fd5b506001600160a01b0381351690602001356107e0565b6101cf6004803603604081101561039857600080fd5b506001600160a01b03813516906020013561084c565b6101cf600480360360408110156103c457600080fd5b506001600160a01b0381351690602001356108b4565b6101eb600480360360408110156103f057600080fd5b506001600160a01b03813581169160200135166108c8565b6102b16004803603602081101561041e57600080fd5b50356001600160a01b03166108f3565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104d86104d1610add565b8484610ae1565b50600192915050565b60025490565b60006104f4848484610bcd565b61056484610500610add565b61055f856040518060600160405280602881526020016110c7602891396001600160a01b038a1660009081526001602052604081209061053e610add565b6001600160a01b031681526020810191909152604001600020549190610d28565b610ae1565b5060019392505050565b60055460ff1690565b60065490565b60006104d861058a610add565b8461055f856001600061059b610add565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906109f6565b6105d3610add565b6001600160a01b03166105e4610770565b6001600160a01b03161461062d576040805162461bcd60e51b815260206004820181905260248201526000805160206110ef833981519152604482015290519081900360640190fd5b6106378282610dbf565b5050565b61064c610646610add565b82610eaf565b50565b6001600160a01b031660009081526020819052604090205490565b610672610add565b6001600160a01b0316610683610770565b6001600160a01b0316146106cc576040805162461bcd60e51b815260206004820181905260248201526000805160206110ef833981519152604482015290519081900360640190fd5b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b600061074d8260405180606001604052806024815260200161110f6024913961074686610741610add565b6108c8565b9190610d28565b90506107618361075b610add565b83610ae1565b61076b8383610eaf565b505050565b6007546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b6107e8610add565b6001600160a01b03166107f9610770565b6001600160a01b031614610842576040805162461bcd60e51b815260206004820181905260248201526000805160206110ef833981519152604482015290519081900360640190fd5b6106378282610eaf565b60006104d8610859610add565b8461055f8560405180606001604052806025815260200161119d6025913960016000610883610add565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610d28565b60006104d86108c1610add565b8484610bcd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6108fb610add565b6001600160a01b031661090c610770565b6001600160a01b031614610955576040805162461bcd60e51b815260206004820181905260248201526000805160206110ef833981519152604482015290519081900360640190fd5b6001600160a01b03811661099a5760405162461bcd60e51b81526004018080602001828103825260268152602001806110596026913960400191505060405180910390fd5b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610a50576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b610a6283838361076b565b6001600160a01b03831661076b57610a78610577565b610a8a82610a846104e1565b906109f6565b111561076b576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b3390565b6001600160a01b038316610b265760405162461bcd60e51b81526004018080602001828103825260248152602001806111796024913960400191505060405180910390fd5b6001600160a01b038216610b6b5760405162461bcd60e51b815260040180806020018281038252602281526020018061107f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610c125760405162461bcd60e51b81526004018080602001828103825260258152602001806111546025913960400191505060405180910390fd5b6001600160a01b038216610c575760405162461bcd60e51b81526004018080602001828103825260238152602001806110146023913960400191505060405180910390fd5b610c62838383610fab565b610c9f816040518060600160405280602681526020016110a1602691396001600160a01b0386166000908152602081905260409020549190610d28565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610cce90826109f6565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610db75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d7c578181015183820152602001610d64565b50505050905090810190601f168015610da95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216610e1a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610e2660008383610fab565b600254610e3390826109f6565b6002556001600160a01b038216600090815260208190526040902054610e5990826109f6565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610ef45760405162461bcd60e51b81526004018080602001828103825260218152602001806111336021913960400191505060405180910390fd5b610f0082600083610fab565b610f3d81604051806060016040528060228152602001611037602291396001600160a01b0385166000908152602081905260409020549190610d28565b6001600160a01b038316600090815260208190526040902055600254610f639082610fb6565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b61076b838383610a57565b60008282111561100d576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e48c8eeefff0faddbad81c0ec41116429af4e84586d2d4749ad34c84e493fa7564736f6c634300060c0033

Deployed Bytecode Sourcemap

27283:719:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15819:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17965:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17965:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;16918:108;;;:::i;:::-;;;;;;;;;;;;;;;;18616:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18616:321:0;;;;;;;;;;;;;;;;;:::i;16762:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25329:83;;;:::i;19346:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19346:218:0;;;;;;;;:::i;27572:95::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27572:95:0;;;;;;;;:::i;:::-;;26448:91;;;;;;;;;;;;;;;;-1:-1:-1;26448:91:0;;:::i;17089:127::-;;;;;;;;;;;;;;;;-1:-1:-1;17089:127:0;-1:-1:-1;;;;;17089:127:0;;:::i;2796:148::-;;;:::i;26858:295::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26858:295:0;;;;;;;;:::i;2145:87::-;;;:::i;:::-;;;;-1:-1:-1;;;;;2145:87:0;;;;;;;;;;;;;;16029:95;;;:::i;27675:99::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27675:99:0;;;;;;;;:::i;20067:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20067:269:0;;;;;;;;:::i;17429:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17429:175:0;;;;;;;;:::i;17667:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17667:151:0;;;;;;;;;;:::i;3099:244::-;;;;;;;;;;;;;;;;-1:-1:-1;3099:244:0;-1:-1:-1;;;;;3099:244:0;;:::i;15819:91::-;15897:5;15890:12;;;;;;;;-1:-1:-1;;15890:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15864:13;;15890:12;;15897:5;;15890:12;;15897:5;15890:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15819:91;:::o;17965:169::-;18048:4;18065:39;18074:12;:10;:12::i;:::-;18088:7;18097:6;18065:8;:39::i;:::-;-1:-1:-1;18122:4:0;17965:169;;;;:::o;16918:108::-;17006:12;;16918:108;:::o;18616:321::-;18722:4;18739:36;18749:6;18757:9;18768:6;18739:9;:36::i;:::-;18786:121;18795:6;18803:12;:10;:12::i;:::-;18817:89;18855:6;18817:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18817:19:0;;;;;;:11;:19;;;;;;18837:12;:10;:12::i;:::-;-1:-1:-1;;;;;18817:33:0;;;;;;;;;;;;-1:-1:-1;18817:33:0;;;:89;:37;:89::i;:::-;18786:8;:121::i;:::-;-1:-1:-1;18925:4:0;18616:321;;;;;:::o;16762:91::-;16836:9;;;;16762:91;:::o;25329:83::-;25400:4;;25329:83;:::o;19346:218::-;19434:4;19451:83;19460:12;:10;:12::i;:::-;19474:7;19483:50;19522:10;19483:11;:25;19495:12;:10;:12::i;:::-;-1:-1:-1;;;;;19483:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19483:25:0;;;:34;;;;;;;;;;;:38;:50::i;27572:95::-;2376:12;:10;:12::i;:::-;-1:-1:-1;;;;;2365:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2365:23:0;;2357:68;;;;;-1:-1:-1;;;2357:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2357:68:0;;;;;;;;;;;;;;;27642:17:::1;27648:2;27652:6;27642:5;:17::i;:::-;27572:95:::0;;:::o;26448:91::-;26504:27;26510:12;:10;:12::i;:::-;26524:6;26504:5;:27::i;:::-;26448:91;:::o;17089:127::-;-1:-1:-1;;;;;17190:18:0;17163:7;17190:18;;;;;;;;;;;;17089:127::o;2796:148::-;2376:12;:10;:12::i;:::-;-1:-1:-1;;;;;2365:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2365:23:0;;2357:68;;;;;-1:-1:-1;;;2357:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2357:68:0;;;;;;;;;;;;;;;2887:6:::1;::::0;2866:40:::1;::::0;2903:1:::1;::::0;-1:-1:-1;;;;;2887:6:0::1;::::0;2866:40:::1;::::0;2903:1;;2866:40:::1;2917:6;:19:::0;;-1:-1:-1;;;;;;2917:19:0::1;::::0;;2796:148::o;26858:295::-;26935:26;26964:84;27001:6;26964:84;;;;;;;;;;;;;;;;;:32;26974:7;26983:12;:10;:12::i;:::-;26964:9;:32::i;:::-;:36;:84;:36;:84::i;:::-;26935:113;;27061:51;27070:7;27079:12;:10;:12::i;:::-;27093:18;27061:8;:51::i;:::-;27123:22;27129:7;27138:6;27123:5;:22::i;:::-;26858:295;;;:::o;2145:87::-;2218:6;;-1:-1:-1;;;;;2218:6:0;2145:87;:::o;16029:95::-;16109:7;16102:14;;;;;;;;-1:-1:-1;;16102:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16076:13;;16102:14;;16109:7;;16102:14;;16109:7;16102:14;;;;;;;;;;;;;;;;;;;;;;;;27675:99;2376:12;:10;:12::i;:::-;-1:-1:-1;;;;;2365:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2365:23:0;;2357:68;;;;;-1:-1:-1;;;2357:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2357:68:0;;;;;;;;;;;;;;;27747:19:::1;27753:4;27759:6;27747:5;:19::i;20067:269::-:0;20160:4;20177:129;20186:12;:10;:12::i;:::-;20200:7;20209:96;20248:15;20209:96;;;;;;;;;;;;;;;;;:11;:25;20221:12;:10;:12::i;:::-;-1:-1:-1;;;;;20209:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20209:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17429:175::-;17515:4;17532:42;17542:12;:10;:12::i;:::-;17556:9;17567:6;17532:9;:42::i;17667:151::-;-1:-1:-1;;;;;17783:18:0;;;17756:7;17783:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17667:151::o;3099:244::-;2376:12;:10;:12::i;:::-;-1:-1:-1;;;;;2365:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2365:23:0;;2357:68;;;;;-1:-1:-1;;;2357:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2357:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3188:22:0;::::1;3180:73;;;;-1:-1:-1::0;;;3180:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3290:6;::::0;3269:38:::1;::::0;-1:-1:-1;;;;;3269:38:0;;::::1;::::0;3290:6:::1;::::0;3269:38:::1;::::0;3290:6:::1;::::0;3269:38:::1;3318:6;:17:::0;;-1:-1:-1;;;;;;3318:17:0::1;-1:-1:-1::0;;;;;3318:17:0;;;::::1;::::0;;;::::1;::::0;;3099:244::o;8984:179::-;9042:7;9074:5;;;9098:6;;;;9090:46;;;;;-1:-1:-1;;;9090:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9154:1;8984:179;-1:-1:-1;;;8984:179:0:o;25599:319::-;25708:44;25735:4;25741:2;25745:6;25708:26;:44::i;:::-;-1:-1:-1;;;;;25769:18:0;;25765:146;;25864:5;:3;:5::i;:::-;25835:25;25853:6;25835:13;:11;:13::i;:::-;:17;;:25::i;:::-;:34;;25827:72;;;;;-1:-1:-1;;;25827:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;680:106;768:10;680:106;:::o;23214:346::-;-1:-1:-1;;;;;23316:19:0;;23308:68;;;;-1:-1:-1;;;23308:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23395:21:0;;23387:68;;;;-1:-1:-1;;;23387:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23468:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23520:32;;;;;;;;;;;;;;;;;23214:346;;;:::o;20826:539::-;-1:-1:-1;;;;;20932:20:0;;20924:70;;;;-1:-1:-1;;;20924:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21013:23:0;;21005:71;;;;-1:-1:-1;;;21005:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21089:47;21110:6;21118:9;21129:6;21089:20;:47::i;:::-;21169:71;21191:6;21169:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21169:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;21149:17:0;;;:9;:17;;;;;;;;;;;:91;;;;21274:20;;;;;;;:32;;21299:6;21274:24;:32::i;:::-;-1:-1:-1;;;;;21251:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;21322:35;;;;;;;21251:20;;21322:35;;;;;;;;;;;;;20826:539;;;:::o;11811:166::-;11897:7;11933:12;11925:6;;;;11917:29;;;;-1:-1:-1;;;11917:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11964:5:0;;;11811:166::o;21647:378::-;-1:-1:-1;;;;;21731:21:0;;21723:65;;;;;-1:-1:-1;;;21723:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21801:49;21830:1;21834:7;21843:6;21801:20;:49::i;:::-;21878:12;;:24;;21895:6;21878:16;:24::i;:::-;21863:12;:39;-1:-1:-1;;;;;21934:18:0;;:9;:18;;;;;;;;;;;:30;;21957:6;21934:22;:30::i;:::-;-1:-1:-1;;;;;21913:18:0;;:9;:18;;;;;;;;;;;:51;;;;21980:37;;;;;;;21913:18;;:9;;21980:37;;;;;;;;;;21647:378;;:::o;22358:418::-;-1:-1:-1;;;;;22442:21:0;;22434:67;;;;-1:-1:-1;;;22434:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22514:49;22535:7;22552:1;22556:6;22514:20;:49::i;:::-;22597:68;22620:6;22597:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22597:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;22576:18:0;;:9;:18;;;;;;;;;;:89;22691:12;;:24;;22708:6;22691:16;:24::i;:::-;22676:12;:39;22731:37;;;;;;;;22757:1;;-1:-1:-1;;;;;22731:37:0;;;;;;;;;;;;22358:418;;:::o;27782:215::-;27945:44;27972:4;27978:2;27982:6;27945:26;:44::i;9446:158::-;9504:7;9537:1;9532;:6;;9524:49;;;;;-1:-1:-1;;;9524:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9591:5:0;;;9446:158::o

Swarm Source

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