ETH Price: $2,706.70 (+2.65%)

Token

WhoIsBitcoinSatoshi (WIBS)
 

Overview

Max Total Supply

210,000,000,000 WIBS

Holders

14

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
25,000.00000000000005 WIBS

Value
$0.00
0x2d96de80e132f80e7a8ed5f7a090a4a899709938
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:
WhoIsBitcoinSatoshi

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-18
*/

// SPDX-License-Identifier: MIT

// File: @chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol


pragma solidity ^0.8.0;

interface AggregatorV3Interface {
  function decimals() external view returns (uint8);

  function description() external view returns (string memory);

  function version() external view returns (uint256);

  function getRoundData(
    uint80 _roundId
  ) external view returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound);

  function latestRoundData()
    external
    view
    returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound);
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @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 or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * 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.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @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`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) 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 FailedInnerCall();
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.20;

/**
 * @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.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
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].
     *
     * CAUTION: See Security Considerations above.
     */
    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/interfaces/draft-IERC6093.sol


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;

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

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

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

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


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

pragma solidity ^0.8.20;


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

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

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


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

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;




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

    /**
     * @dev An operation with an ERC20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @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);
        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @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).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // 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 cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
    }
}

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


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

pragma solidity ^0.8.20;


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

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

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

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


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

pragma solidity ^0.8.20;





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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

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

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

        emit Transfer(from, to, value);
    }

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

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

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

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

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

// File: WhoIsBitcoinSatoshi/WhoIsBitcoinSatoshi.sol



pragma solidity ^0.8.20;






contract WhoIsBitcoinSatoshi is ERC20, ReentrancyGuard, Ownable {
    using SafeERC20 for IERC20;

    uint256 public constant INITIAL_SUPPLY = 210e9 * 10**18; // 210 billion WIBS
    uint256 public tokenPriceUsdCents = 21; // $0.00021 represented in cents
    IERC20 public usdtToken;
    AggregatorV3Interface public ethUsdPriceFeed;

    address[] private addresses = [
        //0x97D62fDB98CF8782D2aED6E3Ee949acc64Cbe7b9, // Address for pre-sale
        0xf758bB4c0f000C39352a12039EcAD4f214D39C24, // Marketing
        0xBDFEd73dA0d2C96C9D8316e84B71D736D71bA096, // Project treasury
        0x0DB256C99dFbcbb6eE3413B0937374Ba4F6c952F, // Staking rewards
        0x222B2B1d2Ae93dAb894E32DC8c449B9b4550a4b3 // Exchange liquidity
    ];

    uint256[] private percentages = [25, 25, 15, 10]; // Updated percentages corresponding to each address

    constructor(
        address _usdtTokenAddress,
        address _ethUsdPriceFeedAddress,
        address initialOwner
    ) ERC20("WhoIsBitcoinSatoshi", "WIBS") Ownable(initialOwner) {
        require(_usdtTokenAddress != address(0), "Invalid USDT token address");
        require(
            _ethUsdPriceFeedAddress != address(0),
            "Invalid price feed address"
        );

        usdtToken = IERC20(_usdtTokenAddress);
        ethUsdPriceFeed = AggregatorV3Interface(_ethUsdPriceFeedAddress);
        mintInitialSupply();
    }

    function mintInitialSupply() private onlyOwner {
        uint256 totalPercentageAllocated = 0;
        for (uint256 i = 0; i < addresses.length; i++) {
            uint256 amountToMint = (INITIAL_SUPPLY * percentages[i]) / 100;
            _mint(addresses[i], amountToMint);
            totalPercentageAllocated += percentages[i];
        }
        // Mint remaining tokens (including the 25% for the contract itself) to the contract address
        uint256 remainingPercentage = 100 - totalPercentageAllocated;
        uint256 remainingTokens = (INITIAL_SUPPLY * remainingPercentage) / 100;
        _mint(address(this), remainingTokens);
    }

    // Function to set the token price in USD cents by the contract owner
    function setTokenPriceUsdCents(uint256 _newPrice) external onlyOwner {
        tokenPriceUsdCents = _newPrice;
    }

    function buyWithETH() external payable nonReentrant {
        require(msg.value > 0, "Send ETH to buy tokens");
        uint256 tokensToBuy = getTokensForEth(msg.value);
        _transfer(address(this), msg.sender, tokensToBuy * 1e18);
    }

    function buyWithUSDT(uint256 usdtAmount) external nonReentrant {
        require(usdtAmount > 0, "Invalid USDT amount");
        uint256 tokensToBuy = getTokensForUsdt(usdtAmount);
        usdtToken.safeTransferFrom(msg.sender, address(this), usdtAmount);
        _transfer(address(this), msg.sender, tokensToBuy * 1e12);
    }

    function getTokensForEth(uint256 ethSent) public view returns (uint256) {
        (, int256 price, , , ) = ethUsdPriceFeed.latestRoundData();
        require(price > 0, "ETH price is zero");
        // Convert price to wei scale without decimals (ethPriceUsd will have 18 decimals)
        uint256 ethPriceUsd = uint256(price) * 1e10; // Adjusts Chainlink's 8 decimal places to 18 decimals
        require(tokenPriceUsdCents > 0, "Token price is zero");
        uint256 tokenPriceUsdt = tokenPriceUsdCents * 1e13;
        require(tokenPriceUsdt > 0, "Calculated token price in USDT is zero"); // Ensure calculated price is not zero
        // Calculate the total USD value of the eth sent (in cents)
        uint256 totalUsdValueCents = (ethSent * ethPriceUsd) / 1e18;
        // Calculate how many tokens this amount of USD can buy
        uint256 tokensToBuy = totalUsdValueCents / tokenPriceUsdt;
        return tokensToBuy;
    }

    function getTokensForUsdt(uint256 usdtSent) public view returns (uint256) {
        require(tokenPriceUsdCents > 0, "Token price is zero"); // Ensure token price is not zero
        uint256 tokenPriceUsdt = tokenPriceUsdCents * 1e13; // Adjusted for USDT's 6 decimals
        require(tokenPriceUsdt > 0, "Calculated token price in USDT is zero"); // Ensure calculated price is not zero
        uint256 tokensToBuy = (usdtSent * 1e18) / tokenPriceUsdt;
        require(
            tokensToBuy > 0,
            "No tokens can be bought with the amount of USDT sent"
        ); // Ensure calculation result is valid
        return tokensToBuy;
    }

    function getLatestEthPrice() public view returns (int256) {
        (
            ,
            /* uint80 roundID */
            int256 price, /* uint startedAt */ /* uint timeStamp */ /* uint80 answeredInRound */
            ,
            ,

        ) = ethUsdPriceFeed.latestRoundData();
        return price; // Price is returned with 8 decimal places
    }

    // Allows the contract owner to withdraw ETH
    function withdrawEth() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    // Allows the contract owner to withdraw USDT
    function withdrawUsdt(uint256 amount) external onlyOwner {
        usdtToken.safeTransfer(owner(), amount);
    }

    function withdrawTokens(uint256 amount) external onlyOwner {
        _transfer(address(this), owner(), amount);
    }

    function transferFromContract(address recipient, uint256 amount)
        external
        onlyOwner
    {
        _transfer(address(this), recipient, amount);
    }

    // Function to perform an airdrop from the contract's balance
    function airdropFromContract(
        address[] calldata recipients,
        uint256[] calldata amounts
    ) external onlyOwner {
        require(
            recipients.length == amounts.length,
            "Recipients and amounts must match in length."
        );

        for (uint256 i = 0; i < recipients.length; i++) {
            require(
                balanceOf(address(this)) >= amounts[i],
                "Insufficient tokens in the contract"
            );
            _transfer(address(this), recipients[i], amounts[i]);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_usdtTokenAddress","type":"address"},{"internalType":"address","name":"_ethUsdPriceFeedAddress","type":"address"},{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyWithETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"usdtAmount","type":"uint256"}],"name":"buyWithUSDT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethUsdPriceFeed","outputs":[{"internalType":"contract AggregatorV3Interface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLatestEthPrice","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethSent","type":"uint256"}],"name":"getTokensForEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"usdtSent","type":"uint256"}],"name":"getTokensForUsdt","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setTokenPriceUsdCents","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPriceUsdCents","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usdtToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawUsdt","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526015600755604051806080016040528073f758bb4c0f000c39352a12039ecad4f214d39c2473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173bdfed73da0d2c96c9d8316e84b71d736d71ba09673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001730db256c99dfbcbb6ee3413b0937374ba4f6c952f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173222b2b1d2ae93dab894e32dc8c449b9b4550a4b373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250600a90600461013a92919061098f565b506040518060800160405280601960ff168152602001601960ff168152602001600f60ff168152602001600a60ff16815250600b90600461017c929190610a16565b50348015610188575f80fd5b5060405161394738038061394783398181016040528101906101aa9190610adf565b806040518060400160405280601381526020017f57686f4973426974636f696e5361746f736869000000000000000000000000008152506040518060400160405280600481526020017f574942530000000000000000000000000000000000000000000000000000000081525081600390816102269190610d69565b5080600490816102369190610d69565b50505060016005819055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036102b1575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016102a89190610e47565b60405180910390fd5b6102c08161043360201b60201c565b505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361032f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161032690610eba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361039d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039490610f22565b60405180910390fd5b8260085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061042b6104f660201b60201c565b5050506110fb565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61050461062960201b60201c565b5f805b600a805490508110156105db575f6064600b838154811061052b5761052a610f40565b5b905f5260205f2001546c02a68bedbb190931f65000000061054c9190610f9a565b6105569190611008565b90506105a3600a838154811061056f5761056e610f40565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826106c260201b60201c565b600b82815481106105b7576105b6610f40565b5b905f5260205f200154836105cb9190611038565b9250508080600101915050610507565b505f8160646105ea919061106b565b90505f6064826c02a68bedbb190931f6500000006106089190610f9a565b6106129190611008565b905061062430826106c260201b60201c565b505050565b61063761074760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1661065b61074e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146106c05761068461074760201b60201c565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016106b79190610e47565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610732575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107299190610e47565b60405180910390fd5b6107435f838361077660201b60201c565b5050565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107c6578060025f8282546107ba9190611038565b92505081905550610894565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561084f578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610846939291906110ad565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108db578060025f8282540392505081905550610925565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161098291906110e2565b60405180910390a3505050565b828054828255905f5260205f20908101928215610a05579160200282015b82811115610a04578251825f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906109ad565b5b509050610a129190610a66565b5090565b828054828255905f5260205f20908101928215610a55579160200282015b82811115610a54578251829060ff16905591602001919060010190610a34565b5b509050610a629190610a66565b5090565b5b80821115610a7d575f815f905550600101610a67565b5090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610aae82610a85565b9050919050565b610abe81610aa4565b8114610ac8575f80fd5b50565b5f81519050610ad981610ab5565b92915050565b5f805f60608486031215610af657610af5610a81565b5b5f610b0386828701610acb565b9350506020610b1486828701610acb565b9250506040610b2586828701610acb565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610baa57607f821691505b602082108103610bbd57610bbc610b66565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610c1f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610be4565b610c298683610be4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610c6d610c68610c6384610c41565b610c4a565b610c41565b9050919050565b5f819050919050565b610c8683610c53565b610c9a610c9282610c74565b848454610bf0565b825550505050565b5f90565b610cae610ca2565b610cb9818484610c7d565b505050565b5b81811015610cdc57610cd15f82610ca6565b600181019050610cbf565b5050565b601f821115610d2157610cf281610bc3565b610cfb84610bd5565b81016020851015610d0a578190505b610d1e610d1685610bd5565b830182610cbe565b50505b505050565b5f82821c905092915050565b5f610d415f1984600802610d26565b1980831691505092915050565b5f610d598383610d32565b9150826002028217905092915050565b610d7282610b2f565b67ffffffffffffffff811115610d8b57610d8a610b39565b5b610d958254610b93565b610da0828285610ce0565b5f60209050601f831160018114610dd1575f8415610dbf578287015190505b610dc98582610d4e565b865550610e30565b601f198416610ddf86610bc3565b5f5b82811015610e0657848901518255600182019150602085019450602081019050610de1565b86831015610e235784890151610e1f601f891682610d32565b8355505b6001600288020188555050505b505050505050565b610e4181610aa4565b82525050565b5f602082019050610e5a5f830184610e38565b92915050565b5f82825260208201905092915050565b7f496e76616c6964205553445420746f6b656e20616464726573730000000000005f82015250565b5f610ea4601a83610e60565b9150610eaf82610e70565b602082019050919050565b5f6020820190508181035f830152610ed181610e98565b9050919050565b7f496e76616c6964207072696365206665656420616464726573730000000000005f82015250565b5f610f0c601a83610e60565b9150610f1782610ed8565b602082019050919050565b5f6020820190508181035f830152610f3981610f00565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610fa482610c41565b9150610faf83610c41565b9250828202610fbd81610c41565b91508282048414831517610fd457610fd3610f6d565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61101282610c41565b915061101d83610c41565b92508261102d5761102c610fdb565b5b828204905092915050565b5f61104282610c41565b915061104d83610c41565b925082820190508082111561106557611064610f6d565b5b92915050565b5f61107582610c41565b915061108083610c41565b925082820390508181111561109857611097610f6d565b5b92915050565b6110a781610c41565b82525050565b5f6060820190506110c05f830186610e38565b6110cd602083018561109e565b6110da604083018461109e565b949350505050565b5f6020820190506110f55f83018461109e565b92915050565b61283f806111085f395ff3fe60806040526004361061019b575f3560e01c806342f6fb29116100eb578063a9059cbb11610089578063dd62ed3e11610063578063dd62ed3e14610559578063dfe100d414610595578063f2fde38b146105d1578063f4b6fd46146105f95761019b565b8063a9059cbb146104cb578063a98ad46c14610507578063d3635a02146105315761019b565b80638da5cb5b116100c55780638da5cb5b1461043957806395d89b4114610463578063a0ef91df1461048d578063a7c60160146104a35761019b565b806342f6fb29146103bd57806370a08231146103e7578063715018a6146104235761019b565b806323b872dd11610158578063313ce56711610132578063313ce5671461031b578063313e605414610345578063315a095d1461036d578063395ae8c9146103955761019b565b806323b872dd1461028b5780632ff2e9dc146102c757806330c0b9ec146102f15761019b565b806306df533e1461019f57806306fdde03146101c9578063095ea7b3146101f3578063150d283d1461022f57806318160ddd146102395780631a88f30614610263575b5f80fd5b3480156101aa575f80fd5b506101b3610635565b6040516101c09190611b15565b60405180910390f35b3480156101d4575f80fd5b506101dd61063b565b6040516101ea9190611b9e565b60405180910390f35b3480156101fe575f80fd5b5061021960048036038101906102149190611c4a565b6106cb565b6040516102269190611ca2565b60405180910390f35b6102376106ed565b005b348015610244575f80fd5b5061024d61076c565b60405161025a9190611b15565b60405180910390f35b34801561026e575f80fd5b5061028960048036038101906102849190611c4a565b610775565b005b348015610296575f80fd5b506102b160048036038101906102ac9190611cbb565b61078c565b6040516102be9190611ca2565b60405180910390f35b3480156102d2575f80fd5b506102db6107ba565b6040516102e89190611b15565b60405180910390f35b3480156102fc575f80fd5b506103056107cb565b6040516103129190611d23565b60405180910390f35b348015610326575f80fd5b5061032f610868565b60405161033c9190611d57565b60405180910390f35b348015610350575f80fd5b5061036b60048036038101906103669190611e26565b610870565b005b348015610378575f80fd5b50610393600480360381019061038e9190611ea4565b610990565b005b3480156103a0575f80fd5b506103bb60048036038101906103b69190611ea4565b6109ad565b005b3480156103c8575f80fd5b506103d16109bf565b6040516103de9190611f2a565b60405180910390f35b3480156103f2575f80fd5b5061040d60048036038101906104089190611f43565b6109e4565b60405161041a9190611b15565b60405180910390f35b34801561042e575f80fd5b50610437610a29565b005b348015610444575f80fd5b5061044d610a3c565b60405161045a9190611f7d565b60405180910390f35b34801561046e575f80fd5b50610477610a64565b6040516104849190611b9e565b60405180910390f35b348015610498575f80fd5b506104a1610af4565b005b3480156104ae575f80fd5b506104c960048036038101906104c49190611ea4565b610b49565b005b3480156104d6575f80fd5b506104f160048036038101906104ec9190611c4a565b610c14565b6040516104fe9190611ca2565b60405180910390f35b348015610512575f80fd5b5061051b610c36565b6040516105289190611fb6565b60405180910390f35b34801561053c575f80fd5b5061055760048036038101906105529190611ea4565b610c5b565b005b348015610564575f80fd5b5061057f600480360381019061057a9190611fcf565b610cb9565b60405161058c9190611b15565b60405180910390f35b3480156105a0575f80fd5b506105bb60048036038101906105b69190611ea4565b610d3b565b6040516105c89190611b15565b60405180910390f35b3480156105dc575f80fd5b506105f760048036038101906105f29190611f43565b610f02565b005b348015610604575f80fd5b5061061f600480360381019061061a9190611ea4565b610f86565b60405161062c9190611b15565b60405180910390f35b60075481565b60606003805461064a9061203a565b80601f01602080910402602001604051908101604052809291908181526020018280546106769061203a565b80156106c15780601f10610698576101008083540402835291602001916106c1565b820191905f5260205f20905b8154815290600101906020018083116106a457829003601f168201915b5050505050905090565b5f806106d5611092565b90506106e2818585611099565b600191505092915050565b6106f56110ab565b5f3411610737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072e906120b4565b60405180910390fd5b5f61074134610d3b565b90506107613033670de0b6b3a76400008461075c91906120ff565b6110fa565b5061076a6111ea565b565b5f600254905090565b61077d6111f4565b6107883083836110fa565b5050565b5f80610796611092565b90506107a385828561127b565b6107ae8585856110fa565b60019150509392505050565b6c02a68bedbb190931f65000000081565b5f8060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015610837573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085b91906121bd565b5050509150508091505090565b5f6012905090565b6108786111f4565b8181905084849050146108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b7906122a4565b60405180910390fd5b5f5b84849050811015610989578282828181106108e0576108df6122c2565b5b905060200201356108f0306109e4565b1015610931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109289061235f565b60405180910390fd5b61097c30868684818110610948576109476122c2565b5b905060200201602081019061095d9190611f43565b8585858181106109705761096f6122c2565b5b905060200201356110fa565b80806001019150506108c2565b5050505050565b6109986111f4565b6109aa306109a4610a3c565b836110fa565b50565b6109b56111f4565b8060078190555050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a316111f4565b610a3a5f61130d565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a739061203a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9f9061203a565b8015610aea5780601f10610ac157610100808354040283529160200191610aea565b820191905f5260205f20905b815481529060010190602001808311610acd57829003601f168201915b5050505050905090565b610afc6111f4565b610b04610a3c565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610b46573d5f803e3d5ffd5b50565b610b516110ab565b5f8111610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a906123c7565b60405180910390fd5b5f610b9d82610f86565b9050610bed33308460085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113d0909392919063ffffffff16565b610c08303364e8d4a5100084610c0391906120ff565b6110fa565b50610c116111ea565b50565b5f80610c1e611092565b9050610c2b8185856110fa565b600191505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c636111f4565b610cb6610c6e610a3c565b8260085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114529092919063ffffffff16565b50565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f8060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015610da7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dcb91906121bd565b5050509150505f8113610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a9061242f565b60405180910390fd5b5f6402540be40082610e2591906120ff565b90505f60075411610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290612497565b60405180910390fd5b5f6509184e72a000600754610e8091906120ff565b90505f8111610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90612525565b60405180910390fd5b5f670de0b6b3a76400008387610eda91906120ff565b610ee49190612570565b90505f8282610ef39190612570565b90508095505050505050919050565b610f0a6111f4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f7a575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f719190611f7d565b60405180910390fd5b610f838161130d565b50565b5f8060075411610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290612497565b60405180910390fd5b5f6509184e72a000600754610fe091906120ff565b90505f8111611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90612525565b60405180910390fd5b5f81670de0b6b3a76400008561103a91906120ff565b6110449190612570565b90505f8111611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90612610565b60405180910390fd5b8092505050919050565b5f33905090565b6110a683838360016114d1565b505050565b6002600554036110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790612678565b60405180910390fd5b6002600581905550565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361116a575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111619190611f7d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111da575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016111d19190611f7d565b60405180910390fd5b6111e58383836116a0565b505050565b6001600581905550565b6111fc611092565b73ffffffffffffffffffffffffffffffffffffffff1661121a610a3c565b73ffffffffffffffffffffffffffffffffffffffff16146112795761123d611092565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016112709190611f7d565b60405180910390fd5b565b5f6112868484610cb9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461130757818110156112f8578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016112ef93929190612696565b60405180910390fd5b61130684848484035f6114d1565b5b50505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61144c848573ffffffffffffffffffffffffffffffffffffffff166323b872dd868686604051602401611405939291906126cb565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506118b9565b50505050565b6114cc838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8585604051602401611485929190612700565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506118b9565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611541575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016115389190611f7d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115b1575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115a89190611f7d565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561169a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516116919190611b15565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116f0578060025f8282546116e49190612727565b925050819055506117be565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611779578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161177093929190612696565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611805578060025f828254039250508190555061184f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118ac9190611b15565b60405180910390a3505050565b5f6118e3828473ffffffffffffffffffffffffffffffffffffffff1661194e90919063ffffffff16565b90505f8151141580156119075750808060200190518101906119059190612784565b155b1561194957826040517f5274afe70000000000000000000000000000000000000000000000000000000081526004016119409190611f7d565b60405180910390fd5b505050565b606061195b83835f611963565b905092915050565b6060814710156119aa57306040517fcd7860590000000000000000000000000000000000000000000000000000000081526004016119a19190611f7d565b60405180910390fd5b5f808573ffffffffffffffffffffffffffffffffffffffff1684866040516119d291906127f3565b5f6040518083038185875af1925050503d805f8114611a0c576040519150601f19603f3d011682016040523d82523d5f602084013e611a11565b606091505b5091509150611a21868383611a2c565b925050509392505050565b606082611a4157611a3c82611ab9565b611ab1565b5f8251148015611a6757505f8473ffffffffffffffffffffffffffffffffffffffff163b145b15611aa957836040517f9996b315000000000000000000000000000000000000000000000000000000008152600401611aa09190611f7d565b60405180910390fd5b819050611ab2565b5b9392505050565b5f81511115611acb5780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f819050919050565b611b0f81611afd565b82525050565b5f602082019050611b285f830184611b06565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611b7082611b2e565b611b7a8185611b38565b9350611b8a818560208601611b48565b611b9381611b56565b840191505092915050565b5f6020820190508181035f830152611bb68184611b66565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611bef82611bc6565b9050919050565b611bff81611be5565b8114611c09575f80fd5b50565b5f81359050611c1a81611bf6565b92915050565b611c2981611afd565b8114611c33575f80fd5b50565b5f81359050611c4481611c20565b92915050565b5f8060408385031215611c6057611c5f611bbe565b5b5f611c6d85828601611c0c565b9250506020611c7e85828601611c36565b9150509250929050565b5f8115159050919050565b611c9c81611c88565b82525050565b5f602082019050611cb55f830184611c93565b92915050565b5f805f60608486031215611cd257611cd1611bbe565b5b5f611cdf86828701611c0c565b9350506020611cf086828701611c0c565b9250506040611d0186828701611c36565b9150509250925092565b5f819050919050565b611d1d81611d0b565b82525050565b5f602082019050611d365f830184611d14565b92915050565b5f60ff82169050919050565b611d5181611d3c565b82525050565b5f602082019050611d6a5f830184611d48565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611d9157611d90611d70565b5b8235905067ffffffffffffffff811115611dae57611dad611d74565b5b602083019150836020820283011115611dca57611dc9611d78565b5b9250929050565b5f8083601f840112611de657611de5611d70565b5b8235905067ffffffffffffffff811115611e0357611e02611d74565b5b602083019150836020820283011115611e1f57611e1e611d78565b5b9250929050565b5f805f8060408587031215611e3e57611e3d611bbe565b5b5f85013567ffffffffffffffff811115611e5b57611e5a611bc2565b5b611e6787828801611d7c565b9450945050602085013567ffffffffffffffff811115611e8a57611e89611bc2565b5b611e9687828801611dd1565b925092505092959194509250565b5f60208284031215611eb957611eb8611bbe565b5b5f611ec684828501611c36565b91505092915050565b5f819050919050565b5f611ef2611eed611ee884611bc6565b611ecf565b611bc6565b9050919050565b5f611f0382611ed8565b9050919050565b5f611f1482611ef9565b9050919050565b611f2481611f0a565b82525050565b5f602082019050611f3d5f830184611f1b565b92915050565b5f60208284031215611f5857611f57611bbe565b5b5f611f6584828501611c0c565b91505092915050565b611f7781611be5565b82525050565b5f602082019050611f905f830184611f6e565b92915050565b5f611fa082611ef9565b9050919050565b611fb081611f96565b82525050565b5f602082019050611fc95f830184611fa7565b92915050565b5f8060408385031215611fe557611fe4611bbe565b5b5f611ff285828601611c0c565b925050602061200385828601611c0c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061205157607f821691505b6020821081036120645761206361200d565b5b50919050565b7f53656e642045544820746f2062757920746f6b656e73000000000000000000005f82015250565b5f61209e601683611b38565b91506120a98261206a565b602082019050919050565b5f6020820190508181035f8301526120cb81612092565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61210982611afd565b915061211483611afd565b925082820261212281611afd565b91508282048414831517612139576121386120d2565b5b5092915050565b5f69ffffffffffffffffffff82169050919050565b61215e81612140565b8114612168575f80fd5b50565b5f8151905061217981612155565b92915050565b61218881611d0b565b8114612192575f80fd5b50565b5f815190506121a38161217f565b92915050565b5f815190506121b781611c20565b92915050565b5f805f805f60a086880312156121d6576121d5611bbe565b5b5f6121e38882890161216b565b95505060206121f488828901612195565b9450506040612205888289016121a9565b9350506060612216888289016121a9565b92505060806122278882890161216b565b9150509295509295909350565b7f526563697069656e747320616e6420616d6f756e7473206d757374206d6174635f8201527f6820696e206c656e6774682e0000000000000000000000000000000000000000602082015250565b5f61228e602c83611b38565b915061229982612234565b604082019050919050565b5f6020820190508181035f8301526122bb81612282565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f496e73756666696369656e7420746f6b656e7320696e2074686520636f6e74725f8201527f6163740000000000000000000000000000000000000000000000000000000000602082015250565b5f612349602383611b38565b9150612354826122ef565b604082019050919050565b5f6020820190508181035f8301526123768161233d565b9050919050565b7f496e76616c6964205553445420616d6f756e74000000000000000000000000005f82015250565b5f6123b1601383611b38565b91506123bc8261237d565b602082019050919050565b5f6020820190508181035f8301526123de816123a5565b9050919050565b7f455448207072696365206973207a65726f0000000000000000000000000000005f82015250565b5f612419601183611b38565b9150612424826123e5565b602082019050919050565b5f6020820190508181035f8301526124468161240d565b9050919050565b7f546f6b656e207072696365206973207a65726f000000000000000000000000005f82015250565b5f612481601383611b38565b915061248c8261244d565b602082019050919050565b5f6020820190508181035f8301526124ae81612475565b9050919050565b7f43616c63756c6174656420746f6b656e20707269636520696e205553445420695f8201527f73207a65726f0000000000000000000000000000000000000000000000000000602082015250565b5f61250f602683611b38565b915061251a826124b5565b604082019050919050565b5f6020820190508181035f83015261253c81612503565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61257a82611afd565b915061258583611afd565b92508261259557612594612543565b5b828204905092915050565b7f4e6f20746f6b656e732063616e20626520626f756768742077697468207468655f8201527f20616d6f756e74206f6620555344542073656e74000000000000000000000000602082015250565b5f6125fa603483611b38565b9150612605826125a0565b604082019050919050565b5f6020820190508181035f830152612627816125ee565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f612662601f83611b38565b915061266d8261262e565b602082019050919050565b5f6020820190508181035f83015261268f81612656565b9050919050565b5f6060820190506126a95f830186611f6e565b6126b66020830185611b06565b6126c36040830184611b06565b949350505050565b5f6060820190506126de5f830186611f6e565b6126eb6020830185611f6e565b6126f86040830184611b06565b949350505050565b5f6040820190506127135f830185611f6e565b6127206020830184611b06565b9392505050565b5f61273182611afd565b915061273c83611afd565b9250828201905080821115612754576127536120d2565b5b92915050565b61276381611c88565b811461276d575f80fd5b50565b5f8151905061277e8161275a565b92915050565b5f6020828403121561279957612798611bbe565b5b5f6127a684828501612770565b91505092915050565b5f81519050919050565b5f81905092915050565b5f6127cd826127af565b6127d781856127b9565b93506127e7818560208601611b48565b80840191505092915050565b5f6127fe82846127c3565b91508190509291505056fea264697066735822122052a2e5f8be48f92c62f50b90e7cf7f2c7983bde428f7dfef36fba86cc5c862c264736f6c63430008190033000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b841900000000000000000000000009d72b6ec93d12d8528df0c72dbce75abe832f62

Deployed Bytecode

0x60806040526004361061019b575f3560e01c806342f6fb29116100eb578063a9059cbb11610089578063dd62ed3e11610063578063dd62ed3e14610559578063dfe100d414610595578063f2fde38b146105d1578063f4b6fd46146105f95761019b565b8063a9059cbb146104cb578063a98ad46c14610507578063d3635a02146105315761019b565b80638da5cb5b116100c55780638da5cb5b1461043957806395d89b4114610463578063a0ef91df1461048d578063a7c60160146104a35761019b565b806342f6fb29146103bd57806370a08231146103e7578063715018a6146104235761019b565b806323b872dd11610158578063313ce56711610132578063313ce5671461031b578063313e605414610345578063315a095d1461036d578063395ae8c9146103955761019b565b806323b872dd1461028b5780632ff2e9dc146102c757806330c0b9ec146102f15761019b565b806306df533e1461019f57806306fdde03146101c9578063095ea7b3146101f3578063150d283d1461022f57806318160ddd146102395780631a88f30614610263575b5f80fd5b3480156101aa575f80fd5b506101b3610635565b6040516101c09190611b15565b60405180910390f35b3480156101d4575f80fd5b506101dd61063b565b6040516101ea9190611b9e565b60405180910390f35b3480156101fe575f80fd5b5061021960048036038101906102149190611c4a565b6106cb565b6040516102269190611ca2565b60405180910390f35b6102376106ed565b005b348015610244575f80fd5b5061024d61076c565b60405161025a9190611b15565b60405180910390f35b34801561026e575f80fd5b5061028960048036038101906102849190611c4a565b610775565b005b348015610296575f80fd5b506102b160048036038101906102ac9190611cbb565b61078c565b6040516102be9190611ca2565b60405180910390f35b3480156102d2575f80fd5b506102db6107ba565b6040516102e89190611b15565b60405180910390f35b3480156102fc575f80fd5b506103056107cb565b6040516103129190611d23565b60405180910390f35b348015610326575f80fd5b5061032f610868565b60405161033c9190611d57565b60405180910390f35b348015610350575f80fd5b5061036b60048036038101906103669190611e26565b610870565b005b348015610378575f80fd5b50610393600480360381019061038e9190611ea4565b610990565b005b3480156103a0575f80fd5b506103bb60048036038101906103b69190611ea4565b6109ad565b005b3480156103c8575f80fd5b506103d16109bf565b6040516103de9190611f2a565b60405180910390f35b3480156103f2575f80fd5b5061040d60048036038101906104089190611f43565b6109e4565b60405161041a9190611b15565b60405180910390f35b34801561042e575f80fd5b50610437610a29565b005b348015610444575f80fd5b5061044d610a3c565b60405161045a9190611f7d565b60405180910390f35b34801561046e575f80fd5b50610477610a64565b6040516104849190611b9e565b60405180910390f35b348015610498575f80fd5b506104a1610af4565b005b3480156104ae575f80fd5b506104c960048036038101906104c49190611ea4565b610b49565b005b3480156104d6575f80fd5b506104f160048036038101906104ec9190611c4a565b610c14565b6040516104fe9190611ca2565b60405180910390f35b348015610512575f80fd5b5061051b610c36565b6040516105289190611fb6565b60405180910390f35b34801561053c575f80fd5b5061055760048036038101906105529190611ea4565b610c5b565b005b348015610564575f80fd5b5061057f600480360381019061057a9190611fcf565b610cb9565b60405161058c9190611b15565b60405180910390f35b3480156105a0575f80fd5b506105bb60048036038101906105b69190611ea4565b610d3b565b6040516105c89190611b15565b60405180910390f35b3480156105dc575f80fd5b506105f760048036038101906105f29190611f43565b610f02565b005b348015610604575f80fd5b5061061f600480360381019061061a9190611ea4565b610f86565b60405161062c9190611b15565b60405180910390f35b60075481565b60606003805461064a9061203a565b80601f01602080910402602001604051908101604052809291908181526020018280546106769061203a565b80156106c15780601f10610698576101008083540402835291602001916106c1565b820191905f5260205f20905b8154815290600101906020018083116106a457829003601f168201915b5050505050905090565b5f806106d5611092565b90506106e2818585611099565b600191505092915050565b6106f56110ab565b5f3411610737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072e906120b4565b60405180910390fd5b5f61074134610d3b565b90506107613033670de0b6b3a76400008461075c91906120ff565b6110fa565b5061076a6111ea565b565b5f600254905090565b61077d6111f4565b6107883083836110fa565b5050565b5f80610796611092565b90506107a385828561127b565b6107ae8585856110fa565b60019150509392505050565b6c02a68bedbb190931f65000000081565b5f8060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015610837573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085b91906121bd565b5050509150508091505090565b5f6012905090565b6108786111f4565b8181905084849050146108c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b7906122a4565b60405180910390fd5b5f5b84849050811015610989578282828181106108e0576108df6122c2565b5b905060200201356108f0306109e4565b1015610931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109289061235f565b60405180910390fd5b61097c30868684818110610948576109476122c2565b5b905060200201602081019061095d9190611f43565b8585858181106109705761096f6122c2565b5b905060200201356110fa565b80806001019150506108c2565b5050505050565b6109986111f4565b6109aa306109a4610a3c565b836110fa565b50565b6109b56111f4565b8060078190555050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a316111f4565b610a3a5f61130d565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a739061203a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9f9061203a565b8015610aea5780601f10610ac157610100808354040283529160200191610aea565b820191905f5260205f20905b815481529060010190602001808311610acd57829003601f168201915b5050505050905090565b610afc6111f4565b610b04610a3c565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610b46573d5f803e3d5ffd5b50565b610b516110ab565b5f8111610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a906123c7565b60405180910390fd5b5f610b9d82610f86565b9050610bed33308460085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113d0909392919063ffffffff16565b610c08303364e8d4a5100084610c0391906120ff565b6110fa565b50610c116111ea565b50565b5f80610c1e611092565b9050610c2b8185856110fa565b600191505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c636111f4565b610cb6610c6e610a3c565b8260085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114529092919063ffffffff16565b50565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f8060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015610da7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dcb91906121bd565b5050509150505f8113610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a9061242f565b60405180910390fd5b5f6402540be40082610e2591906120ff565b90505f60075411610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290612497565b60405180910390fd5b5f6509184e72a000600754610e8091906120ff565b90505f8111610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90612525565b60405180910390fd5b5f670de0b6b3a76400008387610eda91906120ff565b610ee49190612570565b90505f8282610ef39190612570565b90508095505050505050919050565b610f0a6111f4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f7a575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f719190611f7d565b60405180910390fd5b610f838161130d565b50565b5f8060075411610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290612497565b60405180910390fd5b5f6509184e72a000600754610fe091906120ff565b90505f8111611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90612525565b60405180910390fd5b5f81670de0b6b3a76400008561103a91906120ff565b6110449190612570565b90505f8111611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90612610565b60405180910390fd5b8092505050919050565b5f33905090565b6110a683838360016114d1565b505050565b6002600554036110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790612678565b60405180910390fd5b6002600581905550565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361116a575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111619190611f7d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111da575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016111d19190611f7d565b60405180910390fd5b6111e58383836116a0565b505050565b6001600581905550565b6111fc611092565b73ffffffffffffffffffffffffffffffffffffffff1661121a610a3c565b73ffffffffffffffffffffffffffffffffffffffff16146112795761123d611092565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016112709190611f7d565b60405180910390fd5b565b5f6112868484610cb9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461130757818110156112f8578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016112ef93929190612696565b60405180910390fd5b61130684848484035f6114d1565b5b50505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61144c848573ffffffffffffffffffffffffffffffffffffffff166323b872dd868686604051602401611405939291906126cb565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506118b9565b50505050565b6114cc838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8585604051602401611485929190612700565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506118b9565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611541575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016115389190611f7d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115b1575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115a89190611f7d565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561169a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516116919190611b15565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116f0578060025f8282546116e49190612727565b925050819055506117be565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611779578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161177093929190612696565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611805578060025f828254039250508190555061184f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118ac9190611b15565b60405180910390a3505050565b5f6118e3828473ffffffffffffffffffffffffffffffffffffffff1661194e90919063ffffffff16565b90505f8151141580156119075750808060200190518101906119059190612784565b155b1561194957826040517f5274afe70000000000000000000000000000000000000000000000000000000081526004016119409190611f7d565b60405180910390fd5b505050565b606061195b83835f611963565b905092915050565b6060814710156119aa57306040517fcd7860590000000000000000000000000000000000000000000000000000000081526004016119a19190611f7d565b60405180910390fd5b5f808573ffffffffffffffffffffffffffffffffffffffff1684866040516119d291906127f3565b5f6040518083038185875af1925050503d805f8114611a0c576040519150601f19603f3d011682016040523d82523d5f602084013e611a11565b606091505b5091509150611a21868383611a2c565b925050509392505050565b606082611a4157611a3c82611ab9565b611ab1565b5f8251148015611a6757505f8473ffffffffffffffffffffffffffffffffffffffff163b145b15611aa957836040517f9996b315000000000000000000000000000000000000000000000000000000008152600401611aa09190611f7d565b60405180910390fd5b819050611ab2565b5b9392505050565b5f81511115611acb5780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f819050919050565b611b0f81611afd565b82525050565b5f602082019050611b285f830184611b06565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611b7082611b2e565b611b7a8185611b38565b9350611b8a818560208601611b48565b611b9381611b56565b840191505092915050565b5f6020820190508181035f830152611bb68184611b66565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611bef82611bc6565b9050919050565b611bff81611be5565b8114611c09575f80fd5b50565b5f81359050611c1a81611bf6565b92915050565b611c2981611afd565b8114611c33575f80fd5b50565b5f81359050611c4481611c20565b92915050565b5f8060408385031215611c6057611c5f611bbe565b5b5f611c6d85828601611c0c565b9250506020611c7e85828601611c36565b9150509250929050565b5f8115159050919050565b611c9c81611c88565b82525050565b5f602082019050611cb55f830184611c93565b92915050565b5f805f60608486031215611cd257611cd1611bbe565b5b5f611cdf86828701611c0c565b9350506020611cf086828701611c0c565b9250506040611d0186828701611c36565b9150509250925092565b5f819050919050565b611d1d81611d0b565b82525050565b5f602082019050611d365f830184611d14565b92915050565b5f60ff82169050919050565b611d5181611d3c565b82525050565b5f602082019050611d6a5f830184611d48565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611d9157611d90611d70565b5b8235905067ffffffffffffffff811115611dae57611dad611d74565b5b602083019150836020820283011115611dca57611dc9611d78565b5b9250929050565b5f8083601f840112611de657611de5611d70565b5b8235905067ffffffffffffffff811115611e0357611e02611d74565b5b602083019150836020820283011115611e1f57611e1e611d78565b5b9250929050565b5f805f8060408587031215611e3e57611e3d611bbe565b5b5f85013567ffffffffffffffff811115611e5b57611e5a611bc2565b5b611e6787828801611d7c565b9450945050602085013567ffffffffffffffff811115611e8a57611e89611bc2565b5b611e9687828801611dd1565b925092505092959194509250565b5f60208284031215611eb957611eb8611bbe565b5b5f611ec684828501611c36565b91505092915050565b5f819050919050565b5f611ef2611eed611ee884611bc6565b611ecf565b611bc6565b9050919050565b5f611f0382611ed8565b9050919050565b5f611f1482611ef9565b9050919050565b611f2481611f0a565b82525050565b5f602082019050611f3d5f830184611f1b565b92915050565b5f60208284031215611f5857611f57611bbe565b5b5f611f6584828501611c0c565b91505092915050565b611f7781611be5565b82525050565b5f602082019050611f905f830184611f6e565b92915050565b5f611fa082611ef9565b9050919050565b611fb081611f96565b82525050565b5f602082019050611fc95f830184611fa7565b92915050565b5f8060408385031215611fe557611fe4611bbe565b5b5f611ff285828601611c0c565b925050602061200385828601611c0c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061205157607f821691505b6020821081036120645761206361200d565b5b50919050565b7f53656e642045544820746f2062757920746f6b656e73000000000000000000005f82015250565b5f61209e601683611b38565b91506120a98261206a565b602082019050919050565b5f6020820190508181035f8301526120cb81612092565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61210982611afd565b915061211483611afd565b925082820261212281611afd565b91508282048414831517612139576121386120d2565b5b5092915050565b5f69ffffffffffffffffffff82169050919050565b61215e81612140565b8114612168575f80fd5b50565b5f8151905061217981612155565b92915050565b61218881611d0b565b8114612192575f80fd5b50565b5f815190506121a38161217f565b92915050565b5f815190506121b781611c20565b92915050565b5f805f805f60a086880312156121d6576121d5611bbe565b5b5f6121e38882890161216b565b95505060206121f488828901612195565b9450506040612205888289016121a9565b9350506060612216888289016121a9565b92505060806122278882890161216b565b9150509295509295909350565b7f526563697069656e747320616e6420616d6f756e7473206d757374206d6174635f8201527f6820696e206c656e6774682e0000000000000000000000000000000000000000602082015250565b5f61228e602c83611b38565b915061229982612234565b604082019050919050565b5f6020820190508181035f8301526122bb81612282565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f496e73756666696369656e7420746f6b656e7320696e2074686520636f6e74725f8201527f6163740000000000000000000000000000000000000000000000000000000000602082015250565b5f612349602383611b38565b9150612354826122ef565b604082019050919050565b5f6020820190508181035f8301526123768161233d565b9050919050565b7f496e76616c6964205553445420616d6f756e74000000000000000000000000005f82015250565b5f6123b1601383611b38565b91506123bc8261237d565b602082019050919050565b5f6020820190508181035f8301526123de816123a5565b9050919050565b7f455448207072696365206973207a65726f0000000000000000000000000000005f82015250565b5f612419601183611b38565b9150612424826123e5565b602082019050919050565b5f6020820190508181035f8301526124468161240d565b9050919050565b7f546f6b656e207072696365206973207a65726f000000000000000000000000005f82015250565b5f612481601383611b38565b915061248c8261244d565b602082019050919050565b5f6020820190508181035f8301526124ae81612475565b9050919050565b7f43616c63756c6174656420746f6b656e20707269636520696e205553445420695f8201527f73207a65726f0000000000000000000000000000000000000000000000000000602082015250565b5f61250f602683611b38565b915061251a826124b5565b604082019050919050565b5f6020820190508181035f83015261253c81612503565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61257a82611afd565b915061258583611afd565b92508261259557612594612543565b5b828204905092915050565b7f4e6f20746f6b656e732063616e20626520626f756768742077697468207468655f8201527f20616d6f756e74206f6620555344542073656e74000000000000000000000000602082015250565b5f6125fa603483611b38565b9150612605826125a0565b604082019050919050565b5f6020820190508181035f830152612627816125ee565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f612662601f83611b38565b915061266d8261262e565b602082019050919050565b5f6020820190508181035f83015261268f81612656565b9050919050565b5f6060820190506126a95f830186611f6e565b6126b66020830185611b06565b6126c36040830184611b06565b949350505050565b5f6060820190506126de5f830186611f6e565b6126eb6020830185611f6e565b6126f86040830184611b06565b949350505050565b5f6040820190506127135f830185611f6e565b6127206020830184611b06565b9392505050565b5f61273182611afd565b915061273c83611afd565b9250828201905080821115612754576127536120d2565b5b92915050565b61276381611c88565b811461276d575f80fd5b50565b5f8151905061277e8161275a565b92915050565b5f6020828403121561279957612798611bbe565b5b5f6127a684828501612770565b91505092915050565b5f81519050919050565b5f81905092915050565b5f6127cd826127af565b6127d781856127b9565b93506127e7818560208601611b48565b80840191505092915050565b5f6127fe82846127c3565b91508190509291505056fea264697066735822122052a2e5f8be48f92c62f50b90e7cf7f2c7983bde428f7dfef36fba86cc5c862c264736f6c63430008190033

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

000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b841900000000000000000000000009d72b6ec93d12d8528df0c72dbce75abe832f62

-----Decoded View---------------
Arg [0] : _usdtTokenAddress (address): 0xdAC17F958D2ee523a2206206994597C13D831ec7
Arg [1] : _ethUsdPriceFeedAddress (address): 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419
Arg [2] : initialOwner (address): 0x09D72b6eC93d12D8528Df0C72dbce75ABE832f62

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7
Arg [1] : 0000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419
Arg [2] : 00000000000000000000000009d72b6ec93d12d8528df0c72dbce75abe832f62


Deployed Bytecode Sourcemap

46005:6170:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46193:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36577:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38870:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48302:245;;;:::i;:::-;;37679:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51360:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39638:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46111:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50514:370;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37530:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51604:568;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51233:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48176:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46301:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37841:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24413:103;;;;;;;;;;;;;:::i;:::-;;23738:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36787:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50942:109;;;;;;;;;;;;;:::i;:::-;;48555:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38164:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46271:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51110:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38409:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48895:946;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24671:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49849:657;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46193:38;;;;:::o;36577:91::-;36622:13;36655:5;36648:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36577:91;:::o;38870:190::-;38943:4;38960:13;38976:12;:10;:12::i;:::-;38960:28;;38999:31;39008:5;39015:7;39024:5;38999:8;:31::i;:::-;39048:4;39041:11;;;38870:190;;;;:::o;48302:245::-;3041:21;:19;:21::i;:::-;48385:1:::1;48373:9;:13;48365:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;48424:19;48446:26;48462:9;48446:15;:26::i;:::-;48424:48;;48483:56;48501:4;48508:10;48534:4;48520:11;:18;;;;:::i;:::-;48483:9;:56::i;:::-;48354:193;3085:20:::0;:18;:20::i;:::-;48302:245::o;37679:99::-;37731:7;37758:12;;37751:19;;37679:99;:::o;51360:169::-;23624:13;:11;:13::i;:::-;51478:43:::1;51496:4;51503:9;51514:6;51478:9;:43::i;:::-;51360:169:::0;;:::o;39638:249::-;39725:4;39742:15;39760:12;:10;:12::i;:::-;39742:30;;39783:37;39799:4;39805:7;39814:5;39783:15;:37::i;:::-;39831:26;39841:4;39847:2;39851:5;39831:9;:26::i;:::-;39875:4;39868:11;;;39638:249;;;;;:::o;46111:55::-;46152:14;46111:55;:::o;50514:370::-;50564:6;50647:12;50777:15;;;;;;;;;;;:31;;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50583:227;;;;;;50828:5;50821:12;;;50514:370;:::o;37530:84::-;37579:5;37604:2;37597:9;;37530:84;:::o;51604:568::-;23624:13;:11;:13::i;:::-;51790:7:::1;;:14;;51769:10;;:17;;:35;51747:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;51894:9;51889:276;51913:10;;:17;;51909:1;:21;51889:276;;;52006:7;;52014:1;52006:10;;;;;;;:::i;:::-;;;;;;;;51978:24;51996:4;51978:9;:24::i;:::-;:38;;51952:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;52102:51;52120:4;52127:10;;52138:1;52127:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;52142:7;;52150:1;52142:10;;;;;;;:::i;:::-;;;;;;;;52102:9;:51::i;:::-;51932:3;;;;;;;51889:276;;;;51604:568:::0;;;;:::o;51233:119::-;23624:13;:11;:13::i;:::-;51303:41:::1;51321:4;51328:7;:5;:7::i;:::-;51337:6;51303:9;:41::i;:::-;51233:119:::0;:::o;48176:118::-;23624:13;:11;:13::i;:::-;48277:9:::1;48256:18;:30;;;;48176:118:::0;:::o;46301:44::-;;;;;;;;;;;;;:::o;37841:118::-;37906:7;37933:9;:18;37943:7;37933:18;;;;;;;;;;;;;;;;37926:25;;37841:118;;;:::o;24413:103::-;23624:13;:11;:13::i;:::-;24478:30:::1;24505:1;24478:18;:30::i;:::-;24413:103::o:0;23738:87::-;23784:7;23811:6;;;;;;;;;;;23804:13;;23738:87;:::o;36787:95::-;36834:13;36867:7;36860:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36787:95;:::o;50942:109::-;23624:13;:11;:13::i;:::-;51003:7:::1;:5;:7::i;:::-;50995:25;;:48;51021:21;50995:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;50942:109::o:0;48555:332::-;3041:21;:19;:21::i;:::-;48650:1:::1;48637:10;:14;48629:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;48686:19;48708:28;48725:10;48708:16;:28::i;:::-;48686:50;;48747:65;48774:10;48794:4;48801:10;48747:9;;;;;;;;;;;:26;;;;:65;;;;;;:::i;:::-;48823:56;48841:4;48848:10;48874:4;48860:11;:18;;;;:::i;:::-;48823:9;:56::i;:::-;48618:269;3085:20:::0;:18;:20::i;:::-;48555:332;:::o;38164:182::-;38233:4;38250:13;38266:12;:10;:12::i;:::-;38250:28;;38289:27;38299:5;38306:2;38310:5;38289:9;:27::i;:::-;38334:4;38327:11;;;38164:182;;;;:::o;46271:23::-;;;;;;;;;;;;;:::o;51110:115::-;23624:13;:11;:13::i;:::-;51178:39:::1;51201:7;:5;:7::i;:::-;51210:6;51178:9;;;;;;;;;;;:22;;;;:39;;;;;:::i;:::-;51110:115:::0;:::o;38409:142::-;38489:7;38516:11;:18;38528:5;38516:18;;;;;;;;;;;;;;;:27;38535:7;38516:27;;;;;;;;;;;;;;;;38509:34;;38409:142;;;;:::o;48895:946::-;48958:7;48981:12;49003:15;;;;;;;;;;;:31;;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48978:58;;;;;;49063:1;49055:5;:9;49047:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;49189:19;49228:4;49219:5;49211:21;;;;:::i;:::-;49189:43;;49327:1;49306:18;;:22;49298:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;49363:22;49409:4;49388:18;;:25;;;;:::i;:::-;49363:50;;49449:1;49432:14;:18;49424:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49612:26;49667:4;49652:11;49642:7;:21;;;;:::i;:::-;49641:30;;;;:::i;:::-;49612:59;;49747:19;49790:14;49769:18;:35;;;;:::i;:::-;49747:57;;49822:11;49815:18;;;;;;;48895:946;;;:::o;24671:220::-;23624:13;:11;:13::i;:::-;24776:1:::1;24756:22;;:8;:22;;::::0;24752:93:::1;;24830:1;24802:31;;;;;;;;;;;:::i;:::-;;;;;;;;24752:93;24855:28;24874:8;24855:18;:28::i;:::-;24671:220:::0;:::o;49849:657::-;49914:7;49963:1;49942:18;;:22;49934:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;50033:22;50079:4;50058:18;;:25;;;;:::i;:::-;50033:50;;50153:1;50136:14;:18;50128:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50247:19;50289:14;50281:4;50270:8;:15;;;;:::i;:::-;50269:34;;;;:::i;:::-;50247:56;;50350:1;50336:11;:15;50314:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;50487:11;50480:18;;;;49849:657;;;:::o;21747:98::-;21800:7;21827:10;21820:17;;21747:98;:::o;43697:130::-;43782:37;43791:5;43798:7;43807:5;43814:4;43782:8;:37::i;:::-;43697:130;;;:::o;3121:293::-;2523:1;3255:7;;:19;3247:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2523:1;3388:7;:18;;;;3121:293::o;40272:308::-;40372:1;40356:18;;:4;:18;;;40352:88;;40425:1;40398:30;;;;;;;;;;;:::i;:::-;;;;;;;;40352:88;40468:1;40454:16;;:2;:16;;;40450:88;;40523:1;40494:32;;;;;;;;;;;:::i;:::-;;;;;;;;40450:88;40548:24;40556:4;40562:2;40566:5;40548:7;:24::i;:::-;40272:308;;;:::o;3422:213::-;2479:1;3605:7;:22;;;;3422:213::o;23903:166::-;23974:12;:10;:12::i;:::-;23963:23;;:7;:5;:7::i;:::-;:23;;;23959:103;;24037:12;:10;:12::i;:::-;24010:40;;;;;;;;;;;:::i;:::-;;;;;;;;23959:103;23903:166::o;45413:487::-;45513:24;45540:25;45550:5;45557:7;45540:9;:25::i;:::-;45513:52;;45600:17;45580:16;:37;45576:317;;45657:5;45638:16;:24;45634:132;;;45717:7;45726:16;45744:5;45690:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;45634:132;45809:57;45818:5;45825:7;45853:5;45834:16;:24;45860:5;45809:8;:57::i;:::-;45576:317;45502:398;45413:487;;;:::o;25051:191::-;25125:16;25144:6;;;;;;;;;;;25125:25;;25170:8;25161:6;;:17;;;;;;;;;;;;;;;;;;25225:8;25194:40;;25215:8;25194:40;;;;;;;;;;;;25114:128;25051:191;:::o;29769:190::-;29870:81;29890:5;29912;:18;;;29933:4;29939:2;29943:5;29897:53;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29870:19;:81::i;:::-;29769:190;;;;:::o;29362:162::-;29445:71;29465:5;29487;:14;;;29504:2;29508:5;29472:43;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29445:19;:71::i;:::-;29362:162;;;:::o;44678:443::-;44808:1;44791:19;;:5;:19;;;44787:91;;44863:1;44834:32;;;;;;;;;;;:::i;:::-;;;;;;;;44787:91;44911:1;44892:21;;:7;:21;;;44888:92;;44965:1;44937:31;;;;;;;;;;;:::i;:::-;;;;;;;;44888:92;45020:5;44990:11;:18;45002:5;44990:18;;;;;;;;;;;;;;;:27;45009:7;44990:27;;;;;;;;;;;;;;;:35;;;;45040:9;45036:78;;;45087:7;45071:31;;45080:5;45071:31;;;45096:5;45071:31;;;;;;:::i;:::-;;;;;;;;45036:78;44678:443;;;;:::o;40904:1135::-;41010:1;40994:18;;:4;:18;;;40990:552;;41148:5;41132:12;;:21;;;;;;;:::i;:::-;;;;;;;;40990:552;;;41186:19;41208:9;:15;41218:4;41208:15;;;;;;;;;;;;;;;;41186:37;;41256:5;41242:11;:19;41238:117;;;41314:4;41320:11;41333:5;41289:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;41238:117;41510:5;41496:11;:19;41478:9;:15;41488:4;41478:15;;;;;;;;;;;;;;;:37;;;;41171:371;40990:552;41572:1;41558:16;;:2;:16;;;41554:435;;41740:5;41724:12;;:21;;;;;;;;;;;41554:435;;;41957:5;41940:9;:13;41950:2;41940:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;41554:435;42021:2;42006:25;;42015:4;42006:25;;;42025:5;42006:25;;;;;;:::i;:::-;;;;;;;;40904:1135;;;:::o;32173:638::-;32597:23;32623:33;32651:4;32631:5;32623:27;;;;:33;;;;:::i;:::-;32597:59;;32692:1;32671:10;:17;:22;;:57;;;;;32709:10;32698:30;;;;;;;;;;;;:::i;:::-;32697:31;32671:57;32667:137;;;32785:5;32752:40;;;;;;;;;;;:::i;:::-;;;;;;;;32667:137;32243:568;32173:638;;:::o;6733:153::-;6808:12;6840:38;6862:6;6870:4;6876:1;6840:21;:38::i;:::-;6833:45;;6733:153;;;;:::o;7221:398::-;7320:12;7373:5;7349:21;:29;7345:110;;;7437:4;7402:41;;;;;;;;;;;:::i;:::-;;;;;;;;7345:110;7466:12;7480:23;7507:6;:11;;7526:5;7533:4;7507:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7465:73;;;;7556:55;7583:6;7591:7;7600:10;7556:26;:55::i;:::-;7549:62;;;;7221:398;;;;;:::o;8697:597::-;8845:12;8875:7;8870:417;;8899:19;8907:10;8899:7;:19::i;:::-;8870:417;;;9148:1;9127:10;:17;:22;:49;;;;;9175:1;9153:6;:18;;;:23;9127:49;9123:121;;;9221:6;9204:24;;;;;;;;;;;:::i;:::-;;;;;;;;9123:121;9265:10;9258:17;;;;8870:417;8697:597;;;;;;:::o;9847:528::-;10000:1;9980:10;:17;:21;9976:392;;;10212:10;10206:17;10269:15;10256:10;10252:2;10248:19;10241:44;9976:392;10339:17;;;;;;;;;;;;;;7:77:1;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:139::-;811:6;806:3;801;795:23;852:1;843:6;838:3;834:16;827:27;722:139;;;:::o;867:102::-;908:6;959:2;955:7;950:2;943:5;939:14;935:28;925:38;;867:102;;;:::o;975:377::-;1063:3;1091:39;1124:5;1091:39;:::i;:::-;1146:71;1210:6;1205:3;1146:71;:::i;:::-;1139:78;;1226:65;1284:6;1279:3;1272:4;1265:5;1261:16;1226:65;:::i;:::-;1316:29;1338:6;1316:29;:::i;:::-;1311:3;1307:39;1300:46;;1067:285;975:377;;;;:::o;1358:313::-;1471:4;1509:2;1498:9;1494:18;1486:26;;1558:9;1552:4;1548:20;1544:1;1533:9;1529:17;1522:47;1586:78;1659:4;1650:6;1586:78;:::i;:::-;1578:86;;1358:313;;;;:::o;1758:117::-;1867:1;1864;1857:12;1881:117;1990:1;1987;1980:12;2004:126;2041:7;2081:42;2074:5;2070:54;2059:65;;2004:126;;;:::o;2136:96::-;2173:7;2202:24;2220:5;2202:24;:::i;:::-;2191:35;;2136:96;;;:::o;2238:122::-;2311:24;2329:5;2311:24;:::i;:::-;2304:5;2301:35;2291:63;;2350:1;2347;2340:12;2291:63;2238:122;:::o;2366:139::-;2412:5;2450:6;2437:20;2428:29;;2466:33;2493:5;2466:33;:::i;:::-;2366:139;;;;:::o;2511:122::-;2584:24;2602:5;2584:24;:::i;:::-;2577:5;2574:35;2564:63;;2623:1;2620;2613:12;2564:63;2511:122;:::o;2639:139::-;2685:5;2723:6;2710:20;2701:29;;2739:33;2766:5;2739:33;:::i;:::-;2639:139;;;;:::o;2784:474::-;2852:6;2860;2909:2;2897:9;2888:7;2884:23;2880:32;2877:119;;;2915:79;;:::i;:::-;2877:119;3035:1;3060:53;3105:7;3096:6;3085:9;3081:22;3060:53;:::i;:::-;3050:63;;3006:117;3162:2;3188:53;3233:7;3224:6;3213:9;3209:22;3188:53;:::i;:::-;3178:63;;3133:118;2784:474;;;;;:::o;3264:90::-;3298:7;3341:5;3334:13;3327:21;3316:32;;3264:90;;;:::o;3360:109::-;3441:21;3456:5;3441:21;:::i;:::-;3436:3;3429:34;3360:109;;:::o;3475:210::-;3562:4;3600:2;3589:9;3585:18;3577:26;;3613:65;3675:1;3664:9;3660:17;3651:6;3613:65;:::i;:::-;3475:210;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:76::-;4352:7;4381:5;4370:16;;4316:76;;;:::o;4398:115::-;4483:23;4500:5;4483:23;:::i;:::-;4478:3;4471:36;4398:115;;:::o;4519:218::-;4610:4;4648:2;4637:9;4633:18;4625:26;;4661:69;4727:1;4716:9;4712:17;4703:6;4661:69;:::i;:::-;4519:218;;;;:::o;4743:86::-;4778:7;4818:4;4811:5;4807:16;4796:27;;4743:86;;;:::o;4835:112::-;4918:22;4934:5;4918:22;:::i;:::-;4913:3;4906:35;4835:112;;:::o;4953:214::-;5042:4;5080:2;5069:9;5065:18;5057:26;;5093:67;5157:1;5146:9;5142:17;5133:6;5093:67;:::i;:::-;4953:214;;;;:::o;5173:117::-;5282:1;5279;5272:12;5296:117;5405:1;5402;5395:12;5419:117;5528:1;5525;5518:12;5559:568;5632:8;5642:6;5692:3;5685:4;5677:6;5673:17;5669:27;5659:122;;5700:79;;:::i;:::-;5659:122;5813:6;5800:20;5790:30;;5843:18;5835:6;5832:30;5829:117;;;5865:79;;:::i;:::-;5829:117;5979:4;5971:6;5967:17;5955:29;;6033:3;6025:4;6017:6;6013:17;6003:8;5999:32;5996:41;5993:128;;;6040:79;;:::i;:::-;5993:128;5559:568;;;;;:::o;6150:::-;6223:8;6233:6;6283:3;6276:4;6268:6;6264:17;6260:27;6250:122;;6291:79;;:::i;:::-;6250:122;6404:6;6391:20;6381:30;;6434:18;6426:6;6423:30;6420:117;;;6456:79;;:::i;:::-;6420:117;6570:4;6562:6;6558:17;6546:29;;6624:3;6616:4;6608:6;6604:17;6594:8;6590:32;6587:41;6584:128;;;6631:79;;:::i;:::-;6584:128;6150:568;;;;;:::o;6724:934::-;6846:6;6854;6862;6870;6919:2;6907:9;6898:7;6894:23;6890:32;6887:119;;;6925:79;;:::i;:::-;6887:119;7073:1;7062:9;7058:17;7045:31;7103:18;7095:6;7092:30;7089:117;;;7125:79;;:::i;:::-;7089:117;7238:80;7310:7;7301:6;7290:9;7286:22;7238:80;:::i;:::-;7220:98;;;;7016:312;7395:2;7384:9;7380:18;7367:32;7426:18;7418:6;7415:30;7412:117;;;7448:79;;:::i;:::-;7412:117;7561:80;7633:7;7624:6;7613:9;7609:22;7561:80;:::i;:::-;7543:98;;;;7338:313;6724:934;;;;;;;:::o;7664:329::-;7723:6;7772:2;7760:9;7751:7;7747:23;7743:32;7740:119;;;7778:79;;:::i;:::-;7740:119;7898:1;7923:53;7968:7;7959:6;7948:9;7944:22;7923:53;:::i;:::-;7913:63;;7869:117;7664:329;;;;:::o;7999:60::-;8027:3;8048:5;8041:12;;7999:60;;;:::o;8065:142::-;8115:9;8148:53;8166:34;8175:24;8193:5;8175:24;:::i;:::-;8166:34;:::i;:::-;8148:53;:::i;:::-;8135:66;;8065:142;;;:::o;8213:126::-;8263:9;8296:37;8327:5;8296:37;:::i;:::-;8283:50;;8213:126;;;:::o;8345:154::-;8423:9;8456:37;8487:5;8456:37;:::i;:::-;8443:50;;8345:154;;;:::o;8505:187::-;8620:65;8679:5;8620:65;:::i;:::-;8615:3;8608:78;8505:187;;:::o;8698:278::-;8819:4;8857:2;8846:9;8842:18;8834:26;;8870:99;8966:1;8955:9;8951:17;8942:6;8870:99;:::i;:::-;8698:278;;;;:::o;8982:329::-;9041:6;9090:2;9078:9;9069:7;9065:23;9061:32;9058:119;;;9096:79;;:::i;:::-;9058:119;9216:1;9241:53;9286:7;9277:6;9266:9;9262:22;9241:53;:::i;:::-;9231:63;;9187:117;8982:329;;;;:::o;9317:118::-;9404:24;9422:5;9404:24;:::i;:::-;9399:3;9392:37;9317:118;;:::o;9441:222::-;9534:4;9572:2;9561:9;9557:18;9549:26;;9585:71;9653:1;9642:9;9638:17;9629:6;9585:71;:::i;:::-;9441:222;;;;:::o;9669:140::-;9733:9;9766:37;9797:5;9766:37;:::i;:::-;9753:50;;9669:140;;;:::o;9815:159::-;9916:51;9961:5;9916:51;:::i;:::-;9911:3;9904:64;9815:159;;:::o;9980:250::-;10087:4;10125:2;10114:9;10110:18;10102:26;;10138:85;10220:1;10209:9;10205:17;10196:6;10138:85;:::i;:::-;9980:250;;;;:::o;10236:474::-;10304:6;10312;10361:2;10349:9;10340:7;10336:23;10332:32;10329:119;;;10367:79;;:::i;:::-;10329:119;10487:1;10512:53;10557:7;10548:6;10537:9;10533:22;10512:53;:::i;:::-;10502:63;;10458:117;10614:2;10640:53;10685:7;10676:6;10665:9;10661:22;10640:53;:::i;:::-;10630:63;;10585:118;10236:474;;;;;:::o;10716:180::-;10764:77;10761:1;10754:88;10861:4;10858:1;10851:15;10885:4;10882:1;10875:15;10902:320;10946:6;10983:1;10977:4;10973:12;10963:22;;11030:1;11024:4;11020:12;11051:18;11041:81;;11107:4;11099:6;11095:17;11085:27;;11041:81;11169:2;11161:6;11158:14;11138:18;11135:38;11132:84;;11188:18;;:::i;:::-;11132:84;10953:269;10902:320;;;:::o;11228:172::-;11368:24;11364:1;11356:6;11352:14;11345:48;11228:172;:::o;11406:366::-;11548:3;11569:67;11633:2;11628:3;11569:67;:::i;:::-;11562:74;;11645:93;11734:3;11645:93;:::i;:::-;11763:2;11758:3;11754:12;11747:19;;11406:366;;;:::o;11778:419::-;11944:4;11982:2;11971:9;11967:18;11959:26;;12031:9;12025:4;12021:20;12017:1;12006:9;12002:17;11995:47;12059:131;12185:4;12059:131;:::i;:::-;12051:139;;11778:419;;;:::o;12203:180::-;12251:77;12248:1;12241:88;12348:4;12345:1;12338:15;12372:4;12369:1;12362:15;12389:410;12429:7;12452:20;12470:1;12452:20;:::i;:::-;12447:25;;12486:20;12504:1;12486:20;:::i;:::-;12481:25;;12541:1;12538;12534:9;12563:30;12581:11;12563:30;:::i;:::-;12552:41;;12742:1;12733:7;12729:15;12726:1;12723:22;12703:1;12696:9;12676:83;12653:139;;12772:18;;:::i;:::-;12653:139;12437:362;12389:410;;;;:::o;12805:105::-;12841:7;12881:22;12874:5;12870:34;12859:45;;12805:105;;;:::o;12916:120::-;12988:23;13005:5;12988:23;:::i;:::-;12981:5;12978:34;12968:62;;13026:1;13023;13016:12;12968:62;12916:120;:::o;13042:141::-;13098:5;13129:6;13123:13;13114:22;;13145:32;13171:5;13145:32;:::i;:::-;13042:141;;;;:::o;13189:120::-;13261:23;13278:5;13261:23;:::i;:::-;13254:5;13251:34;13241:62;;13299:1;13296;13289:12;13241:62;13189:120;:::o;13315:141::-;13371:5;13402:6;13396:13;13387:22;;13418:32;13444:5;13418:32;:::i;:::-;13315:141;;;;:::o;13462:143::-;13519:5;13550:6;13544:13;13535:22;;13566:33;13593:5;13566:33;:::i;:::-;13462:143;;;;:::o;13611:971::-;13714:6;13722;13730;13738;13746;13795:3;13783:9;13774:7;13770:23;13766:33;13763:120;;;13802:79;;:::i;:::-;13763:120;13922:1;13947:63;14002:7;13993:6;13982:9;13978:22;13947:63;:::i;:::-;13937:73;;13893:127;14059:2;14085:63;14140:7;14131:6;14120:9;14116:22;14085:63;:::i;:::-;14075:73;;14030:128;14197:2;14223:64;14279:7;14270:6;14259:9;14255:22;14223:64;:::i;:::-;14213:74;;14168:129;14336:2;14362:64;14418:7;14409:6;14398:9;14394:22;14362:64;:::i;:::-;14352:74;;14307:129;14475:3;14502:63;14557:7;14548:6;14537:9;14533:22;14502:63;:::i;:::-;14492:73;;14446:129;13611:971;;;;;;;;:::o;14588:231::-;14728:34;14724:1;14716:6;14712:14;14705:58;14797:14;14792:2;14784:6;14780:15;14773:39;14588:231;:::o;14825:366::-;14967:3;14988:67;15052:2;15047:3;14988:67;:::i;:::-;14981:74;;15064:93;15153:3;15064:93;:::i;:::-;15182:2;15177:3;15173:12;15166:19;;14825:366;;;:::o;15197:419::-;15363:4;15401:2;15390:9;15386:18;15378:26;;15450:9;15444:4;15440:20;15436:1;15425:9;15421:17;15414:47;15478:131;15604:4;15478:131;:::i;:::-;15470:139;;15197:419;;;:::o;15622:180::-;15670:77;15667:1;15660:88;15767:4;15764:1;15757:15;15791:4;15788:1;15781:15;15808:222;15948:34;15944:1;15936:6;15932:14;15925:58;16017:5;16012:2;16004:6;16000:15;15993:30;15808:222;:::o;16036:366::-;16178:3;16199:67;16263:2;16258:3;16199:67;:::i;:::-;16192:74;;16275:93;16364:3;16275:93;:::i;:::-;16393:2;16388:3;16384:12;16377:19;;16036:366;;;:::o;16408:419::-;16574:4;16612:2;16601:9;16597:18;16589:26;;16661:9;16655:4;16651:20;16647:1;16636:9;16632:17;16625:47;16689:131;16815:4;16689:131;:::i;:::-;16681:139;;16408:419;;;:::o;16833:169::-;16973:21;16969:1;16961:6;16957:14;16950:45;16833:169;:::o;17008:366::-;17150:3;17171:67;17235:2;17230:3;17171:67;:::i;:::-;17164:74;;17247:93;17336:3;17247:93;:::i;:::-;17365:2;17360:3;17356:12;17349:19;;17008:366;;;:::o;17380:419::-;17546:4;17584:2;17573:9;17569:18;17561:26;;17633:9;17627:4;17623:20;17619:1;17608:9;17604:17;17597:47;17661:131;17787:4;17661:131;:::i;:::-;17653:139;;17380:419;;;:::o;17805:167::-;17945:19;17941:1;17933:6;17929:14;17922:43;17805:167;:::o;17978:366::-;18120:3;18141:67;18205:2;18200:3;18141:67;:::i;:::-;18134:74;;18217:93;18306:3;18217:93;:::i;:::-;18335:2;18330:3;18326:12;18319:19;;17978:366;;;:::o;18350:419::-;18516:4;18554:2;18543:9;18539:18;18531:26;;18603:9;18597:4;18593:20;18589:1;18578:9;18574:17;18567:47;18631:131;18757:4;18631:131;:::i;:::-;18623:139;;18350:419;;;:::o;18775:169::-;18915:21;18911:1;18903:6;18899:14;18892:45;18775:169;:::o;18950:366::-;19092:3;19113:67;19177:2;19172:3;19113:67;:::i;:::-;19106:74;;19189:93;19278:3;19189:93;:::i;:::-;19307:2;19302:3;19298:12;19291:19;;18950:366;;;:::o;19322:419::-;19488:4;19526:2;19515:9;19511:18;19503:26;;19575:9;19569:4;19565:20;19561:1;19550:9;19546:17;19539:47;19603:131;19729:4;19603:131;:::i;:::-;19595:139;;19322:419;;;:::o;19747:225::-;19887:34;19883:1;19875:6;19871:14;19864:58;19956:8;19951:2;19943:6;19939:15;19932:33;19747:225;:::o;19978:366::-;20120:3;20141:67;20205:2;20200:3;20141:67;:::i;:::-;20134:74;;20217:93;20306:3;20217:93;:::i;:::-;20335:2;20330:3;20326:12;20319:19;;19978:366;;;:::o;20350:419::-;20516:4;20554:2;20543:9;20539:18;20531:26;;20603:9;20597:4;20593:20;20589:1;20578:9;20574:17;20567:47;20631:131;20757:4;20631:131;:::i;:::-;20623:139;;20350:419;;;:::o;20775:180::-;20823:77;20820:1;20813:88;20920:4;20917:1;20910:15;20944:4;20941:1;20934:15;20961:185;21001:1;21018:20;21036:1;21018:20;:::i;:::-;21013:25;;21052:20;21070:1;21052:20;:::i;:::-;21047:25;;21091:1;21081:35;;21096:18;;:::i;:::-;21081:35;21138:1;21135;21131:9;21126:14;;20961:185;;;;:::o;21152:239::-;21292:34;21288:1;21280:6;21276:14;21269:58;21361:22;21356:2;21348:6;21344:15;21337:47;21152:239;:::o;21397:366::-;21539:3;21560:67;21624:2;21619:3;21560:67;:::i;:::-;21553:74;;21636:93;21725:3;21636:93;:::i;:::-;21754:2;21749:3;21745:12;21738:19;;21397:366;;;:::o;21769:419::-;21935:4;21973:2;21962:9;21958:18;21950:26;;22022:9;22016:4;22012:20;22008:1;21997:9;21993:17;21986:47;22050:131;22176:4;22050:131;:::i;:::-;22042:139;;21769:419;;;:::o;22194:181::-;22334:33;22330:1;22322:6;22318:14;22311:57;22194:181;:::o;22381:366::-;22523:3;22544:67;22608:2;22603:3;22544:67;:::i;:::-;22537:74;;22620:93;22709:3;22620:93;:::i;:::-;22738:2;22733:3;22729:12;22722:19;;22381:366;;;:::o;22753:419::-;22919:4;22957:2;22946:9;22942:18;22934:26;;23006:9;23000:4;22996:20;22992:1;22981:9;22977:17;22970:47;23034:131;23160:4;23034:131;:::i;:::-;23026:139;;22753:419;;;:::o;23178:442::-;23327:4;23365:2;23354:9;23350:18;23342:26;;23378:71;23446:1;23435:9;23431:17;23422:6;23378:71;:::i;:::-;23459:72;23527:2;23516:9;23512:18;23503:6;23459:72;:::i;:::-;23541;23609:2;23598:9;23594:18;23585:6;23541:72;:::i;:::-;23178:442;;;;;;:::o;23626:::-;23775:4;23813:2;23802:9;23798:18;23790:26;;23826:71;23894:1;23883:9;23879:17;23870:6;23826:71;:::i;:::-;23907:72;23975:2;23964:9;23960:18;23951:6;23907:72;:::i;:::-;23989;24057:2;24046:9;24042:18;24033:6;23989:72;:::i;:::-;23626:442;;;;;;:::o;24074:332::-;24195:4;24233:2;24222:9;24218:18;24210:26;;24246:71;24314:1;24303:9;24299:17;24290:6;24246:71;:::i;:::-;24327:72;24395:2;24384:9;24380:18;24371:6;24327:72;:::i;:::-;24074:332;;;;;:::o;24412:191::-;24452:3;24471:20;24489:1;24471:20;:::i;:::-;24466:25;;24505:20;24523:1;24505:20;:::i;:::-;24500:25;;24548:1;24545;24541:9;24534:16;;24569:3;24566:1;24563:10;24560:36;;;24576:18;;:::i;:::-;24560:36;24412:191;;;;:::o;24609:116::-;24679:21;24694:5;24679:21;:::i;:::-;24672:5;24669:32;24659:60;;24715:1;24712;24705:12;24659:60;24609:116;:::o;24731:137::-;24785:5;24816:6;24810:13;24801:22;;24832:30;24856:5;24832:30;:::i;:::-;24731:137;;;;:::o;24874:345::-;24941:6;24990:2;24978:9;24969:7;24965:23;24961:32;24958:119;;;24996:79;;:::i;:::-;24958:119;25116:1;25141:61;25194:7;25185:6;25174:9;25170:22;25141:61;:::i;:::-;25131:71;;25087:125;24874:345;;;;:::o;25225:98::-;25276:6;25310:5;25304:12;25294:22;;25225:98;;;:::o;25329:147::-;25430:11;25467:3;25452:18;;25329:147;;;;:::o;25482:386::-;25586:3;25614:38;25646:5;25614:38;:::i;:::-;25668:88;25749:6;25744:3;25668:88;:::i;:::-;25661:95;;25765:65;25823:6;25818:3;25811:4;25804:5;25800:16;25765:65;:::i;:::-;25855:6;25850:3;25846:16;25839:23;;25590:278;25482:386;;;;:::o;25874:271::-;26004:3;26026:93;26115:3;26106:6;26026:93;:::i;:::-;26019:100;;26136:3;26129:10;;25874:271;;;;:::o

Swarm Source

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