ETH Price: $2,888.10 (-10.36%)
Gas: 13 Gwei

Token

Ti PASS-4D Pocket (Ti PASS)
 

Overview

Max Total Supply

559 Ti PASS

Holders

505

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Ti PASS
0x4a8553a16835affab99d4b6172765ae1171c309a
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xb16c5E73...BA6Ba71eB
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
TiPass

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 16 : 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 16 : 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 16 : 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 4 of 16 : 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 5 of 16 : 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 6 of 16 : 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 7 of 16 : 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 8 of 16 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.20;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the Merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates Merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     *@dev The multiproof provided is not valid.
     */
    error MerkleProofInvalidMultiproof();

    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the Merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the Merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Sorts the pair (a, b) and hashes the result.
     */
    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    /**
     * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.
     */
    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 9 of 16 : 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 10 of 16 : 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 11 of 16 : 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 12 of 16 : 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 13 of 16 : 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 14 of 16 : IAccountProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IAccountProxy {
    function initialize(address implementation) external;
}

File 15 of 16 : IERC6551Registry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IERC6551Registry {
    /**
     * @dev The registry MUST emit the ERC6551AccountCreated event upon successful account creation.
     */
    event ERC6551AccountCreated(
        address account,
        address indexed implementation,
        bytes32 salt,
        uint256 chainId,
        address indexed tokenContract,
        uint256 indexed tokenId
    );

    /**
     * @dev The registry MUST revert with AccountCreationFailed error if the create2 operation fails.
     */
    error AccountCreationFailed();

    /**
     * @dev Creates a token bound account for a non-fungible token.
     *
     * If account has already been created, returns the account address without calling create2.
     *
     * Emits ERC6551AccountCreated event.
     *
     * @return account The address of the token bound account
     */
    function createAccount(
        address implementation,
        bytes32 salt,
        uint256 chainId,
        address tokenContract,
        uint256 tokenId
    ) external returns (address account);

    /**
     * @dev Returns the computed token bound account address for a non-fungible token.
     *
     * @return account The address of the token bound account
     */
    function account(
        address implementation,
        bytes32 salt,
        uint256 chainId,
        address tokenContract,
        uint256 tokenId
    ) external view returns (address account);
}

File 16 of 16 : TiPass.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./interface/IERC6551Registry.sol";
import "./interface/IAccountProxy.sol";

contract TiPass is ERC721, Ownable(msg.sender) {
    using Strings for uint256;
    using MerkleProof for bytes32[];
    bytes32 public whiteListRoot;
    bytes32 public freeRoot;
    uint256 public totalSupply;
    // 0 not started, 1 for whitelist, 2 for public
    uint8 public mintStage;
    string public baseUrl;
    mapping(address => uint8) public userMintedCount;
    mapping(address => bool) public whiteListMinted;

    uint256 public constant MAX_MINT_LIMIT = 1500;
    uint256 public constant WHITE_LIST_MINT_PRICE = 8 * 10 ** 16 wei;
    uint256 public constant PUBLIC_MINT_PRICE = 8 * 10 ** 16 wei;

    IERC6551Registry public constant registry =
        IERC6551Registry(0x000000006551c19487814612e58FE06813775758);
    address public proxy = 0x55266d75D1a14E4572138116aF39863Ed6596E7F;
    address public account = 0x41C8f39463A868d3A88af00cd0fe7102F30E44eC;

    event Minted(address indexed to, uint256 indexed tokenId);

    constructor(string memory _baseUrl, uint8 _mintStage, bytes32 _whiteListRoot, bytes32 _freeRoot) ERC721("Ti PASS-4D Pocket", "Ti PASS") {
        setBaseUrl(_baseUrl);
        whiteListRoot = _whiteListRoot;
        freeRoot = _freeRoot;
        mintStage = _mintStage;
    }

    function setWhiteListRoot(bytes32 _whiteListRoot) public onlyOwner{
        whiteListRoot = _whiteListRoot;
    }

    function setFreeRoot(bytes32 _freeRoot) public onlyOwner{
        freeRoot = _freeRoot;
    }

    function setMintStage(uint8 _mintStage) public onlyOwner{
        mintStage = _mintStage;
    }

    function whiteListMint(bytes32[] calldata _merkleProof) public payable {
        require(mintStage == 1, "Whitelist not started");
        require(!whiteListMinted[msg.sender], "You have already minted");
        require(MerkleProof.verify(_merkleProof, whiteListRoot, keccak256(abi.encodePacked(msg.sender))), "Not in whitelist");
        require(msg.value >= WHITE_LIST_MINT_PRICE, "Not enough ether to pay");
        mint(msg.sender);
        userMintedCount[msg.sender] += 1;
        whiteListMinted[msg.sender] = true;
    }

    function freeMint(bytes32[] calldata _merkleProof) public{
        require(mintStage == 1, "Whitelist not started");
        require(!whiteListMinted[msg.sender], "You have already minted");
        require(MerkleProof.verify(_merkleProof, freeRoot, keccak256(abi.encodePacked(msg.sender))), "Not in freelist");
        mint(msg.sender);
        userMintedCount[msg.sender] += 1;
        whiteListMinted[msg.sender] = true;
    }

    function publicMint(uint8 mintAmount) public payable {
        require(mintStage == 2, "Public mint not started");
        require(mintAmount > 0 && mintAmount + userMintedCount[msg.sender] <= 3, "Mint amount should be between 1-3");
        require(msg.value >= PUBLIC_MINT_PRICE * mintAmount, "Not enough ether to pay");
        for(uint i = 0; i< mintAmount;i++){
            mint(msg.sender);
        }
        userMintedCount[msg.sender] += mintAmount;
    }

    function setBaseUrl(string memory _baseUrl) public onlyOwner {
        baseUrl = _baseUrl;
    }

    function tokenURI(
        uint256 tokenId
    ) public view override returns (string memory) {
        return string(abi.encodePacked(baseUrl, tokenId.toString()));
    }

    function mint(address recipient) private {
        require(totalSupply < MAX_MINT_LIMIT, "Reached mint limit");
        _mint(recipient, totalSupply);
        deployTba();
        totalSupply++;
    }

    function getChainId() public view returns (uint256) {
        uint256 chainId;
        assembly {
            chainId := chainid()
        }
        return chainId;
    }

    function deployTba() private {
        address tba = registry.account(
            proxy,
            0,
            getChainId(),
            address(this),
            totalSupply
        );
        if (tba.code.length == 0) {
            registry.createAccount(
                proxy,
                0,
                getChainId(),
                address(this),
                totalSupply
            );
            IAccountProxy(tba).initialize(account);
        }
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(owner()).transfer(balance);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUrl","type":"string"},{"internalType":"uint8","name":"_mintStage","type":"uint8"},{"internalType":"bytes32","name":"_whiteListRoot","type":"bytes32"},{"internalType":"bytes32","name":"_freeRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"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"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","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":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":"MAX_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITE_LIST_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"account","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"baseUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"mintStage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"mintAmount","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"registry","outputs":[{"internalType":"contract IERC6551Registry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"_baseUrl","type":"string"}],"name":"setBaseUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_freeRoot","type":"bytes32"}],"name":"setFreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintStage","type":"uint8"}],"name":"setMintStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whiteListRoot","type":"bytes32"}],"name":"setWhiteListRoot","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":"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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedCount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040527355266d75d1a14e4572138116af39863ed6596e7f600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507341c8f39463a868d3a88af00cd0fe7102f30e44ec600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000bb57600080fd5b5060405162004834380380620048348339818101604052810190620000e191906200060a565b336040518060400160405280601181526020017f546920504153532d344420506f636b65740000000000000000000000000000008152506040518060400160405280600781526020017f546920504153530000000000000000000000000000000000000000000000000081525081600090816200015f9190620008e6565b508060019081620001719190620008e6565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001e95760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001e0919062000a12565b60405180910390fd5b620001fa816200023f60201b60201c565b506200020c846200030560201b60201c565b816007819055508060088190555082600a60006101000a81548160ff021916908360ff1602179055505050505062000a2f565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003156200032a60201b60201c565b80600b9081620003269190620008e6565b5050565b6200033a620003cc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000360620003d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003ca576200038c620003cc60201b60201c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401620003c1919062000a12565b60405180910390fd5b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000467826200041c565b810181811067ffffffffffffffff821117156200048957620004886200042d565b5b80604052505050565b60006200049e620003fe565b9050620004ac82826200045c565b919050565b600067ffffffffffffffff821115620004cf57620004ce6200042d565b5b620004da826200041c565b9050602081019050919050565b60005b8381101562000507578082015181840152602081019050620004ea565b60008484015250505050565b60006200052a6200052484620004b1565b62000492565b90508281526020810184848401111562000549576200054862000417565b5b62000556848285620004e7565b509392505050565b600082601f83011262000576576200057562000412565b5b81516200058884826020860162000513565b91505092915050565b600060ff82169050919050565b620005a98162000591565b8114620005b557600080fd5b50565b600081519050620005c9816200059e565b92915050565b6000819050919050565b620005e481620005cf565b8114620005f057600080fd5b50565b6000815190506200060481620005d9565b92915050565b6000806000806080858703121562000627576200062662000408565b5b600085015167ffffffffffffffff8111156200064857620006476200040d565b5b62000656878288016200055e565b94505060206200066987828801620005b8565b93505060406200067c87828801620005f3565b92505060606200068f87828801620005f3565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006ee57607f821691505b602082108103620007045762000703620006a6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200076e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200072f565b6200077a86836200072f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007c7620007c1620007bb8462000792565b6200079c565b62000792565b9050919050565b6000819050919050565b620007e383620007a6565b620007fb620007f282620007ce565b8484546200073c565b825550505050565b600090565b6200081262000803565b6200081f818484620007d8565b505050565b5b8181101562000847576200083b60008262000808565b60018101905062000825565b5050565b601f821115620008965762000860816200070a565b6200086b846200071f565b810160208510156200087b578190505b620008936200088a856200071f565b83018262000824565b50505b505050565b600082821c905092915050565b6000620008bb600019846008026200089b565b1980831691505092915050565b6000620008d68383620008a8565b9150826002028217905092915050565b620008f1826200069b565b67ffffffffffffffff8111156200090d576200090c6200042d565b5b620009198254620006d5565b620009268282856200084b565b600060209050601f8311600181146200095e576000841562000949578287015190505b620009558582620008c8565b865550620009c5565b601f1984166200096e866200070a565b60005b82811015620009985784890151825560018201915060208501945060208101905062000971565b86831015620009b85784890151620009b4601f891682620008a8565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009fa82620009cd565b9050919050565b62000a0c81620009ed565b82525050565b600060208201905062000a29600083018462000a01565b92915050565b613df58062000a3f6000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063a22cb465116100ab578063e985e9c51161006f578063e985e9c5146107c7578063ec55688914610804578063f150a0491461082f578063f2fde38b1461085a578063f5fe2ac51461088357610225565b8063a22cb465146106e6578063b88d4fde1461070f578063bb0ba35d14610738578063c7c3268b14610761578063c87b56dd1461078a57610225565b8063858e83b5116100f2578063858e83b51461062f57806388d15d501461064b5780638da5cb5b1461067457806395d89b411461069f57806397254e55146106ca57610225565b806370a0823114610585578063715018a6146105c25780637b103999146105d95780637f59230f1461060457610225565b80633ccfd60b116101b15780635bcabf04116101755780635bcabf041461049c5780635dab2420146104c75780636352211e146104f257806365f4fd121461052f5780636bde26271461055a57610225565b80633ccfd60b146103cb5780633ed50bb3146103e257806342842e0e1461041f57806345149bb3146104485780634df34e781461047157610225565b806310a44f89116101f857806310a44f89146102f857806318160ddd146103215780631a8f0e241461034c57806323b872dd146103775780633408e470146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612a37565b6108c0565b60405161025e9190612a7f565b60405180910390f35b34801561027357600080fd5b5061027c6109a2565b6040516102899190612b2a565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612b82565b610a34565b6040516102c69190612bf0565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612c37565b610a50565b005b34801561030457600080fd5b5061031f600480360381019061031a9190612cad565b610a66565b005b34801561032d57600080fd5b50610336610a78565b6040516103439190612ce9565b60405180910390f35b34801561035857600080fd5b50610361610a7e565b60405161036e9190612ce9565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190612d04565b610a8a565b005b3480156103ac57600080fd5b506103b5610b8c565b6040516103c29190612ce9565b60405180910390f35b3480156103d757600080fd5b506103e0610b99565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612d57565b610bf7565b6040516104169190612a7f565b60405180910390f35b34801561042b57600080fd5b5061044660048036038101906104419190612d04565b610c17565b005b34801561045457600080fd5b5061046f600480360381019061046a9190612cad565b610c37565b005b34801561047d57600080fd5b50610486610c49565b6040516104939190612d93565b60405180910390f35b3480156104a857600080fd5b506104b1610c4f565b6040516104be9190612b2a565b60405180910390f35b3480156104d357600080fd5b506104dc610cdd565b6040516104e99190612bf0565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190612b82565b610d03565b6040516105269190612bf0565b60405180910390f35b34801561053b57600080fd5b50610544610d15565b6040516105519190612d93565b60405180910390f35b34801561056657600080fd5b5061056f610d1b565b60405161057c9190612ce9565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612d57565b610d27565b6040516105b99190612ce9565b60405180910390f35b3480156105ce57600080fd5b506105d7610de1565b005b3480156105e557600080fd5b506105ee610df5565b6040516105fb9190612e0d565b60405180910390f35b34801561061057600080fd5b50610619610e09565b6040516106269190612ce9565b60405180910390f35b61064960048036038101906106449190612e61565b610e0f565b005b34801561065757600080fd5b50610672600480360381019061066d9190612ef3565b611005565b005b34801561068057600080fd5b50610689611273565b6040516106969190612bf0565b60405180910390f35b3480156106ab57600080fd5b506106b461129d565b6040516106c19190612b2a565b60405180910390f35b6106e460048036038101906106df9190612ef3565b61132f565b005b3480156106f257600080fd5b5061070d60048036038101906107089190612f6c565b6115e8565b005b34801561071b57600080fd5b50610736600480360381019061073191906130dc565b6115fe565b005b34801561074457600080fd5b5061075f600480360381019061075a9190612e61565b61161b565b005b34801561076d57600080fd5b5061078860048036038101906107839190613200565b611641565b005b34801561079657600080fd5b506107b160048036038101906107ac9190612b82565b61165c565b6040516107be9190612b2a565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190613249565b611690565b6040516107fb9190612a7f565b60405180910390f35b34801561081057600080fd5b50610819611724565b6040516108269190612bf0565b60405180910390f35b34801561083b57600080fd5b5061084461174a565b6040516108519190613298565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c9190612d57565b61175d565b005b34801561088f57600080fd5b506108aa60048036038101906108a59190612d57565b6117e3565b6040516108b79190613298565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099b575061099a82611803565b5b9050919050565b6060600080546109b1906132e2565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd906132e2565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b5050505050905090565b6000610a3f8261186d565b50610a49826118f5565b9050919050565b610a628282610a5d611932565b61193a565b5050565b610a6e61194c565b8060088190555050565b60095481565b67011c37937e08000081565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610afc5760006040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610af39190612bf0565b60405180910390fd5b6000610b108383610b0b611932565b6119d3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b86578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610b7d93929190613313565b60405180910390fd5b50505050565b6000804690508091505090565b610ba161194c565b6000479050610bae611273565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bf3573d6000803e3d6000fd5b5050565b600d6020528060005260406000206000915054906101000a900460ff1681565b610c32838383604051806020016040528060008152506115fe565b505050565b610c3f61194c565b8060078190555050565b60085481565b600b8054610c5c906132e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c88906132e2565b8015610cd55780601f10610caa57610100808354040283529160200191610cd5565b820191906000526020600020905b815481529060010190602001808311610cb857829003601f168201915b505050505081565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610d0e8261186d565b9050919050565b60075481565b67011c37937e08000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d9a5760006040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610d919190612bf0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610de961194c565b610df36000611bed565b565b6f6551c19487814612e58fe0681377575881565b6105dc81565b6002600a60009054906101000a900460ff1660ff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90613396565b60405180910390fd5b60008160ff16118015610ed257506003600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1682610ecc91906133e5565b60ff1611155b610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f089061348c565b60405180910390fd5b8060ff1667011c37937e080000610f2891906134ac565b341015610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f619061353a565b60405180910390fd5b60005b8160ff16811015610f8e57610f8133611cb3565b8080600101915050610f6d565b5080600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16610fea91906133e5565b92506101000a81548160ff021916908360ff16021790555050565b6001600a60009054906101000a900460ff1660ff161461105a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611051906135a6565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90613612565b60405180910390fd5b61115b828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060085433604051602001611140919061367a565b60405160208183030381529060405280519060200120611d28565b61119a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611191906136e1565b60405180910390fd5b6111a333611cb3565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166111ff91906133e5565b92506101000a81548160ff021916908360ff1602179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112ac906132e2565b80601f01602080910402602001604051908101604052809291908181526020018280546112d8906132e2565b80156113255780601f106112fa57610100808354040283529160200191611325565b820191906000526020600020905b81548152906001019060200180831161130857829003601f168201915b5050505050905090565b6001600a60009054906101000a900460ff1660ff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b906135a6565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890613612565b60405180910390fd5b611485828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506007543360405160200161146a919061367a565b60405160208183030381529060405280519060200120611d28565b6114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb9061374d565b60405180910390fd5b67011c37937e08000034101561150f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115069061353a565b60405180910390fd5b61151833611cb3565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661157491906133e5565b92506101000a81548160ff021916908360ff1602179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6115fa6115f3611932565b8383611d3f565b5050565b611609848484610a8a565b61161584848484611eae565b50505050565b61162361194c565b80600a60006101000a81548160ff021916908360ff16021790555050565b61164961194c565b80600b9081611658919061390f565b5050565b6060600b61166983612065565b60405160200161167a929190613aa0565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900460ff1681565b61176561194c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117d75760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016117ce9190612bf0565b60405180910390fd5b6117e081611bed565b50565b600c6020528060005260406000206000915054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008061187983612133565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118ec57826040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016118e39190612ce9565b60405180910390fd5b80915050919050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600033905090565b6119478383836001612170565b505050565b611954611932565b73ffffffffffffffffffffffffffffffffffffffff16611972611273565b73ffffffffffffffffffffffffffffffffffffffff16146119d157611995611932565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016119c89190612bf0565b60405180910390fd5b565b6000806119df84612133565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611a2157611a20818486612335565b5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ab257611a63600085600080612170565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611b35576001600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b846002600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6105dc60095410611cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf090613b10565b60405180910390fd5b611d05816009546123f9565b611d0d6124f2565b60096000815480929190611d2090613b30565b919050555050565b600082611d358584612725565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611db057816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611da79190612bf0565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ea19190612a7f565b60405180910390a3505050565b60008373ffffffffffffffffffffffffffffffffffffffff163b111561205f578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ef2611932565b8685856040518563ffffffff1660e01b8152600401611f149493929190613bcd565b6020604051808303816000875af1925050508015611f5057506040513d601f19601f82011682018060405250810190611f4d9190613c2e565b60015b611fd4573d8060008114611f80576040519150601f19603f3d011682016040523d82523d6000602084013e611f85565b606091505b506000815103611fcc57836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401611fc39190612bf0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461205d57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016120549190612bf0565b60405180910390fd5b505b50505050565b60606000600161207484612775565b01905060008167ffffffffffffffff81111561209357612092612fb1565b5b6040519080825280601f01601f1916602001820160405280156120c55781602001600182028036833780820191505090505b509050600082602001820190505b600115612128578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161211c5761211b613c5b565b5b049450600085036120d3575b819350505050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b80806121a95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156122dd5760006121b98461186d565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561222457508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b801561223757506122358184611690565b155b1561227957826040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526004016122709190612bf0565b60405180910390fd5b81156122db57838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b836004600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b6123408383836128c8565b6123f457600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123b557806040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016123ac9190612ce9565b60405180910390fd5b81816040517f177e802f0000000000000000000000000000000000000000000000000000000081526004016123eb929190613c8a565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361246b5760006040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016124629190612bf0565b60405180910390fd5b6000612479838360006119d3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124ed5760006040517f73c6ac6e0000000000000000000000000000000000000000000000000000000081526004016124e49190612bf0565b60405180910390fd5b505050565b60006f6551c19487814612e58fe0681377575873ffffffffffffffffffffffffffffffffffffffff1663246a0021600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600061254d610b8c565b306009546040518663ffffffff1660e01b8152600401612571959493929190613cfb565b602060405180830381865afa15801561258e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125b29190613d63565b905060008173ffffffffffffffffffffffffffffffffffffffff163b03612722576f6551c19487814612e58fe0681377575873ffffffffffffffffffffffffffffffffffffffff16638a54c52f600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600061262c610b8c565b306009546040518663ffffffff1660e01b8152600401612650959493929190613cfb565b6020604051808303816000875af115801561266f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126939190613d63565b508073ffffffffffffffffffffffffffffffffffffffff1663c4d66de8600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016126ef9190612bf0565b600060405180830381600087803b15801561270957600080fd5b505af115801561271d573d6000803e3d6000fd5b505050505b50565b60008082905060005b845181101561276a5761275b8286838151811061274e5761274d613d90565b5b6020026020010151612989565b9150808060010191505061272e565b508091505092915050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106127d3577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816127c9576127c8613c5b565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612810576d04ee2d6d415b85acef8100000000838161280657612805613c5b565b5b0492506020810190505b662386f26fc10000831061283f57662386f26fc10000838161283557612834613c5b565b5b0492506010810190505b6305f5e1008310612868576305f5e100838161285e5761285d613c5b565b5b0492506008810190505b612710831061288d57612710838161288357612882613c5b565b5b0492506004810190505b606483106128b057606483816128a6576128a5613c5b565b5b0492506002810190505b600a83106128bf576001810190505b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561298057508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061294157506129408484611690565b5b8061297f57508273ffffffffffffffffffffffffffffffffffffffff16612967836118f5565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b60008183106129a15761299c82846129b4565b6129ac565b6129ab83836129b4565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a14816129df565b8114612a1f57600080fd5b50565b600081359050612a3181612a0b565b92915050565b600060208284031215612a4d57612a4c6129d5565b5b6000612a5b84828501612a22565b91505092915050565b60008115159050919050565b612a7981612a64565b82525050565b6000602082019050612a946000830184612a70565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ad4578082015181840152602081019050612ab9565b60008484015250505050565b6000601f19601f8301169050919050565b6000612afc82612a9a565b612b068185612aa5565b9350612b16818560208601612ab6565b612b1f81612ae0565b840191505092915050565b60006020820190508181036000830152612b448184612af1565b905092915050565b6000819050919050565b612b5f81612b4c565b8114612b6a57600080fd5b50565b600081359050612b7c81612b56565b92915050565b600060208284031215612b9857612b976129d5565b5b6000612ba684828501612b6d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bda82612baf565b9050919050565b612bea81612bcf565b82525050565b6000602082019050612c056000830184612be1565b92915050565b612c1481612bcf565b8114612c1f57600080fd5b50565b600081359050612c3181612c0b565b92915050565b60008060408385031215612c4e57612c4d6129d5565b5b6000612c5c85828601612c22565b9250506020612c6d85828601612b6d565b9150509250929050565b6000819050919050565b612c8a81612c77565b8114612c9557600080fd5b50565b600081359050612ca781612c81565b92915050565b600060208284031215612cc357612cc26129d5565b5b6000612cd184828501612c98565b91505092915050565b612ce381612b4c565b82525050565b6000602082019050612cfe6000830184612cda565b92915050565b600080600060608486031215612d1d57612d1c6129d5565b5b6000612d2b86828701612c22565b9350506020612d3c86828701612c22565b9250506040612d4d86828701612b6d565b9150509250925092565b600060208284031215612d6d57612d6c6129d5565b5b6000612d7b84828501612c22565b91505092915050565b612d8d81612c77565b82525050565b6000602082019050612da86000830184612d84565b92915050565b6000819050919050565b6000612dd3612dce612dc984612baf565b612dae565b612baf565b9050919050565b6000612de582612db8565b9050919050565b6000612df782612dda565b9050919050565b612e0781612dec565b82525050565b6000602082019050612e226000830184612dfe565b92915050565b600060ff82169050919050565b612e3e81612e28565b8114612e4957600080fd5b50565b600081359050612e5b81612e35565b92915050565b600060208284031215612e7757612e766129d5565b5b6000612e8584828501612e4c565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612eb357612eb2612e8e565b5b8235905067ffffffffffffffff811115612ed057612ecf612e93565b5b602083019150836020820283011115612eec57612eeb612e98565b5b9250929050565b60008060208385031215612f0a57612f096129d5565b5b600083013567ffffffffffffffff811115612f2857612f276129da565b5b612f3485828601612e9d565b92509250509250929050565b612f4981612a64565b8114612f5457600080fd5b50565b600081359050612f6681612f40565b92915050565b60008060408385031215612f8357612f826129d5565b5b6000612f9185828601612c22565b9250506020612fa285828601612f57565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fe982612ae0565b810181811067ffffffffffffffff8211171561300857613007612fb1565b5b80604052505050565b600061301b6129cb565b90506130278282612fe0565b919050565b600067ffffffffffffffff82111561304757613046612fb1565b5b61305082612ae0565b9050602081019050919050565b82818337600083830152505050565b600061307f61307a8461302c565b613011565b90508281526020810184848401111561309b5761309a612fac565b5b6130a684828561305d565b509392505050565b600082601f8301126130c3576130c2612e8e565b5b81356130d384826020860161306c565b91505092915050565b600080600080608085870312156130f6576130f56129d5565b5b600061310487828801612c22565b945050602061311587828801612c22565b935050604061312687828801612b6d565b925050606085013567ffffffffffffffff811115613147576131466129da565b5b613153878288016130ae565b91505092959194509250565b600067ffffffffffffffff82111561317a57613179612fb1565b5b61318382612ae0565b9050602081019050919050565b60006131a361319e8461315f565b613011565b9050828152602081018484840111156131bf576131be612fac565b5b6131ca84828561305d565b509392505050565b600082601f8301126131e7576131e6612e8e565b5b81356131f7848260208601613190565b91505092915050565b600060208284031215613216576132156129d5565b5b600082013567ffffffffffffffff811115613234576132336129da565b5b613240848285016131d2565b91505092915050565b600080604083850312156132605761325f6129d5565b5b600061326e85828601612c22565b925050602061327f85828601612c22565b9150509250929050565b61329281612e28565b82525050565b60006020820190506132ad6000830184613289565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132fa57607f821691505b60208210810361330d5761330c6132b3565b5b50919050565b60006060820190506133286000830186612be1565b6133356020830185612cda565b6133426040830184612be1565b949350505050565b7f5075626c6963206d696e74206e6f742073746172746564000000000000000000600082015250565b6000613380601783612aa5565b915061338b8261334a565b602082019050919050565b600060208201905081810360008301526133af81613373565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133f082612e28565b91506133fb83612e28565b9250828201905060ff811115613414576134136133b6565b5b92915050565b7f4d696e7420616d6f756e742073686f756c64206265206265747765656e20312d60008201527f3300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613476602183612aa5565b91506134818261341a565b604082019050919050565b600060208201905081810360008301526134a581613469565b9050919050565b60006134b782612b4c565b91506134c283612b4c565b92508282026134d081612b4c565b915082820484148315176134e7576134e66133b6565b5b5092915050565b7f4e6f7420656e6f75676820657468657220746f20706179000000000000000000600082015250565b6000613524601783612aa5565b915061352f826134ee565b602082019050919050565b6000602082019050818103600083015261355381613517565b9050919050565b7f57686974656c697374206e6f7420737461727465640000000000000000000000600082015250565b6000613590601583612aa5565b915061359b8261355a565b602082019050919050565b600060208201905081810360008301526135bf81613583565b9050919050565b7f596f75206861766520616c7265616479206d696e746564000000000000000000600082015250565b60006135fc601783612aa5565b9150613607826135c6565b602082019050919050565b6000602082019050818103600083015261362b816135ef565b9050919050565b60008160601b9050919050565b600061364a82613632565b9050919050565b600061365c8261363f565b9050919050565b61367461366f82612bcf565b613651565b82525050565b60006136868284613663565b60148201915081905092915050565b7f4e6f7420696e20667265656c6973740000000000000000000000000000000000600082015250565b60006136cb600f83612aa5565b91506136d682613695565b602082019050919050565b600060208201905081810360008301526136fa816136be565b9050919050565b7f4e6f7420696e2077686974656c69737400000000000000000000000000000000600082015250565b6000613737601083612aa5565b915061374282613701565b602082019050919050565b600060208201905081810360008301526137668161372a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137cf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613792565b6137d98683613792565b95508019841693508086168417925050509392505050565b600061380c61380761380284612b4c565b612dae565b612b4c565b9050919050565b6000819050919050565b613826836137f1565b61383a61383282613813565b84845461379f565b825550505050565b600090565b61384f613842565b61385a81848461381d565b505050565b5b8181101561387e57613873600082613847565b600181019050613860565b5050565b601f8211156138c3576138948161376d565b61389d84613782565b810160208510156138ac578190505b6138c06138b885613782565b83018261385f565b50505b505050565b600082821c905092915050565b60006138e6600019846008026138c8565b1980831691505092915050565b60006138ff83836138d5565b9150826002028217905092915050565b61391882612a9a565b67ffffffffffffffff81111561393157613930612fb1565b5b61393b82546132e2565b613946828285613882565b600060209050601f8311600181146139795760008415613967578287015190505b61397185826138f3565b8655506139d9565b601f1984166139878661376d565b60005b828110156139af5784890151825560018201915060208501945060208101905061398a565b868310156139cc57848901516139c8601f8916826138d5565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b600081546139f9816132e2565b613a0381866139e1565b94506001821660008114613a1e5760018114613a3357613a66565b60ff1983168652811515820286019350613a66565b613a3c8561376d565b60005b83811015613a5e57815481890152600182019150602081019050613a3f565b838801955050505b50505092915050565b6000613a7a82612a9a565b613a8481856139e1565b9350613a94818560208601612ab6565b80840191505092915050565b6000613aac82856139ec565b9150613ab88284613a6f565b91508190509392505050565b7f52656163686564206d696e74206c696d69740000000000000000000000000000600082015250565b6000613afa601283612aa5565b9150613b0582613ac4565b602082019050919050565b60006020820190508181036000830152613b2981613aed565b9050919050565b6000613b3b82612b4c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613b6d57613b6c6133b6565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000613b9f82613b78565b613ba98185613b83565b9350613bb9818560208601612ab6565b613bc281612ae0565b840191505092915050565b6000608082019050613be26000830187612be1565b613bef6020830186612be1565b613bfc6040830185612cda565b8181036060830152613c0e8184613b94565b905095945050505050565b600081519050613c2881612a0b565b92915050565b600060208284031215613c4457613c436129d5565b5b6000613c5284828501613c19565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000604082019050613c9f6000830185612be1565b613cac6020830184612cda565b9392505050565b6000819050919050565b60008160001b9050919050565b6000613ce5613ce0613cdb84613cb3565b613cbd565b612c77565b9050919050565b613cf581613cca565b82525050565b600060a082019050613d106000830188612be1565b613d1d6020830187613cec565b613d2a6040830186612cda565b613d376060830185612be1565b613d446080830184612cda565b9695505050505050565b600081519050613d5d81612c0b565b92915050565b600060208284031215613d7957613d786129d5565b5b6000613d8784828501613d4e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e2af611b3be058dc4534f6ba272038a76b17c2b410d5afe53d8fd9e35582986e64736f6c6343000818003300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001917e90e481d692357bf5123faaaa8000cc655c067ba9f4283d66f40b8c28ddf642f9e9846f5c5d587018e9fb606f76ee3f426b0f3707fe559763a8ada6330338000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f6170692d746573742e7469746974692e696f2f6d657461646174612f7469706173732f000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063a22cb465116100ab578063e985e9c51161006f578063e985e9c5146107c7578063ec55688914610804578063f150a0491461082f578063f2fde38b1461085a578063f5fe2ac51461088357610225565b8063a22cb465146106e6578063b88d4fde1461070f578063bb0ba35d14610738578063c7c3268b14610761578063c87b56dd1461078a57610225565b8063858e83b5116100f2578063858e83b51461062f57806388d15d501461064b5780638da5cb5b1461067457806395d89b411461069f57806397254e55146106ca57610225565b806370a0823114610585578063715018a6146105c25780637b103999146105d95780637f59230f1461060457610225565b80633ccfd60b116101b15780635bcabf04116101755780635bcabf041461049c5780635dab2420146104c75780636352211e146104f257806365f4fd121461052f5780636bde26271461055a57610225565b80633ccfd60b146103cb5780633ed50bb3146103e257806342842e0e1461041f57806345149bb3146104485780634df34e781461047157610225565b806310a44f89116101f857806310a44f89146102f857806318160ddd146103215780631a8f0e241461034c57806323b872dd146103775780633408e470146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612a37565b6108c0565b60405161025e9190612a7f565b60405180910390f35b34801561027357600080fd5b5061027c6109a2565b6040516102899190612b2a565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612b82565b610a34565b6040516102c69190612bf0565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612c37565b610a50565b005b34801561030457600080fd5b5061031f600480360381019061031a9190612cad565b610a66565b005b34801561032d57600080fd5b50610336610a78565b6040516103439190612ce9565b60405180910390f35b34801561035857600080fd5b50610361610a7e565b60405161036e9190612ce9565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190612d04565b610a8a565b005b3480156103ac57600080fd5b506103b5610b8c565b6040516103c29190612ce9565b60405180910390f35b3480156103d757600080fd5b506103e0610b99565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612d57565b610bf7565b6040516104169190612a7f565b60405180910390f35b34801561042b57600080fd5b5061044660048036038101906104419190612d04565b610c17565b005b34801561045457600080fd5b5061046f600480360381019061046a9190612cad565b610c37565b005b34801561047d57600080fd5b50610486610c49565b6040516104939190612d93565b60405180910390f35b3480156104a857600080fd5b506104b1610c4f565b6040516104be9190612b2a565b60405180910390f35b3480156104d357600080fd5b506104dc610cdd565b6040516104e99190612bf0565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190612b82565b610d03565b6040516105269190612bf0565b60405180910390f35b34801561053b57600080fd5b50610544610d15565b6040516105519190612d93565b60405180910390f35b34801561056657600080fd5b5061056f610d1b565b60405161057c9190612ce9565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612d57565b610d27565b6040516105b99190612ce9565b60405180910390f35b3480156105ce57600080fd5b506105d7610de1565b005b3480156105e557600080fd5b506105ee610df5565b6040516105fb9190612e0d565b60405180910390f35b34801561061057600080fd5b50610619610e09565b6040516106269190612ce9565b60405180910390f35b61064960048036038101906106449190612e61565b610e0f565b005b34801561065757600080fd5b50610672600480360381019061066d9190612ef3565b611005565b005b34801561068057600080fd5b50610689611273565b6040516106969190612bf0565b60405180910390f35b3480156106ab57600080fd5b506106b461129d565b6040516106c19190612b2a565b60405180910390f35b6106e460048036038101906106df9190612ef3565b61132f565b005b3480156106f257600080fd5b5061070d60048036038101906107089190612f6c565b6115e8565b005b34801561071b57600080fd5b50610736600480360381019061073191906130dc565b6115fe565b005b34801561074457600080fd5b5061075f600480360381019061075a9190612e61565b61161b565b005b34801561076d57600080fd5b5061078860048036038101906107839190613200565b611641565b005b34801561079657600080fd5b506107b160048036038101906107ac9190612b82565b61165c565b6040516107be9190612b2a565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190613249565b611690565b6040516107fb9190612a7f565b60405180910390f35b34801561081057600080fd5b50610819611724565b6040516108269190612bf0565b60405180910390f35b34801561083b57600080fd5b5061084461174a565b6040516108519190613298565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c9190612d57565b61175d565b005b34801561088f57600080fd5b506108aa60048036038101906108a59190612d57565b6117e3565b6040516108b79190613298565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099b575061099a82611803565b5b9050919050565b6060600080546109b1906132e2565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd906132e2565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b5050505050905090565b6000610a3f8261186d565b50610a49826118f5565b9050919050565b610a628282610a5d611932565b61193a565b5050565b610a6e61194c565b8060088190555050565b60095481565b67011c37937e08000081565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610afc5760006040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610af39190612bf0565b60405180910390fd5b6000610b108383610b0b611932565b6119d3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b86578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610b7d93929190613313565b60405180910390fd5b50505050565b6000804690508091505090565b610ba161194c565b6000479050610bae611273565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bf3573d6000803e3d6000fd5b5050565b600d6020528060005260406000206000915054906101000a900460ff1681565b610c32838383604051806020016040528060008152506115fe565b505050565b610c3f61194c565b8060078190555050565b60085481565b600b8054610c5c906132e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c88906132e2565b8015610cd55780601f10610caa57610100808354040283529160200191610cd5565b820191906000526020600020905b815481529060010190602001808311610cb857829003601f168201915b505050505081565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610d0e8261186d565b9050919050565b60075481565b67011c37937e08000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d9a5760006040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610d919190612bf0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610de961194c565b610df36000611bed565b565b6f6551c19487814612e58fe0681377575881565b6105dc81565b6002600a60009054906101000a900460ff1660ff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90613396565b60405180910390fd5b60008160ff16118015610ed257506003600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1682610ecc91906133e5565b60ff1611155b610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f089061348c565b60405180910390fd5b8060ff1667011c37937e080000610f2891906134ac565b341015610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f619061353a565b60405180910390fd5b60005b8160ff16811015610f8e57610f8133611cb3565b8080600101915050610f6d565b5080600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16610fea91906133e5565b92506101000a81548160ff021916908360ff16021790555050565b6001600a60009054906101000a900460ff1660ff161461105a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611051906135a6565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90613612565b60405180910390fd5b61115b828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060085433604051602001611140919061367a565b60405160208183030381529060405280519060200120611d28565b61119a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611191906136e1565b60405180910390fd5b6111a333611cb3565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166111ff91906133e5565b92506101000a81548160ff021916908360ff1602179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112ac906132e2565b80601f01602080910402602001604051908101604052809291908181526020018280546112d8906132e2565b80156113255780601f106112fa57610100808354040283529160200191611325565b820191906000526020600020905b81548152906001019060200180831161130857829003601f168201915b5050505050905090565b6001600a60009054906101000a900460ff1660ff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b906135a6565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890613612565b60405180910390fd5b611485828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506007543360405160200161146a919061367a565b60405160208183030381529060405280519060200120611d28565b6114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb9061374d565b60405180910390fd5b67011c37937e08000034101561150f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115069061353a565b60405180910390fd5b61151833611cb3565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661157491906133e5565b92506101000a81548160ff021916908360ff1602179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6115fa6115f3611932565b8383611d3f565b5050565b611609848484610a8a565b61161584848484611eae565b50505050565b61162361194c565b80600a60006101000a81548160ff021916908360ff16021790555050565b61164961194c565b80600b9081611658919061390f565b5050565b6060600b61166983612065565b60405160200161167a929190613aa0565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900460ff1681565b61176561194c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117d75760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016117ce9190612bf0565b60405180910390fd5b6117e081611bed565b50565b600c6020528060005260406000206000915054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008061187983612133565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118ec57826040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016118e39190612ce9565b60405180910390fd5b80915050919050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600033905090565b6119478383836001612170565b505050565b611954611932565b73ffffffffffffffffffffffffffffffffffffffff16611972611273565b73ffffffffffffffffffffffffffffffffffffffff16146119d157611995611932565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016119c89190612bf0565b60405180910390fd5b565b6000806119df84612133565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611a2157611a20818486612335565b5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ab257611a63600085600080612170565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611b35576001600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b846002600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6105dc60095410611cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf090613b10565b60405180910390fd5b611d05816009546123f9565b611d0d6124f2565b60096000815480929190611d2090613b30565b919050555050565b600082611d358584612725565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611db057816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611da79190612bf0565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ea19190612a7f565b60405180910390a3505050565b60008373ffffffffffffffffffffffffffffffffffffffff163b111561205f578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ef2611932565b8685856040518563ffffffff1660e01b8152600401611f149493929190613bcd565b6020604051808303816000875af1925050508015611f5057506040513d601f19601f82011682018060405250810190611f4d9190613c2e565b60015b611fd4573d8060008114611f80576040519150601f19603f3d011682016040523d82523d6000602084013e611f85565b606091505b506000815103611fcc57836040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401611fc39190612bf0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461205d57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016120549190612bf0565b60405180910390fd5b505b50505050565b60606000600161207484612775565b01905060008167ffffffffffffffff81111561209357612092612fb1565b5b6040519080825280601f01601f1916602001820160405280156120c55781602001600182028036833780820191505090505b509050600082602001820190505b600115612128578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161211c5761211b613c5b565b5b049450600085036120d3575b819350505050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b80806121a95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156122dd5760006121b98461186d565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561222457508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b801561223757506122358184611690565b155b1561227957826040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526004016122709190612bf0565b60405180910390fd5b81156122db57838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b836004600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b6123408383836128c8565b6123f457600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123b557806040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016123ac9190612ce9565b60405180910390fd5b81816040517f177e802f0000000000000000000000000000000000000000000000000000000081526004016123eb929190613c8a565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361246b5760006040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016124629190612bf0565b60405180910390fd5b6000612479838360006119d3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124ed5760006040517f73c6ac6e0000000000000000000000000000000000000000000000000000000081526004016124e49190612bf0565b60405180910390fd5b505050565b60006f6551c19487814612e58fe0681377575873ffffffffffffffffffffffffffffffffffffffff1663246a0021600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600061254d610b8c565b306009546040518663ffffffff1660e01b8152600401612571959493929190613cfb565b602060405180830381865afa15801561258e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125b29190613d63565b905060008173ffffffffffffffffffffffffffffffffffffffff163b03612722576f6551c19487814612e58fe0681377575873ffffffffffffffffffffffffffffffffffffffff16638a54c52f600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600061262c610b8c565b306009546040518663ffffffff1660e01b8152600401612650959493929190613cfb565b6020604051808303816000875af115801561266f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126939190613d63565b508073ffffffffffffffffffffffffffffffffffffffff1663c4d66de8600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016126ef9190612bf0565b600060405180830381600087803b15801561270957600080fd5b505af115801561271d573d6000803e3d6000fd5b505050505b50565b60008082905060005b845181101561276a5761275b8286838151811061274e5761274d613d90565b5b6020026020010151612989565b9150808060010191505061272e565b508091505092915050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106127d3577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816127c9576127c8613c5b565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612810576d04ee2d6d415b85acef8100000000838161280657612805613c5b565b5b0492506020810190505b662386f26fc10000831061283f57662386f26fc10000838161283557612834613c5b565b5b0492506010810190505b6305f5e1008310612868576305f5e100838161285e5761285d613c5b565b5b0492506008810190505b612710831061288d57612710838161288357612882613c5b565b5b0492506004810190505b606483106128b057606483816128a6576128a5613c5b565b5b0492506002810190505b600a83106128bf576001810190505b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561298057508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061294157506129408484611690565b5b8061297f57508273ffffffffffffffffffffffffffffffffffffffff16612967836118f5565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b60008183106129a15761299c82846129b4565b6129ac565b6129ab83836129b4565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a14816129df565b8114612a1f57600080fd5b50565b600081359050612a3181612a0b565b92915050565b600060208284031215612a4d57612a4c6129d5565b5b6000612a5b84828501612a22565b91505092915050565b60008115159050919050565b612a7981612a64565b82525050565b6000602082019050612a946000830184612a70565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ad4578082015181840152602081019050612ab9565b60008484015250505050565b6000601f19601f8301169050919050565b6000612afc82612a9a565b612b068185612aa5565b9350612b16818560208601612ab6565b612b1f81612ae0565b840191505092915050565b60006020820190508181036000830152612b448184612af1565b905092915050565b6000819050919050565b612b5f81612b4c565b8114612b6a57600080fd5b50565b600081359050612b7c81612b56565b92915050565b600060208284031215612b9857612b976129d5565b5b6000612ba684828501612b6d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bda82612baf565b9050919050565b612bea81612bcf565b82525050565b6000602082019050612c056000830184612be1565b92915050565b612c1481612bcf565b8114612c1f57600080fd5b50565b600081359050612c3181612c0b565b92915050565b60008060408385031215612c4e57612c4d6129d5565b5b6000612c5c85828601612c22565b9250506020612c6d85828601612b6d565b9150509250929050565b6000819050919050565b612c8a81612c77565b8114612c9557600080fd5b50565b600081359050612ca781612c81565b92915050565b600060208284031215612cc357612cc26129d5565b5b6000612cd184828501612c98565b91505092915050565b612ce381612b4c565b82525050565b6000602082019050612cfe6000830184612cda565b92915050565b600080600060608486031215612d1d57612d1c6129d5565b5b6000612d2b86828701612c22565b9350506020612d3c86828701612c22565b9250506040612d4d86828701612b6d565b9150509250925092565b600060208284031215612d6d57612d6c6129d5565b5b6000612d7b84828501612c22565b91505092915050565b612d8d81612c77565b82525050565b6000602082019050612da86000830184612d84565b92915050565b6000819050919050565b6000612dd3612dce612dc984612baf565b612dae565b612baf565b9050919050565b6000612de582612db8565b9050919050565b6000612df782612dda565b9050919050565b612e0781612dec565b82525050565b6000602082019050612e226000830184612dfe565b92915050565b600060ff82169050919050565b612e3e81612e28565b8114612e4957600080fd5b50565b600081359050612e5b81612e35565b92915050565b600060208284031215612e7757612e766129d5565b5b6000612e8584828501612e4c565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612eb357612eb2612e8e565b5b8235905067ffffffffffffffff811115612ed057612ecf612e93565b5b602083019150836020820283011115612eec57612eeb612e98565b5b9250929050565b60008060208385031215612f0a57612f096129d5565b5b600083013567ffffffffffffffff811115612f2857612f276129da565b5b612f3485828601612e9d565b92509250509250929050565b612f4981612a64565b8114612f5457600080fd5b50565b600081359050612f6681612f40565b92915050565b60008060408385031215612f8357612f826129d5565b5b6000612f9185828601612c22565b9250506020612fa285828601612f57565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fe982612ae0565b810181811067ffffffffffffffff8211171561300857613007612fb1565b5b80604052505050565b600061301b6129cb565b90506130278282612fe0565b919050565b600067ffffffffffffffff82111561304757613046612fb1565b5b61305082612ae0565b9050602081019050919050565b82818337600083830152505050565b600061307f61307a8461302c565b613011565b90508281526020810184848401111561309b5761309a612fac565b5b6130a684828561305d565b509392505050565b600082601f8301126130c3576130c2612e8e565b5b81356130d384826020860161306c565b91505092915050565b600080600080608085870312156130f6576130f56129d5565b5b600061310487828801612c22565b945050602061311587828801612c22565b935050604061312687828801612b6d565b925050606085013567ffffffffffffffff811115613147576131466129da565b5b613153878288016130ae565b91505092959194509250565b600067ffffffffffffffff82111561317a57613179612fb1565b5b61318382612ae0565b9050602081019050919050565b60006131a361319e8461315f565b613011565b9050828152602081018484840111156131bf576131be612fac565b5b6131ca84828561305d565b509392505050565b600082601f8301126131e7576131e6612e8e565b5b81356131f7848260208601613190565b91505092915050565b600060208284031215613216576132156129d5565b5b600082013567ffffffffffffffff811115613234576132336129da565b5b613240848285016131d2565b91505092915050565b600080604083850312156132605761325f6129d5565b5b600061326e85828601612c22565b925050602061327f85828601612c22565b9150509250929050565b61329281612e28565b82525050565b60006020820190506132ad6000830184613289565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132fa57607f821691505b60208210810361330d5761330c6132b3565b5b50919050565b60006060820190506133286000830186612be1565b6133356020830185612cda565b6133426040830184612be1565b949350505050565b7f5075626c6963206d696e74206e6f742073746172746564000000000000000000600082015250565b6000613380601783612aa5565b915061338b8261334a565b602082019050919050565b600060208201905081810360008301526133af81613373565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133f082612e28565b91506133fb83612e28565b9250828201905060ff811115613414576134136133b6565b5b92915050565b7f4d696e7420616d6f756e742073686f756c64206265206265747765656e20312d60008201527f3300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613476602183612aa5565b91506134818261341a565b604082019050919050565b600060208201905081810360008301526134a581613469565b9050919050565b60006134b782612b4c565b91506134c283612b4c565b92508282026134d081612b4c565b915082820484148315176134e7576134e66133b6565b5b5092915050565b7f4e6f7420656e6f75676820657468657220746f20706179000000000000000000600082015250565b6000613524601783612aa5565b915061352f826134ee565b602082019050919050565b6000602082019050818103600083015261355381613517565b9050919050565b7f57686974656c697374206e6f7420737461727465640000000000000000000000600082015250565b6000613590601583612aa5565b915061359b8261355a565b602082019050919050565b600060208201905081810360008301526135bf81613583565b9050919050565b7f596f75206861766520616c7265616479206d696e746564000000000000000000600082015250565b60006135fc601783612aa5565b9150613607826135c6565b602082019050919050565b6000602082019050818103600083015261362b816135ef565b9050919050565b60008160601b9050919050565b600061364a82613632565b9050919050565b600061365c8261363f565b9050919050565b61367461366f82612bcf565b613651565b82525050565b60006136868284613663565b60148201915081905092915050565b7f4e6f7420696e20667265656c6973740000000000000000000000000000000000600082015250565b60006136cb600f83612aa5565b91506136d682613695565b602082019050919050565b600060208201905081810360008301526136fa816136be565b9050919050565b7f4e6f7420696e2077686974656c69737400000000000000000000000000000000600082015250565b6000613737601083612aa5565b915061374282613701565b602082019050919050565b600060208201905081810360008301526137668161372a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137cf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613792565b6137d98683613792565b95508019841693508086168417925050509392505050565b600061380c61380761380284612b4c565b612dae565b612b4c565b9050919050565b6000819050919050565b613826836137f1565b61383a61383282613813565b84845461379f565b825550505050565b600090565b61384f613842565b61385a81848461381d565b505050565b5b8181101561387e57613873600082613847565b600181019050613860565b5050565b601f8211156138c3576138948161376d565b61389d84613782565b810160208510156138ac578190505b6138c06138b885613782565b83018261385f565b50505b505050565b600082821c905092915050565b60006138e6600019846008026138c8565b1980831691505092915050565b60006138ff83836138d5565b9150826002028217905092915050565b61391882612a9a565b67ffffffffffffffff81111561393157613930612fb1565b5b61393b82546132e2565b613946828285613882565b600060209050601f8311600181146139795760008415613967578287015190505b61397185826138f3565b8655506139d9565b601f1984166139878661376d565b60005b828110156139af5784890151825560018201915060208501945060208101905061398a565b868310156139cc57848901516139c8601f8916826138d5565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b600081546139f9816132e2565b613a0381866139e1565b94506001821660008114613a1e5760018114613a3357613a66565b60ff1983168652811515820286019350613a66565b613a3c8561376d565b60005b83811015613a5e57815481890152600182019150602081019050613a3f565b838801955050505b50505092915050565b6000613a7a82612a9a565b613a8481856139e1565b9350613a94818560208601612ab6565b80840191505092915050565b6000613aac82856139ec565b9150613ab88284613a6f565b91508190509392505050565b7f52656163686564206d696e74206c696d69740000000000000000000000000000600082015250565b6000613afa601283612aa5565b9150613b0582613ac4565b602082019050919050565b60006020820190508181036000830152613b2981613aed565b9050919050565b6000613b3b82612b4c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613b6d57613b6c6133b6565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000613b9f82613b78565b613ba98185613b83565b9350613bb9818560208601612ab6565b613bc281612ae0565b840191505092915050565b6000608082019050613be26000830187612be1565b613bef6020830186612be1565b613bfc6040830185612cda565b8181036060830152613c0e8184613b94565b905095945050505050565b600081519050613c2881612a0b565b92915050565b600060208284031215613c4457613c436129d5565b5b6000613c5284828501613c19565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000604082019050613c9f6000830185612be1565b613cac6020830184612cda565b9392505050565b6000819050919050565b60008160001b9050919050565b6000613ce5613ce0613cdb84613cb3565b613cbd565b612c77565b9050919050565b613cf581613cca565b82525050565b600060a082019050613d106000830188612be1565b613d1d6020830187613cec565b613d2a6040830186612cda565b613d376060830185612be1565b613d446080830184612cda565b9695505050505050565b600081519050613d5d81612c0b565b92915050565b600060208284031215613d7957613d786129d5565b5b6000613d8784828501613d4e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e2af611b3be058dc4534f6ba272038a76b17c2b410d5afe53d8fd9e35582986e64736f6c63430008180033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.