ETH Price: $3,406.74 (-0.91%)
Gas: 10 Gwei

THE MEME PROJEKT NFTs (MEKTNFT)
 

Overview

TokenID

58

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
MEKTNFT

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 23 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @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 2 of 23 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// 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 3 of 23 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// 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 4 of 23 : IERC20.sol
// SPDX-License-Identifier: MIT
// 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 5 of 23 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC20Permit} from "../extensions/IERC20Permit.sol";
import {Address} from "../../../utils/Address.sol";

/**
 * @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 6 of 23 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.20;

import {IERC721} from "./IERC721.sol";
import {IERC721Receiver} from "./IERC721Receiver.sol";
import {IERC721Metadata} from "./extensions/IERC721Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {Strings} from "../../utils/Strings.sol";
import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";
import {IERC721Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint256 tokenId => address) private _owners;

    mapping(address owner => uint256) private _balances;

    mapping(uint256 tokenId => address) private _tokenApprovals;

    mapping(address owner => mapping(address operator => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual returns (uint256) {
        if (owner == address(0)) {
            revert ERC721InvalidOwner(address(0));
        }
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual returns (address) {
        return _requireOwned(tokenId);
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
        _requireOwned(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual {
        _approve(to, tokenId, _msgSender());
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual returns (address) {
        _requireOwned(tokenId);

        return _getApproved(tokenId);
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address previousOwner = _update(to, tokenId, _msgSender());
        if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
        transferFrom(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
     */
    function _getApproved(uint256 tokenId) internal view virtual returns (address) {
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
     * particular (ignoring whether it is owned by `owner`).
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
        return
            spender != address(0) &&
            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
    }

    /**
     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
     * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets
     * the `spender` for the specific `tokenId`.
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
        if (!_isAuthorized(owner, spender, tokenId)) {
            if (owner == address(0)) {
                revert ERC721NonexistentToken(tokenId);
            } else {
                revert ERC721InsufficientApproval(spender, tokenId);
            }
        }
    }

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
     *
     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the
     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
     * remain consistent with one another.
     */
    function _increaseBalance(address account, uint128 value) internal virtual {
        unchecked {
            _balances[account] += value;
        }
    }

    /**
     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that
     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).
     *
     * Emits a {Transfer} event.
     *
     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
        address from = _ownerOf(tokenId);

        // Perform (optional) operator check
        if (auth != address(0)) {
            _checkAuthorized(from, auth, tokenId);
        }

        // Execute the update
        if (from != address(0)) {
            // Clear approval. No need to re-authorize or emit the Approval event
            _approve(address(0), tokenId, address(0), false);

            unchecked {
                _balances[from] -= 1;
            }
        }

        if (to != address(0)) {
            unchecked {
                _balances[to] += 1;
            }
        }

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        return from;
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner != address(0)) {
            revert ERC721InvalidSender(address(0));
        }
    }

    /**
     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
        _mint(to, tokenId);
        _checkOnERC721Received(address(0), to, tokenId, data);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal {
        address previousOwner = _update(address(0), tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        } else if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
     * are aware of the ERC721 standard to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is like {safeTransferFrom} in the sense that it invokes
     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `tokenId` token must exist and be owned by `from`.
     * - `to` cannot be the zero address.
     * - `from` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId) internal {
        _safeTransfer(from, to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
     * either the owner of the token, or approved to operate on all tokens held by this owner.
     *
     * Emits an {Approval} event.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address to, uint256 tokenId, address auth) internal {
        _approve(to, tokenId, auth, true);
    }

    /**
     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
     * emitted in the context of transfers.
     */
    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
        // Avoid reading the owner unless necessary
        if (emitEvent || auth != address(0)) {
            address owner = _requireOwned(tokenId);

            // We do not use _isAuthorized because single-token approvals should not be able to call approve
            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
                revert ERC721InvalidApprover(auth);
            }

            if (emitEvent) {
                emit Approval(owner, to, tokenId);
            }
        }

        _tokenApprovals[tokenId] = to;
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Requirements:
     * - operator can't be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC721InvalidOperator(operator);
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
     * Returns the owner.
     *
     * Overrides to ownership logic should be done to {_ownerOf}.
     */
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = _ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the
     * recipient doesn't accept the token transfer. The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                if (retval != IERC721Receiver.onERC721Received.selector) {
                    revert ERC721InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert ERC721InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }
}

File 7 of 23 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.20;

import {ERC721} from "../ERC721.sol";
import {IERC721Enumerable} from "./IERC721Enumerable.sol";
import {IERC165} from "../../../utils/introspection/ERC165.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds enumerability
 * of all the token ids in the contract as well as all token ids owned by each account.
 *
 * CAUTION: `ERC721` extensions that implement custom `balanceOf` logic, such as `ERC721Consecutive`,
 * interfere with enumerability and should not be used together with `ERC721Enumerable`.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens;
    mapping(uint256 tokenId => uint256) private _ownedTokensIndex;

    uint256[] private _allTokens;
    mapping(uint256 tokenId => uint256) private _allTokensIndex;

    /**
     * @dev An `owner`'s token query was out of bounds for `index`.
     *
     * NOTE: The owner being `address(0)` indicates a global out of bounds index.
     */
    error ERC721OutOfBoundsIndex(address owner, uint256 index);

    /**
     * @dev Batch mint is not allowed.
     */
    error ERC721EnumerableForbiddenBatchMint();

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256) {
        if (index >= balanceOf(owner)) {
            revert ERC721OutOfBoundsIndex(owner, index);
        }
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual returns (uint256) {
        if (index >= totalSupply()) {
            revert ERC721OutOfBoundsIndex(address(0), index);
        }
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_update}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) {
        address previousOwner = super._update(to, tokenId, auth);

        if (previousOwner == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (previousOwner != to) {
            _removeTokenFromOwnerEnumeration(previousOwner, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (previousOwner != to) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }

        return previousOwner;
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = balanceOf(to) - 1;
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = balanceOf(from);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }

    /**
     * See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch
     */
    function _increaseBalance(address account, uint128 amount) internal virtual override {
        if (amount > 0) {
            revert ERC721EnumerableForbiddenBatchMint();
        }
        super._increaseBalance(account, amount);
    }
}

File 8 of 23 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.20;

import {IERC721} from "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 9 of 23 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;

import {IERC721} from "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 10 of 23 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
     *   a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or
     *   {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
     *   a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 11 of 23 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be
     * reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 23 : Address.sol
// SPDX-License-Identifier: MIT
// 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 13 of 23 : Context.sol
// SPDX-License-Identifier: MIT
// 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 14 of 23 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 15 of 23 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 16 of 23 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

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

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

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

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

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 17 of 23 : SafeCast.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.

pragma solidity ^0.8.20;

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeCast {
    /**
     * @dev Value doesn't fit in an uint of `bits` size.
     */
    error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);

    /**
     * @dev An int value doesn't fit in an uint of `bits` size.
     */
    error SafeCastOverflowedIntToUint(int256 value);

    /**
     * @dev Value doesn't fit in an int of `bits` size.
     */
    error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);

    /**
     * @dev An uint value doesn't fit in an int of `bits` size.
     */
    error SafeCastOverflowedUintToInt(uint256 value);

    /**
     * @dev Returns the downcasted uint248 from uint256, reverting on
     * overflow (when the input is greater than largest uint248).
     *
     * Counterpart to Solidity's `uint248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     */
    function toUint248(uint256 value) internal pure returns (uint248) {
        if (value > type(uint248).max) {
            revert SafeCastOverflowedUintDowncast(248, value);
        }
        return uint248(value);
    }

    /**
     * @dev Returns the downcasted uint240 from uint256, reverting on
     * overflow (when the input is greater than largest uint240).
     *
     * Counterpart to Solidity's `uint240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     */
    function toUint240(uint256 value) internal pure returns (uint240) {
        if (value > type(uint240).max) {
            revert SafeCastOverflowedUintDowncast(240, value);
        }
        return uint240(value);
    }

    /**
     * @dev Returns the downcasted uint232 from uint256, reverting on
     * overflow (when the input is greater than largest uint232).
     *
     * Counterpart to Solidity's `uint232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     */
    function toUint232(uint256 value) internal pure returns (uint232) {
        if (value > type(uint232).max) {
            revert SafeCastOverflowedUintDowncast(232, value);
        }
        return uint232(value);
    }

    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        if (value > type(uint224).max) {
            revert SafeCastOverflowedUintDowncast(224, value);
        }
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint216 from uint256, reverting on
     * overflow (when the input is greater than largest uint216).
     *
     * Counterpart to Solidity's `uint216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     */
    function toUint216(uint256 value) internal pure returns (uint216) {
        if (value > type(uint216).max) {
            revert SafeCastOverflowedUintDowncast(216, value);
        }
        return uint216(value);
    }

    /**
     * @dev Returns the downcasted uint208 from uint256, reverting on
     * overflow (when the input is greater than largest uint208).
     *
     * Counterpart to Solidity's `uint208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     */
    function toUint208(uint256 value) internal pure returns (uint208) {
        if (value > type(uint208).max) {
            revert SafeCastOverflowedUintDowncast(208, value);
        }
        return uint208(value);
    }

    /**
     * @dev Returns the downcasted uint200 from uint256, reverting on
     * overflow (when the input is greater than largest uint200).
     *
     * Counterpart to Solidity's `uint200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     */
    function toUint200(uint256 value) internal pure returns (uint200) {
        if (value > type(uint200).max) {
            revert SafeCastOverflowedUintDowncast(200, value);
        }
        return uint200(value);
    }

    /**
     * @dev Returns the downcasted uint192 from uint256, reverting on
     * overflow (when the input is greater than largest uint192).
     *
     * Counterpart to Solidity's `uint192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     */
    function toUint192(uint256 value) internal pure returns (uint192) {
        if (value > type(uint192).max) {
            revert SafeCastOverflowedUintDowncast(192, value);
        }
        return uint192(value);
    }

    /**
     * @dev Returns the downcasted uint184 from uint256, reverting on
     * overflow (when the input is greater than largest uint184).
     *
     * Counterpart to Solidity's `uint184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     */
    function toUint184(uint256 value) internal pure returns (uint184) {
        if (value > type(uint184).max) {
            revert SafeCastOverflowedUintDowncast(184, value);
        }
        return uint184(value);
    }

    /**
     * @dev Returns the downcasted uint176 from uint256, reverting on
     * overflow (when the input is greater than largest uint176).
     *
     * Counterpart to Solidity's `uint176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     */
    function toUint176(uint256 value) internal pure returns (uint176) {
        if (value > type(uint176).max) {
            revert SafeCastOverflowedUintDowncast(176, value);
        }
        return uint176(value);
    }

    /**
     * @dev Returns the downcasted uint168 from uint256, reverting on
     * overflow (when the input is greater than largest uint168).
     *
     * Counterpart to Solidity's `uint168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     */
    function toUint168(uint256 value) internal pure returns (uint168) {
        if (value > type(uint168).max) {
            revert SafeCastOverflowedUintDowncast(168, value);
        }
        return uint168(value);
    }

    /**
     * @dev Returns the downcasted uint160 from uint256, reverting on
     * overflow (when the input is greater than largest uint160).
     *
     * Counterpart to Solidity's `uint160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     */
    function toUint160(uint256 value) internal pure returns (uint160) {
        if (value > type(uint160).max) {
            revert SafeCastOverflowedUintDowncast(160, value);
        }
        return uint160(value);
    }

    /**
     * @dev Returns the downcasted uint152 from uint256, reverting on
     * overflow (when the input is greater than largest uint152).
     *
     * Counterpart to Solidity's `uint152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     */
    function toUint152(uint256 value) internal pure returns (uint152) {
        if (value > type(uint152).max) {
            revert SafeCastOverflowedUintDowncast(152, value);
        }
        return uint152(value);
    }

    /**
     * @dev Returns the downcasted uint144 from uint256, reverting on
     * overflow (when the input is greater than largest uint144).
     *
     * Counterpart to Solidity's `uint144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     */
    function toUint144(uint256 value) internal pure returns (uint144) {
        if (value > type(uint144).max) {
            revert SafeCastOverflowedUintDowncast(144, value);
        }
        return uint144(value);
    }

    /**
     * @dev Returns the downcasted uint136 from uint256, reverting on
     * overflow (when the input is greater than largest uint136).
     *
     * Counterpart to Solidity's `uint136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     */
    function toUint136(uint256 value) internal pure returns (uint136) {
        if (value > type(uint136).max) {
            revert SafeCastOverflowedUintDowncast(136, value);
        }
        return uint136(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        if (value > type(uint128).max) {
            revert SafeCastOverflowedUintDowncast(128, value);
        }
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint120 from uint256, reverting on
     * overflow (when the input is greater than largest uint120).
     *
     * Counterpart to Solidity's `uint120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     */
    function toUint120(uint256 value) internal pure returns (uint120) {
        if (value > type(uint120).max) {
            revert SafeCastOverflowedUintDowncast(120, value);
        }
        return uint120(value);
    }

    /**
     * @dev Returns the downcasted uint112 from uint256, reverting on
     * overflow (when the input is greater than largest uint112).
     *
     * Counterpart to Solidity's `uint112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     */
    function toUint112(uint256 value) internal pure returns (uint112) {
        if (value > type(uint112).max) {
            revert SafeCastOverflowedUintDowncast(112, value);
        }
        return uint112(value);
    }

    /**
     * @dev Returns the downcasted uint104 from uint256, reverting on
     * overflow (when the input is greater than largest uint104).
     *
     * Counterpart to Solidity's `uint104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     */
    function toUint104(uint256 value) internal pure returns (uint104) {
        if (value > type(uint104).max) {
            revert SafeCastOverflowedUintDowncast(104, value);
        }
        return uint104(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        if (value > type(uint96).max) {
            revert SafeCastOverflowedUintDowncast(96, value);
        }
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint88 from uint256, reverting on
     * overflow (when the input is greater than largest uint88).
     *
     * Counterpart to Solidity's `uint88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     */
    function toUint88(uint256 value) internal pure returns (uint88) {
        if (value > type(uint88).max) {
            revert SafeCastOverflowedUintDowncast(88, value);
        }
        return uint88(value);
    }

    /**
     * @dev Returns the downcasted uint80 from uint256, reverting on
     * overflow (when the input is greater than largest uint80).
     *
     * Counterpart to Solidity's `uint80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     */
    function toUint80(uint256 value) internal pure returns (uint80) {
        if (value > type(uint80).max) {
            revert SafeCastOverflowedUintDowncast(80, value);
        }
        return uint80(value);
    }

    /**
     * @dev Returns the downcasted uint72 from uint256, reverting on
     * overflow (when the input is greater than largest uint72).
     *
     * Counterpart to Solidity's `uint72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     */
    function toUint72(uint256 value) internal pure returns (uint72) {
        if (value > type(uint72).max) {
            revert SafeCastOverflowedUintDowncast(72, value);
        }
        return uint72(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        if (value > type(uint64).max) {
            revert SafeCastOverflowedUintDowncast(64, value);
        }
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint56 from uint256, reverting on
     * overflow (when the input is greater than largest uint56).
     *
     * Counterpart to Solidity's `uint56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     */
    function toUint56(uint256 value) internal pure returns (uint56) {
        if (value > type(uint56).max) {
            revert SafeCastOverflowedUintDowncast(56, value);
        }
        return uint56(value);
    }

    /**
     * @dev Returns the downcasted uint48 from uint256, reverting on
     * overflow (when the input is greater than largest uint48).
     *
     * Counterpart to Solidity's `uint48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     */
    function toUint48(uint256 value) internal pure returns (uint48) {
        if (value > type(uint48).max) {
            revert SafeCastOverflowedUintDowncast(48, value);
        }
        return uint48(value);
    }

    /**
     * @dev Returns the downcasted uint40 from uint256, reverting on
     * overflow (when the input is greater than largest uint40).
     *
     * Counterpart to Solidity's `uint40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     */
    function toUint40(uint256 value) internal pure returns (uint40) {
        if (value > type(uint40).max) {
            revert SafeCastOverflowedUintDowncast(40, value);
        }
        return uint40(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        if (value > type(uint32).max) {
            revert SafeCastOverflowedUintDowncast(32, value);
        }
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint24 from uint256, reverting on
     * overflow (when the input is greater than largest uint24).
     *
     * Counterpart to Solidity's `uint24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     */
    function toUint24(uint256 value) internal pure returns (uint24) {
        if (value > type(uint24).max) {
            revert SafeCastOverflowedUintDowncast(24, value);
        }
        return uint24(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        if (value > type(uint16).max) {
            revert SafeCastOverflowedUintDowncast(16, value);
        }
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        if (value > type(uint8).max) {
            revert SafeCastOverflowedUintDowncast(8, value);
        }
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        if (value < 0) {
            revert SafeCastOverflowedIntToUint(value);
        }
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int248 from int256, reverting on
     * overflow (when the input is less than smallest int248 or
     * greater than largest int248).
     *
     * Counterpart to Solidity's `int248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     */
    function toInt248(int256 value) internal pure returns (int248 downcasted) {
        downcasted = int248(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(248, value);
        }
    }

    /**
     * @dev Returns the downcasted int240 from int256, reverting on
     * overflow (when the input is less than smallest int240 or
     * greater than largest int240).
     *
     * Counterpart to Solidity's `int240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     */
    function toInt240(int256 value) internal pure returns (int240 downcasted) {
        downcasted = int240(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(240, value);
        }
    }

    /**
     * @dev Returns the downcasted int232 from int256, reverting on
     * overflow (when the input is less than smallest int232 or
     * greater than largest int232).
     *
     * Counterpart to Solidity's `int232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     */
    function toInt232(int256 value) internal pure returns (int232 downcasted) {
        downcasted = int232(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(232, value);
        }
    }

    /**
     * @dev Returns the downcasted int224 from int256, reverting on
     * overflow (when the input is less than smallest int224 or
     * greater than largest int224).
     *
     * Counterpart to Solidity's `int224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toInt224(int256 value) internal pure returns (int224 downcasted) {
        downcasted = int224(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(224, value);
        }
    }

    /**
     * @dev Returns the downcasted int216 from int256, reverting on
     * overflow (when the input is less than smallest int216 or
     * greater than largest int216).
     *
     * Counterpart to Solidity's `int216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     */
    function toInt216(int256 value) internal pure returns (int216 downcasted) {
        downcasted = int216(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(216, value);
        }
    }

    /**
     * @dev Returns the downcasted int208 from int256, reverting on
     * overflow (when the input is less than smallest int208 or
     * greater than largest int208).
     *
     * Counterpart to Solidity's `int208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     */
    function toInt208(int256 value) internal pure returns (int208 downcasted) {
        downcasted = int208(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(208, value);
        }
    }

    /**
     * @dev Returns the downcasted int200 from int256, reverting on
     * overflow (when the input is less than smallest int200 or
     * greater than largest int200).
     *
     * Counterpart to Solidity's `int200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     */
    function toInt200(int256 value) internal pure returns (int200 downcasted) {
        downcasted = int200(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(200, value);
        }
    }

    /**
     * @dev Returns the downcasted int192 from int256, reverting on
     * overflow (when the input is less than smallest int192 or
     * greater than largest int192).
     *
     * Counterpart to Solidity's `int192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     */
    function toInt192(int256 value) internal pure returns (int192 downcasted) {
        downcasted = int192(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(192, value);
        }
    }

    /**
     * @dev Returns the downcasted int184 from int256, reverting on
     * overflow (when the input is less than smallest int184 or
     * greater than largest int184).
     *
     * Counterpart to Solidity's `int184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     */
    function toInt184(int256 value) internal pure returns (int184 downcasted) {
        downcasted = int184(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(184, value);
        }
    }

    /**
     * @dev Returns the downcasted int176 from int256, reverting on
     * overflow (when the input is less than smallest int176 or
     * greater than largest int176).
     *
     * Counterpart to Solidity's `int176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     */
    function toInt176(int256 value) internal pure returns (int176 downcasted) {
        downcasted = int176(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(176, value);
        }
    }

    /**
     * @dev Returns the downcasted int168 from int256, reverting on
     * overflow (when the input is less than smallest int168 or
     * greater than largest int168).
     *
     * Counterpart to Solidity's `int168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     */
    function toInt168(int256 value) internal pure returns (int168 downcasted) {
        downcasted = int168(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(168, value);
        }
    }

    /**
     * @dev Returns the downcasted int160 from int256, reverting on
     * overflow (when the input is less than smallest int160 or
     * greater than largest int160).
     *
     * Counterpart to Solidity's `int160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     */
    function toInt160(int256 value) internal pure returns (int160 downcasted) {
        downcasted = int160(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(160, value);
        }
    }

    /**
     * @dev Returns the downcasted int152 from int256, reverting on
     * overflow (when the input is less than smallest int152 or
     * greater than largest int152).
     *
     * Counterpart to Solidity's `int152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     */
    function toInt152(int256 value) internal pure returns (int152 downcasted) {
        downcasted = int152(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(152, value);
        }
    }

    /**
     * @dev Returns the downcasted int144 from int256, reverting on
     * overflow (when the input is less than smallest int144 or
     * greater than largest int144).
     *
     * Counterpart to Solidity's `int144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     */
    function toInt144(int256 value) internal pure returns (int144 downcasted) {
        downcasted = int144(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(144, value);
        }
    }

    /**
     * @dev Returns the downcasted int136 from int256, reverting on
     * overflow (when the input is less than smallest int136 or
     * greater than largest int136).
     *
     * Counterpart to Solidity's `int136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     */
    function toInt136(int256 value) internal pure returns (int136 downcasted) {
        downcasted = int136(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(136, value);
        }
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toInt128(int256 value) internal pure returns (int128 downcasted) {
        downcasted = int128(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(128, value);
        }
    }

    /**
     * @dev Returns the downcasted int120 from int256, reverting on
     * overflow (when the input is less than smallest int120 or
     * greater than largest int120).
     *
     * Counterpart to Solidity's `int120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     */
    function toInt120(int256 value) internal pure returns (int120 downcasted) {
        downcasted = int120(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(120, value);
        }
    }

    /**
     * @dev Returns the downcasted int112 from int256, reverting on
     * overflow (when the input is less than smallest int112 or
     * greater than largest int112).
     *
     * Counterpart to Solidity's `int112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     */
    function toInt112(int256 value) internal pure returns (int112 downcasted) {
        downcasted = int112(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(112, value);
        }
    }

    /**
     * @dev Returns the downcasted int104 from int256, reverting on
     * overflow (when the input is less than smallest int104 or
     * greater than largest int104).
     *
     * Counterpart to Solidity's `int104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     */
    function toInt104(int256 value) internal pure returns (int104 downcasted) {
        downcasted = int104(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(104, value);
        }
    }

    /**
     * @dev Returns the downcasted int96 from int256, reverting on
     * overflow (when the input is less than smallest int96 or
     * greater than largest int96).
     *
     * Counterpart to Solidity's `int96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toInt96(int256 value) internal pure returns (int96 downcasted) {
        downcasted = int96(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(96, value);
        }
    }

    /**
     * @dev Returns the downcasted int88 from int256, reverting on
     * overflow (when the input is less than smallest int88 or
     * greater than largest int88).
     *
     * Counterpart to Solidity's `int88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     */
    function toInt88(int256 value) internal pure returns (int88 downcasted) {
        downcasted = int88(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(88, value);
        }
    }

    /**
     * @dev Returns the downcasted int80 from int256, reverting on
     * overflow (when the input is less than smallest int80 or
     * greater than largest int80).
     *
     * Counterpart to Solidity's `int80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     */
    function toInt80(int256 value) internal pure returns (int80 downcasted) {
        downcasted = int80(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(80, value);
        }
    }

    /**
     * @dev Returns the downcasted int72 from int256, reverting on
     * overflow (when the input is less than smallest int72 or
     * greater than largest int72).
     *
     * Counterpart to Solidity's `int72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     */
    function toInt72(int256 value) internal pure returns (int72 downcasted) {
        downcasted = int72(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(72, value);
        }
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toInt64(int256 value) internal pure returns (int64 downcasted) {
        downcasted = int64(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(64, value);
        }
    }

    /**
     * @dev Returns the downcasted int56 from int256, reverting on
     * overflow (when the input is less than smallest int56 or
     * greater than largest int56).
     *
     * Counterpart to Solidity's `int56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     */
    function toInt56(int256 value) internal pure returns (int56 downcasted) {
        downcasted = int56(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(56, value);
        }
    }

    /**
     * @dev Returns the downcasted int48 from int256, reverting on
     * overflow (when the input is less than smallest int48 or
     * greater than largest int48).
     *
     * Counterpart to Solidity's `int48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     */
    function toInt48(int256 value) internal pure returns (int48 downcasted) {
        downcasted = int48(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(48, value);
        }
    }

    /**
     * @dev Returns the downcasted int40 from int256, reverting on
     * overflow (when the input is less than smallest int40 or
     * greater than largest int40).
     *
     * Counterpart to Solidity's `int40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     */
    function toInt40(int256 value) internal pure returns (int40 downcasted) {
        downcasted = int40(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(40, value);
        }
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toInt32(int256 value) internal pure returns (int32 downcasted) {
        downcasted = int32(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(32, value);
        }
    }

    /**
     * @dev Returns the downcasted int24 from int256, reverting on
     * overflow (when the input is less than smallest int24 or
     * greater than largest int24).
     *
     * Counterpart to Solidity's `int24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     */
    function toInt24(int256 value) internal pure returns (int24 downcasted) {
        downcasted = int24(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(24, value);
        }
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toInt16(int256 value) internal pure returns (int16 downcasted) {
        downcasted = int16(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(16, value);
        }
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     */
    function toInt8(int256 value) internal pure returns (int8 downcasted) {
        downcasted = int8(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(8, value);
        }
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        if (value > uint256(type(int256).max)) {
            revert SafeCastOverflowedUintToInt(value);
        }
        return int256(value);
    }
}

File 18 of 23 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 19 of 23 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;

import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";

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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

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

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

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

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

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 20 of 23 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 21 of 23 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 22 of 23 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

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

File 23 of 23 : MEKTNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeCast.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

contract MEKTNFT is ERC721Enumerable, Ownable {
    using SafeERC20 for IERC20;
    using SafeCast for uint256;
    using SafeCast for int256;

    struct NftInfo {
        uint256 tokenId;
        uint256 claimedReward;
        uint256 claimableReward;
        uint256 lastClaimTime;
    }
    struct RefereeInfo {
        address referee;
        uint256 amount;
    }

    IUniswapV2Router02 public ROUTER =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    IERC20 private token;
    string private baseUriExtended;
    uint256 public accumulatedRewardPerShare;
    uint256 public tokenId;
    uint256 public phaseSupply;
    uint256 public collectedFee;
    uint256 public constant maxSupply = 1200;
    uint256 private mintPrice;
    uint256 private maxPhaseSupply;
    uint256 private swapTokensAt;
    uint8 private PRICE_BOOSTER;
    uint8 private mintFee;
    uint8 private refundFee;
    uint8 private referFee;
    bool public initMintFlag;

    mapping(uint256 => NftInfo) public claimInfo;
    mapping(address => uint256) private userClaimedRewards;
    mapping(uint256 => int256) private pointsAdjustmentForNft;
    mapping(address => RefereeInfo[]) private referInfo;
    mapping(address => uint256) private referClaimedReward;
    mapping(address => uint256) private referClaimableReward;
    event Minted(address, uint256);
    event RewardsDistributed(address, uint256);
    event RewardsClaimed(address, uint256);
    event ReferRewardsClaimed(address, uint256);

    constructor() ERC721("THE MEME PROJEKT NFTs", "MEKTNFT") Ownable(msg.sender) {
        tokenId = 1;
        mintPrice = 105720086 * 10**9;
        maxPhaseSupply = 100;
        swapTokensAt =
            150000000 *
            10**9;
        PRICE_BOOSTER = 5;
        mintFee = 5;
        refundFee = 5;
        referFee = 2;
        baseUriExtended="https://uri.thememeprojekt.com/nft/";
    }

    error maxCapReached();
    error zeroReferReward();
    error notOwner();
    error NullUri();
    error invalidFee();
    error zeroAddress();
    error zeroSupply();
    error tokenNotExists();
    error invalidIndex();
    error indexOutOfBound();

    function mint(uint256 amount, address referrer) external {
        if (tokenId + amount > maxSupply) {
            revert maxCapReached();
        }

        uint256 mintingFee;
        for (uint256 i; i < amount; ) {
            if (phaseSupply == maxPhaseSupply) {
                phaseSupply = 1;
                mintPrice = mintPrice + ((mintPrice * PRICE_BOOSTER) / 100);
            }
            mintingFee += mintPrice;
            claimInfo[tokenId].lastClaimTime = block.timestamp;
            _mint(msg.sender, tokenId);
            adjustRewardPoints(tokenId, -int256(1));
            unchecked {
                tokenId++;
                phaseSupply++;
                i++;
            }
        }
        (uint256 platformFee, uint256 referAmount) = calculateFees(
            mintingFee,
            mintFee,
            referrer
        );
        collectedFee += platformFee;
        token.safeTransferFrom(msg.sender, address(this), mintingFee);
        if (
            token.balanceOf(address(this)) > swapTokensAt &&
            collectedFee > swapTokensAt
        ) {
            swapTokensForEth(collectedFee);
        }
        if (referAmount > 0) {
            referInfo[referrer].push(RefereeInfo(msg.sender, referAmount));

            referClaimableReward[referrer] += referAmount;
        }
        emit Minted(msg.sender, amount);
    }

    function initMint() external onlyOwner {
        require(!initMintFlag, "once only");
        for (uint256 i; i < 50; ) {
            claimInfo[tokenId].lastClaimTime = block.timestamp;
            _mint(msg.sender, tokenId);
            adjustRewardPoints(tokenId, -int256(1));
            unchecked {
                tokenId++;
                phaseSupply++;
                i++;
            }
        }
        initMintFlag = true;
    }

    function returnNft(uint256 _tokenId) external {
        if (ownerOf(_tokenId) != msg.sender) {
            revert notOwner();
        }
        (uint256 fees, uint256 refundAmount) = calculateRefundFee(
            mintPrice,
            refundFee
        );
        _burn(_tokenId);
        adjustRewardPoints(_tokenId, int256(1));
        token.safeTransfer(msg.sender, refundAmount);
        collectedFee += fees;
        if (
            token.balanceOf(address(this)) > swapTokensAt &&
            collectedFee > swapTokensAt
        ) {
            swapTokensForEth(collectedFee);
        }
    }

    function getClaimableRewards(uint256[] memory tokenIds) external {
        uint256 availableRewards;
        for (uint256 i; i < tokenIds.length; ) {
            if (ownerOf(tokenIds[i]) != msg.sender) {
                revert notOwner();
            }

            uint256 tokenReward = getRewards(tokenIds[i]);
            availableRewards += tokenReward;
            claimInfo[tokenIds[i]].lastClaimTime = block.timestamp;
            claimInfo[tokenIds[i]].claimedReward += tokenReward;

            unchecked {
                i++;
            }
        }
        userClaimedRewards[msg.sender] += availableRewards;
        token.safeTransfer(msg.sender, availableRewards);
        emit RewardsClaimed(msg.sender, availableRewards);
    }

    function claimReferReward() external {
        uint256 amount = referClaimableReward[msg.sender];
        if (amount == 0) {
            revert zeroReferReward();
        }
        referClaimedReward[msg.sender] += amount;
        referClaimableReward[msg.sender] = 0;
        token.safeTransfer(msg.sender, amount);
        emit ReferRewardsClaimed(msg.sender, amount);
    }

    function distributeRewards(uint256 amountToDistribute) public {
        if (totalSupply() == 0) {
            revert zeroSupply();
        }
        if (amountToDistribute > 0) {
            accumulatedRewardPerShare =
                accumulatedRewardPerShare +
                (amountToDistribute / totalSupply() - 1);
        }
        emit RewardsDistributed(msg.sender, amountToDistribute);
    }

    function getRewards(uint256 _tokenId) public view returns (uint256) {
        if (_requireOwned(_tokenId) == address(0)) {
            revert tokenNotExists();
        }

        uint256 totalReward = ((accumulatedRewardPerShare).toInt256() +
            (pointsAdjustmentForNft[_tokenId])).toUint256();
        return totalReward - claimInfo[_tokenId].claimedReward;
    }

    function getRefereeInfo(address referrer)
        external
        view
        returns (RefereeInfo[] memory)
    {
        return referInfo[referrer];
    }

    function getUserClaimedReward(address user) public view returns (uint256) {
        return userClaimedRewards[user];
    }

    function getRefereeClaimedReward(address referrer)
        public
        view
        returns (uint256)
    {
        return referClaimedReward[referrer];
    }

    function getRefereeClaimableReward(address referrer)
        public
        view
        returns (uint256)
    {
        return referClaimableReward[referrer];
    }

    function getReferCount(address referrer) public view returns (uint256) {
        return referInfo[referrer].length;
    }

    function getRefereeIndexInfo(
        address referrer,
        uint256 startIndex,
        uint256 endIndex
    ) external view returns (RefereeInfo[] memory) {
        if (startIndex > endIndex) {
            revert invalidIndex();
        }

        uint256 totalReferees = referInfo[referrer].length;
        if (endIndex >= totalReferees) {
            revert indexOutOfBound();
        }
        uint256 length = endIndex - startIndex + 1;
        RefereeInfo[] memory result = new RefereeInfo[](length);

        for (uint256 i = startIndex; i <= endIndex; i++) {
            result[i - startIndex] = referInfo[referrer][i];
        }

        return result;
    }

    function getUserNftsInfo(address _account)
        external
        view
        returns (NftInfo[] memory)
    {
        if (_account == address(0)) {
            revert zeroAddress();
        }
        uint256 userBalance = balanceOf(_account);
        NftInfo[] memory userNftsInfo = new NftInfo[](userBalance);

        if (userBalance > 0) {
            for (uint256 i = 0; i < userBalance; i++) {
                uint256 nftId = tokenOfOwnerByIndex(_account, i);
                uint256 claimableReward = getRewards(nftId);
                userNftsInfo[i] = NftInfo(
                    nftId,
                    claimInfo[nftId].claimedReward,
                    claimableReward,
                    claimInfo[tokenId].lastClaimTime
                );
            }
        }

        return userNftsInfo;
    }

    function getPriceBooster() external view returns (uint8) {
        return PRICE_BOOSTER;
    }

    //feeses
    function getMintFee() external view returns (uint8) {
        return mintFee;
    }

    function getRefundFee() external view returns (uint8) {
        return refundFee;
    }

    function getReferFee() external view returns (uint8) {
        return referFee;
    }

    //
    function getMaxPhaseSupply() external view returns (uint256) {
        return maxPhaseSupply;
    }

    function getMaxSupply() external pure returns (uint256) {
        return maxSupply;
    }

    function getToken() external view returns (IERC20) {
        return token;
    }

    function getMintPrice() external view returns (uint256) {
        return mintPrice;
    }

    function getSwapTokensAt() external view returns (uint256) {
        return swapTokensAt;
    }

    function setBaseURI(string memory baseUri) external onlyOwner {
        if (bytes(baseUri).length == 0) {
            revert NullUri();
        }

        baseUriExtended = baseUri;
    }

    function setRefundFee(uint8 fee) external onlyOwner {
        if (fee > 10) {
            revert invalidFee();
        }
        refundFee = fee;
    }

    function setMintFee(uint8 fee) external onlyOwner {
        if (fee > 10) {
            revert invalidFee();
        }
        mintFee = fee;
    }

    function setToken(address tokenAdd) external onlyOwner {
        if (tokenAdd == address(0)) {
            revert zeroAddress();
        }
        token = IERC20(tokenAdd);
    }

    function setMintPrice(uint256 price) external onlyOwner {
        mintPrice = price;
    }

    function setSwapTokensAt(uint256 amount) external onlyOwner {
        swapTokensAt = amount;
    }

    function setPriceBooster(uint8 priceBooster) external onlyOwner {
        PRICE_BOOSTER = priceBooster;
    }

    function setReferFee(uint8 fee) external onlyOwner {
           if (fee > 5) {
            revert invalidFee();
        }
        referFee = fee;
    }

    function setMaxPhaseSupply(uint256 supply) external onlyOwner {
        maxPhaseSupply = supply;
    }

    function calculateFees(
        uint256 amount,
        uint8 fee,
        address referrer
    ) internal view returns (uint256, uint256) {
        uint256 platformFee = (amount * fee) / 100;
        uint256 referAmount;
        if (referrer != address(0)) {
            referAmount = (amount * (fee - referFee)) / 100;
            platformFee = platformFee - referAmount;
        }
        return (platformFee, referAmount);
    }

    function calculateRefundFee(uint256 amount, uint8 fee)
        internal
        pure
        returns (uint256, uint256)
    {
        uint256 fees = (amount * fee) / 100;
        return (fees, amount - fees);
    }

    function _baseURI() internal view override returns (string memory) {
        return baseUriExtended;
    }

    function adjustRewardPoints(uint256 id, int256 delta) internal {
        pointsAdjustmentForNft[id] =
            pointsAdjustmentForNft[id] +
            (delta * int256(accumulatedRewardPerShare));
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(token);
        path[1] = ROUTER.WETH();

        token.approve(address(ROUTER), tokenAmount);

        ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
        bool success;
        (success, ) = payable(owner()).call{value: address(this).balance}("");
    }

    receive() external payable {}
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"NullUri","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":"int256","name":"value","type":"int256"}],"name":"SafeCastOverflowedIntToUint","type":"error"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintToInt","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"indexOutOfBound","type":"error"},{"inputs":[],"name":"invalidFee","type":"error"},{"inputs":[],"name":"invalidIndex","type":"error"},{"inputs":[],"name":"maxCapReached","type":"error"},{"inputs":[],"name":"notOwner","type":"error"},{"inputs":[],"name":"tokenNotExists","type":"error"},{"inputs":[],"name":"zeroAddress","type":"error"},{"inputs":[],"name":"zeroReferReward","type":"error"},{"inputs":[],"name":"zeroSupply","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"ReferRewardsClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"RewardsClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"RewardsDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accumulatedRewardPerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimInfo","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"claimedReward","type":"uint256"},{"internalType":"uint256","name":"claimableReward","type":"uint256"},{"internalType":"uint256","name":"lastClaimTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimReferReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectedFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToDistribute","type":"uint256"}],"name":"distributeRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"getClaimableRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxPhaseSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getMintFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceBooster","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"referrer","type":"address"}],"name":"getReferCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReferFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"referrer","type":"address"}],"name":"getRefereeClaimableReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"referrer","type":"address"}],"name":"getRefereeClaimedReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"referrer","type":"address"},{"internalType":"uint256","name":"startIndex","type":"uint256"},{"internalType":"uint256","name":"endIndex","type":"uint256"}],"name":"getRefereeIndexInfo","outputs":[{"components":[{"internalType":"address","name":"referee","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct MEKTNFT.RefereeInfo[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"referrer","type":"address"}],"name":"getRefereeInfo","outputs":[{"components":[{"internalType":"address","name":"referee","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct MEKTNFT.RefereeInfo[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRefundFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSwapTokensAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserClaimedReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getUserNftsInfo","outputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"claimedReward","type":"uint256"},{"internalType":"uint256","name":"claimableReward","type":"uint256"},{"internalType":"uint256","name":"lastClaimTime","type":"uint256"}],"internalType":"struct MEKTNFT.NftInfo[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initMintFlag","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"referrer","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"returnNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxPhaseSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"fee","type":"uint8"}],"name":"setMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"priceBooster","type":"uint8"}],"name":"setPriceBooster","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"fee","type":"uint8"}],"name":"setReferFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"fee","type":"uint8"}],"name":"setRefundFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAdd","type":"address"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600b80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790553480156200003757600080fd5b50336040518060400160405280601581526020017f544845204d454d452050524f4a454b54204e465473000000000000000000000081525060405180604001604052806007815260200166135152d513919560ca1b8152508160009081620000a0919062000248565b506001620000af828262000248565b5050506001600160a01b038116620000e157604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b620000ec8162000151565b506001600f5567017797dbaba75c006012556064601355670214e8348c4f00006014556015805463ffffffff1916630205050517905560408051606081019091526023808252620038026020830139600d906200014a908262000248565b5062000314565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001ce57607f821691505b602082108103620001ef57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024357600081815260208120601f850160051c810160208610156200021e5750805b601f850160051c820191505b818110156200023f578281556001016200022a565b5050505b505050565b81516001600160401b03811115620002645762000264620001a3565b6200027c81620002758454620001b9565b84620001f5565b602080601f831160018114620002b457600084156200029b5750858301515b600019600386901b1c1916600185901b1785556200023f565b600085815260208120601f198616915b82811015620002e557888601518255948401946001909101908401620002c4565b5085821015620003045787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6134de80620003246000396000f3fe6080604052600436106103905760003560e01c806375730460116101dc578063c87b56dd11610102578063e811f50a116100a0578063f2fde38b1161006f578063f2fde38b14610ae3578063f4a0a52814610b03578063f7de5f1014610b23578063fb9a87ed14610b3857600080fd5b8063e811f50a14610a58578063e985e9c514610a6e578063ea6ecb3d14610a8e578063ef92e63914610ac457600080fd5b8063cf797f10116100dc578063cf797f10146109e0578063d5abeb0114610a0d578063dc8f1df914610a23578063e0737f7a14610a4357600080fd5b8063c87b56dd1461096a578063c88b85d41461098a578063cdb8fcdb146109c057600080fd5b806395d89b411161017a578063a90fdfc911610149578063a90fdfc9146108e8578063af81bf0b14610915578063b88d4fde1461092a578063c0d8012c1461094a57600080fd5b806395d89b41146108685780639ca019d31461087d578063a22cb465146108b3578063a7f93ebd146108d357600080fd5b8063836807fc116101b6578063836807fc146107ea57806387e66314146108085780638da5cb5b1461082a57806394bf804d1461084857600080fd5b806375730460146107915780637a5caab3146107b75780637bb997e4146107d457600080fd5b806332fe7b26116102c1578063501a1c511161025f5780635c3622331161022e5780635c362233146106da5780636352211e1461073c57806370a082311461075c578063715018a61461077c57600080fd5b8063501a1c511461065a57806353674ba61461067a57806355f804b31461069a57806359974e38146106ba57600080fd5b806344cdac8d1161029b57806344cdac8d146105cf5780634535aed5146105ef5780634c0f38c2146106255780634f6ccce71461063a57600080fd5b806332fe7b261461057957806336d421951461059957806342842e0e146105af57600080fd5b806318160ddd1161032e57806323b872dd1161030857806323b872dd1461050457806323bd222914610524578063293d86c7146105395780632f745c591461055957600080fd5b806318160ddd146104b157806321df0da7146104c657806322991adc146104e457600080fd5b8063095ea7b31161036a578063095ea7b31461042b57806309d77f0e1461044d578063144fa6d71461046d57806317d70f7c1461048d57600080fd5b806301ffc9a71461039c57806306fdde03146103d1578063081812fc146103f357600080fd5b3661039757005b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612bdb565b610b58565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103e6610b83565b6040516103c89190612c48565b3480156103ff57600080fd5b5061041361040e366004612c5b565b610c15565b6040516001600160a01b0390911681526020016103c8565b34801561043757600080fd5b5061044b610446366004612c89565b610c3e565b005b34801561045957600080fd5b5061044b610468366004612c5b565b610c4d565b34801561047957600080fd5b5061044b610488366004612cb5565b610d76565b34801561049957600080fd5b506104a3600f5481565b6040519081526020016103c8565b3480156104bd57600080fd5b506008546104a3565b3480156104d257600080fd5b50600c546001600160a01b0316610413565b3480156104f057600080fd5b5061044b6104ff366004612cd2565b610dc7565b34801561051057600080fd5b5061044b61051f366004612cf5565b610e10565b34801561053057600080fd5b5061044b610ea0565b34801561054557600080fd5b5061044b610554366004612cd2565b610f5b565b34801561056557600080fd5b506104a3610574366004612c89565b610f79565b34801561058557600080fd5b50600b54610413906001600160a01b031681565b3480156105a557600080fd5b506104a3600e5481565b3480156105bb57600080fd5b5061044b6105ca366004612cf5565b610fde565b3480156105db57600080fd5b5061044b6105ea366004612d7d565b610ff9565b3480156105fb57600080fd5b506104a361060a366004612cb5565b6001600160a01b031660009081526017602052604090205490565b34801561063157600080fd5b506104b06104a3565b34801561064657600080fd5b506104a3610655366004612c5b565b611185565b34801561066657600080fd5b5061044b610675366004612cd2565b6111de565b34801561068657600080fd5b5061044b610695366004612c5b565b611229565b3480156106a657600080fd5b5061044b6106b5366004612e7b565b611236565b3480156106c657600080fd5b5061044b6106d5366004612c5b565b61126c565b3480156106e657600080fd5b5061071c6106f5366004612c5b565b60166020526000908152604090208054600182015460028301546003909301549192909184565b6040805194855260208501939093529183015260608201526080016103c8565b34801561074857600080fd5b50610413610757366004612c5b565b6112fb565b34801561076857600080fd5b506104a3610777366004612cb5565b611306565b34801561078857600080fd5b5061044b61134e565b34801561079d57600080fd5b5060155460ff165b60405160ff90911681526020016103c8565b3480156107c357600080fd5b50601554610100900460ff166107a5565b3480156107e057600080fd5b506104a360105481565b3480156107f657600080fd5b5060155462010000900460ff166107a5565b34801561081457600080fd5b506015546103bc90640100000000900460ff1681565b34801561083657600080fd5b50600a546001600160a01b0316610413565b34801561085457600080fd5b5061044b610863366004612ec4565b611362565b34801561087457600080fd5b506103e66115ef565b34801561088957600080fd5b506104a3610898366004612cb5565b6001600160a01b031660009081526019602052604090205490565b3480156108bf57600080fd5b5061044b6108ce366004612f02565b6115fe565b3480156108df57600080fd5b506012546104a3565b3480156108f457600080fd5b50610908610903366004612f30565b611609565b6040516103c89190612f65565b34801561092157600080fd5b506014546104a3565b34801561093657600080fd5b5061044b610945366004612fbd565b61178d565b34801561095657600080fd5b506104a3610965366004612c5b565b6117a4565b34801561097657600080fd5b506103e6610985366004612c5b565b611825565b34801561099657600080fd5b506104a36109a5366004612cb5565b6001600160a01b03166000908152601b602052604090205490565b3480156109cc57600080fd5b5061044b6109db366004612c5b565b61188c565b3480156109ec57600080fd5b50610a006109fb366004612cb5565b611899565b6040516103c8919061303d565b348015610a1957600080fd5b506104a36104b081565b348015610a2f57600080fd5b5061044b610a3e366004612cd2565b6119f0565b348015610a4f57600080fd5b5061044b611a3d565b348015610a6457600080fd5b506104a360115481565b348015610a7a57600080fd5b506103bc610a89366004613094565b611b00565b348015610a9a57600080fd5b506104a3610aa9366004612cb5565b6001600160a01b03166000908152601a602052604090205490565b348015610ad057600080fd5b506015546301000000900460ff166107a5565b348015610aef57600080fd5b5061044b610afe366004612cb5565b611b2e565b348015610b0f57600080fd5b5061044b610b1e366004612c5b565b611b6c565b348015610b2f57600080fd5b506013546104a3565b348015610b4457600080fd5b50610908610b53366004612cb5565b611b79565b60006001600160e01b0319821663780e9d6360e01b1480610b7d5750610b7d82611c04565b92915050565b606060008054610b92906130c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbe906130c2565b8015610c0b5780601f10610be057610100808354040283529160200191610c0b565b820191906000526020600020905b815481529060010190602001808311610bee57829003601f168201915b5050505050905090565b6000610c2082611c54565b506000828152600460205260409020546001600160a01b0316610b7d565b610c49828233611c8d565b5050565b33610c57826112fb565b6001600160a01b031614610c7e5760405163251c9d6360e01b815260040160405180910390fd5b600080610c9c601254601560029054906101000a900460ff16611c9a565b91509150610ca983611cd0565b610cb4836001611d0b565b600c54610ccb906001600160a01b03163383611d47565b8160116000828254610cdd9190613112565b9091555050601454600c546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610d2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d519190613125565b118015610d615750601454601154115b15610d7157610d71601154611da6565b505050565b610d7e611fd5565b6001600160a01b038116610da557604051630930907b60e01b815260040160405180910390fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610dcf611fd5565b600a8160ff161115610df457604051631e0e9ef360e11b815260040160405180910390fd5b6015805460ff9092166101000261ff0019909216919091179055565b6001600160a01b038216610e3f57604051633250574960e11b8152600060048201526024015b60405180910390fd5b6000610e4c838333612002565b9050836001600160a01b0316816001600160a01b031614610e9a576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610e36565b50505050565b336000908152601b602052604081205490819003610ed1576040516342baf06960e11b815260040160405180910390fd5b336000908152601a602052604081208054839290610ef0908490613112565b9091555050336000818152601b6020526040812055600c54610f1e916001600160a01b039091169083611d47565b60408051338152602081018390527f80bcb52766ca6f6eae60632bb2561063d0c8a932bed7017aabb91690edf1247b91015b60405180910390a150565b610f63611fd5565b6015805460ff191660ff92909216919091179055565b6000610f8483611306565b8210610fb55760405163295f44f760e21b81526001600160a01b038416600482015260248101839052604401610e36565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d718383836040518060200160405280600081525061178d565b6000805b825181101561110c57336001600160a01b03166110328483815181106110255761102561313e565b60200260200101516112fb565b6001600160a01b0316146110595760405163251c9d6360e01b815260040160405180910390fd5b600061107d8483815181106110705761107061313e565b60200260200101516117a4565b90506110898184613112565b925042601660008685815181106110a2576110a261313e565b602002602001015181526020019081526020016000206003018190555080601660008685815181106110d6576110d661313e565b6020026020010151815260200190815260200160002060010160008282546110fe9190613112565b909155505050600101610ffd565b50336000908152601760205260408120805483929061112c908490613112565b9091555050600c54611148906001600160a01b03163383611d47565b60408051338152602081018390527ffc30cddea38e2bf4d6ea7d3f9ed3b6ad7f176419f4963bd81318067a4aee73fe910160405180910390a15050565b600061119060085490565b82106111b95760405163295f44f760e21b81526000600482015260248101839052604401610e36565b600882815481106111cc576111cc61313e565b90600052602060002001549050919050565b6111e6611fd5565b600a8160ff16111561120b57604051631e0e9ef360e11b815260040160405180910390fd5b6015805460ff909216620100000262ff000019909216919091179055565b611231611fd5565b601455565b61123e611fd5565b8051600003611260576040516312bb882360e01b815260040160405180910390fd5b600d610c49828261319a565b60085460000361128f576040516335a412b560e01b815260040160405180910390fd5b80156112c55760016112a060085490565b6112aa908361325a565b6112b4919061327c565b600e546112c19190613112565b600e555b60408051338152602081018390527fdf29796aad820e4bb192f3a8d631b76519bcd2cbe77cc85af20e9df53cece0869101610f50565b6000610b7d82611c54565b60006001600160a01b038216611332576040516322718ad960e21b815260006004820152602401610e36565b506001600160a01b031660009081526003602052604090205490565b611356611fd5565b61136060006120d7565b565b6104b082600f546113739190613112565b11156113925760405163063ff8db60e51b815260040160405180910390fd5b6000805b8381101561144657601354601054036113e15760016010556015546012546064916113c69160ff9091169061328f565b6113d0919061325a565b6012546113dd9190613112565b6012555b6012546113ee9083613112565b600f805460009081526016602052604090204260039091015554909250611416903390612129565b61142c600f546001611427906132a6565b611d0b565b600f80546001908101909155601080548201905501611396565b5060008061146483601560019054906101000a900460ff168661218e565b91509150816011600082825461147a9190613112565b9091555050600c54611497906001600160a01b031633308661220a565b601454600c546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156114e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115069190613125565b1180156115165750601454601154115b1561152657611526601154611da6565b80156115af576001600160a01b038481166000818152601960209081526040808320815180830183523381528084018881528254600180820185559387528587209251600290910290920180546001600160a01b0319169290981691909117875551950194909455918152601b90915290812080548392906115a9908490613112565b90915550505b60408051338152602081018790527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a15050505050565b606060018054610b92906130c2565b610c49338383612243565b60608183111561162c57604051638a581ab760e01b815260040160405180910390fd5b6001600160a01b03841660009081526019602052604090205480831061166557604051633aea894360e01b815260040160405180910390fd5b6000611671858561327c565b61167c906001613112565b905060008167ffffffffffffffff81111561169957611699612d36565b6040519080825280602002602001820160405280156116de57816020015b60408051808201909152600080825260208201528152602001906001900390816116b75790505b509050855b858111611780576001600160a01b03881660009081526019602052604090208054829081106117145761171461313e565b60009182526020918290206040805180820190915260029092020180546001600160a01b03168252600101549181019190915282611752898461327c565b815181106117625761176261313e565b60200260200101819052508080611778906132c2565b9150506116e3565b50925050505b9392505050565b611798848484610e10565b610e9a848484846122e2565b6000806117b083611c54565b6001600160a01b0316036117d75760405163025bf24f60e51b815260040160405180910390fd5b600082815260186020526040812054600e5461180691906117f79061240b565b61180191906132db565b61243c565b600084815260166020526040902060010154909150611786908261327c565b606061183082611c54565b50600061183b612462565b9050600081511161185b5760405180602001604052806000815250611786565b8061186584612471565b604051602001611876929190613303565b6040516020818303038152906040529392505050565b611894611fd5565b601355565b60606001600160a01b0382166118c257604051630930907b60e01b815260040160405180910390fd5b60006118cd83611306565b905060008167ffffffffffffffff8111156118ea576118ea612d36565b60405190808252806020026020018201604052801561194657816020015b6119336040518060800160405280600081526020016000815260200160008152602001600081525090565b8152602001906001900390816119085790505b50905081156117865760005b828110156119e85760006119668683610f79565b90506000611973826117a4565b604080516080810182528481526000858152601660208181528483206001015481850152838501869052600f54835252919091206003015460608201528551919250908590859081106119c8576119c861313e565b6020026020010181905250505080806119e0906132c2565b915050611952565b509392505050565b6119f8611fd5565b60058160ff161115611a1d57604051631e0e9ef360e11b815260040160405180910390fd5b6015805460ff90921663010000000263ff00000019909216919091179055565b611a45611fd5565b601554640100000000900460ff1615611a8c5760405162461bcd60e51b81526020600482015260096024820152686f6e6365206f6e6c7960b81b6044820152606401610e36565b60005b6032811015611ae857600f805460009081526016602052604090204260039091015554611abd903390612129565b611ace600f546001611427906132a6565b600f80546001908101909155601080548201905501611a8f565b506015805464ff000000001916640100000000179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611b36611fd5565b6001600160a01b038116611b6057604051631e4fbdf760e01b815260006004820152602401610e36565b611b69816120d7565b50565b611b74611fd5565b601255565b6001600160a01b0381166000908152601960209081526040808320805482518185028101850190935280835260609492939192909184015b82821015611bf9576000848152602090819020604080518082019091526002850290910180546001600160a01b03168252600190810154828401529083529092019101611bb1565b505050509050919050565b60006001600160e01b031982166380ac58cd60e01b1480611c3557506001600160e01b03198216635b5e139f60e01b145b80610b7d57506301ffc9a760e01b6001600160e01b0319831614610b7d565b6000818152600260205260408120546001600160a01b031680610b7d57604051637e27328960e01b815260048101849052602401610e36565b610d718383836001612504565b600080806064611cad60ff86168761328f565b611cb7919061325a565b905080611cc4818761327c565b92509250509250929050565b6000611cdf6000836000612002565b90506001600160a01b038116610c4957604051637e27328960e01b815260048101839052602401610e36565b600e54611d189082613332565b600083815260186020526040902054611d3191906132db565b6000928352601860205260409092209190915550565b6040516001600160a01b03838116602483015260448201839052610d7191859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505061260a565b6040805160028082526060820183526000926020830190803683375050600c5482519293506001600160a01b031691839150600090611de757611de761313e565b6001600160a01b03928316602091820292909201810191909152600b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611e40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e649190613362565b81600181518110611e7757611e7761313e565b6001600160a01b039283166020918202929092010152600c54600b5460405163095ea7b360e01b815290831660048201526024810185905291169063095ea7b3906044016020604051808303816000875af1158015611eda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611efe919061337f565b50600b5460405163791ac94760e01b81526001600160a01b039091169063791ac94790611f3890859060009086903090429060040161339c565b600060405180830381600087803b158015611f5257600080fd5b505af1158015611f66573d6000803e3d6000fd5b505050506000611f7e600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611fc8576040519150601f19603f3d011682016040523d82523d6000602084013e611fcd565b606091505b505050505050565b600a546001600160a01b031633146113605760405163118cdaa760e01b8152336004820152602401610e36565b60008061201085858561266d565b90506001600160a01b03811661206d5761206884600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612090565b846001600160a01b0316816001600160a01b031614612090576120908185612766565b6001600160a01b0385166120ac576120a7846127f7565b6120cf565b846001600160a01b0316816001600160a01b0316146120cf576120cf85856128a6565b949350505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661215357604051633250574960e11b815260006004820152602401610e36565b600061216183836000612002565b90506001600160a01b03811615610d71576040516339e3563760e11b815260006004820152602401610e36565b6000808060646121a160ff87168861328f565b6121ab919061325a565b905060006001600160a01b038516156121fe576015546064906121d8906301000000900460ff168861340d565b6121e59060ff168961328f565b6121ef919061325a565b90506121fb818361327c565b91505b90969095509350505050565b6040516001600160a01b038481166024830152838116604483015260648201839052610e9a9186918216906323b872dd90608401611d74565b6001600160a01b03821661227557604051630b61174360e31b81526001600160a01b0383166004820152602401610e36565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b15610e9a57604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290612324903390889087908790600401613426565b6020604051808303816000875af192505050801561235f575060408051601f3d908101601f1916820190925261235c91810190613459565b60015b6123c8573d80801561238d576040519150601f19603f3d011682016040523d82523d6000602084013e612392565b606091505b5080516000036123c057604051633250574960e11b81526001600160a01b0385166004820152602401610e36565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b1461240457604051633250574960e11b81526001600160a01b0385166004820152602401610e36565b5050505050565b60006001600160ff1b038211156124385760405163123baf0360e11b815260048101839052602401610e36565b5090565b60008082121561243857604051635467221960e11b815260048101839052602401610e36565b6060600d8054610b92906130c2565b6060600061247e836128f6565b600101905060008167ffffffffffffffff81111561249e5761249e612d36565b6040519080825280601f01601f1916602001820160405280156124c8576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846124d257509392505050565b808061251857506001600160a01b03821615155b156125da57600061252884611c54565b90506001600160a01b038316158015906125545750826001600160a01b0316816001600160a01b031614155b801561256757506125658184611b00565b155b156125905760405163a9fbf51f60e01b81526001600160a01b0384166004820152602401610e36565b81156125d85783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5050600090815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b600061261f6001600160a01b038416836129ce565b90508051600014158015612644575080806020019051810190612642919061337f565b155b15610d7157604051635274afe760e01b81526001600160a01b0384166004820152602401610e36565b6000828152600260205260408120546001600160a01b039081169083161561269a5761269a8184866129dc565b6001600160a01b038116156126d8576126b7600085600080612504565b6001600160a01b038116600090815260036020526040902080546000190190555b6001600160a01b03851615612707576001600160a01b0385166000908152600360205260409020805460010190555b60008481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b600061277183611306565b6000838152600760205260409020549091508082146127c4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906128099060019061327c565b600083815260096020526040812054600880549394509092849081106128315761283161313e565b9060005260206000200154905080600883815481106128525761285261313e565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061288a5761288a613476565b6001900381819060005260206000200160009055905550505050565b600060016128b384611306565b6128bd919061327c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106129355772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612961576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061297f57662386f26fc10000830492506010015b6305f5e1008310612997576305f5e100830492506008015b61271083106129ab57612710830492506004015b606483106129bd576064830492506002015b600a8310610b7d5760010192915050565b606061178683836000612a40565b6129e7838383612add565b610d71576001600160a01b038316612a1557604051637e27328960e01b815260048101829052602401610e36565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610e36565b606081471015612a655760405163cd78605960e01b8152306004820152602401610e36565b600080856001600160a01b03168486604051612a81919061348c565b60006040518083038185875af1925050503d8060008114612abe576040519150601f19603f3d011682016040523d82523d6000602084013e612ac3565b606091505b5091509150612ad3868383612b40565b9695505050505050565b60006001600160a01b038316158015906120cf5750826001600160a01b0316846001600160a01b03161480612b175750612b178484611b00565b806120cf5750506000908152600460205260409020546001600160a01b03908116911614919050565b606082612b5557612b5082612b9c565b611786565b8151158015612b6c57506001600160a01b0384163b155b15612b9557604051639996b31560e01b81526001600160a01b0385166004820152602401610e36565b5080611786565b805115612bac5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160e01b031981168114611b6957600080fd5b600060208284031215612bed57600080fd5b813561178681612bc5565b60005b83811015612c13578181015183820152602001612bfb565b50506000910152565b60008151808452612c34816020860160208601612bf8565b601f01601f19169290920160200192915050565b6020815260006117866020830184612c1c565b600060208284031215612c6d57600080fd5b5035919050565b6001600160a01b0381168114611b6957600080fd5b60008060408385031215612c9c57600080fd5b8235612ca781612c74565b946020939093013593505050565b600060208284031215612cc757600080fd5b813561178681612c74565b600060208284031215612ce457600080fd5b813560ff8116811461178657600080fd5b600080600060608486031215612d0a57600080fd5b8335612d1581612c74565b92506020840135612d2581612c74565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612d7557612d75612d36565b604052919050565b60006020808385031215612d9057600080fd5b823567ffffffffffffffff80821115612da857600080fd5b818501915085601f830112612dbc57600080fd5b813581811115612dce57612dce612d36565b8060051b9150612ddf848301612d4c565b8181529183018401918481019088841115612df957600080fd5b938501935b83851015612e1757843582529385019390850190612dfe565b98975050505050505050565b600067ffffffffffffffff831115612e3d57612e3d612d36565b612e50601f8401601f1916602001612d4c565b9050828152838383011115612e6457600080fd5b828260208301376000602084830101529392505050565b600060208284031215612e8d57600080fd5b813567ffffffffffffffff811115612ea457600080fd5b8201601f81018413612eb557600080fd5b6120cf84823560208401612e23565b60008060408385031215612ed757600080fd5b823591506020830135612ee981612c74565b809150509250929050565b8015158114611b6957600080fd5b60008060408385031215612f1557600080fd5b8235612f2081612c74565b91506020830135612ee981612ef4565b600080600060608486031215612f4557600080fd5b8335612f5081612c74565b95602085013595506040909401359392505050565b602080825282518282018190526000919060409081850190868401855b82811015612fb057815180516001600160a01b03168552860151868501529284019290850190600101612f82565b5091979650505050505050565b60008060008060808587031215612fd357600080fd5b8435612fde81612c74565b93506020850135612fee81612c74565b925060408501359150606085013567ffffffffffffffff81111561301157600080fd5b8501601f8101871361302257600080fd5b61303187823560208401612e23565b91505092959194509250565b602080825282518282018190526000919060409081850190868401855b82811015612fb05781518051855286810151878601528581015186860152606090810151908501526080909301929085019060010161305a565b600080604083850312156130a757600080fd5b82356130b281612c74565b91506020830135612ee981612c74565b600181811c908216806130d657607f821691505b6020821081036130f657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b7d57610b7d6130fc565b60006020828403121561313757600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b601f821115610d7157600081815260208120601f850160051c8101602086101561317b5750805b601f850160051c820191505b81811015611fcd57828155600101613187565b815167ffffffffffffffff8111156131b4576131b4612d36565b6131c8816131c284546130c2565b84613154565b602080601f8311600181146131fd57600084156131e55750858301515b600019600386901b1c1916600185901b178555611fcd565b600085815260208120601f198616915b8281101561322c5788860151825594840194600190910190840161320d565b508582101561324a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008261327757634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610b7d57610b7d6130fc565b8082028115828204841417610b7d57610b7d6130fc565b6000600160ff1b82016132bb576132bb6130fc565b5060000390565b6000600182016132d4576132d46130fc565b5060010190565b80820182811260008312801582168215821617156132fb576132fb6130fc565b505092915050565b60008351613315818460208801612bf8565b835190830190613329818360208801612bf8565b01949350505050565b80820260008212600160ff1b8414161561334e5761334e6130fc565b8181058314821517610b7d57610b7d6130fc565b60006020828403121561337457600080fd5b815161178681612c74565b60006020828403121561339157600080fd5b815161178681612ef4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156133ec5784516001600160a01b0316835293830193918301916001016133c7565b50506001600160a01b03969096166060850152505050608001529392505050565b60ff8281168282160390811115610b7d57610b7d6130fc565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ad390830184612c1c565b60006020828403121561346b57600080fd5b815161178681612bc5565b634e487b7160e01b600052603160045260246000fd5b6000825161349e818460208701612bf8565b919091019291505056fea2646970667358221220b69f35bdf9f79c858ecf008b087d3016f1cfbdef67d0cfb6d1009aae36ac7fa764736f6c6343000814003368747470733a2f2f7572692e7468656d656d6570726f6a656b742e636f6d2f6e66742f

Deployed Bytecode

0x6080604052600436106103905760003560e01c806375730460116101dc578063c87b56dd11610102578063e811f50a116100a0578063f2fde38b1161006f578063f2fde38b14610ae3578063f4a0a52814610b03578063f7de5f1014610b23578063fb9a87ed14610b3857600080fd5b8063e811f50a14610a58578063e985e9c514610a6e578063ea6ecb3d14610a8e578063ef92e63914610ac457600080fd5b8063cf797f10116100dc578063cf797f10146109e0578063d5abeb0114610a0d578063dc8f1df914610a23578063e0737f7a14610a4357600080fd5b8063c87b56dd1461096a578063c88b85d41461098a578063cdb8fcdb146109c057600080fd5b806395d89b411161017a578063a90fdfc911610149578063a90fdfc9146108e8578063af81bf0b14610915578063b88d4fde1461092a578063c0d8012c1461094a57600080fd5b806395d89b41146108685780639ca019d31461087d578063a22cb465146108b3578063a7f93ebd146108d357600080fd5b8063836807fc116101b6578063836807fc146107ea57806387e66314146108085780638da5cb5b1461082a57806394bf804d1461084857600080fd5b806375730460146107915780637a5caab3146107b75780637bb997e4146107d457600080fd5b806332fe7b26116102c1578063501a1c511161025f5780635c3622331161022e5780635c362233146106da5780636352211e1461073c57806370a082311461075c578063715018a61461077c57600080fd5b8063501a1c511461065a57806353674ba61461067a57806355f804b31461069a57806359974e38146106ba57600080fd5b806344cdac8d1161029b57806344cdac8d146105cf5780634535aed5146105ef5780634c0f38c2146106255780634f6ccce71461063a57600080fd5b806332fe7b261461057957806336d421951461059957806342842e0e146105af57600080fd5b806318160ddd1161032e57806323b872dd1161030857806323b872dd1461050457806323bd222914610524578063293d86c7146105395780632f745c591461055957600080fd5b806318160ddd146104b157806321df0da7146104c657806322991adc146104e457600080fd5b8063095ea7b31161036a578063095ea7b31461042b57806309d77f0e1461044d578063144fa6d71461046d57806317d70f7c1461048d57600080fd5b806301ffc9a71461039c57806306fdde03146103d1578063081812fc146103f357600080fd5b3661039757005b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612bdb565b610b58565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103e6610b83565b6040516103c89190612c48565b3480156103ff57600080fd5b5061041361040e366004612c5b565b610c15565b6040516001600160a01b0390911681526020016103c8565b34801561043757600080fd5b5061044b610446366004612c89565b610c3e565b005b34801561045957600080fd5b5061044b610468366004612c5b565b610c4d565b34801561047957600080fd5b5061044b610488366004612cb5565b610d76565b34801561049957600080fd5b506104a3600f5481565b6040519081526020016103c8565b3480156104bd57600080fd5b506008546104a3565b3480156104d257600080fd5b50600c546001600160a01b0316610413565b3480156104f057600080fd5b5061044b6104ff366004612cd2565b610dc7565b34801561051057600080fd5b5061044b61051f366004612cf5565b610e10565b34801561053057600080fd5b5061044b610ea0565b34801561054557600080fd5b5061044b610554366004612cd2565b610f5b565b34801561056557600080fd5b506104a3610574366004612c89565b610f79565b34801561058557600080fd5b50600b54610413906001600160a01b031681565b3480156105a557600080fd5b506104a3600e5481565b3480156105bb57600080fd5b5061044b6105ca366004612cf5565b610fde565b3480156105db57600080fd5b5061044b6105ea366004612d7d565b610ff9565b3480156105fb57600080fd5b506104a361060a366004612cb5565b6001600160a01b031660009081526017602052604090205490565b34801561063157600080fd5b506104b06104a3565b34801561064657600080fd5b506104a3610655366004612c5b565b611185565b34801561066657600080fd5b5061044b610675366004612cd2565b6111de565b34801561068657600080fd5b5061044b610695366004612c5b565b611229565b3480156106a657600080fd5b5061044b6106b5366004612e7b565b611236565b3480156106c657600080fd5b5061044b6106d5366004612c5b565b61126c565b3480156106e657600080fd5b5061071c6106f5366004612c5b565b60166020526000908152604090208054600182015460028301546003909301549192909184565b6040805194855260208501939093529183015260608201526080016103c8565b34801561074857600080fd5b50610413610757366004612c5b565b6112fb565b34801561076857600080fd5b506104a3610777366004612cb5565b611306565b34801561078857600080fd5b5061044b61134e565b34801561079d57600080fd5b5060155460ff165b60405160ff90911681526020016103c8565b3480156107c357600080fd5b50601554610100900460ff166107a5565b3480156107e057600080fd5b506104a360105481565b3480156107f657600080fd5b5060155462010000900460ff166107a5565b34801561081457600080fd5b506015546103bc90640100000000900460ff1681565b34801561083657600080fd5b50600a546001600160a01b0316610413565b34801561085457600080fd5b5061044b610863366004612ec4565b611362565b34801561087457600080fd5b506103e66115ef565b34801561088957600080fd5b506104a3610898366004612cb5565b6001600160a01b031660009081526019602052604090205490565b3480156108bf57600080fd5b5061044b6108ce366004612f02565b6115fe565b3480156108df57600080fd5b506012546104a3565b3480156108f457600080fd5b50610908610903366004612f30565b611609565b6040516103c89190612f65565b34801561092157600080fd5b506014546104a3565b34801561093657600080fd5b5061044b610945366004612fbd565b61178d565b34801561095657600080fd5b506104a3610965366004612c5b565b6117a4565b34801561097657600080fd5b506103e6610985366004612c5b565b611825565b34801561099657600080fd5b506104a36109a5366004612cb5565b6001600160a01b03166000908152601b602052604090205490565b3480156109cc57600080fd5b5061044b6109db366004612c5b565b61188c565b3480156109ec57600080fd5b50610a006109fb366004612cb5565b611899565b6040516103c8919061303d565b348015610a1957600080fd5b506104a36104b081565b348015610a2f57600080fd5b5061044b610a3e366004612cd2565b6119f0565b348015610a4f57600080fd5b5061044b611a3d565b348015610a6457600080fd5b506104a360115481565b348015610a7a57600080fd5b506103bc610a89366004613094565b611b00565b348015610a9a57600080fd5b506104a3610aa9366004612cb5565b6001600160a01b03166000908152601a602052604090205490565b348015610ad057600080fd5b506015546301000000900460ff166107a5565b348015610aef57600080fd5b5061044b610afe366004612cb5565b611b2e565b348015610b0f57600080fd5b5061044b610b1e366004612c5b565b611b6c565b348015610b2f57600080fd5b506013546104a3565b348015610b4457600080fd5b50610908610b53366004612cb5565b611b79565b60006001600160e01b0319821663780e9d6360e01b1480610b7d5750610b7d82611c04565b92915050565b606060008054610b92906130c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbe906130c2565b8015610c0b5780601f10610be057610100808354040283529160200191610c0b565b820191906000526020600020905b815481529060010190602001808311610bee57829003601f168201915b5050505050905090565b6000610c2082611c54565b506000828152600460205260409020546001600160a01b0316610b7d565b610c49828233611c8d565b5050565b33610c57826112fb565b6001600160a01b031614610c7e5760405163251c9d6360e01b815260040160405180910390fd5b600080610c9c601254601560029054906101000a900460ff16611c9a565b91509150610ca983611cd0565b610cb4836001611d0b565b600c54610ccb906001600160a01b03163383611d47565b8160116000828254610cdd9190613112565b9091555050601454600c546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610d2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d519190613125565b118015610d615750601454601154115b15610d7157610d71601154611da6565b505050565b610d7e611fd5565b6001600160a01b038116610da557604051630930907b60e01b815260040160405180910390fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610dcf611fd5565b600a8160ff161115610df457604051631e0e9ef360e11b815260040160405180910390fd5b6015805460ff9092166101000261ff0019909216919091179055565b6001600160a01b038216610e3f57604051633250574960e11b8152600060048201526024015b60405180910390fd5b6000610e4c838333612002565b9050836001600160a01b0316816001600160a01b031614610e9a576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610e36565b50505050565b336000908152601b602052604081205490819003610ed1576040516342baf06960e11b815260040160405180910390fd5b336000908152601a602052604081208054839290610ef0908490613112565b9091555050336000818152601b6020526040812055600c54610f1e916001600160a01b039091169083611d47565b60408051338152602081018390527f80bcb52766ca6f6eae60632bb2561063d0c8a932bed7017aabb91690edf1247b91015b60405180910390a150565b610f63611fd5565b6015805460ff191660ff92909216919091179055565b6000610f8483611306565b8210610fb55760405163295f44f760e21b81526001600160a01b038416600482015260248101839052604401610e36565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d718383836040518060200160405280600081525061178d565b6000805b825181101561110c57336001600160a01b03166110328483815181106110255761102561313e565b60200260200101516112fb565b6001600160a01b0316146110595760405163251c9d6360e01b815260040160405180910390fd5b600061107d8483815181106110705761107061313e565b60200260200101516117a4565b90506110898184613112565b925042601660008685815181106110a2576110a261313e565b602002602001015181526020019081526020016000206003018190555080601660008685815181106110d6576110d661313e565b6020026020010151815260200190815260200160002060010160008282546110fe9190613112565b909155505050600101610ffd565b50336000908152601760205260408120805483929061112c908490613112565b9091555050600c54611148906001600160a01b03163383611d47565b60408051338152602081018390527ffc30cddea38e2bf4d6ea7d3f9ed3b6ad7f176419f4963bd81318067a4aee73fe910160405180910390a15050565b600061119060085490565b82106111b95760405163295f44f760e21b81526000600482015260248101839052604401610e36565b600882815481106111cc576111cc61313e565b90600052602060002001549050919050565b6111e6611fd5565b600a8160ff16111561120b57604051631e0e9ef360e11b815260040160405180910390fd5b6015805460ff909216620100000262ff000019909216919091179055565b611231611fd5565b601455565b61123e611fd5565b8051600003611260576040516312bb882360e01b815260040160405180910390fd5b600d610c49828261319a565b60085460000361128f576040516335a412b560e01b815260040160405180910390fd5b80156112c55760016112a060085490565b6112aa908361325a565b6112b4919061327c565b600e546112c19190613112565b600e555b60408051338152602081018390527fdf29796aad820e4bb192f3a8d631b76519bcd2cbe77cc85af20e9df53cece0869101610f50565b6000610b7d82611c54565b60006001600160a01b038216611332576040516322718ad960e21b815260006004820152602401610e36565b506001600160a01b031660009081526003602052604090205490565b611356611fd5565b61136060006120d7565b565b6104b082600f546113739190613112565b11156113925760405163063ff8db60e51b815260040160405180910390fd5b6000805b8381101561144657601354601054036113e15760016010556015546012546064916113c69160ff9091169061328f565b6113d0919061325a565b6012546113dd9190613112565b6012555b6012546113ee9083613112565b600f805460009081526016602052604090204260039091015554909250611416903390612129565b61142c600f546001611427906132a6565b611d0b565b600f80546001908101909155601080548201905501611396565b5060008061146483601560019054906101000a900460ff168661218e565b91509150816011600082825461147a9190613112565b9091555050600c54611497906001600160a01b031633308661220a565b601454600c546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156114e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115069190613125565b1180156115165750601454601154115b1561152657611526601154611da6565b80156115af576001600160a01b038481166000818152601960209081526040808320815180830183523381528084018881528254600180820185559387528587209251600290910290920180546001600160a01b0319169290981691909117875551950194909455918152601b90915290812080548392906115a9908490613112565b90915550505b60408051338152602081018790527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a15050505050565b606060018054610b92906130c2565b610c49338383612243565b60608183111561162c57604051638a581ab760e01b815260040160405180910390fd5b6001600160a01b03841660009081526019602052604090205480831061166557604051633aea894360e01b815260040160405180910390fd5b6000611671858561327c565b61167c906001613112565b905060008167ffffffffffffffff81111561169957611699612d36565b6040519080825280602002602001820160405280156116de57816020015b60408051808201909152600080825260208201528152602001906001900390816116b75790505b509050855b858111611780576001600160a01b03881660009081526019602052604090208054829081106117145761171461313e565b60009182526020918290206040805180820190915260029092020180546001600160a01b03168252600101549181019190915282611752898461327c565b815181106117625761176261313e565b60200260200101819052508080611778906132c2565b9150506116e3565b50925050505b9392505050565b611798848484610e10565b610e9a848484846122e2565b6000806117b083611c54565b6001600160a01b0316036117d75760405163025bf24f60e51b815260040160405180910390fd5b600082815260186020526040812054600e5461180691906117f79061240b565b61180191906132db565b61243c565b600084815260166020526040902060010154909150611786908261327c565b606061183082611c54565b50600061183b612462565b9050600081511161185b5760405180602001604052806000815250611786565b8061186584612471565b604051602001611876929190613303565b6040516020818303038152906040529392505050565b611894611fd5565b601355565b60606001600160a01b0382166118c257604051630930907b60e01b815260040160405180910390fd5b60006118cd83611306565b905060008167ffffffffffffffff8111156118ea576118ea612d36565b60405190808252806020026020018201604052801561194657816020015b6119336040518060800160405280600081526020016000815260200160008152602001600081525090565b8152602001906001900390816119085790505b50905081156117865760005b828110156119e85760006119668683610f79565b90506000611973826117a4565b604080516080810182528481526000858152601660208181528483206001015481850152838501869052600f54835252919091206003015460608201528551919250908590859081106119c8576119c861313e565b6020026020010181905250505080806119e0906132c2565b915050611952565b509392505050565b6119f8611fd5565b60058160ff161115611a1d57604051631e0e9ef360e11b815260040160405180910390fd5b6015805460ff90921663010000000263ff00000019909216919091179055565b611a45611fd5565b601554640100000000900460ff1615611a8c5760405162461bcd60e51b81526020600482015260096024820152686f6e6365206f6e6c7960b81b6044820152606401610e36565b60005b6032811015611ae857600f805460009081526016602052604090204260039091015554611abd903390612129565b611ace600f546001611427906132a6565b600f80546001908101909155601080548201905501611a8f565b506015805464ff000000001916640100000000179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611b36611fd5565b6001600160a01b038116611b6057604051631e4fbdf760e01b815260006004820152602401610e36565b611b69816120d7565b50565b611b74611fd5565b601255565b6001600160a01b0381166000908152601960209081526040808320805482518185028101850190935280835260609492939192909184015b82821015611bf9576000848152602090819020604080518082019091526002850290910180546001600160a01b03168252600190810154828401529083529092019101611bb1565b505050509050919050565b60006001600160e01b031982166380ac58cd60e01b1480611c3557506001600160e01b03198216635b5e139f60e01b145b80610b7d57506301ffc9a760e01b6001600160e01b0319831614610b7d565b6000818152600260205260408120546001600160a01b031680610b7d57604051637e27328960e01b815260048101849052602401610e36565b610d718383836001612504565b600080806064611cad60ff86168761328f565b611cb7919061325a565b905080611cc4818761327c565b92509250509250929050565b6000611cdf6000836000612002565b90506001600160a01b038116610c4957604051637e27328960e01b815260048101839052602401610e36565b600e54611d189082613332565b600083815260186020526040902054611d3191906132db565b6000928352601860205260409092209190915550565b6040516001600160a01b03838116602483015260448201839052610d7191859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505061260a565b6040805160028082526060820183526000926020830190803683375050600c5482519293506001600160a01b031691839150600090611de757611de761313e565b6001600160a01b03928316602091820292909201810191909152600b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611e40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e649190613362565b81600181518110611e7757611e7761313e565b6001600160a01b039283166020918202929092010152600c54600b5460405163095ea7b360e01b815290831660048201526024810185905291169063095ea7b3906044016020604051808303816000875af1158015611eda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611efe919061337f565b50600b5460405163791ac94760e01b81526001600160a01b039091169063791ac94790611f3890859060009086903090429060040161339c565b600060405180830381600087803b158015611f5257600080fd5b505af1158015611f66573d6000803e3d6000fd5b505050506000611f7e600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611fc8576040519150601f19603f3d011682016040523d82523d6000602084013e611fcd565b606091505b505050505050565b600a546001600160a01b031633146113605760405163118cdaa760e01b8152336004820152602401610e36565b60008061201085858561266d565b90506001600160a01b03811661206d5761206884600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612090565b846001600160a01b0316816001600160a01b031614612090576120908185612766565b6001600160a01b0385166120ac576120a7846127f7565b6120cf565b846001600160a01b0316816001600160a01b0316146120cf576120cf85856128a6565b949350505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661215357604051633250574960e11b815260006004820152602401610e36565b600061216183836000612002565b90506001600160a01b03811615610d71576040516339e3563760e11b815260006004820152602401610e36565b6000808060646121a160ff87168861328f565b6121ab919061325a565b905060006001600160a01b038516156121fe576015546064906121d8906301000000900460ff168861340d565b6121e59060ff168961328f565b6121ef919061325a565b90506121fb818361327c565b91505b90969095509350505050565b6040516001600160a01b038481166024830152838116604483015260648201839052610e9a9186918216906323b872dd90608401611d74565b6001600160a01b03821661227557604051630b61174360e31b81526001600160a01b0383166004820152602401610e36565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b15610e9a57604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290612324903390889087908790600401613426565b6020604051808303816000875af192505050801561235f575060408051601f3d908101601f1916820190925261235c91810190613459565b60015b6123c8573d80801561238d576040519150601f19603f3d011682016040523d82523d6000602084013e612392565b606091505b5080516000036123c057604051633250574960e11b81526001600160a01b0385166004820152602401610e36565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b1461240457604051633250574960e11b81526001600160a01b0385166004820152602401610e36565b5050505050565b60006001600160ff1b038211156124385760405163123baf0360e11b815260048101839052602401610e36565b5090565b60008082121561243857604051635467221960e11b815260048101839052602401610e36565b6060600d8054610b92906130c2565b6060600061247e836128f6565b600101905060008167ffffffffffffffff81111561249e5761249e612d36565b6040519080825280601f01601f1916602001820160405280156124c8576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846124d257509392505050565b808061251857506001600160a01b03821615155b156125da57600061252884611c54565b90506001600160a01b038316158015906125545750826001600160a01b0316816001600160a01b031614155b801561256757506125658184611b00565b155b156125905760405163a9fbf51f60e01b81526001600160a01b0384166004820152602401610e36565b81156125d85783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5050600090815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b600061261f6001600160a01b038416836129ce565b90508051600014158015612644575080806020019051810190612642919061337f565b155b15610d7157604051635274afe760e01b81526001600160a01b0384166004820152602401610e36565b6000828152600260205260408120546001600160a01b039081169083161561269a5761269a8184866129dc565b6001600160a01b038116156126d8576126b7600085600080612504565b6001600160a01b038116600090815260036020526040902080546000190190555b6001600160a01b03851615612707576001600160a01b0385166000908152600360205260409020805460010190555b60008481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b600061277183611306565b6000838152600760205260409020549091508082146127c4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906128099060019061327c565b600083815260096020526040812054600880549394509092849081106128315761283161313e565b9060005260206000200154905080600883815481106128525761285261313e565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061288a5761288a613476565b6001900381819060005260206000200160009055905550505050565b600060016128b384611306565b6128bd919061327c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106129355772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612961576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061297f57662386f26fc10000830492506010015b6305f5e1008310612997576305f5e100830492506008015b61271083106129ab57612710830492506004015b606483106129bd576064830492506002015b600a8310610b7d5760010192915050565b606061178683836000612a40565b6129e7838383612add565b610d71576001600160a01b038316612a1557604051637e27328960e01b815260048101829052602401610e36565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610e36565b606081471015612a655760405163cd78605960e01b8152306004820152602401610e36565b600080856001600160a01b03168486604051612a81919061348c565b60006040518083038185875af1925050503d8060008114612abe576040519150601f19603f3d011682016040523d82523d6000602084013e612ac3565b606091505b5091509150612ad3868383612b40565b9695505050505050565b60006001600160a01b038316158015906120cf5750826001600160a01b0316846001600160a01b03161480612b175750612b178484611b00565b806120cf5750506000908152600460205260409020546001600160a01b03908116911614919050565b606082612b5557612b5082612b9c565b611786565b8151158015612b6c57506001600160a01b0384163b155b15612b9557604051639996b31560e01b81526001600160a01b0385166004820152602401610e36565b5080611786565b805115612bac5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160e01b031981168114611b6957600080fd5b600060208284031215612bed57600080fd5b813561178681612bc5565b60005b83811015612c13578181015183820152602001612bfb565b50506000910152565b60008151808452612c34816020860160208601612bf8565b601f01601f19169290920160200192915050565b6020815260006117866020830184612c1c565b600060208284031215612c6d57600080fd5b5035919050565b6001600160a01b0381168114611b6957600080fd5b60008060408385031215612c9c57600080fd5b8235612ca781612c74565b946020939093013593505050565b600060208284031215612cc757600080fd5b813561178681612c74565b600060208284031215612ce457600080fd5b813560ff8116811461178657600080fd5b600080600060608486031215612d0a57600080fd5b8335612d1581612c74565b92506020840135612d2581612c74565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612d7557612d75612d36565b604052919050565b60006020808385031215612d9057600080fd5b823567ffffffffffffffff80821115612da857600080fd5b818501915085601f830112612dbc57600080fd5b813581811115612dce57612dce612d36565b8060051b9150612ddf848301612d4c565b8181529183018401918481019088841115612df957600080fd5b938501935b83851015612e1757843582529385019390850190612dfe565b98975050505050505050565b600067ffffffffffffffff831115612e3d57612e3d612d36565b612e50601f8401601f1916602001612d4c565b9050828152838383011115612e6457600080fd5b828260208301376000602084830101529392505050565b600060208284031215612e8d57600080fd5b813567ffffffffffffffff811115612ea457600080fd5b8201601f81018413612eb557600080fd5b6120cf84823560208401612e23565b60008060408385031215612ed757600080fd5b823591506020830135612ee981612c74565b809150509250929050565b8015158114611b6957600080fd5b60008060408385031215612f1557600080fd5b8235612f2081612c74565b91506020830135612ee981612ef4565b600080600060608486031215612f4557600080fd5b8335612f5081612c74565b95602085013595506040909401359392505050565b602080825282518282018190526000919060409081850190868401855b82811015612fb057815180516001600160a01b03168552860151868501529284019290850190600101612f82565b5091979650505050505050565b60008060008060808587031215612fd357600080fd5b8435612fde81612c74565b93506020850135612fee81612c74565b925060408501359150606085013567ffffffffffffffff81111561301157600080fd5b8501601f8101871361302257600080fd5b61303187823560208401612e23565b91505092959194509250565b602080825282518282018190526000919060409081850190868401855b82811015612fb05781518051855286810151878601528581015186860152606090810151908501526080909301929085019060010161305a565b600080604083850312156130a757600080fd5b82356130b281612c74565b91506020830135612ee981612c74565b600181811c908216806130d657607f821691505b6020821081036130f657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b7d57610b7d6130fc565b60006020828403121561313757600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b601f821115610d7157600081815260208120601f850160051c8101602086101561317b5750805b601f850160051c820191505b81811015611fcd57828155600101613187565b815167ffffffffffffffff8111156131b4576131b4612d36565b6131c8816131c284546130c2565b84613154565b602080601f8311600181146131fd57600084156131e55750858301515b600019600386901b1c1916600185901b178555611fcd565b600085815260208120601f198616915b8281101561322c5788860151825594840194600190910190840161320d565b508582101561324a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008261327757634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610b7d57610b7d6130fc565b8082028115828204841417610b7d57610b7d6130fc565b6000600160ff1b82016132bb576132bb6130fc565b5060000390565b6000600182016132d4576132d46130fc565b5060010190565b80820182811260008312801582168215821617156132fb576132fb6130fc565b505092915050565b60008351613315818460208801612bf8565b835190830190613329818360208801612bf8565b01949350505050565b80820260008212600160ff1b8414161561334e5761334e6130fc565b8181058314821517610b7d57610b7d6130fc565b60006020828403121561337457600080fd5b815161178681612c74565b60006020828403121561339157600080fd5b815161178681612ef4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156133ec5784516001600160a01b0316835293830193918301916001016133c7565b50506001600160a01b03969096166060850152505050608001529392505050565b60ff8281168282160390811115610b7d57610b7d6130fc565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ad390830184612c1c565b60006020828403121561346b57600080fd5b815161178681612bc5565b634e487b7160e01b600052603160045260246000fd5b6000825161349e818460208701612bf8565b919091019291505056fea2646970667358221220b69f35bdf9f79c858ecf008b087d3016f1cfbdef67d0cfb6d1009aae36ac7fa764736f6c63430008140033

Loading...
Loading
Loading...
Loading
[ 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.