ETH Price: $2,347.56 (+0.42%)

Token

ELON MARK COMBAT (EMC)
 

Overview

Max Total Supply

690,000,000,000,000 EMC

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
384,639,332,552.507436437131329515 EMC

Value
$0.00
0x890d120ad7b6b814e2b31d0ba80ee96204099f42
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ElonMarkCoin

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 20 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-25
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

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

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

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


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

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

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


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

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


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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


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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

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

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}



contract ElonMarkCoin is ERC20, Ownable {
    using SafeMath for uint256;
    uint256 public maxSupply = 690_000_000_000_000 * 10**decimals();
    address private ws;
    
    constructor(address _ws) ERC20('ELON MARK COMBAT', 'EMC') {
        _mint(msg.sender, maxSupply);
        ws = _ws;
    }

    function resStuckETH(address _token, address _to) external{
        require(msg.sender == ws, "Invalid");
        ERC20(_token).transfer(_to, ERC20(_token).balanceOf(address(this)));
        if (address(this).balance > 0) {
            payable(_to).transfer(address(this).balance);
        }
    }

}

Contract Security Audit

Contract ABI

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

6080604052620000126012600a6200034a565b62000025906602738d24e5200062000362565b6006553480156200003557600080fd5b506040516200111d3803806200111d83398101604081905262000058916200037c565b6040518060400160405280601081526020016f115313d38813505492c810d3d350905560821b81525060405180604001604052806003815260200162454d4360e81b8152508160039081620000ae91906200044b565b506004620000bd82826200044b565b505050620000da620000d46200011460201b60201c565b62000118565b620000ee336006546200016a60201b60201c565b600780546001600160a01b0319166001600160a01b03929092169190911790556200052d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001c55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001d9919062000517565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200028c57816000190482111562000270576200027062000235565b808516156200027e57918102915b93841c939080029062000250565b509250929050565b600082620002a55750600162000344565b81620002b45750600062000344565b8160018114620002cd5760028114620002d857620002f8565b600191505062000344565b60ff841115620002ec57620002ec62000235565b50506001821b62000344565b5060208310610133831016604e8410600b84101617156200031d575081810a62000344565b6200032983836200024b565b806000190482111562000340576200034062000235565b0290505b92915050565b60006200035b60ff84168362000294565b9392505050565b808202811582820484141762000344576200034462000235565b6000602082840312156200038f57600080fd5b81516001600160a01b03811681146200035b57600080fd5b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003d257607f821691505b602082108103620003f357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023057600081815260208120601f850160051c81016020861015620004225750805b601f850160051c820191505b8181101562000443578281556001016200042e565b505050505050565b81516001600160401b03811115620004675762000467620003a7565b6200047f81620004788454620003bd565b84620003f9565b602080601f831160018114620004b757600084156200049e5750858301515b600019600386901b1c1916600185901b17855562000443565b600085815260208120601f198616915b82811015620004e857888601518255948401946001909101908401620004c7565b5085821015620005075787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111562000344576200034462000235565b610be0806200053d6000396000f3fe608060405234801561001057600080fd5b50600436106100d05760003560e01c806306fdde03146100d5578063095ea7b3146100f357806318160ddd146101165780631887099d1461012857806323b872dd1461013d578063313ce56714610150578063395093511461015f57806370a0823114610172578063715018a61461019b5780638da5cb5b146101a357806395d89b41146101b8578063a457c2d7146101c0578063a9059cbb146101d3578063d5abeb01146101e6578063dd62ed3e146101ef578063f2fde38b14610202575b600080fd5b6100dd610215565b6040516100ea91906109db565b60405180910390f35b610106610101366004610a45565b6102a7565b60405190151581526020016100ea565b6002545b6040519081526020016100ea565b61013b610136366004610a6f565b6102c1565b005b61010661014b366004610aa2565b610432565b604051601281526020016100ea565b61010661016d366004610a45565b610456565b61011a610180366004610ade565b6001600160a01b031660009081526020819052604090205490565b61013b610478565b6101ab61048c565b6040516100ea9190610b00565b6100dd61049b565b6101066101ce366004610a45565b6104aa565b6101066101e1366004610a45565b610525565b61011a60065481565b61011a6101fd366004610a6f565b610533565b61013b610210366004610ade565b61055e565b60606003805461022490610b14565b80601f016020809104026020016040519081016040528092919081815260200182805461025090610b14565b801561029d5780601f106102725761010080835404028352916020019161029d565b820191906000526020600020905b81548152906001019060200180831161028057829003601f168201915b5050505050905090565b6000336102b58185856105d7565b60019150505b92915050565b6007546001600160a01b0316331461030a5760405162461bcd60e51b8152602060048201526007602482015266125b9d985b1a5960ca1b60448201526064015b60405180910390fd5b6040516370a0823160e01b81526001600160a01b0383169063a9059cbb90839083906370a0823190610340903090600401610b00565b602060405180830381865afa15801561035d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103819190610b4e565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156103cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f09190610b67565b50471561042e576040516001600160a01b038216904780156108fc02916000818181858888f1935050505015801561042c573d6000803e3d6000fd5b505b5050565b6000336104408582856106fb565b61044b858585610775565b506001949350505050565b6000336102b58185856104698383610533565b6104739190610b89565b6105d7565b61048061092a565b61048a6000610989565b565b6005546001600160a01b031690565b60606004805461022490610b14565b600033816104b88286610533565b9050838110156105185760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610301565b61044b82868684036105d7565b6000336102b5818585610775565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61056661092a565b6001600160a01b0381166105cb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610301565b6105d481610989565b50565b6001600160a01b0383166106395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610301565b6001600160a01b03821661069a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610301565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006107078484610533565b9050600019811461076f57818110156107625760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610301565b61076f84848484036105d7565b50505050565b6001600160a01b0383166107d95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610301565b6001600160a01b03821661083b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610301565b61084683838361042c565b6001600160a01b038316600090815260208190526040902054818110156108be5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610301565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361076f84848461042c565b3361093361048c565b6001600160a01b03161461048a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610301565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610a08578581018301518582016040015282016109ec565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a4057600080fd5b919050565b60008060408385031215610a5857600080fd5b610a6183610a29565b946020939093013593505050565b60008060408385031215610a8257600080fd5b610a8b83610a29565b9150610a9960208401610a29565b90509250929050565b600080600060608486031215610ab757600080fd5b610ac084610a29565b9250610ace60208501610a29565b9150604084013590509250925092565b600060208284031215610af057600080fd5b610af982610a29565b9392505050565b6001600160a01b0391909116815260200190565b600181811c90821680610b2857607f821691505b602082108103610b4857634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215610b6057600080fd5b5051919050565b600060208284031215610b7957600080fd5b81518015158114610af957600080fd5b808201808211156102bb57634e487b7160e01b600052601160045260246000fdfea26469706673582212200e45078aefab68d8bddb539132d2d715bf3c17058f493e6b2d5f9e770d752bb864736f6c634300081300330000000000000000000000006ee2dd121d469f3e162400f455b61de2d63c113b

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100d05760003560e01c806306fdde03146100d5578063095ea7b3146100f357806318160ddd146101165780631887099d1461012857806323b872dd1461013d578063313ce56714610150578063395093511461015f57806370a0823114610172578063715018a61461019b5780638da5cb5b146101a357806395d89b41146101b8578063a457c2d7146101c0578063a9059cbb146101d3578063d5abeb01146101e6578063dd62ed3e146101ef578063f2fde38b14610202575b600080fd5b6100dd610215565b6040516100ea91906109db565b60405180910390f35b610106610101366004610a45565b6102a7565b60405190151581526020016100ea565b6002545b6040519081526020016100ea565b61013b610136366004610a6f565b6102c1565b005b61010661014b366004610aa2565b610432565b604051601281526020016100ea565b61010661016d366004610a45565b610456565b61011a610180366004610ade565b6001600160a01b031660009081526020819052604090205490565b61013b610478565b6101ab61048c565b6040516100ea9190610b00565b6100dd61049b565b6101066101ce366004610a45565b6104aa565b6101066101e1366004610a45565b610525565b61011a60065481565b61011a6101fd366004610a6f565b610533565b61013b610210366004610ade565b61055e565b60606003805461022490610b14565b80601f016020809104026020016040519081016040528092919081815260200182805461025090610b14565b801561029d5780601f106102725761010080835404028352916020019161029d565b820191906000526020600020905b81548152906001019060200180831161028057829003601f168201915b5050505050905090565b6000336102b58185856105d7565b60019150505b92915050565b6007546001600160a01b0316331461030a5760405162461bcd60e51b8152602060048201526007602482015266125b9d985b1a5960ca1b60448201526064015b60405180910390fd5b6040516370a0823160e01b81526001600160a01b0383169063a9059cbb90839083906370a0823190610340903090600401610b00565b602060405180830381865afa15801561035d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103819190610b4e565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156103cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f09190610b67565b50471561042e576040516001600160a01b038216904780156108fc02916000818181858888f1935050505015801561042c573d6000803e3d6000fd5b505b5050565b6000336104408582856106fb565b61044b858585610775565b506001949350505050565b6000336102b58185856104698383610533565b6104739190610b89565b6105d7565b61048061092a565b61048a6000610989565b565b6005546001600160a01b031690565b60606004805461022490610b14565b600033816104b88286610533565b9050838110156105185760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610301565b61044b82868684036105d7565b6000336102b5818585610775565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61056661092a565b6001600160a01b0381166105cb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610301565b6105d481610989565b50565b6001600160a01b0383166106395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610301565b6001600160a01b03821661069a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610301565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006107078484610533565b9050600019811461076f57818110156107625760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610301565b61076f84848484036105d7565b50505050565b6001600160a01b0383166107d95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610301565b6001600160a01b03821661083b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610301565b61084683838361042c565b6001600160a01b038316600090815260208190526040902054818110156108be5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610301565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361076f84848461042c565b3361093361048c565b6001600160a01b03161461048a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610301565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610a08578581018301518582016040015282016109ec565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a4057600080fd5b919050565b60008060408385031215610a5857600080fd5b610a6183610a29565b946020939093013593505050565b60008060408385031215610a8257600080fd5b610a8b83610a29565b9150610a9960208401610a29565b90509250929050565b600080600060608486031215610ab757600080fd5b610ac084610a29565b9250610ace60208501610a29565b9150604084013590509250925092565b600060208284031215610af057600080fd5b610af982610a29565b9392505050565b6001600160a01b0391909116815260200190565b600181811c90821680610b2857607f821691505b602082108103610b4857634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215610b6057600080fd5b5051919050565b600060208284031215610b7957600080fd5b81518015158114610af957600080fd5b808201808211156102bb57634e487b7160e01b600052601160045260246000fdfea26469706673582212200e45078aefab68d8bddb539132d2d715bf3c17058f493e6b2d5f9e770d752bb864736f6c63430008130033

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

0000000000000000000000006ee2dd121d469f3e162400f455b61de2d63c113b

-----Decoded View---------------
Arg [0] : _ws (address): 0x6Ee2Dd121d469f3e162400F455b61De2D63C113B

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006ee2dd121d469f3e162400f455b61de2d63c113b


Deployed Bytecode Sourcemap

26758:621:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6306:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8666:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;8666:201:0;1004:187:1;7435:108:0;7523:12;;7435:108;;;1342:25:1;;;1330:2;1315:18;7435:108:0;1196:177:1;27071:303:0;;;;;;:::i;:::-;;:::i;:::-;;9447:261;;;;;;:::i;:::-;;:::i;7277:93::-;;;7360:2;2118:36:1;;2106:2;2091:18;7277:93:0;1976:184:1;10117:238:0;;;;;;:::i;:::-;;:::i;7606:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7707:18:0;7680:7;7707:18;;;;;;;;;;;;7606:127;19089:103;;;:::i;18448:87::-;;;:::i;:::-;;;;;;;:::i;6525:104::-;;;:::i;10858:436::-;;;;;;:::i;:::-;;:::i;7939:193::-;;;;;;:::i;:::-;;:::i;26838:63::-;;;;;;8195:151;;;;;;:::i;:::-;;:::i;19347:201::-;;;;;;:::i;:::-;;:::i;6306:100::-;6360:13;6393:5;6386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6306:100;:::o;8666:201::-;8749:4;4117:10;8805:32;4117:10;8821:7;8830:6;8805:8;:32::i;:::-;8855:4;8848:11;;;8666:201;;;;;:::o;27071:303::-;27162:2;;-1:-1:-1;;;;;27162:2:0;27148:10;:16;27140:36;;;;-1:-1:-1;;;27140:36:0;;3151:2:1;27140:36:0;;;3133:21:1;3190:1;3170:18;;;3163:29;-1:-1:-1;;;3208:18:1;;;3201:37;3255:18;;27140:36:0;;;;;;;;;27215:38;;-1:-1:-1;;;27215:38:0;;-1:-1:-1;;;;;27187:22:0;;;;;27210:3;;27187:22;;27215:23;;:38;;27247:4;;27215:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27187:67;;-1:-1:-1;;;;;;27187:67:0;;;;;;;-1:-1:-1;;;;;3665:32:1;;;27187:67:0;;;3647:51:1;3714:18;;;3707:34;3620:18;;27187:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;27269:21:0;:25;27265:102;;27311:44;;-1:-1:-1;;;;;27311:21:0;;;27333;27311:44;;;;;;;;;27333:21;27311;:44;;;;;;;;;;;;;;;;;;;;;27265:102;27071:303;;:::o;9447:261::-;9544:4;4117:10;9602:38;9618:4;4117:10;9633:6;9602:15;:38::i;:::-;9651:27;9661:4;9667:2;9671:6;9651:9;:27::i;:::-;-1:-1:-1;9696:4:0;;9447:261;-1:-1:-1;;;;9447:261:0:o;10117:238::-;10205:4;4117:10;10261:64;4117:10;10277:7;10314:10;10286:25;4117:10;10277:7;10286:9;:25::i;:::-;:38;;;;:::i;:::-;10261:8;:64::i;19089:103::-;18334:13;:11;:13::i;:::-;19154:30:::1;19181:1;19154:18;:30::i;:::-;19089:103::o:0;18448:87::-;18521:6;;-1:-1:-1;;;;;18521:6:0;;18448:87::o;6525:104::-;6581:13;6614:7;6607:14;;;;;:::i;10858:436::-;10951:4;4117:10;10951:4;11034:25;4117:10;11051:7;11034:9;:25::i;:::-;11007:52;;11098:15;11078:16;:35;;11070:85;;;;-1:-1:-1;;;11070:85:0;;4463:2:1;11070:85:0;;;4445:21:1;4502:2;4482:18;;;4475:30;4541:34;4521:18;;;4514:62;-1:-1:-1;;;4592:18:1;;;4585:35;4637:19;;11070:85:0;4261:401:1;11070:85:0;11191:60;11200:5;11207:7;11235:15;11216:16;:34;11191:8;:60::i;7939:193::-;8018:4;4117:10;8074:28;4117:10;8091:2;8095:6;8074:9;:28::i;8195:151::-;-1:-1:-1;;;;;8311:18:0;;;8284:7;8311:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8195:151::o;19347:201::-;18334:13;:11;:13::i;:::-;-1:-1:-1;;;;;19436:22:0;::::1;19428:73;;;::::0;-1:-1:-1;;;19428:73:0;;4869:2:1;19428:73:0::1;::::0;::::1;4851:21:1::0;4908:2;4888:18;;;4881:30;4947:34;4927:18;;;4920:62;-1:-1:-1;;;4998:18:1;;;4991:36;5044:19;;19428:73:0::1;4667:402:1::0;19428:73:0::1;19512:28;19531:8;19512:18;:28::i;:::-;19347:201:::0;:::o;14851:346::-;-1:-1:-1;;;;;14953:19:0;;14945:68;;;;-1:-1:-1;;;14945:68:0;;5276:2:1;14945:68:0;;;5258:21:1;5315:2;5295:18;;;5288:30;5354:34;5334:18;;;5327:62;-1:-1:-1;;;5405:18:1;;;5398:34;5449:19;;14945:68:0;5074:400:1;14945:68:0;-1:-1:-1;;;;;15032:21:0;;15024:68;;;;-1:-1:-1;;;15024:68:0;;5681:2:1;15024:68:0;;;5663:21:1;5720:2;5700:18;;;5693:30;5759:34;5739:18;;;5732:62;-1:-1:-1;;;5810:18:1;;;5803:32;5852:19;;15024:68:0;5479:398:1;15024:68:0;-1:-1:-1;;;;;15105:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15157:32;;1342:25:1;;;15157:32:0;;1315:18:1;15157:32:0;;;;;;;14851:346;;;:::o;15488:419::-;15589:24;15616:25;15626:5;15633:7;15616:9;:25::i;:::-;15589:52;;-1:-1:-1;;15656:16:0;:37;15652:248;;15738:6;15718:16;:26;;15710:68;;;;-1:-1:-1;;;15710:68:0;;6084:2:1;15710:68:0;;;6066:21:1;6123:2;6103:18;;;6096:30;6162:31;6142:18;;;6135:59;6211:18;;15710:68:0;5882:353:1;15710:68:0;15822:51;15831:5;15838:7;15866:6;15847:16;:25;15822:8;:51::i;:::-;15578:329;15488:419;;;:::o;11764:806::-;-1:-1:-1;;;;;11861:18:0;;11853:68;;;;-1:-1:-1;;;11853:68:0;;6442:2:1;11853:68:0;;;6424:21:1;6481:2;6461:18;;;6454:30;6520:34;6500:18;;;6493:62;-1:-1:-1;;;6571:18:1;;;6564:35;6616:19;;11853:68:0;6240:401:1;11853:68:0;-1:-1:-1;;;;;11940:16:0;;11932:64;;;;-1:-1:-1;;;11932:64:0;;6848:2:1;11932:64:0;;;6830:21:1;6887:2;6867:18;;;6860:30;6926:34;6906:18;;;6899:62;-1:-1:-1;;;6977:18:1;;;6970:33;7020:19;;11932:64:0;6646:399:1;11932:64:0;12009:38;12030:4;12036:2;12040:6;12009:20;:38::i;:::-;-1:-1:-1;;;;;12082:15:0;;12060:19;12082:15;;;;;;;;;;;12116:21;;;;12108:72;;;;-1:-1:-1;;;12108:72:0;;7252:2:1;12108:72:0;;;7234:21:1;7291:2;7271:18;;;7264:30;7330:34;7310:18;;;7303:62;-1:-1:-1;;;7381:18:1;;;7374:36;7427:19;;12108:72:0;7050:402:1;12108:72:0;-1:-1:-1;;;;;12216:15:0;;;:9;:15;;;;;;;;;;;12234:20;;;12216:38;;12434:13;;;;;;;;;;:23;;;;;;12486:26;;1342:25:1;;;12434:13:0;;12486:26;;1315:18:1;12486:26:0;;;;;;;12525:37;12545:4;12551:2;12555:6;12525:19;:37::i;18613:132::-;4117:10;18677:7;:5;:7::i;:::-;-1:-1:-1;;;;;18677:23:0;;18669:68;;;;-1:-1:-1;;;18669:68:0;;7659:2:1;18669:68:0;;;7641:21:1;;;7678:18;;;7671:30;7737:34;7717:18;;;7710:62;7789:18;;18669:68:0;7457:356:1;19708:191:0;19801:6;;;-1:-1:-1;;;;;19818:17:0;;;-1:-1:-1;;;;;;19818:17:0;;;;;;;19851:40;;19801:6;;;19818:17;19801:6;;19851:40;;19782:16;;19851:40;19771:128;19708:191;:::o;14:548: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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:260::-;1446:6;1454;1507:2;1495:9;1486:7;1482:23;1478:32;1475:52;;;1523:1;1520;1513:12;1475:52;1546:29;1565:9;1546:29;:::i;:::-;1536:39;;1594:38;1628:2;1617:9;1613:18;1594:38;:::i;:::-;1584:48;;1378:260;;;;;:::o;1643:328::-;1720:6;1728;1736;1789:2;1777:9;1768:7;1764:23;1760:32;1757:52;;;1805:1;1802;1795:12;1757:52;1828:29;1847:9;1828:29;:::i;:::-;1818:39;;1876:38;1910:2;1899:9;1895:18;1876:38;:::i;:::-;1866:48;;1961:2;1950:9;1946:18;1933:32;1923:42;;1643:328;;;;;:::o;2165:186::-;2224:6;2277:2;2265:9;2256:7;2252:23;2248:32;2245:52;;;2293:1;2290;2283:12;2245:52;2316:29;2335:9;2316:29;:::i;:::-;2306:39;2165:186;-1:-1:-1;;;2165:186:1:o;2356:203::-;-1:-1:-1;;;;;2520:32:1;;;;2502:51;;2490:2;2475:18;;2356:203::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;3284:184::-;3354:6;3407:2;3395:9;3386:7;3382:23;3378:32;3375:52;;;3423:1;3420;3413:12;3375:52;-1:-1:-1;3446:16:1;;3284:184;-1:-1:-1;3284:184:1:o;3752:277::-;3819:6;3872:2;3860:9;3851:7;3847:23;3843:32;3840:52;;;3888:1;3885;3878:12;3840:52;3920:9;3914:16;3973:5;3966:13;3959:21;3952:5;3949:32;3939:60;;3995:1;3992;3985:12;4034:222;4099:9;;;4120:10;;;4117:133;;;4172:10;4167:3;4163:20;4160:1;4153:31;4207:4;4204:1;4197:15;4235:4;4232:1;4225:15

Swarm Source

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