ETH Price: $2,963.33 (+3.43%)
Gas: 1 Gwei

MOOVCLUB Sneakers (MOOVCLUB_Sneaker)
 

Overview

TokenID

1546

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MOOVCLUBSneakers

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-08
*/

// MOOVCLUB Sneakers
// https://moov.club
// https://twitter.com/moovclub
// https://www.instagram.com/moov.club
// A brand by dotmoovs

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File @openzeppelin/contracts/security/[email protected]

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC721/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

/**
 * @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 be 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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * 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 caller.
     *
     * 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 @openzeppelin/contracts/token/ERC721/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @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);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File @openzeppelin/contracts/token/ERC721/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

/**
 * @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}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => 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
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(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 override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - 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,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            isApprovedForAll(owner, spender) ||
            getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * 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 virtual {
        _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);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @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 virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), 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 virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * 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
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Burnable: caller is not owner nor approved"
        );
        _burn(tokenId);
    }
}

// File @openzeppelin/contracts/utils/cryptography/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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.
 */
library MerkleProof {
    /**
     * @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 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.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf)
        internal
        pure
        returns (bytes32)
    {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b)
        private
        pure
        returns (bytes32 value)
    {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File contracts/helpers/ContextMixin.sol

pragma solidity ^0.8.14;

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/ContextMixin.sol
 */
abstract contract ContextMixin {
    function msgSender() internal view returns (address payable sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

// File contracts/helpers/Initializable.sol

pragma solidity ^0.8.14;

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/Initializable.sol
 */
contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

// File contracts/helpers/EIP712Base.sol

pragma solidity ^0.8.14;

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/EIP712Base.sol
 */
contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string public constant ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH =
        keccak256(
            bytes(
                "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
            )
        );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contractsa that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(string memory name) internal initializer {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

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

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

// File contracts/helpers/NativeMetaTransaction.sol

pragma solidity ^0.8.14;

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/NativeMetaTransaction.sol
 */
contract NativeMetaTransaction is EIP712Base {
    bytes32 private constant META_TRANSACTION_TYPEHASH =
        keccak256(
            bytes(
                "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
            )
        );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress] + 1;

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC20/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File contracts/WhitelistStaking.sol

pragma solidity ^0.8.14;

contract WhitelistStaking {
    using SafeERC20 for IERC20;

    uint256 public constant STAKE_AMOUNT = 60_000 ether;
    uint256 public constant STAKE_DURATION = 90 days;
    uint256 public constant STAKE_DISABLE = 45 days;
    uint256 public STAKE_START;

    IERC20 private immutable mainToken;

    mapping(address => uint256) public stakingStart; // userAddress => stakingStartTimestamp

    constructor(IERC20 _tokenContract) {
        mainToken = _tokenContract;
        STAKE_START = block.timestamp;
    }

    event Stake(address indexed userAddress);

    // Deposit staking funds
    function stake() external {
        require(stakingStart[msg.sender] == 0, "User is already staking");
        require(
            block.timestamp <= STAKE_START + STAKE_DISABLE,
            "Staking is now disabled"
        );

        stakingStart[msg.sender] = block.timestamp;

        mainToken.safeTransferFrom(msg.sender, address(this), STAKE_AMOUNT);

        emit Stake(msg.sender);
    }

    event Unstake(address indexed userAddress);

    // Withdraw staking funds
    function unstake() external {
        uint256 stakingStartTimestamp = stakingStart[msg.sender];
        require(stakingStartTimestamp != 0, "User is not staking");

        require(
            block.timestamp >= stakingStartTimestamp + STAKE_DURATION,
            "Stake is still locked"
        );

        delete stakingStart[msg.sender];

        mainToken.safeTransfer(msg.sender, STAKE_AMOUNT);

        emit Unstake(msg.sender);
    }
}

// File contracts/MOOVCLUBSneakers.sol

pragma solidity ^0.8.14;

contract MOOVCLUBSneakers is
    ERC721Burnable,
    ContextMixin,
    NativeMetaTransaction,
    ReentrancyGuard,
    Ownable
{
    uint256 public constant MAXIMUM_SUPPLY = 4444;
    uint256 public constant MAXIMUM_MINT_AMOUNT = 10;
    uint256 public constant OWNER_MINT_LIMIT = 200;

    uint256 public constant WHITELIST_MINT_TIMESTAMP = 1654704000; // 2022-06-08 16:00 UTC
    uint256 public constant PUBLIC_MINT_TIMESTAMP = 1654790400; // 2022-06-09 16:00 UTC
    uint256 public constant METADATA_TIMESTAMP = 1654876800; // 2022-06-10 16:00 UTC

    uint256 public constant PRICE_PUBLIC = 0.069 ether;
    uint256 public constant PRICE_MERKLE = 0.055 ether;
    uint256 public constant PRICE_STAKING = 0.050 ether;

    WhitelistStaking public constant stakingContract =
        WhitelistStaking(0x98f26C02e89a886F1445B166051BE59bB5aC1733);

    uint256 public unmintedSupply = MAXIMUM_SUPPLY;
    uint256 public ownerUnmintedSupply = OWNER_MINT_LIMIT;

    bytes32 public merkleRoot;
    string public metadataFolder; // '' or 'ipfs://Q.../'

    mapping(address => uint8) public amountMinted; // userAddress => amountMinted

    constructor(string memory _name, string memory _symbol)
        ERC721(_name, _symbol)
    {
        _initializeEIP712(_name);
    }

    /**
     ** Users
     */

    function mintPublic(uint8 _amount) external payable {
        require(block.timestamp >= PUBLIC_MINT_TIMESTAMP, "Not available yet");

        mintUser(_amount, PRICE_PUBLIC);
    }

    function mintMerkle(uint8 _amount, bytes32[] calldata proof)
        external
        payable
    {
        require(
            block.timestamp >= WHITELIST_MINT_TIMESTAMP,
            "Not available yet"
        );
        require(block.timestamp < PUBLIC_MINT_TIMESTAMP, "No longer available");

        require(
            MerkleProof.verify(
                proof,
                merkleRoot,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "User is not whitelisted"
        );

        mintUser(_amount, PRICE_MERKLE);
    }

    function mintStaking(uint8 _amount) external payable {
        require(
            block.timestamp >= WHITELIST_MINT_TIMESTAMP,
            "Not available yet"
        );
        require(block.timestamp < PUBLIC_MINT_TIMESTAMP, "No longer available");

        require(
            stakingContract.stakingStart(msg.sender) != 0,
            "User is not staking"
        );

        mintUser(_amount, PRICE_STAKING);
    }

    function mintUser(uint8 _amount, uint256 _price) private {
        require(_amount > 0, "Nothing to mint");
        require(msg.value == _amount * _price, "Invalid amount");

        uint8 newUserMinted = amountMinted[msg.sender] + _amount;
        require(
            newUserMinted <= MAXIMUM_MINT_AMOUNT,
            "User mint capacity reached"
        );
        amountMinted[msg.sender] = newUserMinted;

        mint(_amount);
    }

    function mint(uint8 _amount) private nonReentrant {
        uint256 previousUnmintedSupply = unmintedSupply;
        unmintedSupply = previousUnmintedSupply - _amount;

        uint256 mintedSupply = MAXIMUM_SUPPLY - previousUnmintedSupply;
        for (uint256 i = 0; i < _amount; i++) {
            uint256 tokenId = mintedSupply + i;
            _safeMint(msg.sender, tokenId);
        }
    }

    /**
     ** Owner
     */

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Nothing to withdraw");

        payable(owner()).transfer(balance);
    }

    function mintOwner(uint8 _amount) external onlyOwner {
        ownerUnmintedSupply = ownerUnmintedSupply - _amount;

        mint(_amount);
    }

    function setMerkleRootFolder(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setMetadataFolder(string calldata _metadataFolder)
        external
        onlyOwner
    {
        require(block.timestamp > METADATA_TIMESTAMP, "Not available yet");
        metadataFolder = _metadataFolder;
    }

    /**
     ** Standards
     */

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        if (bytes(metadataFolder).length == 0) {
            return "ipfs://QmXHTJk3wC877bmujJKBDmeQRZ4unJYMVakv5zthVaws7T";
        }

        return
            string(
                abi.encodePacked(
                    metadataFolder,
                    Strings.toString(_tokenId),
                    ".json"
                )
            );
    }

    function _msgSender() internal view override returns (address) {
        return ContextMixin.msgSender();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_MERKLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_STAKING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MINT_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountMinted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","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":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataFolder","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_amount","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintMerkle","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"mintStaking","outputs":[],"stateMutability":"payable","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":"ownerUnmintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRootFolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_metadataFolder","type":"string"}],"name":"setMetadataFolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingContract","outputs":[{"internalType":"contract WhitelistStaking","name":"","type":"address"}],"stateMutability":"view","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":[{"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":[],"name":"unmintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526006805460ff1916905561115c600b5560c8600c553480156200002657600080fd5b50604051620030bd380380620030bd8339810160408190526200004991620003ec565b8151829082906200006290600090602085019062000279565b5080516200007890600190602084019062000279565b5050600160095550620000946200008e620000a7565b620000c3565b6200009f8262000115565b505062000492565b6000620000be6200017960201b6200151e1760201c565b905090565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60065460ff16156200015e5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b6200016981620001d7565b506006805460ff19166001179055565b6000303303620001d157600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620001d49050565b50335b90565b6040518060800160405280604f81526020016200306e604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600755565b828054620002879062000456565b90600052602060002090601f016020900481019282620002ab5760008555620002f6565b82601f10620002c657805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f6578251825591602001919060010190620002d9565b506200030492915062000308565b5090565b5b8082111562000304576000815560010162000309565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200034757600080fd5b81516001600160401b03808211156200036457620003646200031f565b604051601f8301601f19908116603f011681019082821181831017156200038f576200038f6200031f565b81604052838152602092508683858801011115620003ac57600080fd5b600091505b83821015620003d05785820183015181830184015290820190620003b1565b83821115620003e25760008385830101525b9695505050505050565b600080604083850312156200040057600080fd5b82516001600160401b03808211156200041857600080fd5b620004268683870162000335565b935060208501519150808211156200043d57600080fd5b506200044c8582860162000335565b9150509250929050565b600181811c908216806200046b57607f821691505b6020821081036200048c57634e487b7160e01b600052602260045260246000fd5b50919050565b612bcc80620004a26000396000f3fe6080604052600436106102675760003560e01c80635d12a6ec11610144578063a22cb465116100b6578063c946eb771161007a578063c946eb77146106da578063d897d74a146106f2578063e96a7ecc1461070d578063e985e9c51461072d578063ee99205c14610776578063f2fde38b1461079e57600080fd5b8063a22cb4651461063f578063a56d77301461065f578063ab6793461461067a578063b88d4fde1461069a578063c87b56dd146106ba57600080fd5b80637887e46a116101085780637887e46a146105b35780637ec158f2146105c65780638da5cb5b146105dc57806395d89b41146105fa5780639a4f41ba1461060f5780639c92edef1461062757600080fd5b80635d12a6ec146105365780636352211e1461054b57806367dce1ed1461056b57806370a082311461057e578063715018a61461059e57600080fd5b80633408e470116101dd57806342842e0e116101a157806342842e0e1461046357806342966c6814610483578063438a67e7146104a35780634582e43a146104e557806347ccb381146104fb57806352c177591461051b57600080fd5b80633408e470146103fd5780633ccfd60b146104105780633d0c4924146104255780633d2d5b321461043b57806341580acf1461044e57600080fd5b80630f7e59701161022f5780630f7e597014610330578063129f58dc1461035d57806320379ee51461037257806323b872dd146103915780632d0335ab146103b15780632eb4a7ab146103e757600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630c53c51c1461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046122ce565b6107be565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610810565b604051610298919061234a565b3480156102cf57600080fd5b506102e36102de36600461235d565b6108a2565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612392565b61093c565b005b6102b661032b366004612470565b610a63565b34801561033c57600080fd5b506102b6604051806040016040528060018152602001603160f81b81525081565b34801561036957600080fd5b506102b6610c4d565b34801561037e57600080fd5b506007545b604051908152602001610298565b34801561039d57600080fd5b5061031b6103ac3660046124e2565b610cdb565b3480156103bd57600080fd5b506103836103cc36600461251e565b6001600160a01b031660009081526008602052604090205490565b3480156103f357600080fd5b50610383600d5481565b34801561040957600080fd5b5046610383565b34801561041c57600080fd5b5061031b610d13565b34801561043157600080fd5b5061038361115c81565b61031b610449366004612539565b610dde565b34801561045a57600080fd5b50610383600a81565b34801561046f57600080fd5b5061031b61047e3660046124e2565b610f1d565b34801561048f57600080fd5b5061031b61049e36600461235d565b610f38565b3480156104af57600080fd5b506104d36104be36600461251e565b600f6020526000908152604090205460ff1681565b60405160ff9091168152602001610298565b3480156104f157600080fd5b50610383600c5481565b34801561050757600080fd5b5061031b6105163660046125bf565b610fb4565b34801561052757600080fd5b5061038366c3663566a5800081565b34801561054257600080fd5b5061038360c881565b34801561055757600080fd5b506102e361056636600461235d565b61101a565b61031b6105793660046125bf565b611091565b34801561058a57600080fd5b5061038361059936600461251e565b6110c6565b3480156105aa57600080fd5b5061031b61114d565b61031b6105c13660046125bf565b6111a2565b3480156105d257600080fd5b50610383600b5481565b3480156105e857600080fd5b50600a546001600160a01b03166102e3565b34801561060657600080fd5b506102b66112d8565b34801561061b57600080fd5b506103836362a2190081565b34801561063357600080fd5b506103836362a36a8081565b34801561064b57600080fd5b5061031b61065a3660046125da565b6112e7565b34801561066b57600080fd5b5061038366f523226980800081565b34801561068657600080fd5b5061031b61069536600461235d565b6112f9565b3480156106a657600080fd5b5061031b6106b5366004612616565b611347565b3480156106c657600080fd5b506102b66106d536600461235d565b611386565b3480156106e657600080fd5b506103836362a0c78081565b3480156106fe57600080fd5b5061038366b1a2bc2ec5000081565b34801561071957600080fd5b5061031b61072836600461267e565b6113ef565b34801561073957600080fd5b5061028c6107483660046126f0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078257600080fd5b506102e37398f26c02e89a886f1445b166051be59bb5ac173381565b3480156107aa57600080fd5b5061031b6107b936600461251e565b611467565b60006001600160e01b031982166380ac58cd60e01b14806107ef57506001600160e01b03198216635b5e139f60e01b145b8061080a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461081f90612723565b80601f016020809104026020016040519081016040528092919081815260200182805461084b90612723565b80156108985780601f1061086d57610100808354040283529160200191610898565b820191906000526020600020905b81548152906001019060200180831161087b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109205760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109478261101a565b9050806001600160a01b0316836001600160a01b0316036109b45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610917565b806001600160a01b03166109c661157a565b6001600160a01b031614806109e257506109e28161074861157a565b610a545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610917565b610a5e8383611589565b505050565b60408051606081810183526001600160a01b03881660008181526008602090815290859020548452830152918101869052610aa187828787876115f7565b610af75760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610917565b6001600160a01b038716600090815260086020526040902054610b1b906001612773565b6001600160a01b0388166000908152600860205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610b6b90899033908a9061278b565b60405180910390a1600080306001600160a01b0316888a604051602001610b939291906127dc565b60408051601f1981840301815290829052610bad91612813565b6000604051808303816000865af19150503d8060008114610bea576040519150601f19603f3d011682016040523d82523d6000602084013e610bef565b606091505b509150915081610c415760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610917565b98975050505050505050565b600e8054610c5a90612723565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8690612723565b8015610cd35780601f10610ca857610100808354040283529160200191610cd3565b820191906000526020600020905b815481529060010190602001808311610cb657829003601f168201915b505050505081565b610cec610ce661157a565b826116e7565b610d085760405162461bcd60e51b81526004016109179061282f565b610a5e8383836117de565b610d1b61157a565b6001600160a01b0316610d36600a546001600160a01b031690565b6001600160a01b031614610d5c5760405162461bcd60e51b815260040161091790612880565b4780610da05760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b6044820152606401610917565b600a546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610dda573d6000803e3d6000fd5b5050565b6362a0c780421015610e025760405162461bcd60e51b8152600401610917906128b5565b6362a219004210610e4b5760405162461bcd60e51b81526020600482015260136024820152724e6f206c6f6e67657220617661696c61626c6560681b6044820152606401610917565b610ec082828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516bffffffffffffffffffffffff193360601b16602082015290925060340190506040516020818303038152906040528051906020012061197a565b610f0c5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610917565b610a5e8366c3663566a58000611990565b610a5e83838360405180602001604052806000815250611347565b610f43610ce661157a565b610fa85760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610917565b610fb181611aba565b50565b610fbc61157a565b6001600160a01b0316610fd7600a546001600160a01b031690565b6001600160a01b031614610ffd5760405162461bcd60e51b815260040161091790612880565b8060ff16600c5461100e91906128e0565b600c55610fb181611b55565b6000818152600260205260408120546001600160a01b03168061080a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610917565b6362a219004210156110b55760405162461bcd60e51b8152600401610917906128b5565b610fb18166f5232269808000611990565b60006001600160a01b0382166111315760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610917565b506001600160a01b031660009081526003602052604090205490565b61115561157a565b6001600160a01b0316611170600a546001600160a01b031690565b6001600160a01b0316146111965760405162461bcd60e51b815260040161091790612880565b6111a06000611c13565b565b6362a0c7804210156111c65760405162461bcd60e51b8152600401610917906128b5565b6362a21900421061120f5760405162461bcd60e51b81526020600482015260136024820152724e6f206c6f6e67657220617661696c61626c6560681b6044820152606401610917565b60405163ade6fa2760e01b81523360048201527398f26c02e89a886f1445b166051be59bb5ac17339063ade6fa2790602401602060405180830381865afa15801561125e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128291906128f7565b6000036112c75760405162461bcd60e51b815260206004820152601360248201527255736572206973206e6f74207374616b696e6760681b6044820152606401610917565b610fb18166b1a2bc2ec50000611990565b60606001805461081f90612723565b610dda6112f261157a565b8383611c65565b61130161157a565b6001600160a01b031661131c600a546001600160a01b031690565b6001600160a01b0316146113425760405162461bcd60e51b815260040161091790612880565b600d55565b61135861135261157a565b836116e7565b6113745760405162461bcd60e51b81526004016109179061282f565b61138084848484611d33565b50505050565b6060600e805461139590612723565b90506000036113bd57604051806060016040528060358152602001612b626035913992915050565b600e6113c883611d66565b6040516020016113d9929190612910565b6040516020818303038152906040529050919050565b6113f761157a565b6001600160a01b0316611412600a546001600160a01b031690565b6001600160a01b0316146114385760405162461bcd60e51b815260040161091790612880565b6362a36a80421161145b5760405162461bcd60e51b8152600401610917906128b5565b610a5e600e838361221f565b61146f61157a565b6001600160a01b031661148a600a546001600160a01b031690565b6001600160a01b0316146114b05760405162461bcd60e51b815260040161091790612880565b6001600160a01b0381166115155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610917565b610fb181611c13565b600030330361157457600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506115779050565b50335b90565b600061158461151e565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115be8261101a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b03861661165d5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610917565b600161167061166b87611e67565b611ee4565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156116be573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000818152600260205260408120546001600160a01b03166117605760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610917565b600061176b8361101a565b9050806001600160a01b0316846001600160a01b031614806117b257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806117d65750836001600160a01b03166117cb846108a2565b6001600160a01b0316145b949350505050565b826001600160a01b03166117f18261101a565b6001600160a01b0316146118555760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610917565b6001600160a01b0382166118b75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610917565b6118c2600082611589565b6001600160a01b03831660009081526003602052604081208054600192906118eb9084906128e0565b90915550506001600160a01b0382166000908152600360205260408120805460019290611919908490612773565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826119878584611f14565b14949350505050565b60008260ff16116119d55760405162461bcd60e51b815260206004820152600f60248201526e139bdd1a1a5b99c81d1bc81b5a5b9d608a1b6044820152606401610917565b6119e28160ff84166129c1565b3414611a215760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610917565b336000908152600f6020526040812054611a3f90849060ff166129e0565b9050600a8160ff161115611a955760405162461bcd60e51b815260206004820152601a60248201527f55736572206d696e7420636170616369747920726561636865640000000000006044820152606401610917565b336000908152600f60205260409020805460ff191660ff8316179055610a5e83611b55565b6000611ac58261101a565b9050611ad2600083611589565b6001600160a01b0381166000908152600360205260408120805460019290611afb9084906128e0565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600260095403611ba75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610917565b6002600955600b54611bbc60ff8316826128e0565b600b556000611bcd8261115c6128e0565b905060005b8360ff16811015611c08576000611be98284612773565b9050611bf53382611f88565b5080611c0081612a05565b915050611bd2565b505060016009555050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611cc65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610917565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d3e8484846117de565b611d4a84848484611fa2565b6113805760405162461bcd60e51b815260040161091790612a1e565b606081600003611d8d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611db75780611da181612a05565b9150611db09050600a83612a86565b9150611d91565b60008167ffffffffffffffff811115611dd257611dd26123bc565b6040519080825280601f01601f191660200182016040528015611dfc576020820181803683370190505b5090505b84156117d657611e116001836128e0565b9150611e1e600a86612a9a565b611e29906030612773565b60f81b818381518110611e3e57611e3e612aae565b60200101906001600160f81b031916908160001a905350611e60600a86612a86565b9450611e00565b6000604051806080016040528060438152602001612b1f6043913980516020918201208351848301516040808701518051908601209051611ec7950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611eef60075490565b60405161190160f01b6020820152602281019190915260428101839052606201611ec7565b600081815b8451811015611f80576000858281518110611f3657611f36612aae565b60200260200101519050808311611f5c5760008381526020829052604090209250611f6d565b600081815260208490526040902092505b5080611f7881612a05565b915050611f19565b509392505050565b610dda8282604051806020016040528060008152506120aa565b60006001600160a01b0384163b1561209f57836001600160a01b031663150b7a02611fcb61157a565b8786866040518563ffffffff1660e01b8152600401611fed9493929190612ac4565b6020604051808303816000875af1925050508015612028575060408051601f3d908101601f1916820190925261202591810190612b01565b60015b612085573d808015612056576040519150601f19603f3d011682016040523d82523d6000602084013e61205b565b606091505b50805160000361207d5760405162461bcd60e51b815260040161091790612a1e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117d6565b506001949350505050565b6120b483836120dd565b6120c16000848484611fa2565b610a5e5760405162461bcd60e51b815260040161091790612a1e565b6001600160a01b0382166121335760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610917565b6000818152600260205260409020546001600160a01b0316156121985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610917565b6001600160a01b03821660009081526003602052604081208054600192906121c1908490612773565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461222b90612723565b90600052602060002090601f01602090048101928261224d5760008555612293565b82601f106122665782800160ff19823516178555612293565b82800160010185558215612293579182015b82811115612293578235825591602001919060010190612278565b5061229f9291506122a3565b5090565b5b8082111561229f57600081556001016122a4565b6001600160e01b031981168114610fb157600080fd5b6000602082840312156122e057600080fd5b81356122eb816122b8565b9392505050565b60005b8381101561230d5781810151838201526020016122f5565b838111156113805750506000910152565b600081518084526123368160208601602086016122f2565b601f01601f19169290920160200192915050565b6020815260006122eb602083018461231e565b60006020828403121561236f57600080fd5b5035919050565b80356001600160a01b038116811461238d57600080fd5b919050565b600080604083850312156123a557600080fd5b6123ae83612376565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126123e357600080fd5b813567ffffffffffffffff808211156123fe576123fe6123bc565b604051601f8301601f19908116603f01168101908282118183101715612426576124266123bc565b8160405283815286602085880101111561243f57600080fd5b836020870160208301376000602085830101528094505050505092915050565b803560ff8116811461238d57600080fd5b600080600080600060a0868803121561248857600080fd5b61249186612376565b9450602086013567ffffffffffffffff8111156124ad57600080fd5b6124b9888289016123d2565b94505060408601359250606086013591506124d66080870161245f565b90509295509295909350565b6000806000606084860312156124f757600080fd5b61250084612376565b925061250e60208501612376565b9150604084013590509250925092565b60006020828403121561253057600080fd5b6122eb82612376565b60008060006040848603121561254e57600080fd5b6125578461245f565b9250602084013567ffffffffffffffff8082111561257457600080fd5b818601915086601f83011261258857600080fd5b81358181111561259757600080fd5b8760208260051b85010111156125ac57600080fd5b6020830194508093505050509250925092565b6000602082840312156125d157600080fd5b6122eb8261245f565b600080604083850312156125ed57600080fd5b6125f683612376565b91506020830135801515811461260b57600080fd5b809150509250929050565b6000806000806080858703121561262c57600080fd5b61263585612376565b935061264360208601612376565b925060408501359150606085013567ffffffffffffffff81111561266657600080fd5b612672878288016123d2565b91505092959194509250565b6000806020838503121561269157600080fd5b823567ffffffffffffffff808211156126a957600080fd5b818501915085601f8301126126bd57600080fd5b8135818111156126cc57600080fd5b8660208285010111156126de57600080fd5b60209290920196919550909350505050565b6000806040838503121561270357600080fd5b61270c83612376565b915061271a60208401612376565b90509250929050565b600181811c9082168061273757607f821691505b60208210810361275757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156127865761278661275d565b500190565b6001600160a01b038481168252831660208201526060604082018190526000906127b79083018461231e565b95945050505050565b600081516127d28185602086016122f2565b9290920192915050565b600083516127ee8184602088016122f2565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600082516128258184602087016122f2565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260119082015270139bdd08185d985a5b18589b19481e595d607a1b604082015260600190565b6000828210156128f2576128f261275d565b500390565b60006020828403121561290957600080fd5b5051919050565b600080845481600182811c91508083168061292c57607f831692505b6020808410820361294b57634e487b7160e01b86526022600452602486fd5b81801561295f57600181146129705761299d565b60ff1986168952848901965061299d565b60008b81526020902060005b868110156129955781548b82015290850190830161297c565b505084890196505b5050505050506127b76129b082866127c0565b64173539b7b760d91b815260050190565b60008160001904831182151516156129db576129db61275d565b500290565b600060ff821660ff84168060ff038211156129fd576129fd61275d565b019392505050565b600060018201612a1757612a1761275d565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612a9557612a95612a70565b500490565b600082612aa957612aa9612a70565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612af79083018461231e565b9695505050505050565b600060208284031215612b1357600080fd5b81516122eb816122b856fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529697066733a2f2f516d5848544a6b337743383737626d756a4a4b42446d6551525a34756e4a594d56616b76357a7468566177733754a264697066735822122048ca4bc0b24192badaf90e9d5e1a7f958f77dd3d2e3d8590481e16e76c1d870b64736f6c634300080e0033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c74290000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000114d4f4f56434c554220536e65616b65727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104d4f4f56434c55425f536e65616b657200000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80635d12a6ec11610144578063a22cb465116100b6578063c946eb771161007a578063c946eb77146106da578063d897d74a146106f2578063e96a7ecc1461070d578063e985e9c51461072d578063ee99205c14610776578063f2fde38b1461079e57600080fd5b8063a22cb4651461063f578063a56d77301461065f578063ab6793461461067a578063b88d4fde1461069a578063c87b56dd146106ba57600080fd5b80637887e46a116101085780637887e46a146105b35780637ec158f2146105c65780638da5cb5b146105dc57806395d89b41146105fa5780639a4f41ba1461060f5780639c92edef1461062757600080fd5b80635d12a6ec146105365780636352211e1461054b57806367dce1ed1461056b57806370a082311461057e578063715018a61461059e57600080fd5b80633408e470116101dd57806342842e0e116101a157806342842e0e1461046357806342966c6814610483578063438a67e7146104a35780634582e43a146104e557806347ccb381146104fb57806352c177591461051b57600080fd5b80633408e470146103fd5780633ccfd60b146104105780633d0c4924146104255780633d2d5b321461043b57806341580acf1461044e57600080fd5b80630f7e59701161022f5780630f7e597014610330578063129f58dc1461035d57806320379ee51461037257806323b872dd146103915780632d0335ab146103b15780632eb4a7ab146103e757600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630c53c51c1461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046122ce565b6107be565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610810565b604051610298919061234a565b3480156102cf57600080fd5b506102e36102de36600461235d565b6108a2565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612392565b61093c565b005b6102b661032b366004612470565b610a63565b34801561033c57600080fd5b506102b6604051806040016040528060018152602001603160f81b81525081565b34801561036957600080fd5b506102b6610c4d565b34801561037e57600080fd5b506007545b604051908152602001610298565b34801561039d57600080fd5b5061031b6103ac3660046124e2565b610cdb565b3480156103bd57600080fd5b506103836103cc36600461251e565b6001600160a01b031660009081526008602052604090205490565b3480156103f357600080fd5b50610383600d5481565b34801561040957600080fd5b5046610383565b34801561041c57600080fd5b5061031b610d13565b34801561043157600080fd5b5061038361115c81565b61031b610449366004612539565b610dde565b34801561045a57600080fd5b50610383600a81565b34801561046f57600080fd5b5061031b61047e3660046124e2565b610f1d565b34801561048f57600080fd5b5061031b61049e36600461235d565b610f38565b3480156104af57600080fd5b506104d36104be36600461251e565b600f6020526000908152604090205460ff1681565b60405160ff9091168152602001610298565b3480156104f157600080fd5b50610383600c5481565b34801561050757600080fd5b5061031b6105163660046125bf565b610fb4565b34801561052757600080fd5b5061038366c3663566a5800081565b34801561054257600080fd5b5061038360c881565b34801561055757600080fd5b506102e361056636600461235d565b61101a565b61031b6105793660046125bf565b611091565b34801561058a57600080fd5b5061038361059936600461251e565b6110c6565b3480156105aa57600080fd5b5061031b61114d565b61031b6105c13660046125bf565b6111a2565b3480156105d257600080fd5b50610383600b5481565b3480156105e857600080fd5b50600a546001600160a01b03166102e3565b34801561060657600080fd5b506102b66112d8565b34801561061b57600080fd5b506103836362a2190081565b34801561063357600080fd5b506103836362a36a8081565b34801561064b57600080fd5b5061031b61065a3660046125da565b6112e7565b34801561066b57600080fd5b5061038366f523226980800081565b34801561068657600080fd5b5061031b61069536600461235d565b6112f9565b3480156106a657600080fd5b5061031b6106b5366004612616565b611347565b3480156106c657600080fd5b506102b66106d536600461235d565b611386565b3480156106e657600080fd5b506103836362a0c78081565b3480156106fe57600080fd5b5061038366b1a2bc2ec5000081565b34801561071957600080fd5b5061031b61072836600461267e565b6113ef565b34801561073957600080fd5b5061028c6107483660046126f0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078257600080fd5b506102e37398f26c02e89a886f1445b166051be59bb5ac173381565b3480156107aa57600080fd5b5061031b6107b936600461251e565b611467565b60006001600160e01b031982166380ac58cd60e01b14806107ef57506001600160e01b03198216635b5e139f60e01b145b8061080a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461081f90612723565b80601f016020809104026020016040519081016040528092919081815260200182805461084b90612723565b80156108985780601f1061086d57610100808354040283529160200191610898565b820191906000526020600020905b81548152906001019060200180831161087b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109205760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109478261101a565b9050806001600160a01b0316836001600160a01b0316036109b45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610917565b806001600160a01b03166109c661157a565b6001600160a01b031614806109e257506109e28161074861157a565b610a545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610917565b610a5e8383611589565b505050565b60408051606081810183526001600160a01b03881660008181526008602090815290859020548452830152918101869052610aa187828787876115f7565b610af75760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610917565b6001600160a01b038716600090815260086020526040902054610b1b906001612773565b6001600160a01b0388166000908152600860205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610b6b90899033908a9061278b565b60405180910390a1600080306001600160a01b0316888a604051602001610b939291906127dc565b60408051601f1981840301815290829052610bad91612813565b6000604051808303816000865af19150503d8060008114610bea576040519150601f19603f3d011682016040523d82523d6000602084013e610bef565b606091505b509150915081610c415760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610917565b98975050505050505050565b600e8054610c5a90612723565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8690612723565b8015610cd35780601f10610ca857610100808354040283529160200191610cd3565b820191906000526020600020905b815481529060010190602001808311610cb657829003601f168201915b505050505081565b610cec610ce661157a565b826116e7565b610d085760405162461bcd60e51b81526004016109179061282f565b610a5e8383836117de565b610d1b61157a565b6001600160a01b0316610d36600a546001600160a01b031690565b6001600160a01b031614610d5c5760405162461bcd60e51b815260040161091790612880565b4780610da05760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b6044820152606401610917565b600a546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610dda573d6000803e3d6000fd5b5050565b6362a0c780421015610e025760405162461bcd60e51b8152600401610917906128b5565b6362a219004210610e4b5760405162461bcd60e51b81526020600482015260136024820152724e6f206c6f6e67657220617661696c61626c6560681b6044820152606401610917565b610ec082828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516bffffffffffffffffffffffff193360601b16602082015290925060340190506040516020818303038152906040528051906020012061197a565b610f0c5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610917565b610a5e8366c3663566a58000611990565b610a5e83838360405180602001604052806000815250611347565b610f43610ce661157a565b610fa85760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610917565b610fb181611aba565b50565b610fbc61157a565b6001600160a01b0316610fd7600a546001600160a01b031690565b6001600160a01b031614610ffd5760405162461bcd60e51b815260040161091790612880565b8060ff16600c5461100e91906128e0565b600c55610fb181611b55565b6000818152600260205260408120546001600160a01b03168061080a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610917565b6362a219004210156110b55760405162461bcd60e51b8152600401610917906128b5565b610fb18166f5232269808000611990565b60006001600160a01b0382166111315760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610917565b506001600160a01b031660009081526003602052604090205490565b61115561157a565b6001600160a01b0316611170600a546001600160a01b031690565b6001600160a01b0316146111965760405162461bcd60e51b815260040161091790612880565b6111a06000611c13565b565b6362a0c7804210156111c65760405162461bcd60e51b8152600401610917906128b5565b6362a21900421061120f5760405162461bcd60e51b81526020600482015260136024820152724e6f206c6f6e67657220617661696c61626c6560681b6044820152606401610917565b60405163ade6fa2760e01b81523360048201527398f26c02e89a886f1445b166051be59bb5ac17339063ade6fa2790602401602060405180830381865afa15801561125e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128291906128f7565b6000036112c75760405162461bcd60e51b815260206004820152601360248201527255736572206973206e6f74207374616b696e6760681b6044820152606401610917565b610fb18166b1a2bc2ec50000611990565b60606001805461081f90612723565b610dda6112f261157a565b8383611c65565b61130161157a565b6001600160a01b031661131c600a546001600160a01b031690565b6001600160a01b0316146113425760405162461bcd60e51b815260040161091790612880565b600d55565b61135861135261157a565b836116e7565b6113745760405162461bcd60e51b81526004016109179061282f565b61138084848484611d33565b50505050565b6060600e805461139590612723565b90506000036113bd57604051806060016040528060358152602001612b626035913992915050565b600e6113c883611d66565b6040516020016113d9929190612910565b6040516020818303038152906040529050919050565b6113f761157a565b6001600160a01b0316611412600a546001600160a01b031690565b6001600160a01b0316146114385760405162461bcd60e51b815260040161091790612880565b6362a36a80421161145b5760405162461bcd60e51b8152600401610917906128b5565b610a5e600e838361221f565b61146f61157a565b6001600160a01b031661148a600a546001600160a01b031690565b6001600160a01b0316146114b05760405162461bcd60e51b815260040161091790612880565b6001600160a01b0381166115155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610917565b610fb181611c13565b600030330361157457600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506115779050565b50335b90565b600061158461151e565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115be8261101a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b03861661165d5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610917565b600161167061166b87611e67565b611ee4565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156116be573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000818152600260205260408120546001600160a01b03166117605760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610917565b600061176b8361101a565b9050806001600160a01b0316846001600160a01b031614806117b257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806117d65750836001600160a01b03166117cb846108a2565b6001600160a01b0316145b949350505050565b826001600160a01b03166117f18261101a565b6001600160a01b0316146118555760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610917565b6001600160a01b0382166118b75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610917565b6118c2600082611589565b6001600160a01b03831660009081526003602052604081208054600192906118eb9084906128e0565b90915550506001600160a01b0382166000908152600360205260408120805460019290611919908490612773565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826119878584611f14565b14949350505050565b60008260ff16116119d55760405162461bcd60e51b815260206004820152600f60248201526e139bdd1a1a5b99c81d1bc81b5a5b9d608a1b6044820152606401610917565b6119e28160ff84166129c1565b3414611a215760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610917565b336000908152600f6020526040812054611a3f90849060ff166129e0565b9050600a8160ff161115611a955760405162461bcd60e51b815260206004820152601a60248201527f55736572206d696e7420636170616369747920726561636865640000000000006044820152606401610917565b336000908152600f60205260409020805460ff191660ff8316179055610a5e83611b55565b6000611ac58261101a565b9050611ad2600083611589565b6001600160a01b0381166000908152600360205260408120805460019290611afb9084906128e0565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600260095403611ba75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610917565b6002600955600b54611bbc60ff8316826128e0565b600b556000611bcd8261115c6128e0565b905060005b8360ff16811015611c08576000611be98284612773565b9050611bf53382611f88565b5080611c0081612a05565b915050611bd2565b505060016009555050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611cc65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610917565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d3e8484846117de565b611d4a84848484611fa2565b6113805760405162461bcd60e51b815260040161091790612a1e565b606081600003611d8d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611db75780611da181612a05565b9150611db09050600a83612a86565b9150611d91565b60008167ffffffffffffffff811115611dd257611dd26123bc565b6040519080825280601f01601f191660200182016040528015611dfc576020820181803683370190505b5090505b84156117d657611e116001836128e0565b9150611e1e600a86612a9a565b611e29906030612773565b60f81b818381518110611e3e57611e3e612aae565b60200101906001600160f81b031916908160001a905350611e60600a86612a86565b9450611e00565b6000604051806080016040528060438152602001612b1f6043913980516020918201208351848301516040808701518051908601209051611ec7950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611eef60075490565b60405161190160f01b6020820152602281019190915260428101839052606201611ec7565b600081815b8451811015611f80576000858281518110611f3657611f36612aae565b60200260200101519050808311611f5c5760008381526020829052604090209250611f6d565b600081815260208490526040902092505b5080611f7881612a05565b915050611f19565b509392505050565b610dda8282604051806020016040528060008152506120aa565b60006001600160a01b0384163b1561209f57836001600160a01b031663150b7a02611fcb61157a565b8786866040518563ffffffff1660e01b8152600401611fed9493929190612ac4565b6020604051808303816000875af1925050508015612028575060408051601f3d908101601f1916820190925261202591810190612b01565b60015b612085573d808015612056576040519150601f19603f3d011682016040523d82523d6000602084013e61205b565b606091505b50805160000361207d5760405162461bcd60e51b815260040161091790612a1e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117d6565b506001949350505050565b6120b483836120dd565b6120c16000848484611fa2565b610a5e5760405162461bcd60e51b815260040161091790612a1e565b6001600160a01b0382166121335760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610917565b6000818152600260205260409020546001600160a01b0316156121985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610917565b6001600160a01b03821660009081526003602052604081208054600192906121c1908490612773565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461222b90612723565b90600052602060002090601f01602090048101928261224d5760008555612293565b82601f106122665782800160ff19823516178555612293565b82800160010185558215612293579182015b82811115612293578235825591602001919060010190612278565b5061229f9291506122a3565b5090565b5b8082111561229f57600081556001016122a4565b6001600160e01b031981168114610fb157600080fd5b6000602082840312156122e057600080fd5b81356122eb816122b8565b9392505050565b60005b8381101561230d5781810151838201526020016122f5565b838111156113805750506000910152565b600081518084526123368160208601602086016122f2565b601f01601f19169290920160200192915050565b6020815260006122eb602083018461231e565b60006020828403121561236f57600080fd5b5035919050565b80356001600160a01b038116811461238d57600080fd5b919050565b600080604083850312156123a557600080fd5b6123ae83612376565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126123e357600080fd5b813567ffffffffffffffff808211156123fe576123fe6123bc565b604051601f8301601f19908116603f01168101908282118183101715612426576124266123bc565b8160405283815286602085880101111561243f57600080fd5b836020870160208301376000602085830101528094505050505092915050565b803560ff8116811461238d57600080fd5b600080600080600060a0868803121561248857600080fd5b61249186612376565b9450602086013567ffffffffffffffff8111156124ad57600080fd5b6124b9888289016123d2565b94505060408601359250606086013591506124d66080870161245f565b90509295509295909350565b6000806000606084860312156124f757600080fd5b61250084612376565b925061250e60208501612376565b9150604084013590509250925092565b60006020828403121561253057600080fd5b6122eb82612376565b60008060006040848603121561254e57600080fd5b6125578461245f565b9250602084013567ffffffffffffffff8082111561257457600080fd5b818601915086601f83011261258857600080fd5b81358181111561259757600080fd5b8760208260051b85010111156125ac57600080fd5b6020830194508093505050509250925092565b6000602082840312156125d157600080fd5b6122eb8261245f565b600080604083850312156125ed57600080fd5b6125f683612376565b91506020830135801515811461260b57600080fd5b809150509250929050565b6000806000806080858703121561262c57600080fd5b61263585612376565b935061264360208601612376565b925060408501359150606085013567ffffffffffffffff81111561266657600080fd5b612672878288016123d2565b91505092959194509250565b6000806020838503121561269157600080fd5b823567ffffffffffffffff808211156126a957600080fd5b818501915085601f8301126126bd57600080fd5b8135818111156126cc57600080fd5b8660208285010111156126de57600080fd5b60209290920196919550909350505050565b6000806040838503121561270357600080fd5b61270c83612376565b915061271a60208401612376565b90509250929050565b600181811c9082168061273757607f821691505b60208210810361275757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156127865761278661275d565b500190565b6001600160a01b038481168252831660208201526060604082018190526000906127b79083018461231e565b95945050505050565b600081516127d28185602086016122f2565b9290920192915050565b600083516127ee8184602088016122f2565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600082516128258184602087016122f2565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260119082015270139bdd08185d985a5b18589b19481e595d607a1b604082015260600190565b6000828210156128f2576128f261275d565b500390565b60006020828403121561290957600080fd5b5051919050565b600080845481600182811c91508083168061292c57607f831692505b6020808410820361294b57634e487b7160e01b86526022600452602486fd5b81801561295f57600181146129705761299d565b60ff1986168952848901965061299d565b60008b81526020902060005b868110156129955781548b82015290850190830161297c565b505084890196505b5050505050506127b76129b082866127c0565b64173539b7b760d91b815260050190565b60008160001904831182151516156129db576129db61275d565b500290565b600060ff821660ff84168060ff038211156129fd576129fd61275d565b019392505050565b600060018201612a1757612a1761275d565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612a9557612a95612a70565b500490565b600082612aa957612aa9612a70565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612af79083018461231e565b9695505050505050565b600060208284031215612b1357600080fd5b81516122eb816122b856fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529697066733a2f2f516d5848544a6b337743383737626d756a4a4b42446d6551525a34756e4a594d56616b76357a7468566177733754a264697066735822122048ca4bc0b24192badaf90e9d5e1a7f958f77dd3d2e3d8590481e16e76c1d870b64736f6c634300080e0033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000114d4f4f56434c554220536e65616b65727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104d4f4f56434c55425f536e65616b657200000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MOOVCLUB Sneakers
Arg [1] : _symbol (string): MOOVCLUB_Sneaker

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [3] : 4d4f4f56434c554220536e65616b657273000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [5] : 4d4f4f56434c55425f536e65616b657200000000000000000000000000000000


Deployed Bytecode Sourcemap

61305:4860:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27871:355;;;;;;;;;;-1:-1:-1;27871:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27871:355:0;;;;;;;;29040:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30734:308::-;;;;;;;;;;-1:-1:-1;30734:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;30734:308:0;1528:203:1;30257:411:0;;;;;;;;;;-1:-1:-1;30257:411:0;;;;;:::i;:::-;;:::i;:::-;;49988:1148;;;;;;:::i;:::-;;:::i;47079:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47079:43:0;;;;;62326:28;;;;;;;;;;;;;:::i;48075:101::-;;;;;;;;;;-1:-1:-1;48153:15:0;;48075:101;;;4165:25:1;;;4153:2;4138:18;48075:101:0;4019:177:1;31653:376:0;;;;;;;;;;-1:-1:-1;31653:376:0;;;;;:::i;:::-;;:::i;51562:107::-;;;;;;;;;;-1:-1:-1;51562:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;51649:12:0;51615:13;51649:12;;;:6;:12;;;;;;;51562:107;62294:25;;;;;;;;;;;;;;;;48184:161;;;;;;;;;;-1:-1:-1;48298:9:0;48184:161;;64789:198;;;;;;;;;;;;;:::i;61445:45::-;;;;;;;;;;;;61486:4;61445:45;;62844:586;;;;;;:::i;:::-;;:::i;61497:48::-;;;;;;;;;;;;61543:2;61497:48;;32100:185;;;;;;;;;;-1:-1:-1;32100:185:0;;;;;:::i;:::-;;:::i;42482:282::-;;;;;;;;;;-1:-1:-1;42482:282:0;;;;;:::i;:::-;;:::i;62387:45::-;;;;;;;;;;-1:-1:-1;62387:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5769:4:1;5757:17;;;5739:36;;5727:2;5712:18;62387:45:0;5597:184:1;62232:53:0;;;;;;;;;;;;;;;;64995:149;;;;;;;;;;-1:-1:-1;64995:149:0;;;;;:::i;:::-;;:::i;61933:50::-;;;;;;;;;;;;61972:11;61933:50;;61552:46;;;;;;;;;;;;61595:3;61552:46;;28647:326;;;;;;;;;;-1:-1:-1;28647:326:0;;;;;:::i;:::-;;:::i;62651:185::-;;;;;;:::i;:::-;;:::i;28290:295::-;;;;;;;;;;-1:-1:-1;28290:295:0;;;;;:::i;:::-;;:::i;2813:103::-;;;;;;;;;;;;;:::i;63438:436::-;;;;;;:::i;:::-;;:::i;62179:46::-;;;;;;;;;;;;;;;;2162:87;;;;;;;;;;-1:-1:-1;2235:6:0;;-1:-1:-1;;;;;2235:6:0;2162:87;;29209:104;;;;;;;;;;;;;:::i;61699:58::-;;;;;;;;;;;;61747:10;61699:58;;61788:55;;;;;;;;;;;;61833:10;61788:55;;31114:187;;;;;;;;;;-1:-1:-1;31114:187:0;;;;;:::i;:::-;;:::i;61876:50::-;;;;;;;;;;;;61915:11;61876:50;;65152:112;;;;;;;;;;-1:-1:-1;65152:112:0;;;;;:::i;:::-;;:::i;32356:365::-;;;;;;;;;;-1:-1:-1;32356:365:0;;;;;:::i;:::-;;:::i;65549:492::-;;;;;;;;;;-1:-1:-1;65549:492:0;;;;;:::i;:::-;;:::i;61607:61::-;;;;;;;;;;;;61658:10;61607:61;;61990:51;;;;;;;;;;;;62030:11;61990:51;;65272:230;;;;;;;;;;-1:-1:-1;65272:230:0;;;;;:::i;:::-;;:::i;31372:214::-;;;;;;;;;;-1:-1:-1;31372:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;31543:25:0;;;31514:4;31543:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31372:214;62050:120;;;;;;;;;;;;62127:42;62050:120;;3071:238;;;;;;;;;;-1:-1:-1;3071:238:0;;;;;:::i;:::-;;:::i;27871:355::-;28018:4;-1:-1:-1;;;;;;28060:40:0;;-1:-1:-1;;;28060:40:0;;:105;;-1:-1:-1;;;;;;;28117:48:0;;-1:-1:-1;;;28117:48:0;28060:105;:158;;;-1:-1:-1;;;;;;;;;;26419:40:0;;;28182:36;28040:178;27871:355;-1:-1:-1;;27871:355:0:o;29040:100::-;29094:13;29127:5;29120:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29040:100;:::o;30734:308::-;30855:7;34357:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34357:16:0;30880:110;;;;-1:-1:-1;;;30880:110:0;;8734:2:1;30880:110:0;;;8716:21:1;8773:2;8753:18;;;8746:30;8812:34;8792:18;;;8785:62;-1:-1:-1;;;8863:18:1;;;8856:42;8915:19;;30880:110:0;;;;;;;;;-1:-1:-1;31010:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31010:24:0;;30734:308::o;30257:411::-;30338:13;30354:23;30369:7;30354:14;:23::i;:::-;30338:39;;30402:5;-1:-1:-1;;;;;30396:11:0;:2;-1:-1:-1;;;;;30396:11:0;;30388:57;;;;-1:-1:-1;;;30388:57:0;;9147:2:1;30388:57:0;;;9129:21:1;9186:2;9166:18;;;9159:30;9225:34;9205:18;;;9198:62;-1:-1:-1;;;9276:18:1;;;9269:31;9317:19;;30388:57:0;8945:397:1;30388:57:0;30496:5;-1:-1:-1;;;;;30480:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;30480:21:0;;:62;;;;30505:37;30522:5;30529:12;:10;:12::i;30505:37::-;30458:168;;;;-1:-1:-1;;;30458:168:0;;9549:2:1;30458:168:0;;;9531:21:1;9588:2;9568:18;;;9561:30;9627:34;9607:18;;;9600:62;9698:26;9678:18;;;9671:54;9742:19;;30458:168:0;9347:420:1;30458:168:0;30639:21;30648:2;30652:7;30639:8;:21::i;:::-;30327:341;30257:411;;:::o;49988:1148::-;50246:152;;;50189:12;50246:152;;;;;-1:-1:-1;;;;;50284:19:0;;50214:29;50284:19;;;:6;:19;;;;;;;;;50246:152;;;;;;;;;;;50433:45;50291:11;50246:152;50461:4;50467;50473;50433:6;:45::i;:::-;50411:128;;;;-1:-1:-1;;;50411:128:0;;9974:2:1;50411:128:0;;;9956:21:1;10013:2;9993:18;;;9986:30;10052:34;10032:18;;;10025:62;-1:-1:-1;;;10103:18:1;;;10096:31;10144:19;;50411:128:0;9772:397:1;50411:128:0;-1:-1:-1;;;;;50628:19:0;;;;;;:6;:19;;;;;;:23;;50650:1;50628:23;:::i;:::-;-1:-1:-1;;;;;50606:19:0;;;;;;:6;:19;;;;;;;:45;;;;50669:126;;;;;50613:11;;50741:10;;50767:17;;50669:126;:::i;:::-;;;;;;;;50906:12;50920:23;50955:4;-1:-1:-1;;;;;50947:18:0;50997:17;51016:11;50980:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;50980:48:0;;;;;;;;;;50947:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50905:134;;;;51058:7;51050:48;;;;-1:-1:-1;;;51050:48:0;;11966:2:1;51050:48:0;;;11948:21:1;12005:2;11985:18;;;11978:30;12044;12024:18;;;12017:58;12092:18;;51050:48:0;11764:352:1;51050:48:0;51118:10;49988:1148;-1:-1:-1;;;;;;;;49988:1148:0:o;62326:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31653:376::-;31862:41;31881:12;:10;:12::i;:::-;31895:7;31862:18;:41::i;:::-;31840:140;;;;-1:-1:-1;;;31840:140:0;;;;;;;:::i;:::-;31993:28;32003:4;32009:2;32013:7;31993:9;:28::i;64789:198::-;2393:12;:10;:12::i;:::-;-1:-1:-1;;;;;2382:23:0;:7;2235:6;;-1:-1:-1;;;;;2235:6:0;;2162:87;2382:7;-1:-1:-1;;;;;2382:23:0;;2374:68;;;;-1:-1:-1;;;2374:68:0;;;;;;;:::i;:::-;64857:21:::1;64897:11:::0;64889:43:::1;;;::::0;-1:-1:-1;;;64889:43:0;;13102:2:1;64889:43:0::1;::::0;::::1;13084:21:1::0;13141:2;13121:18;;;13114:30;-1:-1:-1;;;13160:18:1;;;13153:49;13219:18;;64889:43:0::1;12900:343:1::0;64889:43:0::1;2235:6:::0;;64945:34:::1;::::0;-1:-1:-1;;;;;2235:6:0;;;;64945:34;::::1;;;::::0;64971:7;;64945:34:::1;::::0;;;64971:7;2235:6;64945:34;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;64828:159;64789:198::o:0;62844:586::-;61658:10;62978:15;:43;;62956:110;;;;-1:-1:-1;;;62956:110:0;;;;;;;:::i;:::-;61747:10;63085:15;:39;63077:71;;;;-1:-1:-1;;;63077:71:0;;13796:2:1;63077:71:0;;;13778:21:1;13835:2;13815:18;;;13808:30;-1:-1:-1;;;13854:18:1;;;13847:49;13913:18;;63077:71:0;13594:343:1;63077:71:0;63183:144;63220:5;;63183:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;63244:10:0;;63283:28;;-1:-1:-1;;63300:10:0;14091:2:1;14087:15;14083:53;63283:28:0;;;14071:66:1;63244:10:0;;-1:-1:-1;14153:12:1;;;-1:-1:-1;63283:28:0;;;;;;;;;;;;63273:39;;;;;;63183:18;:144::i;:::-;63161:217;;;;-1:-1:-1;;;63161:217:0;;14378:2:1;63161:217:0;;;14360:21:1;14417:2;14397:18;;;14390:30;14456:25;14436:18;;;14429:53;14499:18;;63161:217:0;14176:347:1;63161:217:0;63391:31;63400:7;61972:11;63391:8;:31::i;32100:185::-;32238:39;32255:4;32261:2;32265:7;32238:39;;;;;;;;;;;;:16;:39::i;42482:282::-;42614:41;42633:12;:10;:12::i;42614:41::-;42592:139;;;;-1:-1:-1;;;42592:139:0;;14730:2:1;42592:139:0;;;14712:21:1;14769:2;14749:18;;;14742:30;14808:34;14788:18;;;14781:62;-1:-1:-1;;;14859:18:1;;;14852:46;14915:19;;42592:139:0;14528:412:1;42592:139:0;42742:14;42748:7;42742:5;:14::i;:::-;42482:282;:::o;64995:149::-;2393:12;:10;:12::i;:::-;-1:-1:-1;;;;;2382:23:0;:7;2235:6;;-1:-1:-1;;;;;2235:6:0;;2162:87;2382:7;-1:-1:-1;;;;;2382:23:0;;2374:68;;;;-1:-1:-1;;;2374:68:0;;;;;;;:::i;:::-;65103:7:::1;65081:29;;:19;;:29;;;;:::i;:::-;65059:19;:51:::0;65123:13:::1;65128:7:::0;65123:4:::1;:13::i;28647:326::-:0;28764:7;28805:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28805:16:0;;28832:110;;;;-1:-1:-1;;;28832:110:0;;15277:2:1;28832:110:0;;;15259:21:1;15316:2;15296:18;;;15289:30;15355:34;15335:18;;;15328:62;-1:-1:-1;;;15406:18:1;;;15399:39;15455:19;;28832:110:0;15075:405:1;62651:185:0;61747:10;62722:15;:40;;62714:70;;;;-1:-1:-1;;;62714:70:0;;;;;;;:::i;:::-;62797:31;62806:7;61915:11;62797:8;:31::i;28290:295::-;28407:7;-1:-1:-1;;;;;28454:19:0;;28432:111;;;;-1:-1:-1;;;28432:111:0;;15687:2:1;28432:111:0;;;15669:21:1;15726:2;15706:18;;;15699:30;15765:34;15745:18;;;15738:62;-1:-1:-1;;;15816:18:1;;;15809:40;15866:19;;28432:111:0;15485:406:1;28432:111:0;-1:-1:-1;;;;;;28561:16:0;;;;;:9;:16;;;;;;;28290:295::o;2813:103::-;2393:12;:10;:12::i;:::-;-1:-1:-1;;;;;2382:23:0;:7;2235:6;;-1:-1:-1;;;;;2235:6:0;;2162:87;2382:7;-1:-1:-1;;;;;2382:23:0;;2374:68;;;;-1:-1:-1;;;2374:68:0;;;;;;;:::i;:::-;2878:30:::1;2905:1;2878:18;:30::i;:::-;2813:103::o:0;63438:436::-;61658:10;63524:15;:43;;63502:110;;;;-1:-1:-1;;;63502:110:0;;;;;;;:::i;:::-;61747:10;63631:15;:39;63623:71;;;;-1:-1:-1;;;63623:71:0;;13796:2:1;63623:71:0;;;13778:21:1;13835:2;13815:18;;;13808:30;-1:-1:-1;;;13854:18:1;;;13847:49;13913:18;;63623:71:0;13594:343:1;63623:71:0;63729:40;;-1:-1:-1;;;63729:40:0;;63758:10;63729:40;;;1674:51:1;62127:42:0;;63729:28;;1647:18:1;;63729:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63773:1;63729:45;63707:114;;;;-1:-1:-1;;;63707:114:0;;16287:2:1;63707:114:0;;;16269:21:1;16326:2;16306:18;;;16299:30;-1:-1:-1;;;16345:18:1;;;16338:49;16404:18;;63707:114:0;16085:343:1;63707:114:0;63834:32;63843:7;62030:11;63834:8;:32::i;29209:104::-;29265:13;29298:7;29291:14;;;;;:::i;31114:187::-;31241:52;31260:12;:10;:12::i;:::-;31274:8;31284;31241:18;:52::i;65152:112::-;2393:12;:10;:12::i;:::-;-1:-1:-1;;;;;2382:23:0;:7;2235:6;;-1:-1:-1;;;;;2235:6:0;;2162:87;2382:7;-1:-1:-1;;;;;2382:23:0;;2374:68;;;;-1:-1:-1;;;2374:68:0;;;;;;;:::i;:::-;65232:10:::1;:24:::0;65152:112::o;32356:365::-;32545:41;32564:12;:10;:12::i;:::-;32578:7;32545:18;:41::i;:::-;32523:140;;;;-1:-1:-1;;;32523:140:0;;;;;;;:::i;:::-;32674:39;32688:4;32694:2;32698:7;32707:5;32674:13;:39::i;:::-;32356:365;;;;:::o;65549:492::-;65651:13;65692:14;65686:28;;;;;:::i;:::-;;;65718:1;65686:33;65682:128;;65736:62;;;;;;;;;;;;;;;;;;65549:492;-1:-1:-1;;65549:492:0:o;65682:128::-;65906:14;65943:26;65960:8;65943:16;:26::i;:::-;65867:151;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65822:211;;65549:492;;;:::o;65272:230::-;2393:12;:10;:12::i;:::-;-1:-1:-1;;;;;2382:23:0;:7;2235:6;;-1:-1:-1;;;;;2235:6:0;;2162:87;2382:7;-1:-1:-1;;;;;2382:23:0;;2374:68;;;;-1:-1:-1;;;2374:68:0;;;;;;;:::i;:::-;61833:10:::1;65393:15;:36;65385:66;;;;-1:-1:-1::0;;;65385:66:0::1;;;;;;;:::i;:::-;65462:32;:14;65479:15:::0;;65462:32:::1;:::i;3071:238::-:0;2393:12;:10;:12::i;:::-;-1:-1:-1;;;;;2382:23:0;:7;2235:6;;-1:-1:-1;;;;;2235:6:0;;2162:87;2382:7;-1:-1:-1;;;;;2382:23:0;;2374:68;;;;-1:-1:-1;;;2374:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3174:22:0;::::1;3152:110;;;::::0;-1:-1:-1;;;3152:110:0;;18184:2:1;3152:110:0::1;::::0;::::1;18166:21:1::0;18223:2;18203:18;;;18196:30;18262:34;18242:18;;;18235:62;-1:-1:-1;;;18313:18:1;;;18306:36;18359:19;;3152:110:0::1;17982:402:1::0;3152:110:0::1;3273:28;3292:8;3273:18;:28::i;45739:618::-:0;45783:22;45844:4;45822:10;:27;45818:508;;45866:18;45887:8;;45866:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;45926:8:0;46137:17;46131:24;-1:-1:-1;;;;;46105:134:0;;-1:-1:-1;45818:508:0;;-1:-1:-1;45818:508:0;;-1:-1:-1;46303:10:0;45818:508;45739:618;:::o;66049:113::-;66103:7;66130:24;:22;:24::i;:::-;66123:31;;66049:113;:::o;38555:174::-;38630:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38630:29:0;-1:-1:-1;;;;;38630:29:0;;;;;;;;:24;;38684:23;38630:24;38684:14;:23::i;:::-;-1:-1:-1;;;;;38675:46:0;;;;;;;;;;;38555:174;;:::o;51677:486::-;51855:4;-1:-1:-1;;;;;51880:20:0;;51872:70;;;;-1:-1:-1;;;51872:70:0;;18591:2:1;51872:70:0;;;18573:21:1;18630:2;18610:18;;;18603:30;18669:34;18649:18;;;18642:62;-1:-1:-1;;;18720:18:1;;;18713:35;18765:19;;51872:70:0;18389:401:1;51872:70:0;51996:159;52024:47;52043:27;52063:6;52043:19;:27::i;:::-;52024:18;:47::i;:::-;51996:159;;;;;;;;;;;;19022:25:1;;;;19095:4;19083:17;;19063:18;;;19056:45;19117:18;;;19110:34;;;19160:18;;;19153:34;;;18994:19;;51996:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51973:182:0;:6;-1:-1:-1;;;;;51973:182:0;;51953:202;;51677:486;;;;;;;:::o;34562:452::-;34691:4;34357:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34357:16:0;34713:110;;;;-1:-1:-1;;;34713:110:0;;19400:2:1;34713:110:0;;;19382:21:1;19439:2;19419:18;;;19412:30;19478:34;19458:18;;;19451:62;-1:-1:-1;;;19529:18:1;;;19522:42;19581:19;;34713:110:0;19198:408:1;34713:110:0;34834:13;34850:23;34865:7;34850:14;:23::i;:::-;34834:39;;34903:5;-1:-1:-1;;;;;34892:16:0;:7;-1:-1:-1;;;;;34892:16:0;;:65;;;-1:-1:-1;;;;;;31543:25:0;;;31514:4;31543:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34925:32;34892:113;;;;34998:7;-1:-1:-1;;;;;34974:31:0;:20;34986:7;34974:11;:20::i;:::-;-1:-1:-1;;;;;34974:31:0;;34892:113;34884:122;34562:452;-1:-1:-1;;;;34562:452:0:o;37775:662::-;37948:4;-1:-1:-1;;;;;37921:31:0;:23;37936:7;37921:14;:23::i;:::-;-1:-1:-1;;;;;37921:31:0;;37899:118;;;;-1:-1:-1;;;37899:118:0;;19813:2:1;37899:118:0;;;19795:21:1;19852:2;19832:18;;;19825:30;19891:34;19871:18;;;19864:62;-1:-1:-1;;;19942:18:1;;;19935:35;19987:19;;37899:118:0;19611:401:1;37899:118:0;-1:-1:-1;;;;;38036:16:0;;38028:65;;;;-1:-1:-1;;;38028:65:0;;20219:2:1;38028:65:0;;;20201:21:1;20258:2;20238:18;;;20231:30;20297:34;20277:18;;;20270:62;-1:-1:-1;;;20348:18:1;;;20341:34;20392:19;;38028:65:0;20017:400:1;38028:65:0;38210:29;38227:1;38231:7;38210:8;:29::i;:::-;-1:-1:-1;;;;;38252:15:0;;;;;;:9;:15;;;;;:20;;38271:1;;38252:15;:20;;38271:1;;38252:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38283:13:0;;;;;;:9;:13;;;;;:18;;38300:1;;38283:13;:18;;38300:1;;38283:18;:::i;:::-;;;;-1:-1:-1;;38312:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38312:21:0;-1:-1:-1;;;;;38312:21:0;;;;;;;;;38351:27;;38312:16;;38351:27;;;;;;;30327:341;30257:411;;:::o;43995:190::-;44120:4;44173;44144:25;44157:5;44164:4;44144:12;:25::i;:::-;:33;;43995:190;-1:-1:-1;;;;43995:190:0:o;63882:451::-;63968:1;63958:7;:11;;;63950:39;;;;-1:-1:-1;;;63950:39:0;;20624:2:1;63950:39:0;;;20606:21:1;20663:2;20643:18;;;20636:30;-1:-1:-1;;;20682:18:1;;;20675:45;20737:18;;63950:39:0;20422:339:1;63950:39:0;64021:16;64031:6;64021:16;;;;:::i;:::-;64008:9;:29;64000:56;;;;-1:-1:-1;;;64000:56:0;;21141:2:1;64000:56:0;;;21123:21:1;21180:2;21160:18;;;21153:30;-1:-1:-1;;;21199:18:1;;;21192:44;21253:18;;64000:56:0;20939:338:1;64000:56:0;64104:10;64069:19;64091:24;;;:12;:24;;;;;;:34;;64118:7;;64091:24;;:34;:::i;:::-;64069:56;;61543:2;64158:13;:36;;;;64136:112;;;;-1:-1:-1;;;64136:112:0;;21693:2:1;64136:112:0;;;21675:21:1;21732:2;21712:18;;;21705:30;21771:28;21751:18;;;21744:56;21817:18;;64136:112:0;21491:350:1;64136:112:0;64272:10;64259:24;;;;:12;:24;;;;;:40;;-1:-1:-1;;64259:40:0;;;;;;;64312:13;64317:7;64312:4;:13::i;37018:420::-;37078:13;37094:23;37109:7;37094:14;:23::i;:::-;37078:39;;37219:29;37236:1;37240:7;37219:8;:29::i;:::-;-1:-1:-1;;;;;37261:16:0;;;;;;:9;:16;;;;;:21;;37281:1;;37261:16;:21;;37281:1;;37261:21;:::i;:::-;;;;-1:-1:-1;;37300:16:0;;;;:7;:16;;;;;;37293:23;;-1:-1:-1;;;;;;37293:23:0;;;37334:36;37308:7;;37300:16;-1:-1:-1;;;;;37334:36:0;;;;;37300:16;;37334:36;64945:34:::1;64828:159;64789:198::o:0;64341:405::-;5483:1;6081:7;;:19;6073:63;;;;-1:-1:-1;;;6073:63:0;;22048:2:1;6073:63:0;;;22030:21:1;22087:2;22067:18;;;22060:30;22126:33;22106:18;;;22099:61;22177:18;;6073:63:0;21846:355:1;6073:63:0;5483:1;6214:7;:18;64435:14:::1;::::0;64477:32:::1;;::::0;::::1;64435:14:::0;64477:32:::1;:::i;:::-;64460:14;:49:::0;64522:20:::1;64545:39;64562:22:::0;61486:4:::1;64545:39;:::i;:::-;64522:62;;64600:9;64595:144;64619:7;64615:11;;:1;:11;64595:144;;;64648:15;64666:16;64681:1:::0;64666:12;:16:::1;:::i;:::-;64648:34;;64697:30;64707:10;64719:7;64697:9;:30::i;:::-;-1:-1:-1::0;64628:3:0;::::1;::::0;::::1;:::i;:::-;;;;64595:144;;;-1:-1:-1::0;;5439:1:0;6393:7;:22;-1:-1:-1;;64341:405:0:o;3469:191::-;3562:6;;;-1:-1:-1;;;;;3579:17:0;;;-1:-1:-1;;;;;;3579:17:0;;;;;;;3612:40;;3562:6;;;3579:17;3562:6;;3612:40;;3543:16;;3612:40;3532:128;3469:191;:::o;38871:315::-;39026:8;-1:-1:-1;;;;;39017:17:0;:5;-1:-1:-1;;;;;39017:17:0;;39009:55;;;;-1:-1:-1;;;39009:55:0;;22548:2:1;39009:55:0;;;22530:21:1;22587:2;22567:18;;;22560:30;22626:27;22606:18;;;22599:55;22671:18;;39009:55:0;22346:349:1;39009:55:0;-1:-1:-1;;;;;39075:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39075:46:0;;;;;;;;;;39137:41;;540::1;;;39137::0;;513:18:1;39137:41:0;;;;;;;38871:315;;;:::o;33603:352::-;33760:28;33770:4;33776:2;33780:7;33760:9;:28::i;:::-;33821:48;33844:4;33850:2;33854:7;33863:5;33821:22;:48::i;:::-;33799:148;;;;-1:-1:-1;;;33799:148:0;;;;;;;:::i;23602:723::-;23658:13;23879:5;23888:1;23879:10;23875:53;;-1:-1:-1;;23906:10:0;;;;;;;;;;;;-1:-1:-1;;;23906:10:0;;;;;23602:723::o;23875:53::-;23953:5;23938:12;23994:78;24001:9;;23994:78;;24027:8;;;;:::i;:::-;;-1:-1:-1;24050:10:0;;-1:-1:-1;24058:2:0;24050:10;;:::i;:::-;;;23994:78;;;24082:19;24114:6;24104:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24104:17:0;;24082:39;;24132:154;24139:10;;24132:154;;24166:11;24176:1;24166:11;;:::i;:::-;;-1:-1:-1;24235:10:0;24243:2;24235:5;:10;:::i;:::-;24222:24;;:2;:24;:::i;:::-;24209:39;;24192:6;24199;24192:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;24192:56:0;;;;;;;;-1:-1:-1;24263:11:0;24272:2;24263:11;;:::i;:::-;;;24132:154;;51144:410;51254:7;49312:108;;;;;;;;;;;;;;;;;49288:143;;;;;;;51408:12;;51443:11;;;;51487:24;;;;;51477:35;;;;;;51327:204;;;;;23856:25:1;;;23912:2;23897:18;;23890:34;;;;-1:-1:-1;;;;;23960:32:1;23955:2;23940:18;;23933:60;24024:2;24009:18;;24002:34;23843:3;23828:19;;23625:417;51327:204:0;;;;;;;;;;;;;51299:247;;;;;;51279:267;;51144:410;;;:::o;48714:258::-;48813:7;48915:20;48153:15;;;48075:101;48915:20;48886:63;;-1:-1:-1;;;48886:63:0;;;24305:27:1;24348:11;;;24341:27;;;;24384:12;;;24377:28;;;24421:12;;48886:63:0;24047:392:1;44546:707:0;44656:7;44704:4;44656:7;44719:497;44743:5;:12;44739:1;:16;44719:497;;;44777:20;44800:5;44806:1;44800:8;;;;;;;;:::i;:::-;;;;;;;44777:31;;44843:12;44827;:28;44823:382;;45356:13;45411:15;;;45447:4;45440:15;;;45494:4;45478:21;;44955:57;;44823:382;;;45356:13;45411:15;;;45447:4;45440:15;;;45494:4;45478:21;;45132:57;;44823:382;-1:-1:-1;44757:3:0;;;;:::i;:::-;;;;44719:497;;;-1:-1:-1;45233:12:0;44546:707;-1:-1:-1;;;44546:707:0:o;35356:110::-;35432:26;35442:2;35446:7;35432:26;;;;;;;;;;;;:9;:26::i;39751:980::-;39906:4;-1:-1:-1;;;;;39927:13:0;;15791:19;:23;39923:801;;39996:2;-1:-1:-1;;;;;39980:36:0;;40039:12;:10;:12::i;:::-;40074:4;40101:7;40131:5;39980:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39980:175:0;;;;;;;;-1:-1:-1;;39980:175:0;;;;;;;;;;;;:::i;:::-;;;39959:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40338:6;:13;40355:1;40338:18;40334:320;;40381:108;;-1:-1:-1;;;40381:108:0;;;;;;;:::i;40334:320::-;40604:6;40598:13;40589:6;40585:2;40581:15;40574:38;39959:710;-1:-1:-1;;;;;;40219:51:0;-1:-1:-1;;;40219:51:0;;-1:-1:-1;40212:58:0;;39923:801;-1:-1:-1;40708:4:0;39751:980;;;;;;:::o;35693:321::-;35823:18;35829:2;35833:7;35823:5;:18::i;:::-;35874:54;35905:1;35909:2;35913:7;35922:5;35874:22;:54::i;:::-;35852:154;;;;-1:-1:-1;;;35852:154:0;;;;;;;:::i;36350:439::-;-1:-1:-1;;;;;36430:16:0;;36422:61;;;;-1:-1:-1;;;36422:61:0;;25394:2:1;36422:61:0;;;25376:21:1;;;25413:18;;;25406:30;25472:34;25452:18;;;25445:62;25524:18;;36422:61:0;25192:356:1;36422:61:0;34333:4;34357:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34357:16:0;:30;36494:58;;;;-1:-1:-1;;;36494:58:0;;25755:2:1;36494:58:0;;;25737:21:1;25794:2;25774:18;;;25767:30;25833;25813:18;;;25806:58;25881:18;;36494:58:0;25553:352:1;36494:58:0;-1:-1:-1;;;;;36623:13:0;;;;;;:9;:13;;;;;:18;;36640:1;;36623:13;:18;;36640:1;;36623:18;:::i;:::-;;;;-1:-1:-1;;36652:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36652:21:0;-1:-1:-1;;;;;36652:21:0;;;;;;;;36691:33;;36652:16;;;36691:33;;36652:16;;36691:33;64945:34:::1;64828:159;64789:198::o:0;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:718;2347:5;2400:3;2393:4;2385:6;2381:17;2377:27;2367:55;;2418:1;2415;2408:12;2367:55;2454:6;2441:20;2480:18;2517:2;2513;2510:10;2507:36;;;2523:18;;:::i;:::-;2598:2;2592:9;2566:2;2652:13;;-1:-1:-1;;2648:22:1;;;2672:2;2644:31;2640:40;2628:53;;;2696:18;;;2716:22;;;2693:46;2690:72;;;2742:18;;:::i;:::-;2782:10;2778:2;2771:22;2817:2;2809:6;2802:18;2863:3;2856:4;2851:2;2843:6;2839:15;2835:26;2832:35;2829:55;;;2880:1;2877;2870:12;2829:55;2944:2;2937:4;2929:6;2925:17;2918:4;2910:6;2906:17;2893:54;2991:1;2984:4;2979:2;2971:6;2967:15;2963:26;2956:37;3011:6;3002:15;;;;;;2305:718;;;;:::o;3028:156::-;3094:20;;3154:4;3143:16;;3133:27;;3123:55;;3174:1;3171;3164:12;3189:602;3291:6;3299;3307;3315;3323;3376:3;3364:9;3355:7;3351:23;3347:33;3344:53;;;3393:1;3390;3383:12;3344:53;3416:29;3435:9;3416:29;:::i;:::-;3406:39;;3496:2;3485:9;3481:18;3468:32;3523:18;3515:6;3512:30;3509:50;;;3555:1;3552;3545:12;3509:50;3578:49;3619:7;3610:6;3599:9;3595:22;3578:49;:::i;:::-;3568:59;;;3674:2;3663:9;3659:18;3646:32;3636:42;;3725:2;3714:9;3710:18;3697:32;3687:42;;3748:37;3780:3;3769:9;3765:19;3748:37;:::i;:::-;3738:47;;3189:602;;;;;;;;:::o;4201:328::-;4278:6;4286;4294;4347:2;4335:9;4326:7;4322:23;4318:32;4315:52;;;4363:1;4360;4353:12;4315:52;4386:29;4405:9;4386:29;:::i;:::-;4376:39;;4434:38;4468:2;4457:9;4453:18;4434:38;:::i;:::-;4424:48;;4519:2;4508:9;4504:18;4491:32;4481:42;;4201:328;;;;;:::o;4534:186::-;4593:6;4646:2;4634:9;4625:7;4621:23;4617:32;4614:52;;;4662:1;4659;4652:12;4614:52;4685:29;4704:9;4685:29;:::i;4907:685::-;5000:6;5008;5016;5069:2;5057:9;5048:7;5044:23;5040:32;5037:52;;;5085:1;5082;5075:12;5037:52;5108:27;5125:9;5108:27;:::i;:::-;5098:37;;5186:2;5175:9;5171:18;5158:32;5209:18;5250:2;5242:6;5239:14;5236:34;;;5266:1;5263;5256:12;5236:34;5304:6;5293:9;5289:22;5279:32;;5349:7;5342:4;5338:2;5334:13;5330:27;5320:55;;5371:1;5368;5361:12;5320:55;5411:2;5398:16;5437:2;5429:6;5426:14;5423:34;;;5453:1;5450;5443:12;5423:34;5506:7;5501:2;5491:6;5488:1;5484:14;5480:2;5476:23;5472:32;5469:45;5466:65;;;5527:1;5524;5517:12;5466:65;5558:2;5554;5550:11;5540:21;;5580:6;5570:16;;;;;4907:685;;;;;:::o;5786:182::-;5843:6;5896:2;5884:9;5875:7;5871:23;5867:32;5864:52;;;5912:1;5909;5902:12;5864:52;5935:27;5952:9;5935:27;:::i;5973:347::-;6038:6;6046;6099:2;6087:9;6078:7;6074:23;6070:32;6067:52;;;6115:1;6112;6105:12;6067:52;6138:29;6157:9;6138:29;:::i;:::-;6128:39;;6217:2;6206:9;6202:18;6189:32;6264:5;6257:13;6250:21;6243:5;6240:32;6230:60;;6286:1;6283;6276:12;6230:60;6309:5;6299:15;;;5973:347;;;;;:::o;6510:537::-;6605:6;6613;6621;6629;6682:3;6670:9;6661:7;6657:23;6653:33;6650:53;;;6699:1;6696;6689:12;6650:53;6722:29;6741:9;6722:29;:::i;:::-;6712:39;;6770:38;6804:2;6793:9;6789:18;6770:38;:::i;:::-;6760:48;;6855:2;6844:9;6840:18;6827:32;6817:42;;6910:2;6899:9;6895:18;6882:32;6937:18;6929:6;6926:30;6923:50;;;6969:1;6966;6959:12;6923:50;6992:49;7033:7;7024:6;7013:9;7009:22;6992:49;:::i;:::-;6982:59;;;6510:537;;;;;;;:::o;7052:592::-;7123:6;7131;7184:2;7172:9;7163:7;7159:23;7155:32;7152:52;;;7200:1;7197;7190:12;7152:52;7240:9;7227:23;7269:18;7310:2;7302:6;7299:14;7296:34;;;7326:1;7323;7316:12;7296:34;7364:6;7353:9;7349:22;7339:32;;7409:7;7402:4;7398:2;7394:13;7390:27;7380:55;;7431:1;7428;7421:12;7380:55;7471:2;7458:16;7497:2;7489:6;7486:14;7483:34;;;7513:1;7510;7503:12;7483:34;7558:7;7553:2;7544:6;7540:2;7536:15;7532:24;7529:37;7526:57;;;7579:1;7576;7569:12;7526:57;7610:2;7602:11;;;;;7632:6;;-1:-1:-1;7052:592:1;;-1:-1:-1;;;;7052:592:1:o;7649:260::-;7717:6;7725;7778:2;7766:9;7757:7;7753:23;7749:32;7746:52;;;7794:1;7791;7784:12;7746:52;7817:29;7836:9;7817:29;:::i;:::-;7807:39;;7865:38;7899:2;7888:9;7884:18;7865:38;:::i;:::-;7855:48;;7649:260;;;;;:::o;8147:380::-;8226:1;8222:12;;;;8269;;;8290:61;;8344:4;8336:6;8332:17;8322:27;;8290:61;8397:2;8389:6;8386:14;8366:18;8363:38;8360:161;;8443:10;8438:3;8434:20;8431:1;8424:31;8478:4;8475:1;8468:15;8506:4;8503:1;8496:15;8360:161;;8147:380;;;:::o;10174:127::-;10235:10;10230:3;10226:20;10223:1;10216:31;10266:4;10263:1;10256:15;10290:4;10287:1;10280:15;10306:128;10346:3;10377:1;10373:6;10370:1;10367:13;10364:39;;;10383:18;;:::i;:::-;-1:-1:-1;10419:9:1;;10306:128::o;10439:432::-;-1:-1:-1;;;;;10696:15:1;;;10678:34;;10748:15;;10743:2;10728:18;;10721:43;10800:2;10795;10780:18;;10773:30;;;10621:4;;10820:45;;10846:18;;10838:6;10820:45;:::i;:::-;10812:53;10439:432;-1:-1:-1;;;;;10439:432:1:o;10876:184::-;10917:3;10955:5;10949:12;10970:52;11015:6;11010:3;11003:4;10996:5;10992:16;10970:52;:::i;:::-;11038:16;;;;;10876:184;-1:-1:-1;;10876:184:1:o;11065:415::-;11222:3;11260:6;11254:13;11276:53;11322:6;11317:3;11310:4;11302:6;11298:17;11276:53;:::i;:::-;11398:2;11394:15;;;;-1:-1:-1;;11390:53:1;11351:16;;;;11376:68;;;11471:2;11460:14;;11065:415;-1:-1:-1;;11065:415:1:o;11485:274::-;11614:3;11652:6;11646:13;11668:53;11714:6;11709:3;11702:4;11694:6;11690:17;11668:53;:::i;:::-;11737:16;;;;;11485:274;-1:-1:-1;;11485:274:1:o;12121:413::-;12323:2;12305:21;;;12362:2;12342:18;;;12335:30;12401:34;12396:2;12381:18;;12374:62;-1:-1:-1;;;12467:2:1;12452:18;;12445:47;12524:3;12509:19;;12121:413::o;12539:356::-;12741:2;12723:21;;;12760:18;;;12753:30;12819:34;12814:2;12799:18;;12792:62;12886:2;12871:18;;12539:356::o;13248:341::-;13450:2;13432:21;;;13489:2;13469:18;;;13462:30;-1:-1:-1;;;13523:2:1;13508:18;;13501:47;13580:2;13565:18;;13248:341::o;14945:125::-;14985:4;15013:1;15010;15007:8;15004:34;;;15018:18;;:::i;:::-;-1:-1:-1;15055:9:1;;14945:125::o;15896:184::-;15966:6;16019:2;16007:9;15998:7;15994:23;15990:32;15987:52;;;16035:1;16032;16025:12;15987:52;-1:-1:-1;16058:16:1;;15896:184;-1:-1:-1;15896:184:1:o;16677:1300::-;16954:3;16983:1;17016:6;17010:13;17046:3;17068:1;17096:9;17092:2;17088:18;17078:28;;17156:2;17145:9;17141:18;17178;17168:61;;17222:4;17214:6;17210:17;17200:27;;17168:61;17248:2;17296;17288:6;17285:14;17265:18;17262:38;17259:165;;-1:-1:-1;;;17323:33:1;;17379:4;17376:1;17369:15;17409:4;17330:3;17397:17;17259:165;17440:18;17467:104;;;;17585:1;17580:320;;;;17433:467;;17467:104;-1:-1:-1;;17500:24:1;;17488:37;;17545:16;;;;-1:-1:-1;17467:104:1;;17580:320;16506:1;16499:14;;;16543:4;16530:18;;17675:1;17689:165;17703:6;17700:1;17697:13;17689:165;;;17781:14;;17768:11;;;17761:35;17824:16;;;;17718:10;;17689:165;;;17693:3;;17883:6;17878:3;17874:16;17867:23;;17433:467;;;;;;;17916:55;17941:29;17966:3;17958:6;17941:29;:::i;:::-;-1:-1:-1;;;16619:20:1;;16664:1;16655:11;;16559:113;20766:168;20806:7;20872:1;20868;20864:6;20860:14;20857:1;20854:21;20849:1;20842:9;20835:17;20831:45;20828:71;;;20879:18;;:::i;:::-;-1:-1:-1;20919:9:1;;20766:168::o;21282:204::-;21320:3;21356:4;21353:1;21349:12;21388:4;21385:1;21381:12;21423:3;21417:4;21413:14;21408:3;21405:23;21402:49;;;21431:18;;:::i;:::-;21467:13;;21282:204;-1:-1:-1;;;21282:204:1:o;22206:135::-;22245:3;22266:17;;;22263:43;;22286:18;;:::i;:::-;-1:-1:-1;22333:1:1;22322:13;;22206:135::o;22700:414::-;22902:2;22884:21;;;22941:2;22921:18;;;22914:30;22980:34;22975:2;22960:18;;22953:62;-1:-1:-1;;;23046:2:1;23031:18;;23024:48;23104:3;23089:19;;22700:414::o;23119:127::-;23180:10;23175:3;23171:20;23168:1;23161:31;23211:4;23208:1;23201:15;23235:4;23232:1;23225:15;23251:120;23291:1;23317;23307:35;;23322:18;;:::i;:::-;-1:-1:-1;23356:9:1;;23251:120::o;23376:112::-;23408:1;23434;23424:35;;23439:18;;:::i;:::-;-1:-1:-1;23473:9:1;;23376:112::o;23493:127::-;23554:10;23549:3;23545:20;23542:1;23535:31;23585:4;23582:1;23575:15;23609:4;23606:1;23599:15;24444:489;-1:-1:-1;;;;;24713:15:1;;;24695:34;;24765:15;;24760:2;24745:18;;24738:43;24812:2;24797:18;;24790:34;;;24860:3;24855:2;24840:18;;24833:31;;;24638:4;;24881:46;;24907:19;;24899:6;24881:46;:::i;:::-;24873:54;24444:489;-1:-1:-1;;;;;;24444:489:1:o;24938:249::-;25007:6;25060:2;25048:9;25039:7;25035:23;25031:32;25028:52;;;25076:1;25073;25066:12;25028:52;25108:9;25102:16;25127:30;25151:5;25127:30;:::i

Swarm Source

ipfs://48ca4bc0b24192badaf90e9d5e1a7f958f77dd3d2e3d8590481e16e76c1d870b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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