ETH Price: $3,393.46 (+1.30%)
Gas: 6 Gwei

Token

Mega Yacht Cult (MYC)
 

Overview

Max Total Supply

100,000,000,000 MYC

Holders

600

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
MEV Bot: 0x74d...631
Balance
0 MYC

Value
$0.00
0x74de5d4fcbf63e00296fd95d33236b9794016631
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:
MegaYachtCult

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// MYC Website: https://mycnetwork.io/
// Twitter / X : https://x.com/MYC_TOKEN?t=L9TgxVuxJwleLjfBKyo3QQ&s=09
// Telegram: https://t.me/MYCTOKEN

// M       M    Y   Y    CCCCC
// MM     MM     Y Y     C
// M M   M M      Y      C
// M  M M  M      Y      C
// M   M   M      Y      CCCCC


//    /\
//   /  \
//  / 👁 \
// /______\


// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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;
    }
}


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * 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);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _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 value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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


pragma solidity ^0.8.0;


contract MegaYachtCult is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;

    constructor(uint256 _totalSupply) ERC20("Mega Yacht Cult", "MYC") {
        _mint(msg.sender, _totalSupply);
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
       
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620010ae380380620010ae8339810160408190526200003491620002ba565b6040518060400160405280600f81526020016e135959d848165858da1d0810dd5b1d608a1b815250604051806040016040528060038152602001624d594360e81b815250620000926200008c620000d960201b60201c565b620000dd565b8151620000a790600490602085019062000214565b508051620000bd90600590602084019062000214565b505050620000d233826200012d60201b60201c565b5062000375565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200015f5760405162461bcd60e51b81526004016200015690620002d3565b60405180910390fd5b6200016d600083836200020f565b806003600082825462000181919062000313565b90915550506001600160a01b03821660009081526001602052604081208054839290620001b090849062000313565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001f59085906200030a565b60405180910390a36200020b600083836200020f565b5050565b505050565b828054620002229062000338565b90600052602060002090601f01602090048101928262000246576000855562000291565b82601f106200026157805160ff191683800117855562000291565b8280016001018555821562000291579182015b828111156200029157825182559160200191906001019062000274565b506200029f929150620002a3565b5090565b5b808211156200029f5760008155600101620002a4565b600060208284031215620002cc578081fd5b5051919050565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200033357634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200034d57607f821691505b602082108114156200036f57634e487b7160e01b600052602260045260246000fd5b50919050565b610d2980620003856000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610219578063a457c2d714610221578063a9059cbb14610234578063dd62ed3e14610247578063f2fde38b1461025a57610121565b806370a08231146101e6578063715018a6146101f9578063860a32ec1461020157806389f9a1d3146102095780638da5cb5b1461021157610121565b806323b872dd116100f457806323b872dd14610181578063313ce5671461019457806339509351146101a95780633aa633aa146101bc57806349bd5a5e146101d157610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd146101645780631ab99e1214610179575b600080fd5b61012e61026d565b60405161013b91906109ce565b60405180910390f35b61015761015236600461093f565b6102ff565b60405161013b91906109c3565b61016c61031c565b60405161013b9190610c7d565b61016c610322565b61015761018f366004610904565b610328565b61019c6103c1565b60405161013b9190610c86565b6101576101b736600461093f565b6103c6565b6101cf6101ca366004610968565b61041a565b005b6101d9610494565b60405161013b91906109af565b61016c6101f43660046108b1565b6104a3565b6101cf6104c2565b61015761050d565b61016c610516565b6101d961051c565b61012e61052b565b61015761022f36600461093f565b61053a565b61015761024236600461093f565b6105b3565b61016c6102553660046108d2565b6105c7565b6101cf6102683660046108b1565b6105f2565b60606004805461027c90610cb8565b80601f01602080910402602001604051908101604052809291908181526020018280546102a890610cb8565b80156102f55780601f106102ca576101008083540402835291602001916102f5565b820191906000526020600020905b8154815290600101906020018083116102d857829003601f168201915b5050505050905090565b600061031361030c610663565b8484610667565b50600192915050565b60035490565b60085481565b600061033584848461071b565b6001600160a01b038416600090815260026020526040812081610356610663565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103a25760405162461bcd60e51b815260040161039990610b32565b60405180910390fd5b6103b6856103ae610663565b858403610667565b506001949350505050565b601290565b60006103136103d3610663565b8484600260006103e1610663565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104159190610c94565b610667565b610422610663565b6001600160a01b031661043361051c565b6001600160a01b0316146104595760405162461bcd60e51b815260040161039990610b7a565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6009546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b6104ca610663565b6001600160a01b03166104db61051c565b6001600160a01b0316146105015760405162461bcd60e51b815260040161039990610b7a565b61050b6000610845565b565b60065460ff1681565b60075481565b6000546001600160a01b031690565b60606005805461027c90610cb8565b60008060026000610549610663565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105955760405162461bcd60e51b815260040161039990610c38565b6105a96105a0610663565b85858403610667565b5060019392505050565b60006103136105c0610663565b848461071b565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105fa610663565b6001600160a01b031661060b61051c565b6001600160a01b0316146106315760405162461bcd60e51b815260040161039990610b7a565b6001600160a01b0381166106575760405162461bcd60e51b815260040161039990610a64565b61066081610845565b50565b3390565b6001600160a01b03831661068d5760405162461bcd60e51b815260040161039990610bf4565b6001600160a01b0382166106b35760405162461bcd60e51b815260040161039990610aaa565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061070e908590610c7d565b60405180910390a3505050565b6001600160a01b0383166107415760405162461bcd60e51b815260040161039990610baf565b6001600160a01b0382166107675760405162461bcd60e51b815260040161039990610a21565b610772838383610895565b6001600160a01b038316600090815260016020526040902054818110156107ab5760405162461bcd60e51b815260040161039990610aec565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906107e2908490610c94565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161082c9190610c7d565b60405180910390a361083f848484610895565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b505050565b80356001600160a01b03811681146104bd57600080fd5b6000602082840312156108c2578081fd5b6108cb8261089a565b9392505050565b600080604083850312156108e4578081fd5b6108ed8361089a565b91506108fb6020840161089a565b90509250929050565b600080600060608486031215610918578081fd5b6109218461089a565b925061092f6020850161089a565b9150604084013590509250925092565b60008060408385031215610951578182fd5b61095a8361089a565b946020939093013593505050565b6000806000806080858703121561097d578081fd5b8435801515811461098c578182fd5b935061099a6020860161089a565b93969395505050506040820135916060013590565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109fa578581018301518582016040015282016109de565b81811115610a0b5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610cb357634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610ccc57607f821691505b60208210811415610ced57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212200b45a53d8e7caac32e903813324b04fdf07707ba2b354082b129af3f9662561a64736f6c634300080000330000000000000000000000000000000000000001431e0fae6d7217caa0000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610219578063a457c2d714610221578063a9059cbb14610234578063dd62ed3e14610247578063f2fde38b1461025a57610121565b806370a08231146101e6578063715018a6146101f9578063860a32ec1461020157806389f9a1d3146102095780638da5cb5b1461021157610121565b806323b872dd116100f457806323b872dd14610181578063313ce5671461019457806339509351146101a95780633aa633aa146101bc57806349bd5a5e146101d157610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd146101645780631ab99e1214610179575b600080fd5b61012e61026d565b60405161013b91906109ce565b60405180910390f35b61015761015236600461093f565b6102ff565b60405161013b91906109c3565b61016c61031c565b60405161013b9190610c7d565b61016c610322565b61015761018f366004610904565b610328565b61019c6103c1565b60405161013b9190610c86565b6101576101b736600461093f565b6103c6565b6101cf6101ca366004610968565b61041a565b005b6101d9610494565b60405161013b91906109af565b61016c6101f43660046108b1565b6104a3565b6101cf6104c2565b61015761050d565b61016c610516565b6101d961051c565b61012e61052b565b61015761022f36600461093f565b61053a565b61015761024236600461093f565b6105b3565b61016c6102553660046108d2565b6105c7565b6101cf6102683660046108b1565b6105f2565b60606004805461027c90610cb8565b80601f01602080910402602001604051908101604052809291908181526020018280546102a890610cb8565b80156102f55780601f106102ca576101008083540402835291602001916102f5565b820191906000526020600020905b8154815290600101906020018083116102d857829003601f168201915b5050505050905090565b600061031361030c610663565b8484610667565b50600192915050565b60035490565b60085481565b600061033584848461071b565b6001600160a01b038416600090815260026020526040812081610356610663565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103a25760405162461bcd60e51b815260040161039990610b32565b60405180910390fd5b6103b6856103ae610663565b858403610667565b506001949350505050565b601290565b60006103136103d3610663565b8484600260006103e1610663565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104159190610c94565b610667565b610422610663565b6001600160a01b031661043361051c565b6001600160a01b0316146104595760405162461bcd60e51b815260040161039990610b7a565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6009546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b6104ca610663565b6001600160a01b03166104db61051c565b6001600160a01b0316146105015760405162461bcd60e51b815260040161039990610b7a565b61050b6000610845565b565b60065460ff1681565b60075481565b6000546001600160a01b031690565b60606005805461027c90610cb8565b60008060026000610549610663565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105955760405162461bcd60e51b815260040161039990610c38565b6105a96105a0610663565b85858403610667565b5060019392505050565b60006103136105c0610663565b848461071b565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105fa610663565b6001600160a01b031661060b61051c565b6001600160a01b0316146106315760405162461bcd60e51b815260040161039990610b7a565b6001600160a01b0381166106575760405162461bcd60e51b815260040161039990610a64565b61066081610845565b50565b3390565b6001600160a01b03831661068d5760405162461bcd60e51b815260040161039990610bf4565b6001600160a01b0382166106b35760405162461bcd60e51b815260040161039990610aaa565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061070e908590610c7d565b60405180910390a3505050565b6001600160a01b0383166107415760405162461bcd60e51b815260040161039990610baf565b6001600160a01b0382166107675760405162461bcd60e51b815260040161039990610a21565b610772838383610895565b6001600160a01b038316600090815260016020526040902054818110156107ab5760405162461bcd60e51b815260040161039990610aec565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906107e2908490610c94565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161082c9190610c7d565b60405180910390a361083f848484610895565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b505050565b80356001600160a01b03811681146104bd57600080fd5b6000602082840312156108c2578081fd5b6108cb8261089a565b9392505050565b600080604083850312156108e4578081fd5b6108ed8361089a565b91506108fb6020840161089a565b90509250929050565b600080600060608486031215610918578081fd5b6109218461089a565b925061092f6020850161089a565b9150604084013590509250925092565b60008060408385031215610951578182fd5b61095a8361089a565b946020939093013593505050565b6000806000806080858703121561097d578081fd5b8435801515811461098c578182fd5b935061099a6020860161089a565b93969395505050506040820135916060013590565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109fa578581018301518582016040015282016109de565b81811115610a0b5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610cb357634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610ccc57607f821691505b60208210811415610ced57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212200b45a53d8e7caac32e903813324b04fdf07707ba2b354082b129af3f9662561a64736f6c63430008000033

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

0000000000000000000000000000000000000001431e0fae6d7217caa0000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 100000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000001431e0fae6d7217caa0000000


Deployed Bytecode Sourcemap

19594:774:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9602:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11769:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10722:108::-;;;:::i;:::-;;;;;;;:::i;19706:31::-;;;:::i;12420:492::-;;;;;;:::i;:::-;;:::i;10564:93::-;;;:::i;:::-;;;;;;;:::i;13321:215::-;;;;;;:::i;:::-;;:::i;19905:301::-;;;;;;:::i;:::-;;:::i;:::-;;19744:28;;;:::i;:::-;;;;;;;:::i;10893:127::-;;;;;;:::i;:::-;;:::i;3003:103::-;;;:::i;19642:19::-;;;:::i;19668:31::-;;;:::i;2352:87::-;;;:::i;9821:104::-;;;:::i;14039:413::-;;;;;;:::i;:::-;;:::i;11233:175::-;;;;;;:::i;:::-;;:::i;11471:151::-;;;;;;:::i;:::-;;:::i;3261:201::-;;;;;;:::i;:::-;;:::i;9602:100::-;9656:13;9689:5;9682:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9602:100;:::o;11769:169::-;11852:4;11869:39;11878:12;:10;:12::i;:::-;11892:7;11901:6;11869:8;:39::i;:::-;-1:-1:-1;11926:4:0;11769:169;;;;:::o;10722:108::-;10810:12;;10722:108;:::o;19706:31::-;;;;:::o;12420:492::-;12560:4;12577:36;12587:6;12595:9;12606:6;12577:9;:36::i;:::-;-1:-1:-1;;;;;12653:19:0;;12626:24;12653:19;;;:11;:19;;;;;12626:24;12673:12;:10;:12::i;:::-;-1:-1:-1;;;;;12653:33:0;-1:-1:-1;;;;;12653:33:0;;;;;;;;;;;;;12626:60;;12725:6;12705:16;:26;;12697:79;;;;-1:-1:-1;;;12697:79:0;;;;;;;:::i;:::-;;;;;;;;;12812:57;12821:6;12829:12;:10;:12::i;:::-;12862:6;12843:16;:25;12812:8;:57::i;:::-;-1:-1:-1;12900:4:0;;12420:492;-1:-1:-1;;;;12420:492:0:o;10564:93::-;10647:2;10564:93;:::o;13321:215::-;13409:4;13426:80;13435:12;:10;:12::i;:::-;13449:7;13495:10;13458:11;:25;13470:12;:10;:12::i;:::-;-1:-1:-1;;;;;13458:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13458:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;13426:8;:80::i;19905:301::-;2583:12;:10;:12::i;:::-;-1:-1:-1;;;;;2572:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2572:23:0;;2564:68;;;;-1:-1:-1;;;2564:68:0;;;;;;;:::i;:::-;20045:7:::1;:18:::0;;-1:-1:-1;;20045:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;20074:13:::1;:30:::0;;-1:-1:-1;;;;;;20074:30:0::1;-1:-1:-1::0;;;;;20074:30:0;;;::::1;::::0;;;::::1;::::0;;;20115:16:::1;:36:::0;20162:16:::1;:36:::0;19905:301::o;19744:28::-;;;-1:-1:-1;;;;;19744:28:0;;:::o;10893:127::-;-1:-1:-1;;;;;10994:18:0;;10967:7;10994:18;;;:9;:18;;;;;;10893:127;;;;:::o;3003:103::-;2583:12;:10;:12::i;:::-;-1:-1:-1;;;;;2572:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2572:23:0;;2564:68;;;;-1:-1:-1;;;2564:68:0;;;;;;;:::i;:::-;3068:30:::1;3095:1;3068:18;:30::i;:::-;3003:103::o:0;19642:19::-;;;;;;:::o;19668:31::-;;;;:::o;2352:87::-;2398:7;2425:6;-1:-1:-1;;;;;2425:6:0;2352:87;:::o;9821:104::-;9877:13;9910:7;9903:14;;;;;:::i;14039:413::-;14132:4;14149:24;14176:11;:25;14188:12;:10;:12::i;:::-;-1:-1:-1;;;;;14176:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14176:25:0;;;:34;;;;;;;;;;;-1:-1:-1;14229:35:0;;;;14221:85;;;;-1:-1:-1;;;14221:85:0;;;;;;;:::i;:::-;14342:67;14351:12;:10;:12::i;:::-;14365:7;14393:15;14374:16;:34;14342:8;:67::i;:::-;-1:-1:-1;14440:4:0;;14039:413;-1:-1:-1;;;14039:413:0:o;11233:175::-;11319:4;11336:42;11346:12;:10;:12::i;:::-;11360:9;11371:6;11336:9;:42::i;11471:151::-;-1:-1:-1;;;;;11587:18:0;;;11560:7;11587:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11471:151::o;3261:201::-;2583:12;:10;:12::i;:::-;-1:-1:-1;;;;;2572:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2572:23:0;;2564:68;;;;-1:-1:-1;;;2564:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3350:22:0;::::1;3342:73;;;;-1:-1:-1::0;;;3342:73:0::1;;;;;;;:::i;:::-;3426:28;3445:8;3426:18;:28::i;:::-;3261:201:::0;:::o;1070:98::-;1150:10;1070:98;:::o;17723:380::-;-1:-1:-1;;;;;17859:19:0;;17851:68;;;;-1:-1:-1;;;17851:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17938:21:0;;17930:68;;;;-1:-1:-1;;;17930:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18011:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;18063:32;;;;;18041:6;;18063:32;:::i;:::-;;;;;;;;17723:380;;;:::o;14942:733::-;-1:-1:-1;;;;;15082:20:0;;15074:70;;;;-1:-1:-1;;;15074:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15163:23:0;;15155:71;;;;-1:-1:-1;;;15155:71:0;;;;;;;:::i;:::-;15239:47;15260:6;15268:9;15279:6;15239:20;:47::i;:::-;-1:-1:-1;;;;;15323:17:0;;15299:21;15323:17;;;:9;:17;;;;;;15359:23;;;;15351:74;;;;-1:-1:-1;;;15351:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15461:17:0;;;;;;;:9;:17;;;;;;15481:22;;;15461:42;;15525:20;;;;;;;;:30;;15497:6;;15461:17;15525:30;;15497:6;;15525:30;:::i;:::-;;;;;;;;15590:9;-1:-1:-1;;;;;15573:35:0;15582:6;-1:-1:-1;;;;;15573:35:0;;15601:6;15573:35;;;;;;:::i;:::-;;;;;;;;15621:46;15641:6;15649:9;15660:6;15621:19;:46::i;:::-;14942:733;;;;:::o;3622:191::-;3696:16;3715:6;;-1:-1:-1;;;;;3732:17:0;;;-1:-1:-1;;;;;;3732:17:0;;;;;;3765:40;;3715:6;;;;;;;3765:40;;3696:16;3765:40;3622:191;;:::o;20214:149::-;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:506::-;;;;;1454:3;1442:9;1433:7;1429:23;1425:33;1422:2;;;1476:6;1468;1461:22;1422:2;1520:9;1507:23;1573:5;1566:13;1559:21;1552:5;1549:32;1539:2;;1600:6;1592;1585:22;1539:2;1628:5;-1:-1:-1;1652:40:1;1688:2;1673:18;;1652:40;:::i;:::-;1412:388;;1642:50;;-1:-1:-1;;;;1739:2:1;1724:18;;1711:32;;1790:2;1775:18;1762:32;;1412:388::o;1805:203::-;-1:-1:-1;;;;;1969:32:1;;;;1951:51;;1939:2;1924:18;;1906:102::o;2013:187::-;2178:14;;2171:22;2153:41;;2141:2;2126:18;;2108:92::o;2205:603::-;;2346:2;2375;2364:9;2357:21;2407:6;2401:13;2450:6;2445:2;2434:9;2430:18;2423:34;2475:4;2488:140;2502:6;2499:1;2496:13;2488:140;;;2597:14;;;2593:23;;2587:30;2563:17;;;2582:2;2559:26;2552:66;2517:10;;2488:140;;;2646:6;2643:1;2640:13;2637:2;;;2716:4;2711:2;2702:6;2691:9;2687:22;2683:31;2676:45;2637:2;-1:-1:-1;2792:2:1;2771:15;-1:-1:-1;;2767:29:1;2752:45;;;;2799:2;2748:54;;2326:482;-1:-1:-1;;;2326:482:1:o;2813:399::-;3015:2;2997:21;;;3054:2;3034:18;;;3027:30;3093:34;3088:2;3073:18;;3066:62;-1:-1:-1;;;3159:2:1;3144:18;;3137:33;3202:3;3187:19;;2987:225::o;3217:402::-;3419:2;3401:21;;;3458:2;3438:18;;;3431:30;3497:34;3492:2;3477:18;;3470:62;-1:-1:-1;;;3563:2:1;3548:18;;3541:36;3609:3;3594:19;;3391:228::o;3624:398::-;3826:2;3808:21;;;3865:2;3845:18;;;3838:30;3904:34;3899:2;3884:18;;3877:62;-1:-1:-1;;;3970:2:1;3955:18;;3948:32;4012:3;3997:19;;3798:224::o;4027:402::-;4229:2;4211:21;;;4268:2;4248:18;;;4241:30;4307:34;4302:2;4287:18;;4280:62;-1:-1:-1;;;4373:2:1;4358:18;;4351:36;4419:3;4404:19;;4201:228::o;4434:404::-;4636:2;4618:21;;;4675:2;4655:18;;;4648:30;4714:34;4709:2;4694:18;;4687:62;-1:-1:-1;;;4780:2:1;4765:18;;4758:38;4828:3;4813:19;;4608:230::o;4843:356::-;5045:2;5027:21;;;5064:18;;;5057:30;5123:34;5118:2;5103:18;;5096:62;5190:2;5175:18;;5017:182::o;5204:401::-;5406:2;5388:21;;;5445:2;5425:18;;;5418:30;5484:34;5479:2;5464:18;;5457:62;-1:-1:-1;;;5550:2:1;5535:18;;5528:35;5595:3;5580:19;;5378:227::o;5610:400::-;5812:2;5794:21;;;5851:2;5831:18;;;5824:30;5890:34;5885:2;5870:18;;5863:62;-1:-1:-1;;;5956:2:1;5941:18;;5934:34;6000:3;5985:19;;5784:226::o;6015:401::-;6217:2;6199:21;;;6256:2;6236:18;;;6229:30;6295:34;6290:2;6275:18;;6268:62;-1:-1:-1;;;6361:2:1;6346:18;;6339:35;6406:3;6391:19;;6189:227::o;6421:177::-;6567:25;;;6555:2;6540:18;;6522:76::o;6603:184::-;6775:4;6763:17;;;;6745:36;;6733:2;6718:18;;6700:87::o;6792:229::-;;6863:1;6859:6;6856:1;6853:13;6850:2;;;-1:-1:-1;;;6889:33:1;;6945:4;6942:1;6935:15;6975:4;6896:3;6963:17;6850:2;-1:-1:-1;7006:9:1;;6840:181::o;7026:380::-;7111:1;7101:12;;7158:1;7148:12;;;7169:2;;7223:4;7215:6;7211:17;7201:27;;7169:2;7276;7268:6;7265:14;7245:18;7242:38;7239:2;;;7322:10;7317:3;7313:20;7310:1;7303:31;7357:4;7354:1;7347:15;7385:4;7382:1;7375:15;7239:2;;7081:325;;;:::o

Swarm Source

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