Sepolia Testnet

Token

USDT (USDT)
ERC-20

Overview

Max Total Supply

4,374,154,062.72168 USDT

Holders

294,338

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Balance
474,269.902002 USDT
0x523C8591Fbe215B5aF0bEad65e65dF783A37BCBC
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 5: Token.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;

import "./ERC20.sol";

contract Token is ERC20 {

    constructor(string memory name_, string memory symbol_, uint8 decimals_) ERC20(name_, symbol_, decimals_) {
        _mint(_msgSender(), 1_000_000_000 * (10 ** decimals_));
    }

    function mint(address to, uint256 value) external returns (bool) {
        require(value <= 10_000 * (10 ** decimals()), "Token: invalid amount");
        _mint(to, value);
        return true;
    }
}

File 1 of 5: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 2 of 5: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

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

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

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

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

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

File 3 of 5: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 4 of 5: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC20.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);
}

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]

60806040523480156200001157600080fd5b50604051620013a1380380620013a1833981016040819052620000349162000234565b828282600362000045848262000347565b50600462000054838262000347565b506005805460ff191660ff92909216919091179055506200009b9050620000783390565b6200008583600a62000528565b6200009590633b9aca0062000540565b620000a4565b50505062000570565b6001600160a01b038216620000ff5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200011391906200055a565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200019757600080fd5b81516001600160401b0380821115620001b457620001b46200016f565b604051601f8301601f19908116603f01168101908282118183101715620001df57620001df6200016f565b81604052838152602092508683858801011115620001fc57600080fd5b600091505b8382101562000220578582018301518183018401529082019062000201565b600093810190920192909252949350505050565b6000806000606084860312156200024a57600080fd5b83516001600160401b03808211156200026257600080fd5b620002708783880162000185565b945060208601519150808211156200028757600080fd5b50620002968682870162000185565b925050604084015160ff81168114620002ae57600080fd5b809150509250925092565b600181811c90821680620002ce57607f821691505b602082108103620002ef57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200016a57600081815260208120601f850160051c810160208610156200031e5750805b601f850160051c820191505b818110156200033f578281556001016200032a565b505050505050565b81516001600160401b038111156200036357620003636200016f565b6200037b81620003748454620002b9565b84620002f5565b602080601f831160018114620003b357600084156200039a5750858301515b600019600386901b1c1916600185901b1785556200033f565b600085815260208120601f198616915b82811015620003e457888601518255948401946001909101908401620003c3565b5085821015620004035787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200046a5781600019048211156200044e576200044e62000413565b808516156200045c57918102915b93841c93908002906200042e565b509250929050565b600082620004835750600162000522565b81620004925750600062000522565b8160018114620004ab5760028114620004b657620004d6565b600191505062000522565b60ff841115620004ca57620004ca62000413565b50506001821b62000522565b5060208310610133831016604e8410600b8410161715620004fb575081810a62000522565b62000507838362000429565b80600019048211156200051e576200051e62000413565b0290505b92915050565b60006200053960ff84168362000472565b9392505050565b808202811582820484141762000522576200052262000413565b8082018082111562000522576200052262000413565b610e2180620005806000396000f3fe608060405234801561001057600080fd5b50600436106100d45760003560e01c806340c10f1911610081578063a457c2d71161005b578063a457c2d7146101b8578063a9059cbb146101cb578063dd62ed3e146101de57600080fd5b806340c10f191461016757806370a082311461017a57806395d89b41146101b057600080fd5b806323b872dd116100b257806323b872dd1461012c578063313ce5671461013f578063395093511461015457600080fd5b806306fdde03146100d9578063095ea7b3146100f757806318160ddd1461011a575b600080fd5b6100e1610224565b6040516100ee9190610ac0565b60405180910390f35b61010a610105366004610b55565b6102b6565b60405190151581526020016100ee565b6002545b6040519081526020016100ee565b61010a61013a366004610b7f565b6102d0565b60055460405160ff90911681526020016100ee565b61010a610162366004610b55565b6102f4565b61010a610175366004610b55565b610340565b61011e610188366004610bbb565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6100e16103e6565b61010a6101c6366004610b55565b6103f5565b61010a6101d9366004610b55565b6104c6565b61011e6101ec366004610bdd565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60606003805461023390610c10565b80601f016020809104026020016040519081016040528092919081815260200182805461025f90610c10565b80156102ac5780601f10610281576101008083540402835291602001916102ac565b820191906000526020600020905b81548152906001019060200180831161028f57829003601f168201915b5050505050905090565b6000336102c48185856104d4565b60019150505b92915050565b6000336102de858285610687565b6102e985858561075e565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906102c4908290869061033b908790610c92565b6104d4565b600061034e60055460ff1690565b61035990600a610dc5565b61036590612710610dd4565b8211156103d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f546f6b656e3a20696e76616c696420616d6f756e74000000000000000000000060448201526064015b60405180910390fd5b6103dd83836109cd565b50600192915050565b60606004805461023390610c10565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156104b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103ca565b6102e982868684036104d4565b6000336102c481858561075e565b73ffffffffffffffffffffffffffffffffffffffff8316610576576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103ca565b73ffffffffffffffffffffffffffffffffffffffff8216610619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103ca565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610758578181101561074b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ca565b61075884848484036104d4565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610801576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103ca565b73ffffffffffffffffffffffffffffffffffffffff82166108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103ca565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020548181101561095a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103ca565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610758565b73ffffffffffffffffffffffffffffffffffffffff8216610a4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103ca565b8060026000828254610a5c9190610c92565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600060208083528351808285015260005b81811015610aed57858101830151858201604001528201610ad1565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610b5057600080fd5b919050565b60008060408385031215610b6857600080fd5b610b7183610b2c565b946020939093013593505050565b600080600060608486031215610b9457600080fd5b610b9d84610b2c565b9250610bab60208501610b2c565b9150604084013590509250925092565b600060208284031215610bcd57600080fd5b610bd682610b2c565b9392505050565b60008060408385031215610bf057600080fd5b610bf983610b2c565b9150610c0760208401610b2c565b90509250929050565b600181811c90821680610c2457607f821691505b602082108103610c5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156102ca576102ca610c63565b600181815b80851115610cfe57817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115610ce457610ce4610c63565b80851615610cf157918102915b93841c9390800290610caa565b509250929050565b600082610d15575060016102ca565b81610d22575060006102ca565b8160018114610d385760028114610d4257610d5e565b60019150506102ca565b60ff841115610d5357610d53610c63565b50506001821b6102ca565b5060208310610133831016604e8410600b8410161715610d81575081810a6102ca565b610d8b8383610ca5565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115610dbd57610dbd610c63565b029392505050565b6000610bd660ff841683610d06565b80820281158282048414176102ca576102ca610c6356fea2646970667358221220e10b45b3b03c8f00f86c7298c93e3f0d3a8fa705e9ddfd739cb5bd827753e5e964736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000004555344540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045553445400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100d45760003560e01c806340c10f1911610081578063a457c2d71161005b578063a457c2d7146101b8578063a9059cbb146101cb578063dd62ed3e146101de57600080fd5b806340c10f191461016757806370a082311461017a57806395d89b41146101b057600080fd5b806323b872dd116100b257806323b872dd1461012c578063313ce5671461013f578063395093511461015457600080fd5b806306fdde03146100d9578063095ea7b3146100f757806318160ddd1461011a575b600080fd5b6100e1610224565b6040516100ee9190610ac0565b60405180910390f35b61010a610105366004610b55565b6102b6565b60405190151581526020016100ee565b6002545b6040519081526020016100ee565b61010a61013a366004610b7f565b6102d0565b60055460405160ff90911681526020016100ee565b61010a610162366004610b55565b6102f4565b61010a610175366004610b55565b610340565b61011e610188366004610bbb565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6100e16103e6565b61010a6101c6366004610b55565b6103f5565b61010a6101d9366004610b55565b6104c6565b61011e6101ec366004610bdd565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60606003805461023390610c10565b80601f016020809104026020016040519081016040528092919081815260200182805461025f90610c10565b80156102ac5780601f10610281576101008083540402835291602001916102ac565b820191906000526020600020905b81548152906001019060200180831161028f57829003601f168201915b5050505050905090565b6000336102c48185856104d4565b60019150505b92915050565b6000336102de858285610687565b6102e985858561075e565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906102c4908290869061033b908790610c92565b6104d4565b600061034e60055460ff1690565b61035990600a610dc5565b61036590612710610dd4565b8211156103d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f546f6b656e3a20696e76616c696420616d6f756e74000000000000000000000060448201526064015b60405180910390fd5b6103dd83836109cd565b50600192915050565b60606004805461023390610c10565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156104b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103ca565b6102e982868684036104d4565b6000336102c481858561075e565b73ffffffffffffffffffffffffffffffffffffffff8316610576576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103ca565b73ffffffffffffffffffffffffffffffffffffffff8216610619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103ca565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610758578181101561074b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ca565b61075884848484036104d4565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610801576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103ca565b73ffffffffffffffffffffffffffffffffffffffff82166108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103ca565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020548181101561095a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103ca565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610758565b73ffffffffffffffffffffffffffffffffffffffff8216610a4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103ca565b8060026000828254610a5c9190610c92565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600060208083528351808285015260005b81811015610aed57858101830151858201604001528201610ad1565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610b5057600080fd5b919050565b60008060408385031215610b6857600080fd5b610b7183610b2c565b946020939093013593505050565b600080600060608486031215610b9457600080fd5b610b9d84610b2c565b9250610bab60208501610b2c565b9150604084013590509250925092565b600060208284031215610bcd57600080fd5b610bd682610b2c565b9392505050565b60008060408385031215610bf057600080fd5b610bf983610b2c565b9150610c0760208401610b2c565b90509250929050565b600181811c90821680610c2457607f821691505b602082108103610c5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156102ca576102ca610c63565b600181815b80851115610cfe57817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115610ce457610ce4610c63565b80851615610cf157918102915b93841c9390800290610caa565b509250929050565b600082610d15575060016102ca565b81610d22575060006102ca565b8160018114610d385760028114610d4257610d5e565b60019150506102ca565b60ff841115610d5357610d53610c63565b50506001821b6102ca565b5060208310610133831016604e8410600b8410161715610d81575081810a6102ca565b610d8b8383610ca5565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115610dbd57610dbd610c63565b029392505050565b6000610bd660ff841683610d06565b80820281158282048414176102ca576102ca610c6356fea2646970667358221220e10b45b3b03c8f00f86c7298c93e3f0d3a8fa705e9ddfd739cb5bd827753e5e964736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000004555344540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045553445400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): USDT
Arg [1] : symbol_ (string): USDT
Arg [2] : decimals_ (uint8): 6

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 5553445400000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5553445400000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

87:426:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2277:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4644:201;;;;;;:::i;:::-;;:::i;:::-;;;1251:14:5;;1244:22;1226:41;;1214:2;1199:18;4644:201:1;1086:187:5;3413:108:1;3501:12;;3413:108;;;1424:25:5;;;1412:2;1397:18;3413:108:1;1278:177:5;5425:261:1;;;;;;:::i;:::-;;:::i;3248:100::-;3331:9;;3248:100;;3331:9;;;;1935:36:5;;1923:2;1908:18;3248:100:1;1793:184:5;6095:238:1;;;;;;:::i;:::-;;:::i;307:203:4:-;;;;;;:::i;:::-;;:::i;3584:127:1:-;;;;;;:::i;:::-;3685:18;;3658:7;3685:18;;;;;;;;;;;;3584:127;2496:104;;;:::i;6836:436::-;;;;;;:::i;:::-;;:::i;3917:193::-;;;;;;:::i;:::-;;:::i;4173:151::-;;;;;;:::i;:::-;4289:18;;;;4262:7;4289:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4173:151;2277:100;2331:13;2364:5;2357:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2277:100;:::o;4644:201::-;4727:4;736:10:0;4783:32:1;736:10:0;4799:7:1;4808:6;4783:8;:32::i;:::-;4833:4;4826:11;;;4644:201;;;;;:::o;5425:261::-;5522:4;736:10:0;5580:38:1;5596:4;736:10:0;5611:6:1;5580:15;:38::i;:::-;5629:27;5639:4;5645:2;5649:6;5629:9;:27::i;:::-;-1:-1:-1;5674:4:1;;5425:261;-1:-1:-1;;;;5425:261:1:o;6095:238::-;736:10:0;6183:4:1;4289:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;6183:4;;736:10:0;6239:64:1;;736:10:0;;4289:27:1;;6264:38;;6292:10;;6264:38;:::i;:::-;6239:8;:64::i;307:203:4:-;366:4;416:10;3331:9:1;;;;;3248:100;416:10:4;410:16;;:2;:16;:::i;:::-;400:27;;:6;:27;:::i;:::-;391:5;:36;;383:70;;;;;;;5077:2:5;383:70:4;;;5059:21:5;5116:2;5096:18;;;5089:30;5155:23;5135:18;;;5128:51;5196:18;;383:70:4;;;;;;;;;464:16;470:2;474:5;464;:16::i;:::-;-1:-1:-1;498:4:4;307:203;;;;:::o;2496:104:1:-;2552:13;2585:7;2578:14;;;;;:::i;6836:436::-;736:10:0;6929:4:1;4289:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;6929:4;;736:10:0;7076:15:1;7056:16;:35;;7048:85;;;;;;;5427:2:5;7048:85:1;;;5409:21:5;5466:2;5446:18;;;5439:30;5505:34;5485:18;;;5478:62;5576:7;5556:18;;;5549:35;5601:19;;7048:85:1;5225:401:5;7048:85:1;7169:60;7178:5;7185:7;7213:15;7194:16;:34;7169:8;:60::i;3917:193::-;3996:4;736:10:0;4052:28:1;736:10:0;4069:2:1;4073:6;4052:9;:28::i;10829:346::-;10931:19;;;10923:68;;;;;;;5833:2:5;10923:68:1;;;5815:21:5;5872:2;5852:18;;;5845:30;5911:34;5891:18;;;5884:62;5982:6;5962:18;;;5955:34;6006:19;;10923:68:1;5631:400:5;10923:68:1;11010:21;;;11002:68;;;;;;;6238:2:5;11002:68:1;;;6220:21:5;6277:2;6257:18;;;6250:30;6316:34;6296:18;;;6289:62;6387:4;6367:18;;;6360:32;6409:19;;11002:68:1;6036:398:5;11002:68:1;11083:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11135:32;;1424:25:5;;;11135:32:1;;1397:18:5;11135:32:1;;;;;;;10829:346;;;:::o;11466:419::-;4289:18;;;;11567:24;4289:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;11654:17;11634:37;;11630:248;;11716:6;11696:16;:26;;11688:68;;;;;;;6641:2:5;11688:68:1;;;6623:21:5;6680:2;6660:18;;;6653:30;6719:31;6699:18;;;6692:59;6768:18;;11688:68:1;6439:353:5;11688:68:1;11800:51;11809:5;11816:7;11844:6;11825:16;:25;11800:8;:51::i;:::-;11556:329;11466:419;;;:::o;7742:806::-;7839:18;;;7831:68;;;;;;;6999:2:5;7831:68:1;;;6981:21:5;7038:2;7018:18;;;7011:30;7077:34;7057:18;;;7050:62;7148:7;7128:18;;;7121:35;7173:19;;7831:68:1;6797:401:5;7831:68:1;7918:16;;;7910:64;;;;;;;7405:2:5;7910:64:1;;;7387:21:5;7444:2;7424:18;;;7417:30;7483:34;7463:18;;;7456:62;7554:5;7534:18;;;7527:33;7577:19;;7910:64:1;7203:399:5;7910:64:1;8060:15;;;8038:19;8060:15;;;;;;;;;;;8094:21;;;;8086:72;;;;;;;7809:2:5;8086:72:1;;;7791:21:5;7848:2;7828:18;;;7821:30;7887:34;7867:18;;;7860:62;7958:8;7938:18;;;7931:36;7984:19;;8086:72:1;7607:402:5;8086:72:1;8194:15;;;;:9;:15;;;;;;;;;;;8212:20;;;8194:38;;8412:13;;;;;;;;;;:23;;;;;;8464:26;;1424:25:5;;;8412:13:1;;8464:26;;1397:18:5;8464:26:1;;;;;;;8503:37;12485:91;8835:548;8919:21;;;8911:65;;;;;;;8216:2:5;8911:65:1;;;8198:21:5;8255:2;8235:18;;;8228:30;8294:33;8274:18;;;8267:61;8345:18;;8911:65:1;8014:355:5;8911:65:1;9067:6;9051:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;9222:18:1;;;:9;:18;;;;;;;;;;;:28;;;;;;9277:37;1424:25:5;;;9277:37:1;;1397:18:5;9277:37:1;;;;;;;8835:548;;:::o;14:607:5:-;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;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:254::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:5:o;1460:328::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1645:29;1664:9;1645:29;:::i;:::-;1635:39;;1693:38;1727:2;1716:9;1712:18;1693:38;:::i;:::-;1683:48;;1778:2;1767:9;1763:18;1750:32;1740:42;;1460:328;;;;;:::o;1982:186::-;2041:6;2094:2;2082:9;2073:7;2069:23;2065:32;2062:52;;;2110:1;2107;2100:12;2062:52;2133:29;2152:9;2133:29;:::i;:::-;2123:39;1982:186;-1:-1:-1;;;1982:186:5:o;2173:260::-;2241:6;2249;2302:2;2290:9;2281:7;2277:23;2273:32;2270:52;;;2318:1;2315;2308:12;2270:52;2341:29;2360:9;2341:29;:::i;:::-;2331:39;;2389:38;2423:2;2412:9;2408:18;2389:38;:::i;:::-;2379:48;;2173:260;;;;;:::o;2438:437::-;2517:1;2513:12;;;;2560;;;2581:61;;2635:4;2627:6;2623:17;2613:27;;2581:61;2688:2;2680:6;2677:14;2657:18;2654:38;2651:218;;2725:77;2722:1;2715:88;2826:4;2823:1;2816:15;2854:4;2851:1;2844:15;2651:218;;2438:437;;;:::o;2880:184::-;2932:77;2929:1;2922:88;3029:4;3026:1;3019:15;3053:4;3050:1;3043:15;3069:125;3134:9;;;3155:10;;;3152:36;;;3168:18;;:::i;3199:482::-;3288:1;3331:5;3288:1;3345:330;3366:7;3356:8;3353:21;3345:330;;;3485:4;3417:66;3413:77;3407:4;3404:87;3401:113;;;3494:18;;:::i;:::-;3544:7;3534:8;3530:22;3527:55;;;3564:16;;;;3527:55;3643:22;;;;3603:15;;;;3345:330;;;3349:3;3199:482;;;;;:::o;3686:866::-;3735:5;3765:8;3755:80;;-1:-1:-1;3806:1:5;3820:5;;3755:80;3854:4;3844:76;;-1:-1:-1;3891:1:5;3905:5;;3844:76;3936:4;3954:1;3949:59;;;;4022:1;4017:130;;;;3929:218;;3949:59;3979:1;3970:10;;3993:5;;;4017:130;4054:3;4044:8;4041:17;4038:43;;;4061:18;;:::i;:::-;-1:-1:-1;;4117:1:5;4103:16;;4132:5;;3929:218;;4231:2;4221:8;4218:16;4212:3;4206:4;4203:13;4199:36;4193:2;4183:8;4180:16;4175:2;4169:4;4166:12;4162:35;4159:77;4156:159;;;-1:-1:-1;4268:19:5;;;4300:5;;4156:159;4347:34;4372:8;4366:4;4347:34;:::i;:::-;4477:6;4409:66;4405:79;4396:7;4393:92;4390:118;;;4488:18;;:::i;:::-;4526:20;;3686:866;-1:-1:-1;;;3686:866:5:o;4557:140::-;4615:5;4644:47;4685:4;4675:8;4671:19;4665:4;4644:47;:::i;4702:168::-;4775:9;;;4806;;4823:15;;;4817:22;;4803:37;4793:71;;4844:18;;:::i

Swarm Source

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