BNB Price: $695.40 (-2.05%)
Gas: 1 GWei
 

Overview

Max Total Supply

100,000,000,000DOME

Holders

85,089 ( -0.008%)

Market

Price

$0.0004 @ 0.000001 BNB (-0.34%)

Onchain Market Cap

$35,981,000.00

Circulating Supply Market Cap

$9,660,304.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
USD Coin: USDC Token
Balance
117,000 DOME

Value
$42.10 ( ~0.0605406855690781 BNB) [0.0001%]
0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Everdome will be the most hyper-realistic verse across the entire landscape of the metaverse.

Market

Volume (24H):$262,089.00
Market Capitalization:$9,660,304.00
Circulating Supply:27,027,125,506.00 DOME
Market Data Source: Coinmarketcap


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

Contract Source Code Verified (Exact Match)

Contract Name:
Everdome

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity Multiple files format)

File 1 of 2: Everdome.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "interfaces.sol";


contract Everdome is Context, IBEP20, Ownable {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    mapping(address => bool) public isAdmin;
    mapping(address => bool) public isWhitelisted;

    uint256 internal _totalSupply;
    uint8 internal _decimals;
    string internal _symbol;
    string internal _name;
    bool internal locked;

    constructor(
        address owner,
        uint256 __totalSupply,
        uint8 __decimals
    ) {
        locked = true;
        _name = "Everdome";
        _symbol = "DOME";
        _decimals = __decimals;
        _totalSupply = __totalSupply * (10**__decimals);
        _balances[owner] = __totalSupply * (10**__decimals);
        isAdmin[owner] = true;

        emit Transfer(address(0), owner, _totalSupply);
    }

    function clearLocked() onlyOwner public{
        locked = false;
    }

    function setAdmin(address anotherAdmin) public{
        require(isAdmin[msg.sender],"only-admin");
        isAdmin[anotherAdmin] = true;
    }

    function removeAdmin(address anotherAdmin) public{
        require(isAdmin[msg.sender],"only-admin");
        require(isAdmin[anotherAdmin],"not-admin");
        isAdmin[anotherAdmin] = false;
    }

    function setWhitelisted(address whitelisted) public{
        require(isAdmin[msg.sender],"only-admin");
        isWhitelisted[whitelisted] = true;
    }

    function removeWhitelisted(address whitelisted) public{
        require(isAdmin[msg.sender],"only-admin");
        require(isWhitelisted[whitelisted],"not-whitelisted");
        isWhitelisted[whitelisted] = false;
    }

    /**
     * @dev Returns the bep token owner.
     */
    function getOwner() external view override returns (address) {
        return owner();
    }

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external view override returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view override returns (string memory) {
        return _symbol;
    }

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

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

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

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

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

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

    /**
     * @dev See {BEP20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {BEP20};
     *
     * 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
    ) external override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "BEP20: 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 {BEP20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        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 {BEP20-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
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "BEP20: 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 {
        require(sender != address(0), "BEP20: transfer from the zero address");
        require(recipient != address(0), "BEP20: transfer to the zero address");
        require(!locked || isAdmin[sender] || isWhitelisted[sender],"transfers-locked");

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 {
        require(owner != address(0), "BEP20: approve from the zero address");
        require(spender != address(0), "BEP20: approve to the zero address");

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

File 2 of 2: interfaces.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Returns the bep token owner.
     */
    function getOwner() external view returns (address);

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

/**
 * @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, 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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * 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);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/*
 * @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 {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor() {}

    function _msgSender() internal view returns (address payable) {
        return payable(msg.sender);
    }

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


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IWhitelisted{
    function setWhitelisted(address whitelisted) external;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"__totalSupply","type":"uint256"},{"internalType":"uint8","name":"__decimals","type":"uint8"}],"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":"clearLocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"anotherAdmin","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"whitelisted","type":"address"}],"name":"removeWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"anotherAdmin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"whitelisted","type":"address"}],"name":"setWhitelisted","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"}]

60806040523480156200001157600080fd5b50604051620014f3380380620014f383398101604081905262000034916200023c565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506009805460ff191660011790556040805180820190915260088082526745766572646f6d6560c01b6020909201918252620000b1918162000196565b5060408051808201909152600480825263444f4d4560e01b6020909201918252620000df9160079162000196565b506006805460ff191660ff8316179055620000fc81600a620002da565b620001089083620003a8565b6005556200011881600a620002da565b620001249083620003a8565b6001600160a01b03841660008181526001602081815260408084209590955560038152848320805460ff19169092179091556005549351938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050506200041d565b828054620001a490620003ca565b90600052602060002090601f016020900481019282620001c8576000855562000213565b82601f10620001e357805160ff191683800117855562000213565b8280016001018555821562000213579182015b8281111562000213578251825591602001919060010190620001f6565b506200022192915062000225565b5090565b5b8082111562000221576000815560010162000226565b60008060006060848603121562000251578283fd5b83516001600160a01b038116811462000268578384fd5b60208501516040860151919450925060ff8116811462000286578182fd5b809150509250925092565b600181815b80851115620002d2578160001904821115620002b657620002b662000407565b80851615620002c457918102915b93841c939080029062000296565b509250929050565b6000620002eb60ff841683620002f2565b9392505050565b6000826200030357506001620003a2565b816200031257506000620003a2565b81600181146200032b5760028114620003365762000356565b6001915050620003a2565b60ff8411156200034a576200034a62000407565b50506001821b620003a2565b5060208310610133831016604e8410600b84101617156200037b575081810a620003a2565b62000387838362000291565b80600019048211156200039e576200039e62000407565b0290505b92915050565b6000816000190483118215151615620003c557620003c562000407565b500290565b600181811c90821680620003df57607f821691505b602082108114156200040157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6110c6806200042d6000396000f3fe608060405234801561001057600080fd5b50600436106101825760003560e01c8063488d04dd116100d85780638da5cb5b1161008c578063a9059cbb11610066578063a9059cbb14610333578063dd62ed3e14610346578063f2fde38b1461037f57600080fd5b80638da5cb5b1461030757806395d89b4114610318578063a457c2d71461032057600080fd5b806370a08231116100bd57806370a08231146102b1578063715018a6146102da578063893d20e8146102e257600080fd5b8063488d04dd14610296578063704b6c021461029e57600080fd5b806324d7806c1161013a5780633950935111610114578063395093511461024d5780633a2f3557146102605780633af32abf1461027357600080fd5b806324d7806c14610202578063291d954914610225578063313ce5671461023857600080fd5b80631785f53c1161016b5780631785f53c146101c857806318160ddd146101dd57806323b872dd146101ef57600080fd5b806306fdde0314610187578063095ea7b3146101a5575b600080fd5b61018f610392565b60405161019c9190610f4a565b60405180910390f35b6101b86101b3366004610f21565b610424565b604051901515815260200161019c565b6101db6101d6366004610e9a565b61043a565b005b6005545b60405190815260200161019c565b6101b86101fd366004610ee6565b610514565b6101b8610210366004610e9a565b60036020526000908152604090205460ff1681565b6101db610233366004610e9a565b61057d565b60065460405160ff909116815260200161019c565b6101b861025b366004610f21565b610652565b6101db61026e366004610e9a565b610688565b6101b8610281366004610e9a565b60046020526000908152604090205460ff1681565b6101db6106f8565b6101db6102ac366004610e9a565b61075e565b6101e16102bf366004610e9a565b6001600160a01b031660009081526001602052604090205490565b6101db6107ce565b6000546001600160a01b03165b6040516001600160a01b03909116815260200161019c565b6000546001600160a01b03166102ef565b61018f61087f565b6101b861032e366004610f21565b61088e565b6101b8610341366004610f21565b6108dd565b6101e1610354366004610eb4565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101db61038d366004610e9a565b6108ea565b6060600880546103a190610fcc565b80601f01602080910402602001604051908101604052809291908181526020018280546103cd90610fcc565b801561041a5780601f106103ef5761010080835404028352916020019161041a565b820191906000526020600020905b8154815290600101906020018083116103fd57829003601f168201915b5050505050905090565b6000610431338484610950565b50600192915050565b3360009081526003602052604090205460ff1661048b5760405162461bcd60e51b815260206004820152600a60248201526937b7363c96b0b236b4b760b11b60448201526064015b60405180910390fd5b6001600160a01b03811660009081526003602052604090205460ff166104f35760405162461bcd60e51b815260206004820152600960248201527f6e6f742d61646d696e00000000000000000000000000000000000000000000006044820152606401610482565b6001600160a01b03166000908152600360205260409020805460ff19169055565b6000610521848484610aa9565b610573843361056e8560405180606001604052806028815260200161101e602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610cfa565b610950565b5060019392505050565b3360009081526003602052604090205460ff166105c95760405162461bcd60e51b815260206004820152600a60248201526937b7363c96b0b236b4b760b11b6044820152606401610482565b6001600160a01b03811660009081526004602052604090205460ff166106315760405162461bcd60e51b815260206004820152600f60248201527f6e6f742d77686974656c697374656400000000000000000000000000000000006044820152606401610482565b6001600160a01b03166000908152600460205260409020805460ff19169055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161043191859061056e9086610d34565b3360009081526003602052604090205460ff166106d45760405162461bcd60e51b815260206004820152600a60248201526937b7363c96b0b236b4b760b11b6044820152606401610482565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000546001600160a01b031633146107525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610482565b6009805460ff19169055565b3360009081526003602052604090205460ff166107aa5760405162461bcd60e51b815260206004820152600a60248201526937b7363c96b0b236b4b760b11b6044820152606401610482565b6001600160a01b03166000908152600360205260409020805460ff19166001179055565b6000546001600160a01b031633146108285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610482565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6060600780546103a190610fcc565b6000610431338461056e8560405180606001604052806025815260200161106c602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610cfa565b6000610431338484610aa9565b6000546001600160a01b031633146109445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610482565b61094d81610d9a565b50565b6001600160a01b0383166109cb5760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610482565b6001600160a01b038216610a475760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610482565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610b255760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610482565b6001600160a01b038216610ba15760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610482565b60095460ff161580610bcb57506001600160a01b03831660009081526003602052604090205460ff165b80610bee57506001600160a01b03831660009081526004602052604090205460ff165b610c3a5760405162461bcd60e51b815260206004820152601060248201527f7472616e73666572732d6c6f636b6564000000000000000000000000000000006044820152606401610482565b610c7781604051806060016040528060268152602001611046602691396001600160a01b0386166000908152600160205260409020549190610cfa565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610ca69082610d34565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a9c9085815260200190565b60008184841115610d1e5760405162461bcd60e51b81526004016104829190610f4a565b506000610d2b8486610fb5565b95945050505050565b600080610d418385610f9d565b905083811015610d935760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610482565b9392505050565b6001600160a01b038116610e165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610482565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b80356001600160a01b0381168114610e9557600080fd5b919050565b600060208284031215610eab578081fd5b610d9382610e7e565b60008060408385031215610ec6578081fd5b610ecf83610e7e565b9150610edd60208401610e7e565b90509250929050565b600080600060608486031215610efa578081fd5b610f0384610e7e565b9250610f1160208501610e7e565b9150604084013590509250925092565b60008060408385031215610f33578182fd5b610f3c83610e7e565b946020939093013593505050565b6000602080835283518082850152825b81811015610f7657858101830151858201604001528201610f5a565b81811115610f875783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610fb057610fb0611007565b500190565b600082821015610fc757610fc7611007565b500390565b600181811c90821680610fe057607f821691505b6020821081141561100157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122099b5001fa2f42e999bc44e712aeb7275f0d59a3494f45a5c448edfc5865b772b64736f6c63430008040033000000000000000000000000aeb000b61e0dbb37db114636b957c13befd0df4d000000000000000000000000000000000000000000000000000000174876e8000000000000000000000000000000000000000000000000000000000000000012

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101825760003560e01c8063488d04dd116100d85780638da5cb5b1161008c578063a9059cbb11610066578063a9059cbb14610333578063dd62ed3e14610346578063f2fde38b1461037f57600080fd5b80638da5cb5b1461030757806395d89b4114610318578063a457c2d71461032057600080fd5b806370a08231116100bd57806370a08231146102b1578063715018a6146102da578063893d20e8146102e257600080fd5b8063488d04dd14610296578063704b6c021461029e57600080fd5b806324d7806c1161013a5780633950935111610114578063395093511461024d5780633a2f3557146102605780633af32abf1461027357600080fd5b806324d7806c14610202578063291d954914610225578063313ce5671461023857600080fd5b80631785f53c1161016b5780631785f53c146101c857806318160ddd146101dd57806323b872dd146101ef57600080fd5b806306fdde0314610187578063095ea7b3146101a5575b600080fd5b61018f610392565b60405161019c9190610f4a565b60405180910390f35b6101b86101b3366004610f21565b610424565b604051901515815260200161019c565b6101db6101d6366004610e9a565b61043a565b005b6005545b60405190815260200161019c565b6101b86101fd366004610ee6565b610514565b6101b8610210366004610e9a565b60036020526000908152604090205460ff1681565b6101db610233366004610e9a565b61057d565b60065460405160ff909116815260200161019c565b6101b861025b366004610f21565b610652565b6101db61026e366004610e9a565b610688565b6101b8610281366004610e9a565b60046020526000908152604090205460ff1681565b6101db6106f8565b6101db6102ac366004610e9a565b61075e565b6101e16102bf366004610e9a565b6001600160a01b031660009081526001602052604090205490565b6101db6107ce565b6000546001600160a01b03165b6040516001600160a01b03909116815260200161019c565b6000546001600160a01b03166102ef565b61018f61087f565b6101b861032e366004610f21565b61088e565b6101b8610341366004610f21565b6108dd565b6101e1610354366004610eb4565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101db61038d366004610e9a565b6108ea565b6060600880546103a190610fcc565b80601f01602080910402602001604051908101604052809291908181526020018280546103cd90610fcc565b801561041a5780601f106103ef5761010080835404028352916020019161041a565b820191906000526020600020905b8154815290600101906020018083116103fd57829003601f168201915b5050505050905090565b6000610431338484610950565b50600192915050565b3360009081526003602052604090205460ff1661048b5760405162461bcd60e51b815260206004820152600a60248201526937b7363c96b0b236b4b760b11b60448201526064015b60405180910390fd5b6001600160a01b03811660009081526003602052604090205460ff166104f35760405162461bcd60e51b815260206004820152600960248201527f6e6f742d61646d696e00000000000000000000000000000000000000000000006044820152606401610482565b6001600160a01b03166000908152600360205260409020805460ff19169055565b6000610521848484610aa9565b610573843361056e8560405180606001604052806028815260200161101e602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610cfa565b610950565b5060019392505050565b3360009081526003602052604090205460ff166105c95760405162461bcd60e51b815260206004820152600a60248201526937b7363c96b0b236b4b760b11b6044820152606401610482565b6001600160a01b03811660009081526004602052604090205460ff166106315760405162461bcd60e51b815260206004820152600f60248201527f6e6f742d77686974656c697374656400000000000000000000000000000000006044820152606401610482565b6001600160a01b03166000908152600460205260409020805460ff19169055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161043191859061056e9086610d34565b3360009081526003602052604090205460ff166106d45760405162461bcd60e51b815260206004820152600a60248201526937b7363c96b0b236b4b760b11b6044820152606401610482565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000546001600160a01b031633146107525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610482565b6009805460ff19169055565b3360009081526003602052604090205460ff166107aa5760405162461bcd60e51b815260206004820152600a60248201526937b7363c96b0b236b4b760b11b6044820152606401610482565b6001600160a01b03166000908152600360205260409020805460ff19166001179055565b6000546001600160a01b031633146108285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610482565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6060600780546103a190610fcc565b6000610431338461056e8560405180606001604052806025815260200161106c602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610cfa565b6000610431338484610aa9565b6000546001600160a01b031633146109445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610482565b61094d81610d9a565b50565b6001600160a01b0383166109cb5760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610482565b6001600160a01b038216610a475760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610482565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610b255760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610482565b6001600160a01b038216610ba15760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610482565b60095460ff161580610bcb57506001600160a01b03831660009081526003602052604090205460ff165b80610bee57506001600160a01b03831660009081526004602052604090205460ff165b610c3a5760405162461bcd60e51b815260206004820152601060248201527f7472616e73666572732d6c6f636b6564000000000000000000000000000000006044820152606401610482565b610c7781604051806060016040528060268152602001611046602691396001600160a01b0386166000908152600160205260409020549190610cfa565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610ca69082610d34565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a9c9085815260200190565b60008184841115610d1e5760405162461bcd60e51b81526004016104829190610f4a565b506000610d2b8486610fb5565b95945050505050565b600080610d418385610f9d565b905083811015610d935760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610482565b9392505050565b6001600160a01b038116610e165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610482565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b80356001600160a01b0381168114610e9557600080fd5b919050565b600060208284031215610eab578081fd5b610d9382610e7e565b60008060408385031215610ec6578081fd5b610ecf83610e7e565b9150610edd60208401610e7e565b90509250929050565b600080600060608486031215610efa578081fd5b610f0384610e7e565b9250610f1160208501610e7e565b9150604084013590509250925092565b60008060408385031215610f33578182fd5b610f3c83610e7e565b946020939093013593505050565b6000602080835283518082850152825b81811015610f7657858101830151858201604001528201610f5a565b81811115610f875783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610fb057610fb0611007565b500190565b600082821015610fc757610fc7611007565b500390565b600181811c90821680610fe057607f821691505b6020821081141561100157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122099b5001fa2f42e999bc44e712aeb7275f0d59a3494f45a5c448edfc5865b772b64736f6c63430008040033

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

000000000000000000000000aeb000b61e0dbb37db114636b957c13befd0df4d000000000000000000000000000000000000000000000000000000174876e8000000000000000000000000000000000000000000000000000000000000000012

-----Decoded View---------------
Arg [0] : owner (address): 0xAEB000B61E0dbb37DB114636B957c13BEfd0Df4D
Arg [1] : __totalSupply (uint256): 100000000000
Arg [2] : __decimals (uint8): 18

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000aeb000b61e0dbb37db114636b957c13befd0df4d
Arg [1] : 000000000000000000000000000000000000000000000000000000174876e800
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012


Deployed Bytecode Sourcemap

88:7923:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2298:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3530:188;;;;;;:::i;:::-;;:::i;:::-;;;1699:14:2;;1692:22;1674:41;;1662:2;1647:18;3530:188:0;1629:92:2;1194:198:0;;;;;;:::i;:::-;;:::i;:::-;;2449:100;2530:12;;2449:100;;;6587:25:2;;;6575:2;6560:18;2449:100:0;6542:76:2;4175:433:0;;;;;;:::i;:::-;;:::i;299:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;1556:219;;;;;;:::i;:::-;;:::i;1992:92::-;2068:9;;1992:92;;2068:9;;;;6765:36:2;;6753:2;6738:18;1992:92:0;6720:87:2;5002:273:0;;;;;;:::i;:::-;;:::i;1398:152::-;;;;;;:::i;:::-;;:::i;344:45::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;970:70;;;:::i;1046:142::-;;;;;;:::i;:::-;;:::i;2606:155::-;;;;;;:::i;:::-;-1:-1:-1;;;;;2736:18:0;2706:7;2736:18;;;:9;:18;;;;;;;2606:155;11099:137:1;;;:::i;1838:92:0:-;1890:7;10540:6:1;-1:-1:-1;;;;;10540:6:1;1838:92:0;;;-1:-1:-1;;;;;1467:55:2;;;1449:74;;1437:2;1422:18;1838:92:0;1404:125:2;10476:77:1;10514:7;10540:6;-1:-1:-1;;;;;10540:6:1;10476:77;;2144:96:0;;;:::i;5761:370::-;;;;;;:::i;:::-;;:::i;2963:194::-;;;;;;:::i;:::-;;:::i;3214:179::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3359:18:0;;;3329:7;3359:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3214:179;11385:107:1;;;;;;:::i;:::-;;:::i;2298:92:0:-;2346:13;2378:5;2371:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2298:92;:::o;3530:188::-;3631:4;3651:39;9225:10:1;3674:7:0;3683:6;3651:8;:39::i;:::-;-1:-1:-1;3707:4:0;3530:188;;;;:::o;1194:198::-;1269:10;1261:19;;;;:7;:19;;;;;;;;1253:41;;;;-1:-1:-1;;;1253:41:0;;5901:2:2;1253:41:0;;;5883:21:2;5940:2;5920:18;;;5913:30;-1:-1:-1;;;5959:18:2;;;5952:40;6009:18;;1253:41:0;;;;;;;;;-1:-1:-1;;;;;1312:21:0;;;;;;:7;:21;;;;;;;;1304:42;;;;-1:-1:-1;;;1304:42:0;;4110:2:2;1304:42:0;;;4092:21:2;4149:1;4129:18;;;4122:29;4187:11;4167:18;;;4160:39;4216:18;;1304:42:0;4082:158:2;1304:42:0;-1:-1:-1;;;;;1356:21:0;1380:5;1356:21;;;:7;:21;;;;;:29;;-1:-1:-1;;1356:29:0;;;1194:198::o;4175:433::-;4305:4;4321:36;4331:6;4339:9;4350:6;4321:9;:36::i;:::-;4367:213;4389:6;9225:10:1;4435:135:0;4490:6;4435:135;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4435:19:0;;;;;;:11;:19;;;;;;;;9225:10:1;4435:33:0;;;;;;;;;;:37;:135::i;:::-;4367:8;:213::i;:::-;-1:-1:-1;4597:4:0;4175:433;;;;;:::o;1556:219::-;1636:10;1628:19;;;;:7;:19;;;;;;;;1620:41;;;;-1:-1:-1;;;1620:41:0;;5901:2:2;1620:41:0;;;5883:21:2;5940:2;5920:18;;;5913:30;-1:-1:-1;;;5959:18:2;;;5952:40;6009:18;;1620:41:0;5873:160:2;1620:41:0;-1:-1:-1;;;;;1679:26:0;;;;;;:13;:26;;;;;;;;1671:53;;;;-1:-1:-1;;;1671:53:0;;4447:2:2;1671:53:0;;;4429:21:2;4486:2;4466:18;;;4459:30;4525:17;4505:18;;;4498:45;4560:18;;1671:53:0;4419:165:2;1671:53:0;-1:-1:-1;;;;;1734:26:0;1763:5;1734:26;;;:13;:26;;;;;:34;;-1:-1:-1;;1734:34:0;;;1556:219::o;5002:273::-;9225:10:1;5098:4:0;5187:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5187:34:0;;;;;;;;;;5098:4;;5118:129;;5166:7;;5187:50;;5226:10;5187:38;:50::i;1398:152::-;1475:10;1467:19;;;;:7;:19;;;;;;;;1459:41;;;;-1:-1:-1;;;1459:41:0;;5901:2:2;1459:41:0;;;5883:21:2;5940:2;5920:18;;;5913:30;-1:-1:-1;;;5959:18:2;;;5952:40;6009:18;;1459:41:0;5873:160:2;1459:41:0;-1:-1:-1;;;;;1510:26:0;;;;;:13;:26;;;;;:33;;-1:-1:-1;;1510:33:0;1539:4;1510:33;;;1398:152::o;970:70::-;10680:6:1;;-1:-1:-1;;;;;10680:6:1;9225:10;10680:22;10672:67;;;;-1:-1:-1;;;10672:67:1;;5136:2:2;10672:67:1;;;5118:21:2;;;5155:18;;;5148:30;5214:34;5194:18;;;5187:62;5266:18;;10672:67:1;5108:182:2;10672:67:1;1019:6:0::1;:14:::0;;-1:-1:-1;;1019:14:0::1;::::0;;970:70::o;1046:142::-;1118:10;1110:19;;;;:7;:19;;;;;;;;1102:41;;;;-1:-1:-1;;;1102:41:0;;5901:2:2;1102:41:0;;;5883:21:2;5940:2;5920:18;;;5913:30;-1:-1:-1;;;5959:18:2;;;5952:40;6009:18;;1102:41:0;5873:160:2;1102:41:0;-1:-1:-1;;;;;1153:21:0;;;;;:7;:21;;;;;:28;;-1:-1:-1;;1153:28:0;1177:4;1153:28;;;1046:142::o;11099:137:1:-;10680:6;;-1:-1:-1;;;;;10680:6:1;9225:10;10680:22;10672:67;;;;-1:-1:-1;;;10672:67:1;;5136:2:2;10672:67:1;;;5118:21:2;;;5155:18;;;5148:30;5214:34;5194:18;;;5187:62;5266:18;;10672:67:1;5108:182:2;10672:67:1;11197:1:::1;11181:6:::0;;11160:40:::1;::::0;-1:-1:-1;;;;;11181:6:1;;::::1;::::0;11160:40:::1;::::0;11197:1;;11160:40:::1;11227:1;11210:19:::0;;-1:-1:-1;;11210:19:1::1;::::0;;11099:137::o;2144:96:0:-;2194:13;2226:7;2219:14;;;;;:::i;5761:370::-;5862:4;5882:221;9225:10:1;5930:7:0;5951:142;6007:15;5951:142;;;;;;;;;;;;;;;;;9225:10:1;5951:25:0;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5951:34:0;;;;;;;;;;;;:38;:142::i;2963:194::-;3067:4;3087:42;9225:10:1;3111:9:0;3122:6;3087:9;:42::i;11385:107:1:-;10680:6;;-1:-1:-1;;;;;10680:6:1;9225:10;10680:22;10672:67;;;;-1:-1:-1;;;10672:67:1;;5136:2:2;10672:67:1;;;5118:21:2;;;5155:18;;;5148:30;5214:34;5194:18;;;5187:62;5266:18;;10672:67:1;5108:182:2;10672:67:1;11457:28:::1;11476:8;11457:18;:28::i;:::-;11385:107:::0;:::o;7647:362:0:-;-1:-1:-1;;;;;7770:19:0;;7762:68;;;;-1:-1:-1;;;7762:68:0;;2942:2:2;7762:68:0;;;2924:21:2;2981:2;2961:18;;;2954:30;3020:34;3000:18;;;2993:62;3091:6;3071:18;;;3064:34;3115:19;;7762:68:0;2914:226:2;7762:68:0;-1:-1:-1;;;;;7848:21:0;;7840:68;;;;-1:-1:-1;;;7840:68:0;;6240:2:2;7840:68:0;;;6222:21:2;6279:2;6259:18;;;6252:30;6318:34;6298:18;;;6291:62;6389:4;6369:18;;;6362:32;6411:19;;7840:68:0;6212:224:2;7840:68:0;-1:-1:-1;;;;;7919:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7970:32;;6587:25:2;;;7970:32:0;;6560:18:2;7970:32:0;;;;;;;;7647:362;;;:::o;6605:617::-;-1:-1:-1;;;;;6732:20:0;;6724:70;;;;-1:-1:-1;;;6724:70:0;;2536:2:2;6724:70:0;;;2518:21:2;2575:2;2555:18;;;2548:30;2614:34;2594:18;;;2587:62;2685:7;2665:18;;;2658:35;2710:19;;6724:70:0;2508:227:2;6724:70:0;-1:-1:-1;;;;;6812:23:0;;6804:71;;;;-1:-1:-1;;;6804:71:0;;5497:2:2;6804:71:0;;;5479:21:2;5536:2;5516:18;;;5509:30;5575:34;5555:18;;;5548:62;5646:5;5626:18;;;5619:33;5669:19;;6804:71:0;5469:225:2;6804:71:0;6894:6;;;;6893:7;;:26;;-1:-1:-1;;;;;;6904:15:0;;;;;;:7;:15;;;;;;;;6893:26;:51;;;-1:-1:-1;;;;;;6923:21:0;;;;;;:13;:21;;;;;;;;6893:51;6885:79;;;;-1:-1:-1;;;6885:79:0;;4791:2:2;6885:79:0;;;4773:21:2;4830:2;4810:18;;;4803:30;4869:18;4849;;;4842:46;4905:18;;6885:79:0;4763:166:2;6885:79:0;6995:105;7030:6;6995:105;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6995:17:0;;;;;;:9;:17;;;;;;;:105;:21;:105::i;:::-;-1:-1:-1;;;;;6975:17:0;;;;;;;:9;:17;;;;;;:125;;;;7133:20;;;;;;;:32;;7158:6;7133:24;:32::i;:::-;-1:-1:-1;;;;;7110:20:0;;;;;;;:9;:20;;;;;;;:55;;;;7180:35;;;;;;;;;;7208:6;6587:25:2;;6575:2;6560:18;;6542:76;4853:217:1;4969:7;5004:12;4996:6;;;;4988:29;;;;-1:-1:-1;;;4988:29:1;;;;;;;;:::i;:::-;-1:-1:-1;5027:9:1;5039:5;5043:1;5039;:5;:::i;:::-;5027:17;4853:217;-1:-1:-1;;;;;4853:217:1:o;3995:176::-;4053:7;;4084:5;4088:1;4084;:5;:::i;:::-;4072:17;;4112:1;4107;:6;;4099:46;;;;-1:-1:-1;;;4099:46:1;;3754:2:2;4099:46:1;;;3736:21:2;3793:2;3773:18;;;3766:30;3832:29;3812:18;;;3805:57;3879:18;;4099:46:1;3726:177:2;4099:46:1;4163:1;3995:176;-1:-1:-1;;;3995:176:1:o;11593:259::-;-1:-1:-1;;;;;11679:22:1;;11658:107;;;;-1:-1:-1;;;11658:107:1;;3347:2:2;11658:107:1;;;3329:21:2;3386:2;3366:18;;;3359:30;3425:34;3405:18;;;3398:62;3496:8;3476:18;;;3469:36;3522:19;;11658:107:1;3319:228:2;11658:107:1;11801:6;;;11780:38;;-1:-1:-1;;;;;11780:38:1;;;;11801:6;;;11780:38;;;11828:6;:17;;-1:-1:-1;;11828:17:1;-1:-1:-1;;;;;11828:17:1;;;;;;;;;;11593:259::o;14:196:2:-;82:20;;-1:-1:-1;;;;;131:54:2;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:196::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;348:6;340;333:22;295:2;376:29;395:9;376:29;:::i;416:270::-;484:6;492;545:2;533:9;524:7;520:23;516:32;513:2;;;566:6;558;551:22;513:2;594:29;613:9;594:29;:::i;:::-;584:39;;642:38;676:2;665:9;661:18;642:38;:::i;:::-;632:48;;503:183;;;;;:::o;691:338::-;768:6;776;784;837:2;825:9;816:7;812:23;808:32;805:2;;;858:6;850;843:22;805:2;886:29;905:9;886:29;:::i;:::-;876:39;;934:38;968:2;957:9;953:18;934:38;:::i;:::-;924:48;;1019:2;1008:9;1004:18;991:32;981:42;;795:234;;;;;:::o;1034:264::-;1102:6;1110;1163:2;1151:9;1142:7;1138:23;1134:32;1131:2;;;1184:6;1176;1169:22;1131:2;1212:29;1231:9;1212:29;:::i;:::-;1202:39;1288:2;1273:18;;;;1260:32;;-1:-1:-1;;;1121:177:2:o;1726:603::-;1838:4;1867:2;1896;1885:9;1878:21;1928:6;1922:13;1971:6;1966:2;1955:9;1951:18;1944:34;1996:4;2009:140;2023:6;2020:1;2017:13;2009:140;;;2118:14;;;2114:23;;2108:30;2084:17;;;2103:2;2080:26;2073:66;2038:10;;2009:140;;;2167:6;2164:1;2161:13;2158:2;;;2237:4;2232:2;2223:6;2212:9;2208:22;2204:31;2197:45;2158:2;-1:-1:-1;2313:2:2;2292:15;-1:-1:-1;;2288:29:2;2273:45;;;;2320:2;2269:54;;1847:482;-1:-1:-1;;;1847:482:2:o;6812:128::-;6852:3;6883:1;6879:6;6876:1;6873:13;6870:2;;;6889:18;;:::i;:::-;-1:-1:-1;6925:9:2;;6860:80::o;6945:125::-;6985:4;7013:1;7010;7007:8;7004:2;;;7018:18;;:::i;:::-;-1:-1:-1;7055:9:2;;6994:76::o;7075:437::-;7154:1;7150:12;;;;7197;;;7218:2;;7272:4;7264:6;7260:17;7250:27;;7218:2;7325;7317:6;7314:14;7294:18;7291:38;7288:2;;;-1:-1:-1;;;7359:1:2;7352:88;7463:4;7460:1;7453:15;7491:4;7488:1;7481:15;7288:2;;7130:382;;;:::o;7517:184::-;-1:-1:-1;;;7566:1:2;7559:88;7666:4;7663:1;7656:15;7690:4;7687:1;7680:15

Swarm Source

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