ETH Price: $3,432.14 (+7.52%)
Gas: 15 Gwei

Token

THEONE (THE ONE)
 

Overview

Max Total Supply

1 THE ONE

Holders

351

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
0xzsc.eth
Balance
0.000589075394284561 THE ONE

Value
$0.00
0xb6f410ae7c9d68aadf6a615a3ec8b540e91e95d1
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:
THEONE

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-08
*/

// The one has no purpose. No utility. The only one.
// https://twitter.com/theoneco1n

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)



/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)




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

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

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

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

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

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

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

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




// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)





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





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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)



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

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


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/extensions/draft-ERC20Permit.sol)




// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)



/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}



// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)





/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}


// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/EIP712.sol)





/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)



/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private constant _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    /**
     * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`.
     * However, to ensure consistency with the upgradeable transpiler, we will continue
     * to reserve a slot.
     * @custom:oz-renamed-from _PERMIT_TYPEHASH
     */
    // solhint-disable-next-line var-name-mixedcase
    bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT;

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}


contract THEONE is ERC20, ERC20Permit {
    constructor() ERC20("THEONE", "THE ONE") ERC20Permit("THE ONE") {
        _mint(msg.sender, 1 * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

6101406040523480156200001257600080fd5b506040518060400160405280600781526020017f544845204f4e4500000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f5448454f4e4500000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f544845204f4e4500000000000000000000000000000000000000000000000000815250816003908051906020019062000104929190620003d3565b5080600490805190602001906200011d929190620003d3565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001898184846200021660201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508061012081815250505050505050506200021033620001e86200025260201b60201c565b600a620001f691906200061d565b60016200020491906200066e565b6200025b60201b60201c565b620008ff565b600083838346306040516020016200023395949392919062000740565b6040516020818303038152906040528051906020012090509392505050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c590620007fe565b60405180910390fd5b620002e260008383620003c960201b60201c565b8060026000828254620002f6919062000820565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003a991906200087d565b60405180910390a3620003c560008383620003ce60201b60201c565b5050565b505050565b505050565b828054620003e190620008c9565b90600052602060002090601f01602090048101928262000405576000855562000451565b82601f106200042057805160ff191683800117855562000451565b8280016001018555821562000451579182015b828111156200045057825182559160200191906001019062000433565b5b50905062000460919062000464565b5090565b5b808211156200047f57600081600090555060010162000465565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200051157808604811115620004e957620004e862000483565b5b6001851615620004f95780820291505b80810290506200050985620004b2565b9450620004c9565b94509492505050565b6000826200052c5760019050620005ff565b816200053c5760009050620005ff565b8160018114620005555760028114620005605762000596565b6001915050620005ff565b60ff84111562000575576200057462000483565b5b8360020a9150848211156200058f576200058e62000483565b5b50620005ff565b5060208310610133831016604e8410600b8410161715620005d05782820a905083811115620005ca57620005c962000483565b5b620005ff565b620005df8484846001620004bf565b92509050818404811115620005f957620005f862000483565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200062a8262000606565b9150620006378362000610565b9250620006667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200051a565b905092915050565b60006200067b8262000606565b9150620006888362000606565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006c457620006c362000483565b5b828202905092915050565b6000819050919050565b620006e481620006cf565b82525050565b620006f58162000606565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200072882620006fb565b9050919050565b6200073a816200071b565b82525050565b600060a082019050620007576000830188620006d9565b620007666020830187620006d9565b620007756040830186620006d9565b620007846060830185620006ea565b6200079360808301846200072f565b9695505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007e6601f836200079d565b9150620007f382620007ae565b602082019050919050565b600060208201905081810360008301526200081981620007d7565b9050919050565b60006200082d8262000606565b91506200083a8362000606565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000872576200087162000483565b5b828201905092915050565b6000602082019050620008946000830184620006ea565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008e257607f821691505b60208210811415620008f957620008f86200089a565b5b50919050565b60805160a05160c05160e0516101005161012051611ea06200094f6000396000610d7001526000610db201526000610d9101526000610cc601526000610d1c01526000610d450152611ea06000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d714610275578063a9059cbb146102a5578063d505accf146102d5578063dd62ed3e146102f1576100ea565b806370a08231146101f75780637ecebe001461022757806395d89b4114610257576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b5780633644e515146101a957806339509351146101c7576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f7610321565b6040516101049190611204565b60405180910390f35b610127600480360381019061012291906112bf565b6103b3565b604051610134919061131a565b60405180910390f35b6101456103d6565b6040516101529190611344565b60405180910390f35b6101756004803603810190610170919061135f565b6103e0565b604051610182919061131a565b60405180910390f35b61019361040f565b6040516101a091906113ce565b60405180910390f35b6101b1610418565b6040516101be9190611402565b60405180910390f35b6101e160048036038101906101dc91906112bf565b610427565b6040516101ee919061131a565b60405180910390f35b610211600480360381019061020c919061141d565b61045e565b60405161021e9190611344565b60405180910390f35b610241600480360381019061023c919061141d565b6104a6565b60405161024e9190611344565b60405180910390f35b61025f6104f6565b60405161026c9190611204565b60405180910390f35b61028f600480360381019061028a91906112bf565b610588565b60405161029c919061131a565b60405180910390f35b6102bf60048036038101906102ba91906112bf565b6105ff565b6040516102cc919061131a565b60405180910390f35b6102ef60048036038101906102ea91906114a2565b610622565b005b61030b60048036038101906103069190611544565b610764565b6040516103189190611344565b60405180910390f35b606060038054610330906115b3565b80601f016020809104026020016040519081016040528092919081815260200182805461035c906115b3565b80156103a95780601f1061037e576101008083540402835291602001916103a9565b820191906000526020600020905b81548152906001019060200180831161038c57829003601f168201915b5050505050905090565b6000806103be6107eb565b90506103cb8185856107f3565b600191505092915050565b6000600254905090565b6000806103eb6107eb565b90506103f88582856109be565b610403858585610a4a565b60019150509392505050565b60006012905090565b6000610422610cc2565b905090565b6000806104326107eb565b90506104538185856104448589610764565b61044e9190611614565b6107f3565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006104ef600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020610ddc565b9050919050565b606060048054610505906115b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610531906115b3565b801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b5050505050905090565b6000806105936107eb565b905060006105a18286610764565b9050838110156105e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105dd906116dc565b60405180910390fd5b6105f382868684036107f3565b60019250505092915050565b60008061060a6107eb565b9050610617818585610a4a565b600191505092915050565b83421115610665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065c90611748565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886106948c610dea565b896040516020016106aa96959493929190611777565b60405160208183030381529060405280519060200120905060006106cd82610e48565b905060006106dd82878787610e62565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461074d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074490611824565b60405180910390fd5b6107588a8a8a6107f3565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085a906118b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90611948565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109b19190611344565b60405180910390a3505050565b60006109ca8484610764565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a445781811015610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d906119b4565b60405180910390fd5b610a4384848484036107f3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190611a46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190611ad8565b60405180910390fd5b610b35838383610e8d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290611b6a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ca99190611344565b60405180910390a3610cbc848484610e92565b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015610d3e57507f000000000000000000000000000000000000000000000000000000000000000046145b15610d6b577f00000000000000000000000000000000000000000000000000000000000000009050610dd9565b610dd67f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610e97565b90505b90565b600081600001549050919050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050610e3781610ddc565b9150610e4281610ed1565b50919050565b6000610e5b610e55610cc2565b83610ee7565b9050919050565b6000806000610e7387878787610f1a565b91509150610e8081610ffd565b8192505050949350505050565b505050565b505050565b60008383834630604051602001610eb2959493929190611b8a565b6040516020818303038152906040528051906020012090509392505050565b6001816000016000828254019250508190555050565b60008282604051602001610efc929190611c55565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115610f55576000600391509150610ff4565b600060018787878760405160008152602001604052604051610f7a9493929190611c8c565b6020604051602081039080840390855afa158015610f9c573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610feb57600060019250925050610ff4565b80600092509250505b94509492505050565b6000600481111561101157611010611cd1565b5b81600481111561102457611023611cd1565b5b141561102f57611168565b6001600481111561104357611042611cd1565b5b81600481111561105657611055611cd1565b5b1415611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90611d4c565b60405180910390fd5b600260048111156110ab576110aa611cd1565b5b8160048111156110be576110bd611cd1565b5b14156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f690611db8565b60405180910390fd5b6003600481111561111357611112611cd1565b5b81600481111561112657611125611cd1565b5b1415611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90611e4a565b60405180910390fd5b5b50565b600081519050919050565b600082825260208201905092915050565b60005b838110156111a557808201518184015260208101905061118a565b838111156111b4576000848401525b50505050565b6000601f19601f8301169050919050565b60006111d68261116b565b6111e08185611176565b93506111f0818560208601611187565b6111f9816111ba565b840191505092915050565b6000602082019050818103600083015261121e81846111cb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112568261122b565b9050919050565b6112668161124b565b811461127157600080fd5b50565b6000813590506112838161125d565b92915050565b6000819050919050565b61129c81611289565b81146112a757600080fd5b50565b6000813590506112b981611293565b92915050565b600080604083850312156112d6576112d5611226565b5b60006112e485828601611274565b92505060206112f5858286016112aa565b9150509250929050565b60008115159050919050565b611314816112ff565b82525050565b600060208201905061132f600083018461130b565b92915050565b61133e81611289565b82525050565b60006020820190506113596000830184611335565b92915050565b60008060006060848603121561137857611377611226565b5b600061138686828701611274565b935050602061139786828701611274565b92505060406113a8868287016112aa565b9150509250925092565b600060ff82169050919050565b6113c8816113b2565b82525050565b60006020820190506113e360008301846113bf565b92915050565b6000819050919050565b6113fc816113e9565b82525050565b600060208201905061141760008301846113f3565b92915050565b60006020828403121561143357611432611226565b5b600061144184828501611274565b91505092915050565b611453816113b2565b811461145e57600080fd5b50565b6000813590506114708161144a565b92915050565b61147f816113e9565b811461148a57600080fd5b50565b60008135905061149c81611476565b92915050565b600080600080600080600060e0888a0312156114c1576114c0611226565b5b60006114cf8a828b01611274565b97505060206114e08a828b01611274565b96505060406114f18a828b016112aa565b95505060606115028a828b016112aa565b94505060806115138a828b01611461565b93505060a06115248a828b0161148d565b92505060c06115358a828b0161148d565b91505092959891949750929550565b6000806040838503121561155b5761155a611226565b5b600061156985828601611274565b925050602061157a85828601611274565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115cb57607f821691505b602082108114156115df576115de611584565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061161f82611289565b915061162a83611289565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561165f5761165e6115e5565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116c6602583611176565b91506116d18261166a565b604082019050919050565b600060208201905081810360008301526116f5816116b9565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000611732601d83611176565b915061173d826116fc565b602082019050919050565b6000602082019050818103600083015261176181611725565b9050919050565b6117718161124b565b82525050565b600060c08201905061178c60008301896113f3565b6117996020830188611768565b6117a66040830187611768565b6117b36060830186611335565b6117c06080830185611335565b6117cd60a0830184611335565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b600061180e601e83611176565b9150611819826117d8565b602082019050919050565b6000602082019050818103600083015261183d81611801565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118a0602483611176565b91506118ab82611844565b604082019050919050565b600060208201905081810360008301526118cf81611893565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611932602283611176565b915061193d826118d6565b604082019050919050565b6000602082019050818103600083015261196181611925565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061199e601d83611176565b91506119a982611968565b602082019050919050565b600060208201905081810360008301526119cd81611991565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a30602583611176565b9150611a3b826119d4565b604082019050919050565b60006020820190508181036000830152611a5f81611a23565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ac2602383611176565b9150611acd82611a66565b604082019050919050565b60006020820190508181036000830152611af181611ab5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b54602683611176565b9150611b5f82611af8565b604082019050919050565b60006020820190508181036000830152611b8381611b47565b9050919050565b600060a082019050611b9f60008301886113f3565b611bac60208301876113f3565b611bb960408301866113f3565b611bc66060830185611335565b611bd36080830184611768565b9695505050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000611c1e600283611bdd565b9150611c2982611be8565b600282019050919050565b6000819050919050565b611c4f611c4a826113e9565b611c34565b82525050565b6000611c6082611c11565b9150611c6c8285611c3e565b602082019150611c7c8284611c3e565b6020820191508190509392505050565b6000608082019050611ca160008301876113f3565b611cae60208301866113bf565b611cbb60408301856113f3565b611cc860608301846113f3565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000611d36601883611176565b9150611d4182611d00565b602082019050919050565b60006020820190508181036000830152611d6581611d29565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000611da2601f83611176565b9150611dad82611d6c565b602082019050919050565b60006020820190508181036000830152611dd181611d95565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e34602283611176565b9150611e3f82611dd8565b604082019050919050565b60006020820190508181036000830152611e6381611e27565b905091905056fea2646970667358221220ae3ee42cd12c620759676240da7c63f35234743635741783fd47929f68cdec9364736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d714610275578063a9059cbb146102a5578063d505accf146102d5578063dd62ed3e146102f1576100ea565b806370a08231146101f75780637ecebe001461022757806395d89b4114610257576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b5780633644e515146101a957806339509351146101c7576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f7610321565b6040516101049190611204565b60405180910390f35b610127600480360381019061012291906112bf565b6103b3565b604051610134919061131a565b60405180910390f35b6101456103d6565b6040516101529190611344565b60405180910390f35b6101756004803603810190610170919061135f565b6103e0565b604051610182919061131a565b60405180910390f35b61019361040f565b6040516101a091906113ce565b60405180910390f35b6101b1610418565b6040516101be9190611402565b60405180910390f35b6101e160048036038101906101dc91906112bf565b610427565b6040516101ee919061131a565b60405180910390f35b610211600480360381019061020c919061141d565b61045e565b60405161021e9190611344565b60405180910390f35b610241600480360381019061023c919061141d565b6104a6565b60405161024e9190611344565b60405180910390f35b61025f6104f6565b60405161026c9190611204565b60405180910390f35b61028f600480360381019061028a91906112bf565b610588565b60405161029c919061131a565b60405180910390f35b6102bf60048036038101906102ba91906112bf565b6105ff565b6040516102cc919061131a565b60405180910390f35b6102ef60048036038101906102ea91906114a2565b610622565b005b61030b60048036038101906103069190611544565b610764565b6040516103189190611344565b60405180910390f35b606060038054610330906115b3565b80601f016020809104026020016040519081016040528092919081815260200182805461035c906115b3565b80156103a95780601f1061037e576101008083540402835291602001916103a9565b820191906000526020600020905b81548152906001019060200180831161038c57829003601f168201915b5050505050905090565b6000806103be6107eb565b90506103cb8185856107f3565b600191505092915050565b6000600254905090565b6000806103eb6107eb565b90506103f88582856109be565b610403858585610a4a565b60019150509392505050565b60006012905090565b6000610422610cc2565b905090565b6000806104326107eb565b90506104538185856104448589610764565b61044e9190611614565b6107f3565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006104ef600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020610ddc565b9050919050565b606060048054610505906115b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610531906115b3565b801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b5050505050905090565b6000806105936107eb565b905060006105a18286610764565b9050838110156105e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105dd906116dc565b60405180910390fd5b6105f382868684036107f3565b60019250505092915050565b60008061060a6107eb565b9050610617818585610a4a565b600191505092915050565b83421115610665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065c90611748565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886106948c610dea565b896040516020016106aa96959493929190611777565b60405160208183030381529060405280519060200120905060006106cd82610e48565b905060006106dd82878787610e62565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461074d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074490611824565b60405180910390fd5b6107588a8a8a6107f3565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085a906118b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90611948565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109b19190611344565b60405180910390a3505050565b60006109ca8484610764565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a445781811015610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d906119b4565b60405180910390fd5b610a4384848484036107f3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190611a46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190611ad8565b60405180910390fd5b610b35838383610e8d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290611b6a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ca99190611344565b60405180910390a3610cbc848484610e92565b50505050565b60007f000000000000000000000000106b39a28a3bd5bb88c69b813c463f163704773e73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015610d3e57507f000000000000000000000000000000000000000000000000000000000000000146145b15610d6b577f8fd43e4effb61101ea78d0b9743a106992f7aa384ece528f91d7687163b93ed89050610dd9565b610dd67f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f6b35cf18fff71522e997a7b9d76ba3a969cc7e1fc36aae1de6c8ca184fa74ca17fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6610e97565b90505b90565b600081600001549050919050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050610e3781610ddc565b9150610e4281610ed1565b50919050565b6000610e5b610e55610cc2565b83610ee7565b9050919050565b6000806000610e7387878787610f1a565b91509150610e8081610ffd565b8192505050949350505050565b505050565b505050565b60008383834630604051602001610eb2959493929190611b8a565b6040516020818303038152906040528051906020012090509392505050565b6001816000016000828254019250508190555050565b60008282604051602001610efc929190611c55565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115610f55576000600391509150610ff4565b600060018787878760405160008152602001604052604051610f7a9493929190611c8c565b6020604051602081039080840390855afa158015610f9c573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610feb57600060019250925050610ff4565b80600092509250505b94509492505050565b6000600481111561101157611010611cd1565b5b81600481111561102457611023611cd1565b5b141561102f57611168565b6001600481111561104357611042611cd1565b5b81600481111561105657611055611cd1565b5b1415611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90611d4c565b60405180910390fd5b600260048111156110ab576110aa611cd1565b5b8160048111156110be576110bd611cd1565b5b14156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f690611db8565b60405180910390fd5b6003600481111561111357611112611cd1565b5b81600481111561112657611125611cd1565b5b1415611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90611e4a565b60405180910390fd5b5b50565b600081519050919050565b600082825260208201905092915050565b60005b838110156111a557808201518184015260208101905061118a565b838111156111b4576000848401525b50505050565b6000601f19601f8301169050919050565b60006111d68261116b565b6111e08185611176565b93506111f0818560208601611187565b6111f9816111ba565b840191505092915050565b6000602082019050818103600083015261121e81846111cb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112568261122b565b9050919050565b6112668161124b565b811461127157600080fd5b50565b6000813590506112838161125d565b92915050565b6000819050919050565b61129c81611289565b81146112a757600080fd5b50565b6000813590506112b981611293565b92915050565b600080604083850312156112d6576112d5611226565b5b60006112e485828601611274565b92505060206112f5858286016112aa565b9150509250929050565b60008115159050919050565b611314816112ff565b82525050565b600060208201905061132f600083018461130b565b92915050565b61133e81611289565b82525050565b60006020820190506113596000830184611335565b92915050565b60008060006060848603121561137857611377611226565b5b600061138686828701611274565b935050602061139786828701611274565b92505060406113a8868287016112aa565b9150509250925092565b600060ff82169050919050565b6113c8816113b2565b82525050565b60006020820190506113e360008301846113bf565b92915050565b6000819050919050565b6113fc816113e9565b82525050565b600060208201905061141760008301846113f3565b92915050565b60006020828403121561143357611432611226565b5b600061144184828501611274565b91505092915050565b611453816113b2565b811461145e57600080fd5b50565b6000813590506114708161144a565b92915050565b61147f816113e9565b811461148a57600080fd5b50565b60008135905061149c81611476565b92915050565b600080600080600080600060e0888a0312156114c1576114c0611226565b5b60006114cf8a828b01611274565b97505060206114e08a828b01611274565b96505060406114f18a828b016112aa565b95505060606115028a828b016112aa565b94505060806115138a828b01611461565b93505060a06115248a828b0161148d565b92505060c06115358a828b0161148d565b91505092959891949750929550565b6000806040838503121561155b5761155a611226565b5b600061156985828601611274565b925050602061157a85828601611274565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115cb57607f821691505b602082108114156115df576115de611584565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061161f82611289565b915061162a83611289565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561165f5761165e6115e5565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116c6602583611176565b91506116d18261166a565b604082019050919050565b600060208201905081810360008301526116f5816116b9565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000611732601d83611176565b915061173d826116fc565b602082019050919050565b6000602082019050818103600083015261176181611725565b9050919050565b6117718161124b565b82525050565b600060c08201905061178c60008301896113f3565b6117996020830188611768565b6117a66040830187611768565b6117b36060830186611335565b6117c06080830185611335565b6117cd60a0830184611335565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b600061180e601e83611176565b9150611819826117d8565b602082019050919050565b6000602082019050818103600083015261183d81611801565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118a0602483611176565b91506118ab82611844565b604082019050919050565b600060208201905081810360008301526118cf81611893565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611932602283611176565b915061193d826118d6565b604082019050919050565b6000602082019050818103600083015261196181611925565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061199e601d83611176565b91506119a982611968565b602082019050919050565b600060208201905081810360008301526119cd81611991565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a30602583611176565b9150611a3b826119d4565b604082019050919050565b60006020820190508181036000830152611a5f81611a23565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ac2602383611176565b9150611acd82611a66565b604082019050919050565b60006020820190508181036000830152611af181611ab5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b54602683611176565b9150611b5f82611af8565b604082019050919050565b60006020820190508181036000830152611b8381611b47565b9050919050565b600060a082019050611b9f60008301886113f3565b611bac60208301876113f3565b611bb960408301866113f3565b611bc66060830185611335565b611bd36080830184611768565b9695505050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000611c1e600283611bdd565b9150611c2982611be8565b600282019050919050565b6000819050919050565b611c4f611c4a826113e9565b611c34565b82525050565b6000611c6082611c11565b9150611c6c8285611c3e565b602082019150611c7c8284611c3e565b6020820191508190509392505050565b6000608082019050611ca160008301876113f3565b611cae60208301866113bf565b611cbb60408301856113f3565b611cc860608301846113f3565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000611d36601883611176565b9150611d4182611d00565b602082019050919050565b60006020820190508181036000830152611d6581611d29565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000611da2601f83611176565b9150611dad82611d6c565b602082019050919050565b60006020820190508181036000830152611dd181611d95565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e34602283611176565b9150611e3f82611dd8565b604082019050919050565b60006020820190508181036000830152611e6381611e27565b905091905056fea2646970667358221220ae3ee42cd12c620759676240da7c63f35234743635741783fd47929f68cdec9364736f6c634300080c0033

Deployed Bytecode Sourcemap

52687:170:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21452:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23803:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22572:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24584:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22414:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52218:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25288:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22743:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51960:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21671:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26029:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23076:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51249:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23332:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21452:100;21506:13;21539:5;21532:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21452:100;:::o;23803:201::-;23886:4;23903:13;23919:12;:10;:12::i;:::-;23903:28;;23942:32;23951:5;23958:7;23967:6;23942:8;:32::i;:::-;23992:4;23985:11;;;23803:201;;;;:::o;22572:108::-;22633:7;22660:12;;22653:19;;22572:108;:::o;24584:295::-;24715:4;24732:15;24750:12;:10;:12::i;:::-;24732:30;;24773:38;24789:4;24795:7;24804:6;24773:15;:38::i;:::-;24822:27;24832:4;24838:2;24842:6;24822:9;:27::i;:::-;24867:4;24860:11;;;24584:295;;;;;:::o;22414:93::-;22472:5;22497:2;22490:9;;22414:93;:::o;52218:115::-;52278:7;52305:20;:18;:20::i;:::-;52298:27;;52218:115;:::o;25288:238::-;25376:4;25393:13;25409:12;:10;:12::i;:::-;25393:28;;25432:64;25441:5;25448:7;25485:10;25457:25;25467:5;25474:7;25457:9;:25::i;:::-;:38;;;;:::i;:::-;25432:8;:64::i;:::-;25514:4;25507:11;;;25288:238;;;;:::o;22743:127::-;22817:7;22844:9;:18;22854:7;22844:18;;;;;;;;;;;;;;;;22837:25;;22743:127;;;:::o;51960:128::-;52029:7;52056:24;:7;:14;52064:5;52056:14;;;;;;;;;;;;;;;:22;:24::i;:::-;52049:31;;51960:128;;;:::o;21671:104::-;21727:13;21760:7;21753:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21671:104;:::o;26029:436::-;26122:4;26139:13;26155:12;:10;:12::i;:::-;26139:28;;26178:24;26205:25;26215:5;26222:7;26205:9;:25::i;:::-;26178:52;;26269:15;26249:16;:35;;26241:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;26362:60;26371:5;26378:7;26406:15;26387:16;:34;26362:8;:60::i;:::-;26453:4;26446:11;;;;26029:436;;;;:::o;23076:193::-;23155:4;23172:13;23188:12;:10;:12::i;:::-;23172:28;;23211;23221:5;23228:2;23232:6;23211:9;:28::i;:::-;23257:4;23250:11;;;23076:193;;;;:::o;51249:645::-;51493:8;51474:15;:27;;51466:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51548:18;50424:95;51608:5;51615:7;51624:5;51631:16;51641:5;51631:9;:16::i;:::-;51649:8;51579:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51569:90;;;;;;51548:111;;51672:12;51687:28;51704:10;51687:16;:28::i;:::-;51672:43;;51728:14;51745:28;51759:4;51765:1;51768;51771;51745:13;:28::i;:::-;51728:45;;51802:5;51792:15;;:6;:15;;;51784:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;51855:31;51864:5;51871:7;51880:5;51855:8;:31::i;:::-;51455:439;;;51249:645;;;;;;;:::o;23332:151::-;23421:7;23448:11;:18;23460:5;23448:18;;;;;;;;;;;;;;;:27;23467:7;23448:27;;;;;;;;;;;;;;;;23441:34;;23332:151;;;;:::o;19260:98::-;19313:7;19340:10;19333:17;;19260:98;:::o;30056:380::-;30209:1;30192:19;;:5;:19;;;;30184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30290:1;30271:21;;:7;:21;;;;30263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30374:6;30344:11;:18;30356:5;30344:18;;;;;;;;;;;;;;;:27;30363:7;30344:27;;;;;;;;;;;;;;;:36;;;;30412:7;30396:32;;30405:5;30396:32;;;30421:6;30396:32;;;;;;:::i;:::-;;;;;;;;30056:380;;;:::o;30727:453::-;30862:24;30889:25;30899:5;30906:7;30889:9;:25::i;:::-;30862:52;;30949:17;30929:16;:37;30925:248;;31011:6;30991:16;:26;;30983:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31095:51;31104:5;31111:7;31139:6;31120:16;:25;31095:8;:51::i;:::-;30925:248;30851:329;30727:453;;;:::o;26935:840::-;27082:1;27066:18;;:4;:18;;;;27058:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27159:1;27145:16;;:2;:16;;;;27137:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27214:38;27235:4;27241:2;27245:6;27214:20;:38::i;:::-;27265:19;27287:9;:15;27297:4;27287:15;;;;;;;;;;;;;;;;27265:37;;27336:6;27321:11;:21;;27313:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;27453:6;27439:11;:20;27421:9;:15;27431:4;27421:15;;;;;;;;;;;;;;;:38;;;;27656:6;27639:9;:13;27649:2;27639:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;27706:2;27691:26;;27700:4;27691:26;;;27710:6;27691:26;;;;;;:::i;:::-;;;;;;;;27730:37;27750:4;27756:2;27760:6;27730:19;:37::i;:::-;27047:728;26935:840;;;:::o;46827:314::-;46880:7;46921:12;46904:29;;46912:4;46904:29;;;:66;;;;;46954:16;46937:13;:33;46904:66;46900:234;;;46994:24;46987:31;;;;46900:234;47058:64;47080:10;47092:12;47106:15;47058:21;:64::i;:::-;47051:71;;46827:314;;:::o;49022:114::-;49087:7;49114;:14;;;49107:21;;49022:114;;;:::o;52471:207::-;52531:15;52559:30;52592:7;:14;52600:5;52592:14;;;;;;;;;;;;;;;52559:47;;52627:15;:5;:13;:15::i;:::-;52617:25;;52653:17;:5;:15;:17::i;:::-;52548:130;52471:207;;;:::o;48054:167::-;48131:7;48158:55;48180:20;:18;:20::i;:::-;48202:10;48158:21;:55::i;:::-;48151:62;;48054:167;;;:::o;41787:279::-;41915:7;41936:17;41955:18;41977:25;41988:4;41994:1;41997;42000;41977:10;:25::i;:::-;41935:67;;;;42013:18;42025:5;42013:11;:18::i;:::-;42049:9;42042:16;;;;41787:279;;;;;;:::o;31780:125::-;;;;:::o;32509:124::-;;;;:::o;47149:263::-;47293:7;47341:8;47351;47361:11;47374:13;47397:4;47330:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47320:84;;;;;;47313:91;;47149:263;;;;;:::o;49144:127::-;49251:1;49233:7;:14;;;:19;;;;;;;;;;;49144:127;:::o;43478:196::-;43571:7;43637:15;43654:10;43608:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43598:68;;;;;;43591:75;;43478:196;;;;:::o;40128:1520::-;40259:7;40268:12;41193:66;41188:1;41180:10;;:79;41176:163;;;41292:1;41296:30;41276:51;;;;;;41176:163;41436:14;41453:24;41463:4;41469:1;41472;41475;41453:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41436:41;;41510:1;41492:20;;:6;:20;;;41488:103;;;41545:1;41549:29;41529:50;;;;;;;41488:103;41611:6;41619:20;41603:37;;;;;40128:1520;;;;;;;;:::o;35520:521::-;35598:20;35589:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;35585:449;;;35635:7;;35585:449;35696:29;35687:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;35683:351;;;35742:34;;;;;;;;;;:::i;:::-;;;;;;;;35683:351;35807:35;35798:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;35794:240;;;35859:41;;;;;;;;;;:::i;:::-;;;;;;;;35794:240;35931:30;35922:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;35918:116;;;35978:44;;;;;;;;;;:::i;:::-;;;;;;;;35918:116;35520:521;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:77::-;4938:7;4967:5;4956:16;;4901:77;;;:::o;4984:118::-;5071:24;5089:5;5071:24;:::i;:::-;5066:3;5059:37;4984:118;;:::o;5108:222::-;5201:4;5239:2;5228:9;5224:18;5216:26;;5252:71;5320:1;5309:9;5305:17;5296:6;5252:71;:::i;:::-;5108:222;;;;:::o;5336:329::-;5395:6;5444:2;5432:9;5423:7;5419:23;5415:32;5412:119;;;5450:79;;:::i;:::-;5412:119;5570:1;5595:53;5640:7;5631:6;5620:9;5616:22;5595:53;:::i;:::-;5585:63;;5541:117;5336:329;;;;:::o;5671:118::-;5742:22;5758:5;5742:22;:::i;:::-;5735:5;5732:33;5722:61;;5779:1;5776;5769:12;5722:61;5671:118;:::o;5795:135::-;5839:5;5877:6;5864:20;5855:29;;5893:31;5918:5;5893:31;:::i;:::-;5795:135;;;;:::o;5936:122::-;6009:24;6027:5;6009:24;:::i;:::-;6002:5;5999:35;5989:63;;6048:1;6045;6038:12;5989:63;5936:122;:::o;6064:139::-;6110:5;6148:6;6135:20;6126:29;;6164:33;6191:5;6164:33;:::i;:::-;6064:139;;;;:::o;6209:1199::-;6320:6;6328;6336;6344;6352;6360;6368;6417:3;6405:9;6396:7;6392:23;6388:33;6385:120;;;6424:79;;:::i;:::-;6385:120;6544:1;6569:53;6614:7;6605:6;6594:9;6590:22;6569:53;:::i;:::-;6559:63;;6515:117;6671:2;6697:53;6742:7;6733:6;6722:9;6718:22;6697:53;:::i;:::-;6687:63;;6642:118;6799:2;6825:53;6870:7;6861:6;6850:9;6846:22;6825:53;:::i;:::-;6815:63;;6770:118;6927:2;6953:53;6998:7;6989:6;6978:9;6974:22;6953:53;:::i;:::-;6943:63;;6898:118;7055:3;7082:51;7125:7;7116:6;7105:9;7101:22;7082:51;:::i;:::-;7072:61;;7026:117;7182:3;7209:53;7254:7;7245:6;7234:9;7230:22;7209:53;:::i;:::-;7199:63;;7153:119;7311:3;7338:53;7383:7;7374:6;7363:9;7359:22;7338:53;:::i;:::-;7328:63;;7282:119;6209:1199;;;;;;;;;;:::o;7414:474::-;7482:6;7490;7539:2;7527:9;7518:7;7514:23;7510:32;7507:119;;;7545:79;;:::i;:::-;7507:119;7665:1;7690:53;7735:7;7726:6;7715:9;7711:22;7690:53;:::i;:::-;7680:63;;7636:117;7792:2;7818:53;7863:7;7854:6;7843:9;7839:22;7818:53;:::i;:::-;7808:63;;7763:118;7414:474;;;;;:::o;7894:180::-;7942:77;7939:1;7932:88;8039:4;8036:1;8029:15;8063:4;8060:1;8053:15;8080:320;8124:6;8161:1;8155:4;8151:12;8141:22;;8208:1;8202:4;8198:12;8229:18;8219:81;;8285:4;8277:6;8273:17;8263:27;;8219:81;8347:2;8339:6;8336:14;8316:18;8313:38;8310:84;;;8366:18;;:::i;:::-;8310:84;8131:269;8080:320;;;:::o;8406:180::-;8454:77;8451:1;8444:88;8551:4;8548:1;8541:15;8575:4;8572:1;8565:15;8592:305;8632:3;8651:20;8669:1;8651:20;:::i;:::-;8646:25;;8685:20;8703:1;8685:20;:::i;:::-;8680:25;;8839:1;8771:66;8767:74;8764:1;8761:81;8758:107;;;8845:18;;:::i;:::-;8758:107;8889:1;8886;8882:9;8875:16;;8592:305;;;;:::o;8903:224::-;9043:34;9039:1;9031:6;9027:14;9020:58;9112:7;9107:2;9099:6;9095:15;9088:32;8903:224;:::o;9133:366::-;9275:3;9296:67;9360:2;9355:3;9296:67;:::i;:::-;9289:74;;9372:93;9461:3;9372:93;:::i;:::-;9490:2;9485:3;9481:12;9474:19;;9133:366;;;:::o;9505:419::-;9671:4;9709:2;9698:9;9694:18;9686:26;;9758:9;9752:4;9748:20;9744:1;9733:9;9729:17;9722:47;9786:131;9912:4;9786:131;:::i;:::-;9778:139;;9505:419;;;:::o;9930:179::-;10070:31;10066:1;10058:6;10054:14;10047:55;9930:179;:::o;10115:366::-;10257:3;10278:67;10342:2;10337:3;10278:67;:::i;:::-;10271:74;;10354:93;10443:3;10354:93;:::i;:::-;10472:2;10467:3;10463:12;10456:19;;10115:366;;;:::o;10487:419::-;10653:4;10691:2;10680:9;10676:18;10668:26;;10740:9;10734:4;10730:20;10726:1;10715:9;10711:17;10704:47;10768:131;10894:4;10768:131;:::i;:::-;10760:139;;10487:419;;;:::o;10912:118::-;10999:24;11017:5;10999:24;:::i;:::-;10994:3;10987:37;10912:118;;:::o;11036:775::-;11269:4;11307:3;11296:9;11292:19;11284:27;;11321:71;11389:1;11378:9;11374:17;11365:6;11321:71;:::i;:::-;11402:72;11470:2;11459:9;11455:18;11446:6;11402:72;:::i;:::-;11484;11552:2;11541:9;11537:18;11528:6;11484:72;:::i;:::-;11566;11634:2;11623:9;11619:18;11610:6;11566:72;:::i;:::-;11648:73;11716:3;11705:9;11701:19;11692:6;11648:73;:::i;:::-;11731;11799:3;11788:9;11784:19;11775:6;11731:73;:::i;:::-;11036:775;;;;;;;;;:::o;11817:180::-;11957:32;11953:1;11945:6;11941:14;11934:56;11817:180;:::o;12003:366::-;12145:3;12166:67;12230:2;12225:3;12166:67;:::i;:::-;12159:74;;12242:93;12331:3;12242:93;:::i;:::-;12360:2;12355:3;12351:12;12344:19;;12003:366;;;:::o;12375:419::-;12541:4;12579:2;12568:9;12564:18;12556:26;;12628:9;12622:4;12618:20;12614:1;12603:9;12599:17;12592:47;12656:131;12782:4;12656:131;:::i;:::-;12648:139;;12375:419;;;:::o;12800:223::-;12940:34;12936:1;12928:6;12924:14;12917:58;13009:6;13004:2;12996:6;12992:15;12985:31;12800:223;:::o;13029:366::-;13171:3;13192:67;13256:2;13251:3;13192:67;:::i;:::-;13185:74;;13268:93;13357:3;13268:93;:::i;:::-;13386:2;13381:3;13377:12;13370:19;;13029:366;;;:::o;13401:419::-;13567:4;13605:2;13594:9;13590:18;13582:26;;13654:9;13648:4;13644:20;13640:1;13629:9;13625:17;13618:47;13682:131;13808:4;13682:131;:::i;:::-;13674:139;;13401:419;;;:::o;13826:221::-;13966:34;13962:1;13954:6;13950:14;13943:58;14035:4;14030:2;14022:6;14018:15;14011:29;13826:221;:::o;14053:366::-;14195:3;14216:67;14280:2;14275:3;14216:67;:::i;:::-;14209:74;;14292:93;14381:3;14292:93;:::i;:::-;14410:2;14405:3;14401:12;14394:19;;14053:366;;;:::o;14425:419::-;14591:4;14629:2;14618:9;14614:18;14606:26;;14678:9;14672:4;14668:20;14664:1;14653:9;14649:17;14642:47;14706:131;14832:4;14706:131;:::i;:::-;14698:139;;14425:419;;;:::o;14850:179::-;14990:31;14986:1;14978:6;14974:14;14967:55;14850:179;:::o;15035:366::-;15177:3;15198:67;15262:2;15257:3;15198:67;:::i;:::-;15191:74;;15274:93;15363:3;15274:93;:::i;:::-;15392:2;15387:3;15383:12;15376:19;;15035:366;;;:::o;15407:419::-;15573:4;15611:2;15600:9;15596:18;15588:26;;15660:9;15654:4;15650:20;15646:1;15635:9;15631:17;15624:47;15688:131;15814:4;15688:131;:::i;:::-;15680:139;;15407:419;;;:::o;15832:224::-;15972:34;15968:1;15960:6;15956:14;15949:58;16041:7;16036:2;16028:6;16024:15;16017:32;15832:224;:::o;16062:366::-;16204:3;16225:67;16289:2;16284:3;16225:67;:::i;:::-;16218:74;;16301:93;16390:3;16301:93;:::i;:::-;16419:2;16414:3;16410:12;16403:19;;16062:366;;;:::o;16434:419::-;16600:4;16638:2;16627:9;16623:18;16615:26;;16687:9;16681:4;16677:20;16673:1;16662:9;16658:17;16651:47;16715:131;16841:4;16715:131;:::i;:::-;16707:139;;16434:419;;;:::o;16859:222::-;16999:34;16995:1;16987:6;16983:14;16976:58;17068:5;17063:2;17055:6;17051:15;17044:30;16859:222;:::o;17087:366::-;17229:3;17250:67;17314:2;17309:3;17250:67;:::i;:::-;17243:74;;17326:93;17415:3;17326:93;:::i;:::-;17444:2;17439:3;17435:12;17428:19;;17087:366;;;:::o;17459:419::-;17625:4;17663:2;17652:9;17648:18;17640:26;;17712:9;17706:4;17702:20;17698:1;17687:9;17683:17;17676:47;17740:131;17866:4;17740:131;:::i;:::-;17732:139;;17459:419;;;:::o;17884:225::-;18024:34;18020:1;18012:6;18008:14;18001:58;18093:8;18088:2;18080:6;18076:15;18069:33;17884:225;:::o;18115:366::-;18257:3;18278:67;18342:2;18337:3;18278:67;:::i;:::-;18271:74;;18354:93;18443:3;18354:93;:::i;:::-;18472:2;18467:3;18463:12;18456:19;;18115:366;;;:::o;18487:419::-;18653:4;18691:2;18680:9;18676:18;18668:26;;18740:9;18734:4;18730:20;18726:1;18715:9;18711:17;18704:47;18768:131;18894:4;18768:131;:::i;:::-;18760:139;;18487:419;;;:::o;18912:664::-;19117:4;19155:3;19144:9;19140:19;19132:27;;19169:71;19237:1;19226:9;19222:17;19213:6;19169:71;:::i;:::-;19250:72;19318:2;19307:9;19303:18;19294:6;19250:72;:::i;:::-;19332;19400:2;19389:9;19385:18;19376:6;19332:72;:::i;:::-;19414;19482:2;19471:9;19467:18;19458:6;19414:72;:::i;:::-;19496:73;19564:3;19553:9;19549:19;19540:6;19496:73;:::i;:::-;18912:664;;;;;;;;:::o;19582:148::-;19684:11;19721:3;19706:18;;19582:148;;;;:::o;19736:214::-;19876:66;19872:1;19864:6;19860:14;19853:90;19736:214;:::o;19956:400::-;20116:3;20137:84;20219:1;20214:3;20137:84;:::i;:::-;20130:91;;20230:93;20319:3;20230:93;:::i;:::-;20348:1;20343:3;20339:11;20332:18;;19956:400;;;:::o;20362:79::-;20401:7;20430:5;20419:16;;20362:79;;;:::o;20447:157::-;20552:45;20572:24;20590:5;20572:24;:::i;:::-;20552:45;:::i;:::-;20547:3;20540:58;20447:157;;:::o;20610:663::-;20851:3;20873:148;21017:3;20873:148;:::i;:::-;20866:155;;21031:75;21102:3;21093:6;21031:75;:::i;:::-;21131:2;21126:3;21122:12;21115:19;;21144:75;21215:3;21206:6;21144:75;:::i;:::-;21244:2;21239:3;21235:12;21228:19;;21264:3;21257:10;;20610:663;;;;;:::o;21279:545::-;21452:4;21490:3;21479:9;21475:19;21467:27;;21504:71;21572:1;21561:9;21557:17;21548:6;21504:71;:::i;:::-;21585:68;21649:2;21638:9;21634:18;21625:6;21585:68;:::i;:::-;21663:72;21731:2;21720:9;21716:18;21707:6;21663:72;:::i;:::-;21745;21813:2;21802:9;21798:18;21789:6;21745:72;:::i;:::-;21279:545;;;;;;;:::o;21830:180::-;21878:77;21875:1;21868:88;21975:4;21972:1;21965:15;21999:4;21996:1;21989:15;22016:174;22156:26;22152:1;22144:6;22140:14;22133:50;22016:174;:::o;22196:366::-;22338:3;22359:67;22423:2;22418:3;22359:67;:::i;:::-;22352:74;;22435:93;22524:3;22435:93;:::i;:::-;22553:2;22548:3;22544:12;22537:19;;22196:366;;;:::o;22568:419::-;22734:4;22772:2;22761:9;22757:18;22749:26;;22821:9;22815:4;22811:20;22807:1;22796:9;22792:17;22785:47;22849:131;22975:4;22849:131;:::i;:::-;22841:139;;22568:419;;;:::o;22993:181::-;23133:33;23129:1;23121:6;23117:14;23110:57;22993:181;:::o;23180:366::-;23322:3;23343:67;23407:2;23402:3;23343:67;:::i;:::-;23336:74;;23419:93;23508:3;23419:93;:::i;:::-;23537:2;23532:3;23528:12;23521:19;;23180:366;;;:::o;23552:419::-;23718:4;23756:2;23745:9;23741:18;23733:26;;23805:9;23799:4;23795:20;23791:1;23780:9;23776:17;23769:47;23833:131;23959:4;23833:131;:::i;:::-;23825:139;;23552:419;;;:::o;23977:221::-;24117:34;24113:1;24105:6;24101:14;24094:58;24186:4;24181:2;24173:6;24169:15;24162:29;23977:221;:::o;24204:366::-;24346:3;24367:67;24431:2;24426:3;24367:67;:::i;:::-;24360:74;;24443:93;24532:3;24443:93;:::i;:::-;24561:2;24556:3;24552:12;24545:19;;24204:366;;;:::o;24576:419::-;24742:4;24780:2;24769:9;24765:18;24757:26;;24829:9;24823:4;24819:20;24815:1;24804:9;24800:17;24793:47;24857:131;24983:4;24857:131;:::i;:::-;24849:139;;24576:419;;;:::o

Swarm Source

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