ETH Price: $2,868.20 (-2.75%)
 

Overview

Max Total Supply

1,000,100,000,000 SHMIGGLE

Holders

5,071

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
213 SHMIGGLE

Value
$0.00
0x5b865b327e27478e959f8579824c1ac67a10ad85
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Shmiggle

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2025-06-26
*/

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


// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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


// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * Both 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 returns (string memory) {
        return _name;
    }

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner`'s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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: shmiggle.sol


pragma solidity ^0.8.20;



contract Shmiggle is ERC20, Ownable {
    uint256 public ethTransferFee;
        bool public transferPaused = false;

            address public feeCollector;

                constructor(address initialOwner) ERC20("Shmiggle", "SHMIGGLE") Ownable(initialOwner) {
                        _mint(initialOwner, 100_000_000 * 1e18);
                                ethTransferFee = 0.0005 ether;
                                        feeCollector = initialOwner;
                                            }

                                                // Transfer hook with pause and fee logic
                                                    function _update(address from, address to, uint256 amount) internal override {
                                                            require(!transferPaused, "Transfers are paused");

                                                                    if (from != address(0) && from != owner()) {
                                                                                require(msg.value >= ethTransferFee, "Insufficient ETH fee");
                                                                                        }

                                                                                                super._update(from, to, amount);
                                                                                                    }

                                                                                                        // Admin functions
                                                                                                            function setTransferFee(uint256 feeInWei) external onlyOwner {
                                                                                                                    ethTransferFee = feeInWei;
                                                                                                                        }

                                                                                                                            function setFeeCollector(address newCollector) external onlyOwner {
                                                                                                                                    feeCollector = newCollector;
                                                                                                                                        }

                                                                                                                                            function pauseTransfer(bool status) external onlyOwner {
                                                                                                                                                    transferPaused = status;
                                                                                                                                                        }

                                                                                                                                                            function topUp(uint256 amount) external onlyOwner {
                                                                                                                                                                    _mint(msg.sender, amount);
                                                                                                                                                                        }

                                                                                                                                                                            function withdrawETH() external onlyOwner {
                                                                                                                                                                                    payable(feeCollector).transfer(address(this).balance);
                                                                                                                                                                                        }

                                                                                                                                                                                            receive() external payable {}
                                                                                                                                                                                            }

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"value","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":[],"name":"ethTransferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"pauseTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newCollector","type":"address"}],"name":"setFeeCollector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeInWei","type":"uint256"}],"name":"setTransferFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"topUp","outputs":[],"stateMutability":"nonpayable","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":"value","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":"value","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":"transferPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526007805460ff191690553480156200001a575f80fd5b506040516200118b3803806200118b8339810160408190526200003d91620003d0565b806040518060400160405280600881526020016753686d6967676c6560c01b8152506040518060400160405280600881526020016753484d4947474c4560c01b81525081600390816200009191906200049e565b506004620000a082826200049e565b5050506001600160a01b038116620000d257604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000dd816200012c565b50620000f5816a52b7d2dcc80cd2e40000006200017d565b6601c6bf52634000600655600780546001600160a01b0390921661010002610100600160a81b03199092169190911790556200058c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620001a85760405163ec442f0560e01b81525f6004820152602401620000c9565b620001b55f8383620001b9565b5050565b60075460ff16156200020e5760405162461bcd60e51b815260206004820152601460248201527f5472616e736665727320617265207061757365640000000000000000000000006044820152606401620000c9565b6001600160a01b038316158015906200023557506005546001600160a01b03848116911614155b156200028f576006543410156200028f5760405162461bcd60e51b815260206004820152601460248201527f496e73756666696369656e7420455448206665650000000000000000000000006044820152606401620000c9565b6200029c838383620002a1565b505050565b6001600160a01b038316620002cf578060025f828254620002c3919062000566565b90915550620003419050565b6001600160a01b0383165f9081526020819052604090205481811015620003235760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000c9565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166200035f576002805482900390556200037d565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003c391815260200190565b60405180910390a3505050565b5f60208284031215620003e1575f80fd5b81516001600160a01b0381168114620003f8575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200042857607f821691505b6020821081036200044757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200029c575f81815260208120601f850160051c81016020861015620004755750805b601f850160051c820191505b81811015620004965782815560010162000481565b505050505050565b81516001600160401b03811115620004ba57620004ba620003ff565b620004d281620004cb845462000413565b846200044d565b602080601f83116001811462000508575f8415620004f05750858301515b5f19600386901b1c1916600185901b17855562000496565b5f85815260208120601f198616915b82811015620005385788860151825594840194600190910190840162000517565b50858210156200055657878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200058657634e487b7160e01b5f52601160045260245ffd5b92915050565b610bf1806200059a5f395ff3fe60806040526004361061011e575f3560e01c80638da5cb5b1161009d578063c415b95c11610062578063c415b95c14610319578063dd62ed3e1461033d578063e086e5ec14610381578063f2fde38b14610395578063fb2cb34e146103b4575f80fd5b80638da5cb5b146102775780638f02bb5b146102a857806395d89b41146102c7578063a42dce80146102db578063a9059cbb146102fa575f80fd5b8063313ce567116100e3578063313ce567146101e057806350017f3e146101fb578063588a1a841461021a57806370a082311461022f578063715018a614610263575f80fd5b806306fdde0314610129578063095ea7b31461015357806318160ddd146101825780631ecc17c4146101a057806323b872dd146101c1575f80fd5b3661012557005b5f80fd5b348015610134575f80fd5b5061013d6103cd565b60405161014a9190610a16565b60405180910390f35b34801561015e575f80fd5b5061017261016d366004610a7c565b61045d565b604051901515815260200161014a565b34801561018d575f80fd5b506002545b60405190815260200161014a565b3480156101ab575f80fd5b506101bf6101ba366004610aa4565b610476565b005b3480156101cc575f80fd5b506101726101db366004610aca565b610491565b3480156101eb575f80fd5b506040516012815260200161014a565b348015610206575f80fd5b506101bf610215366004610b03565b6104b4565b348015610225575f80fd5b5061019260065481565b34801561023a575f80fd5b50610192610249366004610b1a565b6001600160a01b03165f9081526020819052604090205490565b34801561026e575f80fd5b506101bf6104c9565b348015610282575f80fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161014a565b3480156102b3575f80fd5b506101bf6102c2366004610b03565b6104dc565b3480156102d2575f80fd5b5061013d6104e9565b3480156102e6575f80fd5b506101bf6102f5366004610b1a565b6104f8565b348015610305575f80fd5b50610172610314366004610a7c565b610528565b348015610324575f80fd5b506007546102909061010090046001600160a01b031681565b348015610348575f80fd5b50610192610357366004610b33565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561038c575f80fd5b506101bf610535565b3480156103a0575f80fd5b506101bf6103af366004610b1a565b61057a565b3480156103bf575f80fd5b506007546101729060ff1681565b6060600380546103dc90610b64565b80601f016020809104026020016040519081016040528092919081815260200182805461040890610b64565b80156104535780601f1061042a57610100808354040283529160200191610453565b820191905f5260205f20905b81548152906001019060200180831161043657829003601f168201915b5050505050905090565b5f3361046a8185856105b9565b60019150505b92915050565b61047e6105cb565b6007805460ff1916911515919091179055565b5f3361049e8582856105f8565b6104a9858585610674565b506001949350505050565b6104bc6105cb565b6104c633826106d1565b50565b6104d16105cb565b6104da5f610709565b565b6104e46105cb565b600655565b6060600480546103dc90610b64565b6105006105cb565b600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5f3361046a818585610674565b61053d6105cb565b6007546040516001600160a01b0361010090920491909116904780156108fc02915f818181858888f193505050501580156104c6573d5f803e3d5ffd5b6105826105cb565b6001600160a01b0381166105b057604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6104c681610709565b6105c6838383600161075a565b505050565b6005546001600160a01b031633146104da5760405163118cdaa760e01b81523360048201526024016105a7565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981101561066e578181101561066057604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016105a7565b61066e84848484035f61075a565b50505050565b6001600160a01b03831661069d57604051634b637e8f60e11b81525f60048201526024016105a7565b6001600160a01b0382166106c65760405163ec442f0560e01b81525f60048201526024016105a7565b6105c683838361082c565b6001600160a01b0382166106fa5760405163ec442f0560e01b81525f60048201526024016105a7565b6107055f838361082c565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166107835760405163e602df0560e01b81525f60048201526024016105a7565b6001600160a01b0383166107ac57604051634a1406b160e11b81525f60048201526024016105a7565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561066e57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161081e91815260200190565b60405180910390a350505050565b60075460ff16156108765760405162461bcd60e51b8152602060048201526014602482015273151c985b9cd9995c9cc8185c99481c185d5cd95960621b60448201526064016105a7565b6001600160a01b0383161580159061089c57506005546001600160a01b03848116911614155b156108ea576006543410156108ea5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e74204554482066656560601b60448201526064016105a7565b6105c68383836001600160a01b03831661091a578060025f82825461090f9190610b9c565b9091555061098a9050565b6001600160a01b0383165f908152602081905260409020548181101561096c5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016105a7565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166109a6576002805482900390556109c4565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a0991815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610a4157858101830151858201604001528201610a25565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a77575f80fd5b919050565b5f8060408385031215610a8d575f80fd5b610a9683610a61565b946020939093013593505050565b5f60208284031215610ab4575f80fd5b81358015158114610ac3575f80fd5b9392505050565b5f805f60608486031215610adc575f80fd5b610ae584610a61565b9250610af360208501610a61565b9150604084013590509250925092565b5f60208284031215610b13575f80fd5b5035919050565b5f60208284031215610b2a575f80fd5b610ac382610a61565b5f8060408385031215610b44575f80fd5b610b4d83610a61565b9150610b5b60208401610a61565b90509250929050565b600181811c90821680610b7857607f821691505b602082108103610b9657634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561047057634e487b7160e01b5f52601160045260245ffdfea2646970667358221220d3357b37e70fa07b65fb5783296d6683e83972bce1952725ecc10f42a953c32064736f6c63430008140033000000000000000000000000555551d9fbe5f5d2c2abfa119ce925183e625bfe

Deployed Bytecode

0x60806040526004361061011e575f3560e01c80638da5cb5b1161009d578063c415b95c11610062578063c415b95c14610319578063dd62ed3e1461033d578063e086e5ec14610381578063f2fde38b14610395578063fb2cb34e146103b4575f80fd5b80638da5cb5b146102775780638f02bb5b146102a857806395d89b41146102c7578063a42dce80146102db578063a9059cbb146102fa575f80fd5b8063313ce567116100e3578063313ce567146101e057806350017f3e146101fb578063588a1a841461021a57806370a082311461022f578063715018a614610263575f80fd5b806306fdde0314610129578063095ea7b31461015357806318160ddd146101825780631ecc17c4146101a057806323b872dd146101c1575f80fd5b3661012557005b5f80fd5b348015610134575f80fd5b5061013d6103cd565b60405161014a9190610a16565b60405180910390f35b34801561015e575f80fd5b5061017261016d366004610a7c565b61045d565b604051901515815260200161014a565b34801561018d575f80fd5b506002545b60405190815260200161014a565b3480156101ab575f80fd5b506101bf6101ba366004610aa4565b610476565b005b3480156101cc575f80fd5b506101726101db366004610aca565b610491565b3480156101eb575f80fd5b506040516012815260200161014a565b348015610206575f80fd5b506101bf610215366004610b03565b6104b4565b348015610225575f80fd5b5061019260065481565b34801561023a575f80fd5b50610192610249366004610b1a565b6001600160a01b03165f9081526020819052604090205490565b34801561026e575f80fd5b506101bf6104c9565b348015610282575f80fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161014a565b3480156102b3575f80fd5b506101bf6102c2366004610b03565b6104dc565b3480156102d2575f80fd5b5061013d6104e9565b3480156102e6575f80fd5b506101bf6102f5366004610b1a565b6104f8565b348015610305575f80fd5b50610172610314366004610a7c565b610528565b348015610324575f80fd5b506007546102909061010090046001600160a01b031681565b348015610348575f80fd5b50610192610357366004610b33565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561038c575f80fd5b506101bf610535565b3480156103a0575f80fd5b506101bf6103af366004610b1a565b61057a565b3480156103bf575f80fd5b506007546101729060ff1681565b6060600380546103dc90610b64565b80601f016020809104026020016040519081016040528092919081815260200182805461040890610b64565b80156104535780601f1061042a57610100808354040283529160200191610453565b820191905f5260205f20905b81548152906001019060200180831161043657829003601f168201915b5050505050905090565b5f3361046a8185856105b9565b60019150505b92915050565b61047e6105cb565b6007805460ff1916911515919091179055565b5f3361049e8582856105f8565b6104a9858585610674565b506001949350505050565b6104bc6105cb565b6104c633826106d1565b50565b6104d16105cb565b6104da5f610709565b565b6104e46105cb565b600655565b6060600480546103dc90610b64565b6105006105cb565b600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5f3361046a818585610674565b61053d6105cb565b6007546040516001600160a01b0361010090920491909116904780156108fc02915f818181858888f193505050501580156104c6573d5f803e3d5ffd5b6105826105cb565b6001600160a01b0381166105b057604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6104c681610709565b6105c6838383600161075a565b505050565b6005546001600160a01b031633146104da5760405163118cdaa760e01b81523360048201526024016105a7565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981101561066e578181101561066057604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016105a7565b61066e84848484035f61075a565b50505050565b6001600160a01b03831661069d57604051634b637e8f60e11b81525f60048201526024016105a7565b6001600160a01b0382166106c65760405163ec442f0560e01b81525f60048201526024016105a7565b6105c683838361082c565b6001600160a01b0382166106fa5760405163ec442f0560e01b81525f60048201526024016105a7565b6107055f838361082c565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166107835760405163e602df0560e01b81525f60048201526024016105a7565b6001600160a01b0383166107ac57604051634a1406b160e11b81525f60048201526024016105a7565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561066e57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161081e91815260200190565b60405180910390a350505050565b60075460ff16156108765760405162461bcd60e51b8152602060048201526014602482015273151c985b9cd9995c9cc8185c99481c185d5cd95960621b60448201526064016105a7565b6001600160a01b0383161580159061089c57506005546001600160a01b03848116911614155b156108ea576006543410156108ea5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e74204554482066656560601b60448201526064016105a7565b6105c68383836001600160a01b03831661091a578060025f82825461090f9190610b9c565b9091555061098a9050565b6001600160a01b0383165f908152602081905260409020548181101561096c5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016105a7565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166109a6576002805482900390556109c4565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a0991815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610a4157858101830151858201604001528201610a25565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a77575f80fd5b919050565b5f8060408385031215610a8d575f80fd5b610a9683610a61565b946020939093013593505050565b5f60208284031215610ab4575f80fd5b81358015158114610ac3575f80fd5b9392505050565b5f805f60608486031215610adc575f80fd5b610ae584610a61565b9250610af360208501610a61565b9150604084013590509250925092565b5f60208284031215610b13575f80fd5b5035919050565b5f60208284031215610b2a575f80fd5b610ac382610a61565b5f8060408385031215610b44575f80fd5b610b4d83610a61565b9150610b5b60208401610a61565b90509250929050565b600181811c90821680610b7857607f821691505b602082108103610b9657634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561047057634e487b7160e01b5f52601160045260245ffdfea2646970667358221220d3357b37e70fa07b65fb5783296d6683e83972bce1952725ecc10f42a953c32064736f6c63430008140033

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

000000000000000000000000555551d9fbe5f5d2c2abfa119ce925183e625bfe

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x555551d9FbE5F5D2c2AbfA119CE925183e625BFE

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000555551d9fbe5f5d2c2abfa119ce925183e625bfe


Deployed Bytecode Sourcemap

25617:4655:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15293:190;;;;;;;;;;-1:-1:-1;15293:190:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;15293:190:0;1004:187:1;14102:99:0;;;;;;;;;;-1:-1:-1;14181:12:0;;14102:99;;;1342:25:1;;;1330:2;1315:18;14102:99:0;1196:177:1;28259:385:0;;;;;;;;;;-1:-1:-1;28259:385:0;;;;;:::i;:::-;;:::i;:::-;;16093:249;;;;;;;;;;-1:-1:-1;16093:249:0;;;;;:::i;:::-;;:::i;13953:84::-;;;;;;;;;;-1:-1:-1;13953:84:0;;14027:2;2131:36:1;;2119:2;2104:18;13953:84:0;1989:184:1;28804:414:0;;;;;;;;;;-1:-1:-1;28804:414:0;;;;;:::i;:::-;;:::i;25660:29::-;;;;;;;;;;;;;;;;14264:118;;;;;;;;;;-1:-1:-1;14264:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14356:18:0;14329:7;14356:18;;;;;;;;;;;;14264:118;24722:103;;;;;;;;;;;;;:::i;24047:87::-;;;;;;;;;;-1:-1:-1;24120:6:0;;-1:-1:-1;;;;;24120:6:0;24047:87;;;-1:-1:-1;;;;;2718:32:1;;;2700:51;;2688:2;2673:18;24047:87:0;2554:203:1;27290:329:0;;;;;;;;;;-1:-1:-1;27290:329:0;;;;;:::i;:::-;;:::i;13210:95::-;;;;;;;;;;;;;:::i;27747:368::-;;;;;;;;;;-1:-1:-1;27747:368:0;;;;;:::i;:::-;;:::i;14587:182::-;;;;;;;;;;-1:-1:-1;14587:182:0;;;;;:::i;:::-;;:::i;25751:27::-;;;;;;;;;;-1:-1:-1;25751:27:0;;;;;;;-1:-1:-1;;;;;25751:27:0;;;14832:142;;;;;;;;;;-1:-1:-1;14832:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;14939:18:0;;;14912:7;14939:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14832:142;29394:466;;;;;;;;;;;;;:::i;24980:220::-;;;;;;;;;;-1:-1:-1;24980:220:0;;;;;:::i;:::-;;:::i;25700:34::-;;;;;;;;;;-1:-1:-1;25700:34:0;;;;;;;;13000:91;13045:13;13078:5;13071:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000:91;:::o;15293:190::-;15366:4;4384:10;15422:31;4384:10;15438:7;15447:5;15422:8;:31::i;:::-;15471:4;15464:11;;;15293:190;;;;;:::o;28259:385::-;23933:13;:11;:13::i;:::-;28465:14:::1;:23:::0;;-1:-1:-1;;28465:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28259:385::o;16093:249::-;16180:4;4384:10;16238:37;16254:4;4384:10;16269:5;16238:15;:37::i;:::-;16286:26;16296:4;16302:2;16306:5;16286:9;:26::i;:::-;-1:-1:-1;16330:4:0;;16093:249;-1:-1:-1;;;;16093:249:0:o;28804:414::-;23933:13;:11;:13::i;:::-;29021:25:::1;29027:10;29039:6;29021:5;:25::i;:::-;28804:414:::0;:::o;24722:103::-;23933:13;:11;:13::i;:::-;24787:30:::1;24814:1;24787:18;:30::i;:::-;24722:103::o:0;27290:329::-;23933:13;:11;:13::i;:::-;27470:14:::1;:25:::0;27290:329::o;13210:95::-;13257:13;13290:7;13283:14;;;;;:::i;27747:368::-;23933:13;:11;:13::i;:::-;27948:12:::1;:27:::0;;-1:-1:-1;;;;;27948:27:0;;::::1;;;-1:-1:-1::0;;;;;;27948:27:0;;::::1;::::0;;;::::1;::::0;;27747:368::o;14587:182::-;14656:4;4384:10;14712:27;4384:10;14729:2;14733:5;14712:9;:27::i;29394:466::-;23933:13;:11;:13::i;:::-;29627:12:::1;::::0;29619:53:::1;::::0;-1:-1:-1;;;;;29627:12:0::1;::::0;;::::1;::::0;;;::::1;::::0;29650:21:::1;29619:53:::0;::::1;;;::::0;::::1;::::0;;;29650:21;29627:12;29619:53;::::1;;;;;;;;;;;;;::::0;::::1;;;;24980:220:::0;23933:13;:11;:13::i;:::-;-1:-1:-1;;;;;25065:22:0;::::1;25061:93;;25111:31;::::0;-1:-1:-1;;;25111:31:0;;25139:1:::1;25111:31;::::0;::::1;2700:51:1::0;2673:18;;25111:31:0::1;;;;;;;;25061:93;25164:28;25183:8;25164:18;:28::i;20152:130::-:0;20237:37;20246:5;20253:7;20262:5;20269:4;20237:8;:37::i;:::-;20152:130;;;:::o;24212:166::-;24120:6;;-1:-1:-1;;;;;24120:6:0;4384:10;24272:23;24268:103;;24319:40;;-1:-1:-1;;;24319:40:0;;4384:10;24319:40;;;2700:51:1;2673:18;;24319:40:0;2554:203:1;21884:486:0;-1:-1:-1;;;;;14939:18:0;;;21984:24;14939:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22051:36:0;;22047:316;;;22127:5;22108:16;:24;22104:132;;;22160:60;;-1:-1:-1;;;22160:60:0;;-1:-1:-1;;;;;3632:32:1;;22160:60:0;;;3614:51:1;3681:18;;;3674:34;;;3724:18;;;3717:34;;;3587:18;;22160:60:0;3412:345:1;22104:132:0;22279:57;22288:5;22295:7;22323:5;22304:16;:24;22330:5;22279:8;:57::i;:::-;21973:397;21884:486;;;:::o;16727:308::-;-1:-1:-1;;;;;16811:18:0;;16807:88;;16853:30;;-1:-1:-1;;;16853:30:0;;16880:1;16853:30;;;2700:51:1;2673:18;;16853:30:0;2554:203:1;16807:88:0;-1:-1:-1;;;;;16909:16:0;;16905:88;;16949:32;;-1:-1:-1;;;16949:32:0;;16978:1;16949:32;;;2700:51:1;2673:18;;16949:32:0;2554:203:1;16905:88:0;17003:24;17011:4;17017:2;17021:5;17003:7;:24::i;18847:213::-;-1:-1:-1;;;;;18918:21:0;;18914:93;;18963:32;;-1:-1:-1;;;18963:32:0;;18992:1;18963:32;;;2700:51:1;2673:18;;18963:32:0;2554:203:1;18914:93:0;19017:35;19033:1;19037:7;19046:5;19017:7;:35::i;:::-;18847:213;;:::o;25360:191::-;25453:6;;;-1:-1:-1;;;;;25470:17:0;;;-1:-1:-1;;;;;;25470:17:0;;;;;;;25503:40;;25453:6;;;25470:17;25453:6;;25503:40;;25434:16;;25503:40;25423:128;25360:191;:::o;21149:443::-;-1:-1:-1;;;;;21262:19:0;;21258:91;;21305:32;;-1:-1:-1;;;21305:32:0;;21334:1;21305:32;;;2700:51:1;2673:18;;21305:32:0;2554:203:1;21258:91:0;-1:-1:-1;;;;;21363:21:0;;21359:92;;21408:31;;-1:-1:-1;;;21408:31:0;;21436:1;21408:31;;;2700:51:1;2673:18;;21408:31:0;2554:203:1;21359:92:0;-1:-1:-1;;;;;21461:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21507:78;;;;21558:7;-1:-1:-1;;;;;21542:31:0;21551:5;-1:-1:-1;;;;;21542:31:0;;21567:5;21542:31;;;;1342:25:1;;1330:2;1315:18;;1196:177;21542:31:0;;;;;;;;21149:443;;;;:::o;26280:774::-;26429:14;;;;26428:15;26420:48;;;;-1:-1:-1;;;26420:48:0;;3964:2:1;26420:48:0;;;3946:21:1;4003:2;3983:18;;;3976:30;-1:-1:-1;;;4022:18:1;;;4015:50;4082:18;;26420:48:0;3762:344:1;26420:48:0;-1:-1:-1;;;;;26545:18:0;;;;;;:37;;-1:-1:-1;24120:6:0;;-1:-1:-1;;;;;26567:15:0;;;24120:6;;26567:15;;26545:37;26541:278;;;26688:14;;26675:9;:27;;26667:60;;;;-1:-1:-1;;;26667:60:0;;4313:2:1;26667:60:0;;;4295:21:1;4352:2;4332:18;;;4325:30;-1:-1:-1;;;4371:18:1;;;4364:50;4431:18;;26667:60:0;4111:344:1;26667:60:0;26919:31;26933:4;26939:2;26943:6;-1:-1:-1;;;;;17449:18:0;;17445:552;;17603:5;17587:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17445:552:0;;-1:-1:-1;17445:552:0;;-1:-1:-1;;;;;17663:15:0;;17641:19;17663:15;;;;;;;;;;;17697:19;;;17693:117;;;17744:50;;-1:-1:-1;;;17744:50:0;;-1:-1:-1;;;;;3632:32:1;;17744:50:0;;;3614:51:1;3681:18;;;3674:34;;;3724:18;;;3717:34;;;3587:18;;17744:50:0;3412:345:1;17693:117:0;-1:-1:-1;;;;;17933:15:0;;:9;:15;;;;;;;;;;17951:19;;;;17933:37;;17445:552;-1:-1:-1;;;;;18013:16:0;;18009:435;;18179:12;:21;;;;;;;18009:435;;;-1:-1:-1;;;;;18395:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18009:435;18476:2;-1:-1:-1;;;;;18461:25:0;18470:4;-1:-1:-1;;;;;18461:25:0;;18480:5;18461:25;;;;1342::1;;1330:2;1315:18;;1196:177;18461:25:0;;;;;;;;17359:1135;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:273::-;1434:6;1487:2;1475:9;1466:7;1462:23;1458:32;1455:52;;;1503:1;1500;1493:12;1455:52;1542:9;1529:23;1595:5;1588:13;1581:21;1574:5;1571:32;1561:60;;1617:1;1614;1607:12;1561:60;1640:5;1378:273;-1:-1:-1;;;1378:273:1:o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;2178:180::-;2237:6;2290:2;2278:9;2269:7;2265:23;2261:32;2258:52;;;2306:1;2303;2296:12;2258:52;-1:-1:-1;2329:23:1;;2178:180;-1:-1:-1;2178:180:1:o;2363:186::-;2422:6;2475:2;2463:9;2454:7;2450:23;2446:32;2443:52;;;2491:1;2488;2481:12;2443:52;2514:29;2533:9;2514:29;:::i;2762:260::-;2830:6;2838;2891:2;2879:9;2870:7;2866:23;2862:32;2859:52;;;2907:1;2904;2897:12;2859:52;2930:29;2949:9;2930:29;:::i;:::-;2920:39;;2978:38;3012:2;3001:9;2997:18;2978:38;:::i;:::-;2968:48;;2762:260;;;;;:::o;3027:380::-;3106:1;3102:12;;;;3149;;;3170:61;;3224:4;3216:6;3212:17;3202:27;;3170:61;3277:2;3269:6;3266:14;3246:18;3243:38;3240:161;;3323:10;3318:3;3314:20;3311:1;3304:31;3358:4;3355:1;3348:15;3386:4;3383:1;3376:15;3240:161;;3027:380;;;:::o;4460:222::-;4525:9;;;4546:10;;;4543:133;;;4598:10;4593:3;4589:20;4586:1;4579:31;4633:4;4630:1;4623:15;4661:4;4658:1;4651:15

Swarm Source

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