ETH Price: $2,956.76 (-0.00%)

Token

MOMO (MOMO)

Overview

Max Total Supply

500,000,000,000 MOMO

Holders

4,556

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Balance
40,000,000 MOMO

Value
$0.00
0x76282a2d0371118Ec586C6c203005e090F365cDD
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
MOMOErc20

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2023-05-22
*/

pragma solidity 0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

// 
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}

//
contract MOMOErc20 is ERC20, Ownable {
    mapping(address => bool) private addressMap;

    function addAddress(address _address) public onlyOwner {
        addressMap[_address] = true;
    }

    function removeAddress(address _address) public onlyOwner {
        addressMap[_address] = false;
    }

    bool public isOpen = false;

    function setIsOpen(bool _isOpen) public onlyOwner {
        isOpen = _isOpen;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        if (owner() != address(0) && isOpen) {
            require(!addressMap[from], "Invalid address");
        }
    }

    constructor(string memory name, string memory symbol) ERC20(name, symbol) {}

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

    function decimals() public view virtual override returns (uint8) {
        return 6;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":"_address","type":"address"}],"name":"addAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"isOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpen","type":"bool"}],"name":"setIsOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526007805460ff191690553480156200001b57600080fd5b5060405162000fb038038062000fb08339810160408190526200003e9162000241565b81518290829062000057906003906020850190620000e8565b5080516200006d906004906020840190620000e8565b5050506200008a620000846200009260201b60201c565b62000096565b5050620002fb565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f690620002a8565b90600052602060002090601f0160209004810192826200011a576000855562000165565b82601f106200013557805160ff191683800117855562000165565b8280016001018555821562000165579182015b828111156200016557825182559160200191906001019062000148565b506200017392915062000177565b5090565b5b8082111562000173576000815560010162000178565b600082601f8301126200019f578081fd5b81516001600160401b0380821115620001bc57620001bc620002e5565b604051601f8301601f19908116603f01168101908282118183101715620001e757620001e7620002e5565b8160405283815260209250868385880101111562000203578485fd5b8491505b8382101562000226578582018301518183018401529082019062000207565b838211156200023757848385830101525b9695505050505050565b6000806040838503121562000254578182fd5b82516001600160401b03808211156200026b578384fd5b62000279868387016200018e565b935060208501519150808211156200028f578283fd5b506200029e858286016200018e565b9150509250929050565b600181811c90821680620002bd57607f821691505b60208210811415620002df57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610ca5806200030b6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806347535d7b116100ad57806395d89b411161007157806395d89b4114610255578063a457c2d71461025d578063a9059cbb14610270578063dd62ed3e14610283578063f2fde38b1461029657600080fd5b806347535d7b146101e95780634ba79dfe146101f657806370a0823114610209578063715018a6146102325780638da5cb5b1461023a57600080fd5b806323b872dd116100f457806323b872dd1461018e578063313ce567146101a157806338eada1c146101b057806339509351146101c357806340c10f19146101d657600080fd5b806306fdde0314610126578063085a10cf14610144578063095ea7b31461015957806318160ddd1461017c575b600080fd5b61012e6102a9565b60405161013b9190610bbd565b60405180910390f35b610157610152366004610b9d565b61033b565b005b61016c610167366004610b74565b610356565b604051901515815260200161013b565b6002545b60405190815260200161013b565b61016c61019c366004610b39565b61036e565b6040516006815260200161013b565b6101576101be366004610ae6565b610392565b61016c6101d1366004610b74565b6103be565b6101576101e4366004610b74565b6103e0565b60075461016c9060ff1681565b610157610204366004610ae6565b6103f6565b610180610217366004610ae6565b6001600160a01b031660009081526020819052604090205490565b61015761041f565b6005546040516001600160a01b03909116815260200161013b565b61012e610433565b61016c61026b366004610b74565b610442565b61016c61027e366004610b74565b6104c2565b610180610291366004610b07565b6104d0565b6101576102a4366004610ae6565b6104fb565b6060600380546102b890610c34565b80601f01602080910402602001604051908101604052809291908181526020018280546102e490610c34565b80156103315780601f1061030657610100808354040283529160200191610331565b820191906000526020600020905b81548152906001019060200180831161031457829003601f168201915b5050505050905090565b610343610574565b6007805460ff1916911515919091179055565b6000336103648185856105ce565b5060019392505050565b60003361037c8582856106f2565b61038785858561076c565b506001949350505050565b61039a610574565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000336103648185856103d183836104d0565b6103db9190610c10565b6105ce565b6103e8610574565b6103f2828261091b565b5050565b6103fe610574565b6001600160a01b03166000908152600660205260409020805460ff19169055565b610427610574565b61043160006109e6565b565b6060600480546102b890610c34565b6000338161045082866104d0565b9050838110156104b55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61038782868684036105ce565b60003361036481858561076c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610503610574565b6001600160a01b0381166105685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ac565b610571816109e6565b50565b6005546001600160a01b031633146104315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104ac565b6001600160a01b0383166106305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ac565b6001600160a01b0382166106915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ac565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106fe84846104d0565b9050600019811461076657818110156107595760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104ac565b61076684848484036105ce565b50505050565b6001600160a01b0383166107d05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ac565b6001600160a01b0382166108325760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ac565b61083d838383610a38565b6001600160a01b038316600090815260208190526040902054818110156108b55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104ac565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610766565b6001600160a01b0382166109715760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104ac565b61097d60008383610a38565b806002600082825461098f9190610c10565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610a4c6005546001600160a01b031690565b6001600160a01b031614158015610a65575060075460ff165b15610ac5576001600160a01b03831660009081526006602052604090205460ff1615610ac55760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016104ac565b505050565b80356001600160a01b0381168114610ae157600080fd5b919050565b600060208284031215610af7578081fd5b610b0082610aca565b9392505050565b60008060408385031215610b19578081fd5b610b2283610aca565b9150610b3060208401610aca565b90509250929050565b600080600060608486031215610b4d578081fd5b610b5684610aca565b9250610b6460208501610aca565b9150604084013590509250925092565b60008060408385031215610b86578182fd5b610b8f83610aca565b946020939093013593505050565b600060208284031215610bae578081fd5b81358015158114610b00578182fd5b6000602080835283518082850152825b81811015610be957858101830151858201604001528201610bcd565b81811115610bfa5783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610c2f57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680610c4857607f821691505b60208210811415610c6957634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220324e0eb91bbcd3191860fd6fdb0307778114195fd1e20e20802123f591a08e0564736f6c634300080400330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000044d4f4d4f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4f4d4f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806347535d7b116100ad57806395d89b411161007157806395d89b4114610255578063a457c2d71461025d578063a9059cbb14610270578063dd62ed3e14610283578063f2fde38b1461029657600080fd5b806347535d7b146101e95780634ba79dfe146101f657806370a0823114610209578063715018a6146102325780638da5cb5b1461023a57600080fd5b806323b872dd116100f457806323b872dd1461018e578063313ce567146101a157806338eada1c146101b057806339509351146101c357806340c10f19146101d657600080fd5b806306fdde0314610126578063085a10cf14610144578063095ea7b31461015957806318160ddd1461017c575b600080fd5b61012e6102a9565b60405161013b9190610bbd565b60405180910390f35b610157610152366004610b9d565b61033b565b005b61016c610167366004610b74565b610356565b604051901515815260200161013b565b6002545b60405190815260200161013b565b61016c61019c366004610b39565b61036e565b6040516006815260200161013b565b6101576101be366004610ae6565b610392565b61016c6101d1366004610b74565b6103be565b6101576101e4366004610b74565b6103e0565b60075461016c9060ff1681565b610157610204366004610ae6565b6103f6565b610180610217366004610ae6565b6001600160a01b031660009081526020819052604090205490565b61015761041f565b6005546040516001600160a01b03909116815260200161013b565b61012e610433565b61016c61026b366004610b74565b610442565b61016c61027e366004610b74565b6104c2565b610180610291366004610b07565b6104d0565b6101576102a4366004610ae6565b6104fb565b6060600380546102b890610c34565b80601f01602080910402602001604051908101604052809291908181526020018280546102e490610c34565b80156103315780601f1061030657610100808354040283529160200191610331565b820191906000526020600020905b81548152906001019060200180831161031457829003601f168201915b5050505050905090565b610343610574565b6007805460ff1916911515919091179055565b6000336103648185856105ce565b5060019392505050565b60003361037c8582856106f2565b61038785858561076c565b506001949350505050565b61039a610574565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000336103648185856103d183836104d0565b6103db9190610c10565b6105ce565b6103e8610574565b6103f2828261091b565b5050565b6103fe610574565b6001600160a01b03166000908152600660205260409020805460ff19169055565b610427610574565b61043160006109e6565b565b6060600480546102b890610c34565b6000338161045082866104d0565b9050838110156104b55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61038782868684036105ce565b60003361036481858561076c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610503610574565b6001600160a01b0381166105685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ac565b610571816109e6565b50565b6005546001600160a01b031633146104315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104ac565b6001600160a01b0383166106305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ac565b6001600160a01b0382166106915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ac565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106fe84846104d0565b9050600019811461076657818110156107595760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104ac565b61076684848484036105ce565b50505050565b6001600160a01b0383166107d05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ac565b6001600160a01b0382166108325760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ac565b61083d838383610a38565b6001600160a01b038316600090815260208190526040902054818110156108b55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104ac565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610766565b6001600160a01b0382166109715760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104ac565b61097d60008383610a38565b806002600082825461098f9190610c10565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610a4c6005546001600160a01b031690565b6001600160a01b031614158015610a65575060075460ff165b15610ac5576001600160a01b03831660009081526006602052604090205460ff1615610ac55760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016104ac565b505050565b80356001600160a01b0381168114610ae157600080fd5b919050565b600060208284031215610af7578081fd5b610b0082610aca565b9392505050565b60008060408385031215610b19578081fd5b610b2283610aca565b9150610b3060208401610aca565b90509250929050565b600080600060608486031215610b4d578081fd5b610b5684610aca565b9250610b6460208501610aca565b9150604084013590509250925092565b60008060408385031215610b86578182fd5b610b8f83610aca565b946020939093013593505050565b600060208284031215610bae578081fd5b81358015158114610b00578182fd5b6000602080835283518082850152825b81811015610be957858101830151858201604001528201610bcd565b81811115610bfa5783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610c2f57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680610c4857607f821691505b60208210811415610c6957634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220324e0eb91bbcd3191860fd6fdb0307778114195fd1e20e20802123f591a08e0564736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000044d4f4d4f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4f4d4f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): MOMO
Arg [1] : symbol (string): MOMO

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 4d4f4d4f00000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4d4f4d4f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

20127:995:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6318:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20480:85;;;;;;:::i;:::-;;:::i;:::-;;8669:201;;;;;;:::i;:::-;;:::i;:::-;;;1951:14:1;;1944:22;1926:41;;1914:2;1899:18;8669:201:0;1881:92:1;7438:108:0;7526:12;;7438:108;;;6993:25:1;;;6981:2;6966:18;7438:108:0;6948:76:1;9450:295:0;;;;;;:::i;:::-;;:::i;21027:92::-;;;21110:1;7171:36:1;;7159:2;7144:18;21027:92:0;7126:87:1;20223:101:0;;;;;;:::i;:::-;;:::i;10154:238::-;;;;;;:::i;:::-;;:::i;20924:95::-;;;;;;:::i;:::-;;:::i;20445:26::-;;;;;;;;;20332:105;;;;;;:::i;:::-;;:::i;7609:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7710:18:0;7683:7;7710:18;;;;;;;;;;;;7609:127;19306:103;;;:::i;18658:87::-;18731:6;;18658:87;;-1:-1:-1;;;;;18731:6:0;;;1724:51:1;;1712:2;1697:18;18658:87:0;1679:102:1;6537:104:0;;;:::i;10895:436::-;;;;;;:::i;:::-;;:::i;7942:193::-;;;;;;:::i;:::-;;:::i;8198:151::-;;;;;;:::i;:::-;;:::i;19564:201::-;;;;;;:::i;:::-;;:::i;6318:100::-;6372:13;6405:5;6398:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6318:100;:::o;20480:85::-;18544:13;:11;:13::i;:::-;20541:6:::1;:16:::0;;-1:-1:-1;;20541:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20480:85::o;8669:201::-;8752:4;4130:10;8808:32;4130:10;8824:7;8833:6;8808:8;:32::i;:::-;-1:-1:-1;8858:4:0;;8669:201;-1:-1:-1;;;8669:201:0:o;9450:295::-;9581:4;4130:10;9639:38;9655:4;4130:10;9670:6;9639:15;:38::i;:::-;9688:27;9698:4;9704:2;9708:6;9688:9;:27::i;:::-;-1:-1:-1;9733:4:0;;9450:295;-1:-1:-1;;;;9450:295:0:o;20223:101::-;18544:13;:11;:13::i;:::-;-1:-1:-1;;;;;20289:20:0::1;;::::0;;;:10:::1;:20;::::0;;;;:27;;-1:-1:-1;;20289:27:0::1;20312:4;20289:27;::::0;;20223:101::o;10154:238::-;10242:4;4130:10;10298:64;4130:10;10314:7;10351:10;10323:25;4130:10;10314:7;10323:9;:25::i;:::-;:38;;;;:::i;:::-;10298:8;:64::i;20924:95::-;18544:13;:11;:13::i;:::-;20994:17:::1;21000:2;21004:6;20994:5;:17::i;:::-;20924:95:::0;;:::o;20332:105::-;18544:13;:11;:13::i;:::-;-1:-1:-1;;;;;20401:20:0::1;20424:5;20401:20:::0;;;:10:::1;:20;::::0;;;;:28;;-1:-1:-1;;20401:28:0::1;::::0;;20332:105::o;19306:103::-;18544:13;:11;:13::i;:::-;19371:30:::1;19398:1;19371:18;:30::i;:::-;19306:103::o:0;6537:104::-;6593:13;6626:7;6619:14;;;;;:::i;10895:436::-;10988:4;4130:10;10988:4;11071:25;4130:10;11088:7;11071:9;:25::i;:::-;11044:52;;11135:15;11115:16;:35;;11107:85;;;;-1:-1:-1;;;11107:85:0;;6283:2:1;11107:85:0;;;6265:21:1;6322:2;6302:18;;;6295:30;6361:34;6341:18;;;6334:62;-1:-1:-1;;;6412:18:1;;;6405:35;6457:19;;11107:85:0;;;;;;;;;11228:60;11237:5;11244:7;11272:15;11253:16;:34;11228:8;:60::i;7942:193::-;8021:4;4130:10;8077:28;4130:10;8094:2;8098:6;8077:9;:28::i;8198:151::-;-1:-1:-1;;;;;8314:18:0;;;8287:7;8314:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8198:151::o;19564:201::-;18544:13;:11;:13::i;:::-;-1:-1:-1;;;;;19653:22:0;::::1;19645:73;;;::::0;-1:-1:-1;;;19645:73:0;;3536:2:1;19645:73:0::1;::::0;::::1;3518:21:1::0;3575:2;3555:18;;;3548:30;3614:34;3594:18;;;3587:62;-1:-1:-1;;;3665:18:1;;;3658:36;3711:19;;19645:73:0::1;3508:228:1::0;19645:73:0::1;19729:28;19748:8;19729:18;:28::i;:::-;19564:201:::0;:::o;18823:132::-;18731:6;;-1:-1:-1;;;;;18731:6:0;4130:10;18887:23;18879:68;;;;-1:-1:-1;;;18879:68:0;;5111:2:1;18879:68:0;;;5093:21:1;;;5130:18;;;5123:30;5189:34;5169:18;;;5162:62;5241:18;;18879:68:0;5083:182:1;14922:380:0;-1:-1:-1;;;;;15058:19:0;;15050:68;;;;-1:-1:-1;;;15050:68:0;;5878:2:1;15050:68:0;;;5860:21:1;5917:2;5897:18;;;5890:30;5956:34;5936:18;;;5929:62;-1:-1:-1;;;6007:18:1;;;6000:34;6051:19;;15050:68:0;5850:226:1;15050:68:0;-1:-1:-1;;;;;15137:21:0;;15129:68;;;;-1:-1:-1;;;15129:68:0;;3943:2:1;15129:68:0;;;3925:21:1;3982:2;3962:18;;;3955:30;4021:34;4001:18;;;3994:62;-1:-1:-1;;;4072:18:1;;;4065:32;4114:19;;15129:68:0;3915:224:1;15129:68:0;-1:-1:-1;;;;;15210:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15262:32;;6993:25:1;;;15262:32:0;;6966:18:1;15262:32:0;;;;;;;14922:380;;;:::o;15593:453::-;15728:24;15755:25;15765:5;15772:7;15755:9;:25::i;:::-;15728:52;;-1:-1:-1;;15795:16:0;:37;15791:248;;15877:6;15857:16;:26;;15849:68;;;;-1:-1:-1;;;15849:68:0;;4346:2:1;15849:68:0;;;4328:21:1;4385:2;4365:18;;;4358:30;4424:31;4404:18;;;4397:59;4473:18;;15849:68:0;4318:179:1;15849:68:0;15961:51;15970:5;15977:7;16005:6;15986:16;:25;15961:8;:51::i;:::-;15593:453;;;;:::o;11801:840::-;-1:-1:-1;;;;;11932:18:0;;11924:68;;;;-1:-1:-1;;;11924:68:0;;5472:2:1;11924:68:0;;;5454:21:1;5511:2;5491:18;;;5484:30;5550:34;5530:18;;;5523:62;-1:-1:-1;;;5601:18:1;;;5594:35;5646:19;;11924:68:0;5444:227:1;11924:68:0;-1:-1:-1;;;;;12011:16:0;;12003:64;;;;-1:-1:-1;;;12003:64:0;;2788:2:1;12003:64:0;;;2770:21:1;2827:2;2807:18;;;2800:30;2866:34;2846:18;;;2839:62;-1:-1:-1;;;2917:18:1;;;2910:33;2960:19;;12003:64:0;2760:225:1;12003:64:0;12080:38;12101:4;12107:2;12111:6;12080:20;:38::i;:::-;-1:-1:-1;;;;;12153:15:0;;12131:19;12153:15;;;;;;;;;;;12187:21;;;;12179:72;;;;-1:-1:-1;;;12179:72:0;;4704:2:1;12179:72:0;;;4686:21:1;4743:2;4723:18;;;4716:30;4782:34;4762:18;;;4755:62;-1:-1:-1;;;4833:18:1;;;4826:36;4879:19;;12179:72:0;4676:228:1;12179:72:0;-1:-1:-1;;;;;12287:15:0;;;:9;:15;;;;;;;;;;;12305:20;;;12287:38;;12505:13;;;;;;;;;;:23;;;;;;12557:26;;6993:25:1;;;12505:13:0;;12557:26;;6966:18:1;12557:26:0;;;;;;;12596:37;20573:259;12928:548;-1:-1:-1;;;;;13012:21:0;;13004:65;;;;-1:-1:-1;;;13004:65:0;;6689:2:1;13004:65:0;;;6671:21:1;6728:2;6708:18;;;6701:30;6767:33;6747:18;;;6740:61;6818:18;;13004:65:0;6661:181:1;13004:65:0;13082:49;13111:1;13115:7;13124:6;13082:20;:49::i;:::-;13160:6;13144:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13315:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;13370:37;6993:25:1;;;13370:37:0;;6966:18:1;13370:37:0;;;;;;;20924:95;;:::o;19925:191::-;20018:6;;;-1:-1:-1;;;;;20035:17:0;;;-1:-1:-1;;;;;;20035:17:0;;;;;;;20068:40;;20018:6;;;20035:17;20018:6;;20068:40;;19999:16;;20068:40;19925:191;;:::o;20573:259::-;20739:1;20720:7;18731:6;;-1:-1:-1;;;;;18731:6:0;;18658:87;20720:7;-1:-1:-1;;;;;20720:21:0;;;:31;;;;-1:-1:-1;20745:6:0;;;;20720:31;20716:109;;;-1:-1:-1;;;;;20777:16:0;;;;;;:10;:16;;;;;;;;20776:17;20768:45;;;;-1:-1:-1;;;20768:45:0;;3192:2:1;20768:45:0;;;3174:21:1;3231:2;3211:18;;;3204:30;-1:-1:-1;;;3250:18:1;;;3243:45;3305:18;;20768:45:0;3164:165:1;20768:45:0;20573:259;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:293::-;1336:6;1389:2;1377:9;1368:7;1364:23;1360:32;1357:2;;;1410:6;1402;1395:22;1357:2;1454:9;1441:23;1507:5;1500:13;1493:21;1486:5;1483:32;1473:2;;1534:6;1526;1519:22;1978:603;2090:4;2119:2;2148;2137:9;2130:21;2180:6;2174:13;2223:6;2218:2;2207:9;2203:18;2196:34;2248:4;2261:140;2275:6;2272:1;2269:13;2261:140;;;2370:14;;;2366:23;;2360:30;2336:17;;;2355:2;2332:26;2325:66;2290:10;;2261:140;;;2419:6;2416:1;2413:13;2410:2;;;2489:4;2484:2;2475:6;2464:9;2460:22;2456:31;2449:45;2410:2;-1:-1:-1;2565:2:1;2544:15;-1:-1:-1;;2540:29:1;2525:45;;;;2572:2;2521:54;;2099:482;-1:-1:-1;;;2099:482:1:o;7218:229::-;7258:3;7289:1;7285:6;7282:1;7279:13;7276:2;;;-1:-1:-1;;;7315:33:1;;7371:4;7368:1;7361:15;7401:4;7322:3;7389:17;7276:2;-1:-1:-1;7432:9:1;;7266:181::o;7452:380::-;7531:1;7527:12;;;;7574;;;7595:2;;7649:4;7641:6;7637:17;7627:27;;7595:2;7702;7694:6;7691:14;7671:18;7668:38;7665:2;;;7748:10;7743:3;7739:20;7736:1;7729:31;7783:4;7780:1;7773:15;7811:4;7808:1;7801:15;7665:2;;7507:325;;;:::o

Swarm Source

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