ETH Price: $2,438.96 (-0.70%)
 

Overview

Max Total Supply

174 NMS

Holders

155

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NMS
0x25e0cE7cF653AE768A5B70d8d46d2745dFC98366
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:
NMS

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-12
*/

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// 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/utils/introspection/IERC165.sol


// 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/utils/introspection/ERC165.sol


// 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/IERC721.sol


// 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/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// 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/Strings.sol


// 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/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


// 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/token/ERC20/IERC20.sol


// 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/SafeERC20.sol


// 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: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// 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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol


// Creator: Coreibytes Inc./Habib Ferdous

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
                isApprovedForAll(prevOwnership.addr, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: @openzeppelin/contracts/finance/PaymentSplitter.sol


// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

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


// 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: contracts/NMS.sol


pragma solidity ^0.8.12;

//Coreibytes Inc./Habib Ferdous







contract NMS is Ownable, ERC721A, PaymentSplitter {

    using Strings for uint;
        using Counters for Counters.Counter;


    enum Step {
        Before,
        Presale,
        PublicSale, 
        SoldOut,
        Reveal
    }

    string public baseURI;

    string public notRevealedURI;

    Step public sellingStep;

    bytes32 public merkleRoot;

    uint private constant MAX_SUPPLY = 2500;

    uint public pricePresale = 0.095 ether; 

    uint public publicSalePrice = 0.195 ether;

    bool public revealed = false;

    bool public paused = false;

    string public baseExtension = ".json";

    Counters.Counter private _nftIdCounter;

    uint public saleStartTime = 1650326745;

    mapping(address => uint) public amountNFTsperWalletWhitelistSale;

    uint private teamLength;

    constructor(address[] memory _team, uint[] memory _teamShares, string memory _theBaseURI, string memory _theNotRevealedURI, bytes32 _merkleRoot) ERC721A("Nifty Muslim Sister", "NMS")
    PaymentSplitter(_team, _teamShares) {
        _nftIdCounter.increment();
        baseURI = _theBaseURI;
        notRevealedURI = _theNotRevealedURI;
        merkleRoot = _merkleRoot;
        teamLength = _team.length; 
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function getBalance() public view returns (uint) {
        return address(this).balance;
    }

    function changeMerkleRoot(bytes32 _newMerkleRoot) external onlyOwner {
        merkleRoot = _newMerkleRoot;
    }

    function setPaused(bool _paused) external onlyOwner {
        paused = _paused;
    }

    function changePricePresale(uint _pricePresale) external onlyOwner {
        pricePresale = _pricePresale;
    }

    function changePriceSale(uint _publicSalePrice) external onlyOwner {
        publicSalePrice = _publicSalePrice;
    }

    function setSaleStartTime(uint _saleStartTime) external onlyOwner {
        saleStartTime = _saleStartTime;
    }

    function setBaseUri(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }
    function setNotRevealURI(string memory _notRevealedURI) external onlyOwner {
        notRevealedURI = _notRevealedURI; 
    }
     function setBaseExtension(string memory _baseExtension) external onlyOwner {
        baseExtension = _baseExtension;
    }
    function reveal() external onlyOwner{
        revealed = true;
    }
      function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
    function currentTime() internal view returns(uint) {
        return block.timestamp;
    }

    function setStep(uint _step) external onlyOwner {
        sellingStep = Step(_step);
    }
        function presaleMint(address _account, uint _quantity, bytes32[] calldata _proof) external payable callerIsUser {
        uint price = pricePresale;
        require(price != 0, "Price is 0");
        require(sellingStep == Step.Presale, "Presale has not started yet.");
        require(isWhiteListed(msg.sender, _proof), "Not whitelisted");
        require(amountNFTsperWalletWhitelistSale[msg.sender] + _quantity <= 11, "You can only get 11 NFT on the Whitelist Sale");
        require(msg.value >= price * _quantity, "Not enought funds");
        amountNFTsperWalletWhitelistSale[msg.sender] += _quantity;
        _safeMint(_account, _quantity);
        }


       function publicSaleMint(address _account, uint _quantity) external payable callerIsUser {
        uint price = publicSalePrice;
        require(price != 0, "Price is 0");
        require(sellingStep == Step.PublicSale, "Public sale is not activated");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Max supply exceeded");
        require(msg.value >= price * _quantity, "Not enought funds");
        _safeMint(_account, _quantity);
    }
    function gift(address _to, uint _quantity) external onlyOwner {
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Reached max Supply");
        _safeMint(_to, _quantity);
    }

        function isWhiteListed(address account, bytes32[] calldata proof) internal view returns(bool) {
        return _verify(_leaf(account), proof);
    }
        
         function _leaf(address account) internal pure returns(bytes32) {
        return keccak256(abi.encodePacked(account));
    }
          function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns(bool) {
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }


  function tokenURI(uint _nftId) public view override(ERC721A) returns (string memory) {
        require(_exists(_nftId), "This NFT doesn't exist.");
        if(revealed == false) {

        return 
             string(abi.encodePacked(notRevealedURI, _nftId.toString(), baseExtension));
            

        }
        
        string memory currentBaseURI = _baseURI();
        return 
            bytes(currentBaseURI).length > 0 
            ? string(abi.encodePacked(currentBaseURI, _nftId.toString(), baseExtension))
            : "";
    }
  

    //ReleaseALL
    function releaseAll() external {
        for(uint i = 0 ; i < teamLength ; i++) {
            release(payable(payee(i)));
        }
    }

    receive() override external payable {
        revert('Only if you mint');
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_team","type":"address[]"},{"internalType":"uint256[]","name":"_teamShares","type":"uint256[]"},{"internalType":"string","name":"_theBaseURI","type":"string"},{"internalType":"string","name":"_theNotRevealedURI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":[{"internalType":"address","name":"","type":"address"}],"name":"amountNFTsperWalletWhitelistSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"changeMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pricePresale","type":"uint256"}],"name":"changePricePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSalePrice","type":"uint256"}],"name":"changePriceSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pricePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum NMS.Step","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStartTime","type":"uint256"}],"name":"setSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_nftId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

67015181ff25a980006014556702b4c777833380006015556016805461ffff1916905560c06040526005608081905264173539b7b760d91b60a09081526200004b9160179190620004f8565b5063625dfcd96019553480156200006157600080fd5b506040516200381c3803806200381c833981016040819052620000849162000715565b84846040518060400160405280601381526020017f4e69667479204d75736c696d2053697374657200000000000000000000000000815250604051806040016040528060038152602001624e4d5360e81b815250620000f2620000ec620002ad60201b60201c565b620002b1565b815162000107906003906020850190620004f8565b5080516200011d906004906020840190620004f8565b50600060015550508051825114620001975760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001ea5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200018e565b60005b82518110156200025657620002418382815181106200021057620002106200084c565b60200260200101518383815181106200022d576200022d6200084c565b60200260200101516200030160201b60201c565b806200024d8162000878565b915050620001ed565b505050620002706018620004ef60201b620019cd1760201c565b825162000285906010906020860190620004f8565b5081516200029b906011906020850190620004f8565b5060135550509051601b5550620008eb565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200036e5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200018e565b60008111620003c05760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200018e565b6001600160a01b0382166000908152600b6020526040902054156200043c5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200018e565b600d8054600181019091557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0384169081179091556000908152600b60205260409020819055600954620004a690829062000894565b600955604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b80546001019055565b8280546200050690620008af565b90600052602060002090601f0160209004810192826200052a576000855562000575565b82601f106200054557805160ff191683800117855562000575565b8280016001018555821562000575579182015b828111156200057557825182559160200191906001019062000558565b506200058392915062000587565b5090565b5b8082111562000583576000815560010162000588565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620005df57620005df6200059e565b604052919050565b60006001600160401b038211156200060357620006036200059e565b5060051b60200190565b600082601f8301126200061f57600080fd5b81516020620006386200063283620005e7565b620005b4565b82815260059290921b840181019181810190868411156200065857600080fd5b8286015b848110156200067557805183529183019183016200065c565b509695505050505050565b600082601f8301126200069257600080fd5b81516001600160401b03811115620006ae57620006ae6200059e565b6020620006c4601f8301601f19168201620005b4565b8281528582848701011115620006d957600080fd5b60005b83811015620006f9578581018301518282018401528201620006dc565b838111156200070b5760008385840101525b5095945050505050565b600080600080600060a086880312156200072e57600080fd5b85516001600160401b03808211156200074657600080fd5b818801915088601f8301126200075b57600080fd5b815160206200076e6200063283620005e7565b82815260059290921b8401810191818101908c8411156200078e57600080fd5b948201945b83861015620007c55785516001600160a01b0381168114620007b55760008081fd5b8252948201949082019062000793565b918b0151919950909350505080821115620007df57600080fd5b620007ed89838a016200060d565b955060408801519150808211156200080457600080fd5b6200081289838a0162000680565b945060608801519150808211156200082957600080fd5b50620008388882890162000680565b925050608086015190509295509295909350565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016200088d576200088d62000862565b5060010190565b60008219821115620008aa57620008aa62000862565b500190565b600181811c90821680620008c457607f821691505b602082108103620008e557634e487b7160e01b600052602260045260246000fd5b50919050565b612f2180620008fb6000396000f3fe6080604052600436106103035760003560e01c80637225038011610190578063b88d4fde116100dc578063d79779b211610095578063e985e9c51161006f578063e985e9c514610942578063ebcea3db1461098b578063f2fde38b146109ab578063f8dcbddb146109cb57600080fd5b8063d79779b2146108d7578063da3ef23f1461090d578063e33b7de31461092d57600080fd5b8063b88d4fde14610805578063c668286214610825578063c87b56dd1461083a578063cbccefb21461085a578063cbce4c9714610881578063ce7c2ac2146108a157600080fd5b80639852595c11610149578063a0bcfc7f11610123578063a0bcfc7f1461079d578063a22cb465146107bd578063a475b5dd146107dd578063ac5ae11b146107f257600080fd5b80639852595c1461072457806399d138001461075a5780639b6860c81461078757600080fd5b806372250380146106935780638b83209b146106a85780638da5cb5b146106c85780639147dd1b146106e6578063954dc3e3146106fc57806395d89b411461070f57600080fd5b80633f5fbad01161024f5780635accac99116102085780636352211e116101e25780636352211e146106295780636c0360eb1461064957806370a082311461065e578063715018a61461067e57600080fd5b80635accac99146105d55780635be7fde8146105f55780635c975abb1461060a57600080fd5b80633f5fbad0146104f5578063406072a91461051557806342842e0e1461055b57806348b750441461057b578063518302271461059b578063525f8a5c146105b557600080fd5b806318160ddd116102bc5780631dcfab39116102965780631dcfab391461048a57806323b872dd146104aa5780632eb4a7ab146104ca5780633a98ef39146104e057600080fd5b806318160ddd1461043b57806319165587146104545780631cbaee2d1461047457600080fd5b806301ffc9a71461034d57806306fdde0314610382578063081812fc146103a4578063095ea7b3146103dc57806312065fe0146103fe57806316c38b3c1461041b57600080fd5b366103485760405162461bcd60e51b815260206004820152601060248201526f13db9b1e481a59881e5bdd481b5a5b9d60821b60448201526064015b60405180910390fd5b600080fd5b34801561035957600080fd5b5061036d610368366004612796565b6109eb565b60405190151581526020015b60405180910390f35b34801561038e57600080fd5b50610397610a3d565b604051610379919061280b565b3480156103b057600080fd5b506103c46103bf36600461281e565b610acf565b6040516001600160a01b039091168152602001610379565b3480156103e857600080fd5b506103fc6103f736600461284c565b610b13565b005b34801561040a57600080fd5b50475b604051908152602001610379565b34801561042757600080fd5b506103fc610436366004612886565b610ba0565b34801561044757600080fd5b506002546001540361040d565b34801561046057600080fd5b506103fc61046f3660046128a3565b610be4565b34801561048057600080fd5b5061040d60195481565b34801561049657600080fd5b506103fc6104a536600461281e565b610d15565b3480156104b657600080fd5b506103fc6104c53660046128c0565b610d44565b3480156104d657600080fd5b5061040d60135481565b3480156104ec57600080fd5b5060095461040d565b34801561050157600080fd5b506103fc61051036600461281e565b610d4f565b34801561052157600080fd5b5061040d610530366004612901565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561056757600080fd5b506103fc6105763660046128c0565b610d7e565b34801561058757600080fd5b506103fc610596366004612901565b610d99565b3480156105a757600080fd5b5060165461036d9060ff1681565b3480156105c157600080fd5b506103fc6105d036600461281e565b610f75565b3480156105e157600080fd5b506103fc6105f03660046129c6565b610fa4565b34801561060157600080fd5b506103fc610fe5565b34801561061657600080fd5b5060165461036d90610100900460ff1681565b34801561063557600080fd5b506103c461064436600461281e565b611013565b34801561065557600080fd5b50610397611025565b34801561066a57600080fd5b5061040d6106793660046128a3565b6110b3565b34801561068a57600080fd5b506103fc611102565b34801561069f57600080fd5b50610397611138565b3480156106b457600080fd5b506103c46106c336600461281e565b611145565b3480156106d457600080fd5b506000546001600160a01b03166103c4565b3480156106f257600080fd5b5061040d60145481565b6103fc61070a366004612a0f565b611175565b34801561071b57600080fd5b506103976113b9565b34801561073057600080fd5b5061040d61073f3660046128a3565b6001600160a01b03166000908152600c602052604090205490565b34801561076657600080fd5b5061040d6107753660046128a3565b601a6020526000908152604090205481565b34801561079357600080fd5b5061040d60155481565b3480156107a957600080fd5b506103fc6107b83660046129c6565b6113c8565b3480156107c957600080fd5b506103fc6107d8366004612a9b565b611405565b3480156107e957600080fd5b506103fc61149a565b6103fc61080036600461284c565b6114d3565b34801561081157600080fd5b506103fc610820366004612ac9565b61167f565b34801561083157600080fd5b506103976116d0565b34801561084657600080fd5b5061039761085536600461281e565b6116dd565b34801561086657600080fd5b506012546108749060ff1681565b6040516103799190612b5f565b34801561088d57600080fd5b506103fc61089c36600461284c565b6117d7565b3480156108ad57600080fd5b5061040d6108bc3660046128a3565b6001600160a01b03166000908152600b602052604090205490565b3480156108e357600080fd5b5061040d6108f23660046128a3565b6001600160a01b03166000908152600e602052604090205490565b34801561091957600080fd5b506103fc6109283660046129c6565b611869565b34801561093957600080fd5b50600a5461040d565b34801561094e57600080fd5b5061036d61095d366004612901565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561099757600080fd5b506103fc6109a636600461281e565b6118a6565b3480156109b757600080fd5b506103fc6109c63660046128a3565b6118d5565b3480156109d757600080fd5b506103fc6109e636600461281e565b61196d565b60006001600160e01b031982166380ac58cd60e01b1480610a1c57506001600160e01b03198216635b5e139f60e01b145b80610a3757506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610a4c90612b87565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7890612b87565b8015610ac55780601f10610a9a57610100808354040283529160200191610ac5565b820191906000526020600020905b815481529060010190602001808311610aa857829003601f168201915b5050505050905090565b6000610ada826119d6565b610af7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610b1e82611013565b9050806001600160a01b0316836001600160a01b031603610b525760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b725750610b70813361095d565b155b15610b90576040516367d9dca160e11b815260040160405180910390fd5b610b9b838383611a02565b505050565b6000546001600160a01b03163314610bca5760405162461bcd60e51b815260040161033f90612bc1565b601680549115156101000261ff0019909216919091179055565b6001600160a01b0381166000908152600b6020526040902054610c195760405162461bcd60e51b815260040161033f90612bf6565b6000610c24600a5490565b610c2e9047612c52565b90506000610c5b8383610c56866001600160a01b03166000908152600c602052604090205490565b611a5e565b905080600003610c7d5760405162461bcd60e51b815260040161033f90612c6a565b6001600160a01b0383166000908152600c602052604081208054839290610ca5908490612c52565b9250508190555080600a6000828254610cbe9190612c52565b90915550610cce90508382611aa4565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6000546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161033f90612bc1565b601555565b610b9b838383611bbd565b6000546001600160a01b03163314610d795760405162461bcd60e51b815260040161033f90612bc1565b601455565b610b9b8383836040518060200160405280600081525061167f565b6001600160a01b0381166000908152600b6020526040902054610dce5760405162461bcd60e51b815260040161033f90612bf6565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610e2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4f9190612cb5565b610e599190612c52565b90506000610e928383610c5687876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b905080600003610eb45760405162461bcd60e51b815260040161033f90612c6a565b6001600160a01b038085166000908152600f6020908152604080832093871683529290529081208054839290610eeb908490612c52565b90915550506001600160a01b0384166000908152600e602052604081208054839290610f18908490612c52565b90915550610f299050848483611dd0565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000546001600160a01b03163314610f9f5760405162461bcd60e51b815260040161033f90612bc1565b601955565b6000546001600160a01b03163314610fce5760405162461bcd60e51b815260040161033f90612bc1565b8051610fe19060119060208401906126e7565b5050565b60005b601b5481101561101057610ffe61046f82611145565b8061100881612cce565b915050610fe8565b50565b600061101e82611e22565b5192915050565b6010805461103290612b87565b80601f016020809104026020016040519081016040528092919081815260200182805461105e90612b87565b80156110ab5780601f10611080576101008083540402835291602001916110ab565b820191906000526020600020905b81548152906001019060200180831161108e57829003601f168201915b505050505081565b60006001600160a01b0382166110dc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461112c5760405162461bcd60e51b815260040161033f90612bc1565b6111366000611f3e565b565b6011805461103290612b87565b6000600d828154811061115a5761115a612ce7565b6000918252602090912001546001600160a01b031692915050565b3233146111c45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161033f565b60145460008190036112055760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b604482015260640161033f565b600160125460ff16600481111561121e5761121e612b49565b1461126b5760405162461bcd60e51b815260206004820152601c60248201527f50726573616c6520686173206e6f742073746172746564207965742e00000000604482015260640161033f565b611276338484611f8e565b6112b45760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161033f565b336000908152601a6020526040902054600b906112d2908690612c52565b11156113365760405162461bcd60e51b815260206004820152602d60248201527f596f752063616e206f6e6c7920676574203131204e4654206f6e20746865205760448201526c686974656c6973742053616c6560981b606482015260840161033f565b6113408482612cfd565b3410156113835760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f756768742066756e647360781b604482015260640161033f565b336000908152601a6020526040812080548692906113a2908490612c52565b909155506113b29050858561200f565b5050505050565b606060048054610a4c90612b87565b6000546001600160a01b031633146113f25760405162461bcd60e51b815260040161033f90612bc1565b8051610fe19060109060208401906126e7565b336001600160a01b0383160361142e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146114c45760405162461bcd60e51b815260040161033f90612bc1565b6016805460ff19166001179055565b3233146115225760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161033f565b60155460008190036115635760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b604482015260640161033f565b600260125460ff16600481111561157c5761157c612b49565b146115c95760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c65206973206e6f742061637469766174656400000000604482015260640161033f565b6109c4826115da6002546001540390565b6115e49190612c52565b11156116285760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604482015260640161033f565b6116328282612cfd565b3410156116755760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f756768742066756e647360781b604482015260640161033f565b610b9b838361200f565b61168a848484611bbd565b6001600160a01b0383163b151580156116ac57506116aa84848484612029565b155b156116ca576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6017805461103290612b87565b60606116e8826119d6565b6117345760405162461bcd60e51b815260206004820152601760248201527f54686973204e465420646f65736e27742065786973742e000000000000000000604482015260640161033f565b60165460ff16151560000361177857601161174e83612114565b601760405160200161176293929190612db5565b6040516020818303038152906040529050919050565b6000611782612215565b905060008151116117a257604051806020016040528060008152506117d0565b806117ac84612114565b60176040516020016117c093929190612ddd565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146118015760405162461bcd60e51b815260040161033f90612bc1565b6109c4816118126002546001540390565b61181c9190612c52565b111561185f5760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820537570706c7960701b604482015260640161033f565b610fe1828261200f565b6000546001600160a01b031633146118935760405162461bcd60e51b815260040161033f90612bc1565b8051610fe19060179060208401906126e7565b6000546001600160a01b031633146118d05760405162461bcd60e51b815260040161033f90612bc1565b601355565b6000546001600160a01b031633146118ff5760405162461bcd60e51b815260040161033f90612bc1565b6001600160a01b0381166119645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161033f565b61101081611f3e565b6000546001600160a01b031633146119975760405162461bcd60e51b815260040161033f90612bc1565b8060048111156119a9576119a9612b49565b6012805460ff191660018360048111156119c5576119c5612b49565b021790555050565b80546001019055565b600060015482108015610a37575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b0384166000908152600b602052604081205490918391611a889086612cfd565b611a929190612e19565b611a9c9190612e2d565b949350505050565b80471015611af45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161033f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b41576040519150601f19603f3d011682016040523d82523d6000602084013e611b46565b606091505b5050905080610b9b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161033f565b6000611bc882611e22565b80519091506000906001600160a01b0316336001600160a01b03161480611bf657508151611bf6903361095d565b80611c11575033611c0684610acf565b6001600160a01b0316145b905080611c3157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611c665760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611c8d57604051633a954ecd60e21b815260040160405180910390fd5b611c9d6000848460000151611a02565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611d8957600154811015611d89578251600082815260056020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113b2565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b9b908490612224565b604080516060810182526000808252602082018190529181019190915281600154811015611f2557600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611f235780516001600160a01b031615611eb9579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611f1e579392505050565b611eb9565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611a9c611fd6856040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506122f692505050565b610fe1828260405180602001604052806000815250612305565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061205e903390899088908890600401612e44565b6020604051808303816000875af1925050508015612099575060408051601f3d908101601f1916820190925261209691810190612e81565b60015b6120f7573d8080156120c7576040519150601f19603f3d011682016040523d82523d6000602084013e6120cc565b606091505b5080516000036120ef576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608160000361213b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612165578061214f81612cce565b915061215e9050600a83612e19565b915061213f565b60008167ffffffffffffffff8111156121805761218061293a565b6040519080825280601f01601f1916602001820160405280156121aa576020820181803683370190505b5090505b8415611a9c576121bf600183612e2d565b91506121cc600a86612e9e565b6121d7906030612c52565b60f81b8183815181106121ec576121ec612ce7565b60200101906001600160f81b031916908160001a90535061220e600a86612e19565b94506121ae565b606060108054610a4c90612b87565b6000612279826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166123129092919063ffffffff16565b805190915015610b9b57808060200190518101906122979190612eb2565b610b9b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161033f565b60006117d08260135485612321565b610b9b8383836001612337565b6060611a9c8484600085612509565b60008261232e858461263a565b14949350505050565b6001546001600160a01b03851661236057604051622e076360e81b815260040160405180910390fd5b836000036123815760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561243357506001600160a01b0387163b15155b156124bb575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124846000888480600101955088612029565b6124a1576040516368d2bf6b60e11b815260040160405180910390fd5b8082036124395782600154146124b657600080fd5b612500565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036124bc575b506001556113b2565b60608247101561256a5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161033f565b6001600160a01b0385163b6125c15760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161033f565b600080866001600160a01b031685876040516125dd9190612ecf565b60006040518083038185875af1925050503d806000811461261a576040519150601f19603f3d011682016040523d82523d6000602084013e61261f565b606091505b509150915061262f8282866126ae565b979650505050505050565b600081815b84518110156126a657600085828151811061265c5761265c612ce7565b602002602001015190508083116126825760008381526020829052604090209250612693565b600081815260208490526040902092505b508061269e81612cce565b91505061263f565b509392505050565b606083156126bd5750816117d0565b8251156126cd5782518084602001fd5b8160405162461bcd60e51b815260040161033f919061280b565b8280546126f390612b87565b90600052602060002090601f016020900481019282612715576000855561275b565b82601f1061272e57805160ff191683800117855561275b565b8280016001018555821561275b579182015b8281111561275b578251825591602001919060010190612740565b5061276792915061276b565b5090565b5b80821115612767576000815560010161276c565b6001600160e01b03198116811461101057600080fd5b6000602082840312156127a857600080fd5b81356117d081612780565b60005b838110156127ce5781810151838201526020016127b6565b838111156116ca5750506000910152565b600081518084526127f78160208601602086016127b3565b601f01601f19169290920160200192915050565b6020815260006117d060208301846127df565b60006020828403121561283057600080fd5b5035919050565b6001600160a01b038116811461101057600080fd5b6000806040838503121561285f57600080fd5b823561286a81612837565b946020939093013593505050565b801515811461101057600080fd5b60006020828403121561289857600080fd5b81356117d081612878565b6000602082840312156128b557600080fd5b81356117d081612837565b6000806000606084860312156128d557600080fd5b83356128e081612837565b925060208401356128f081612837565b929592945050506040919091013590565b6000806040838503121561291457600080fd5b823561291f81612837565b9150602083013561292f81612837565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561296b5761296b61293a565b604051601f8501601f19908116603f011681019082821181831017156129935761299361293a565b816040528093508581528686860111156129ac57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156129d857600080fd5b813567ffffffffffffffff8111156129ef57600080fd5b8201601f81018413612a0057600080fd5b611a9c84823560208401612950565b60008060008060608587031215612a2557600080fd5b8435612a3081612837565b935060208501359250604085013567ffffffffffffffff80821115612a5457600080fd5b818701915087601f830112612a6857600080fd5b813581811115612a7757600080fd5b8860208260051b8501011115612a8c57600080fd5b95989497505060200194505050565b60008060408385031215612aae57600080fd5b8235612ab981612837565b9150602083013561292f81612878565b60008060008060808587031215612adf57600080fd5b8435612aea81612837565b93506020850135612afa81612837565b925060408501359150606085013567ffffffffffffffff811115612b1d57600080fd5b8501601f81018713612b2e57600080fd5b612b3d87823560208401612950565b91505092959194509250565b634e487b7160e01b600052602160045260246000fd5b6020810160058310612b8157634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c90821680612b9b57607f821691505b602082108103612bbb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612c6557612c65612c3c565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b600060208284031215612cc757600080fd5b5051919050565b600060018201612ce057612ce0612c3c565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615612d1757612d17612c3c565b500290565b8054600090600181811c9080831680612d3657607f831692505b60208084108203612d5757634e487b7160e01b600052602260045260246000fd5b818015612d6b5760018114612d7c57612da9565b60ff19861689528489019650612da9565b60008881526020902060005b86811015612da15781548b820152908501908301612d88565b505084890196505b50505050505092915050565b6000612dc18286612d1c565b8451612dd18183602089016127b3565b61262f81830186612d1c565b60008451612def8184602089016127b3565b845190830190612dd18183602089016127b3565b634e487b7160e01b600052601260045260246000fd5b600082612e2857612e28612e03565b500490565b600082821015612e3f57612e3f612c3c565b500390565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e77908301846127df565b9695505050505050565b600060208284031215612e9357600080fd5b81516117d081612780565b600082612ead57612ead612e03565b500690565b600060208284031215612ec457600080fd5b81516117d081612878565b60008251612ee18184602087016127b3565b919091019291505056fea2646970667358221220fa8f6185d430b9a0e603773d3ccbcb9615f32ba12ccb797eccaf5f9b11e9f60564736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180d0b0f1518b3d088a6ddc0776153675a2d452f26e2e8dec078d6073b8ee5bb44a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000cf2a7aa69f2334314a72fb596ed32cacced806e4000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63516d326b75726574536d426b35517755533156487546714e524346616e5978717144396d59394d76334d432f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6452466d56315464707973516f763550787a4a51566b715073714e437067364376615476624641574a5151642f00000000000000000000

Deployed Bytecode

0x6080604052600436106103035760003560e01c80637225038011610190578063b88d4fde116100dc578063d79779b211610095578063e985e9c51161006f578063e985e9c514610942578063ebcea3db1461098b578063f2fde38b146109ab578063f8dcbddb146109cb57600080fd5b8063d79779b2146108d7578063da3ef23f1461090d578063e33b7de31461092d57600080fd5b8063b88d4fde14610805578063c668286214610825578063c87b56dd1461083a578063cbccefb21461085a578063cbce4c9714610881578063ce7c2ac2146108a157600080fd5b80639852595c11610149578063a0bcfc7f11610123578063a0bcfc7f1461079d578063a22cb465146107bd578063a475b5dd146107dd578063ac5ae11b146107f257600080fd5b80639852595c1461072457806399d138001461075a5780639b6860c81461078757600080fd5b806372250380146106935780638b83209b146106a85780638da5cb5b146106c85780639147dd1b146106e6578063954dc3e3146106fc57806395d89b411461070f57600080fd5b80633f5fbad01161024f5780635accac99116102085780636352211e116101e25780636352211e146106295780636c0360eb1461064957806370a082311461065e578063715018a61461067e57600080fd5b80635accac99146105d55780635be7fde8146105f55780635c975abb1461060a57600080fd5b80633f5fbad0146104f5578063406072a91461051557806342842e0e1461055b57806348b750441461057b578063518302271461059b578063525f8a5c146105b557600080fd5b806318160ddd116102bc5780631dcfab39116102965780631dcfab391461048a57806323b872dd146104aa5780632eb4a7ab146104ca5780633a98ef39146104e057600080fd5b806318160ddd1461043b57806319165587146104545780631cbaee2d1461047457600080fd5b806301ffc9a71461034d57806306fdde0314610382578063081812fc146103a4578063095ea7b3146103dc57806312065fe0146103fe57806316c38b3c1461041b57600080fd5b366103485760405162461bcd60e51b815260206004820152601060248201526f13db9b1e481a59881e5bdd481b5a5b9d60821b60448201526064015b60405180910390fd5b600080fd5b34801561035957600080fd5b5061036d610368366004612796565b6109eb565b60405190151581526020015b60405180910390f35b34801561038e57600080fd5b50610397610a3d565b604051610379919061280b565b3480156103b057600080fd5b506103c46103bf36600461281e565b610acf565b6040516001600160a01b039091168152602001610379565b3480156103e857600080fd5b506103fc6103f736600461284c565b610b13565b005b34801561040a57600080fd5b50475b604051908152602001610379565b34801561042757600080fd5b506103fc610436366004612886565b610ba0565b34801561044757600080fd5b506002546001540361040d565b34801561046057600080fd5b506103fc61046f3660046128a3565b610be4565b34801561048057600080fd5b5061040d60195481565b34801561049657600080fd5b506103fc6104a536600461281e565b610d15565b3480156104b657600080fd5b506103fc6104c53660046128c0565b610d44565b3480156104d657600080fd5b5061040d60135481565b3480156104ec57600080fd5b5060095461040d565b34801561050157600080fd5b506103fc61051036600461281e565b610d4f565b34801561052157600080fd5b5061040d610530366004612901565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561056757600080fd5b506103fc6105763660046128c0565b610d7e565b34801561058757600080fd5b506103fc610596366004612901565b610d99565b3480156105a757600080fd5b5060165461036d9060ff1681565b3480156105c157600080fd5b506103fc6105d036600461281e565b610f75565b3480156105e157600080fd5b506103fc6105f03660046129c6565b610fa4565b34801561060157600080fd5b506103fc610fe5565b34801561061657600080fd5b5060165461036d90610100900460ff1681565b34801561063557600080fd5b506103c461064436600461281e565b611013565b34801561065557600080fd5b50610397611025565b34801561066a57600080fd5b5061040d6106793660046128a3565b6110b3565b34801561068a57600080fd5b506103fc611102565b34801561069f57600080fd5b50610397611138565b3480156106b457600080fd5b506103c46106c336600461281e565b611145565b3480156106d457600080fd5b506000546001600160a01b03166103c4565b3480156106f257600080fd5b5061040d60145481565b6103fc61070a366004612a0f565b611175565b34801561071b57600080fd5b506103976113b9565b34801561073057600080fd5b5061040d61073f3660046128a3565b6001600160a01b03166000908152600c602052604090205490565b34801561076657600080fd5b5061040d6107753660046128a3565b601a6020526000908152604090205481565b34801561079357600080fd5b5061040d60155481565b3480156107a957600080fd5b506103fc6107b83660046129c6565b6113c8565b3480156107c957600080fd5b506103fc6107d8366004612a9b565b611405565b3480156107e957600080fd5b506103fc61149a565b6103fc61080036600461284c565b6114d3565b34801561081157600080fd5b506103fc610820366004612ac9565b61167f565b34801561083157600080fd5b506103976116d0565b34801561084657600080fd5b5061039761085536600461281e565b6116dd565b34801561086657600080fd5b506012546108749060ff1681565b6040516103799190612b5f565b34801561088d57600080fd5b506103fc61089c36600461284c565b6117d7565b3480156108ad57600080fd5b5061040d6108bc3660046128a3565b6001600160a01b03166000908152600b602052604090205490565b3480156108e357600080fd5b5061040d6108f23660046128a3565b6001600160a01b03166000908152600e602052604090205490565b34801561091957600080fd5b506103fc6109283660046129c6565b611869565b34801561093957600080fd5b50600a5461040d565b34801561094e57600080fd5b5061036d61095d366004612901565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561099757600080fd5b506103fc6109a636600461281e565b6118a6565b3480156109b757600080fd5b506103fc6109c63660046128a3565b6118d5565b3480156109d757600080fd5b506103fc6109e636600461281e565b61196d565b60006001600160e01b031982166380ac58cd60e01b1480610a1c57506001600160e01b03198216635b5e139f60e01b145b80610a3757506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610a4c90612b87565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7890612b87565b8015610ac55780601f10610a9a57610100808354040283529160200191610ac5565b820191906000526020600020905b815481529060010190602001808311610aa857829003601f168201915b5050505050905090565b6000610ada826119d6565b610af7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610b1e82611013565b9050806001600160a01b0316836001600160a01b031603610b525760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b725750610b70813361095d565b155b15610b90576040516367d9dca160e11b815260040160405180910390fd5b610b9b838383611a02565b505050565b6000546001600160a01b03163314610bca5760405162461bcd60e51b815260040161033f90612bc1565b601680549115156101000261ff0019909216919091179055565b6001600160a01b0381166000908152600b6020526040902054610c195760405162461bcd60e51b815260040161033f90612bf6565b6000610c24600a5490565b610c2e9047612c52565b90506000610c5b8383610c56866001600160a01b03166000908152600c602052604090205490565b611a5e565b905080600003610c7d5760405162461bcd60e51b815260040161033f90612c6a565b6001600160a01b0383166000908152600c602052604081208054839290610ca5908490612c52565b9250508190555080600a6000828254610cbe9190612c52565b90915550610cce90508382611aa4565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6000546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161033f90612bc1565b601555565b610b9b838383611bbd565b6000546001600160a01b03163314610d795760405162461bcd60e51b815260040161033f90612bc1565b601455565b610b9b8383836040518060200160405280600081525061167f565b6001600160a01b0381166000908152600b6020526040902054610dce5760405162461bcd60e51b815260040161033f90612bf6565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610e2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4f9190612cb5565b610e599190612c52565b90506000610e928383610c5687876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b905080600003610eb45760405162461bcd60e51b815260040161033f90612c6a565b6001600160a01b038085166000908152600f6020908152604080832093871683529290529081208054839290610eeb908490612c52565b90915550506001600160a01b0384166000908152600e602052604081208054839290610f18908490612c52565b90915550610f299050848483611dd0565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000546001600160a01b03163314610f9f5760405162461bcd60e51b815260040161033f90612bc1565b601955565b6000546001600160a01b03163314610fce5760405162461bcd60e51b815260040161033f90612bc1565b8051610fe19060119060208401906126e7565b5050565b60005b601b5481101561101057610ffe61046f82611145565b8061100881612cce565b915050610fe8565b50565b600061101e82611e22565b5192915050565b6010805461103290612b87565b80601f016020809104026020016040519081016040528092919081815260200182805461105e90612b87565b80156110ab5780601f10611080576101008083540402835291602001916110ab565b820191906000526020600020905b81548152906001019060200180831161108e57829003601f168201915b505050505081565b60006001600160a01b0382166110dc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461112c5760405162461bcd60e51b815260040161033f90612bc1565b6111366000611f3e565b565b6011805461103290612b87565b6000600d828154811061115a5761115a612ce7565b6000918252602090912001546001600160a01b031692915050565b3233146111c45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161033f565b60145460008190036112055760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b604482015260640161033f565b600160125460ff16600481111561121e5761121e612b49565b1461126b5760405162461bcd60e51b815260206004820152601c60248201527f50726573616c6520686173206e6f742073746172746564207965742e00000000604482015260640161033f565b611276338484611f8e565b6112b45760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161033f565b336000908152601a6020526040902054600b906112d2908690612c52565b11156113365760405162461bcd60e51b815260206004820152602d60248201527f596f752063616e206f6e6c7920676574203131204e4654206f6e20746865205760448201526c686974656c6973742053616c6560981b606482015260840161033f565b6113408482612cfd565b3410156113835760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f756768742066756e647360781b604482015260640161033f565b336000908152601a6020526040812080548692906113a2908490612c52565b909155506113b29050858561200f565b5050505050565b606060048054610a4c90612b87565b6000546001600160a01b031633146113f25760405162461bcd60e51b815260040161033f90612bc1565b8051610fe19060109060208401906126e7565b336001600160a01b0383160361142e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146114c45760405162461bcd60e51b815260040161033f90612bc1565b6016805460ff19166001179055565b3233146115225760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161033f565b60155460008190036115635760405162461bcd60e51b815260206004820152600a6024820152690507269636520697320360b41b604482015260640161033f565b600260125460ff16600481111561157c5761157c612b49565b146115c95760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c65206973206e6f742061637469766174656400000000604482015260640161033f565b6109c4826115da6002546001540390565b6115e49190612c52565b11156116285760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604482015260640161033f565b6116328282612cfd565b3410156116755760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f756768742066756e647360781b604482015260640161033f565b610b9b838361200f565b61168a848484611bbd565b6001600160a01b0383163b151580156116ac57506116aa84848484612029565b155b156116ca576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6017805461103290612b87565b60606116e8826119d6565b6117345760405162461bcd60e51b815260206004820152601760248201527f54686973204e465420646f65736e27742065786973742e000000000000000000604482015260640161033f565b60165460ff16151560000361177857601161174e83612114565b601760405160200161176293929190612db5565b6040516020818303038152906040529050919050565b6000611782612215565b905060008151116117a257604051806020016040528060008152506117d0565b806117ac84612114565b60176040516020016117c093929190612ddd565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146118015760405162461bcd60e51b815260040161033f90612bc1565b6109c4816118126002546001540390565b61181c9190612c52565b111561185f5760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820537570706c7960701b604482015260640161033f565b610fe1828261200f565b6000546001600160a01b031633146118935760405162461bcd60e51b815260040161033f90612bc1565b8051610fe19060179060208401906126e7565b6000546001600160a01b031633146118d05760405162461bcd60e51b815260040161033f90612bc1565b601355565b6000546001600160a01b031633146118ff5760405162461bcd60e51b815260040161033f90612bc1565b6001600160a01b0381166119645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161033f565b61101081611f3e565b6000546001600160a01b031633146119975760405162461bcd60e51b815260040161033f90612bc1565b8060048111156119a9576119a9612b49565b6012805460ff191660018360048111156119c5576119c5612b49565b021790555050565b80546001019055565b600060015482108015610a37575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b0384166000908152600b602052604081205490918391611a889086612cfd565b611a929190612e19565b611a9c9190612e2d565b949350505050565b80471015611af45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161033f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b41576040519150601f19603f3d011682016040523d82523d6000602084013e611b46565b606091505b5050905080610b9b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161033f565b6000611bc882611e22565b80519091506000906001600160a01b0316336001600160a01b03161480611bf657508151611bf6903361095d565b80611c11575033611c0684610acf565b6001600160a01b0316145b905080611c3157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611c665760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611c8d57604051633a954ecd60e21b815260040160405180910390fd5b611c9d6000848460000151611a02565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611d8957600154811015611d89578251600082815260056020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113b2565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b9b908490612224565b604080516060810182526000808252602082018190529181019190915281600154811015611f2557600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611f235780516001600160a01b031615611eb9579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611f1e579392505050565b611eb9565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611a9c611fd6856040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506122f692505050565b610fe1828260405180602001604052806000815250612305565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061205e903390899088908890600401612e44565b6020604051808303816000875af1925050508015612099575060408051601f3d908101601f1916820190925261209691810190612e81565b60015b6120f7573d8080156120c7576040519150601f19603f3d011682016040523d82523d6000602084013e6120cc565b606091505b5080516000036120ef576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608160000361213b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612165578061214f81612cce565b915061215e9050600a83612e19565b915061213f565b60008167ffffffffffffffff8111156121805761218061293a565b6040519080825280601f01601f1916602001820160405280156121aa576020820181803683370190505b5090505b8415611a9c576121bf600183612e2d565b91506121cc600a86612e9e565b6121d7906030612c52565b60f81b8183815181106121ec576121ec612ce7565b60200101906001600160f81b031916908160001a90535061220e600a86612e19565b94506121ae565b606060108054610a4c90612b87565b6000612279826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166123129092919063ffffffff16565b805190915015610b9b57808060200190518101906122979190612eb2565b610b9b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161033f565b60006117d08260135485612321565b610b9b8383836001612337565b6060611a9c8484600085612509565b60008261232e858461263a565b14949350505050565b6001546001600160a01b03851661236057604051622e076360e81b815260040160405180910390fd5b836000036123815760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561243357506001600160a01b0387163b15155b156124bb575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124846000888480600101955088612029565b6124a1576040516368d2bf6b60e11b815260040160405180910390fd5b8082036124395782600154146124b657600080fd5b612500565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036124bc575b506001556113b2565b60608247101561256a5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161033f565b6001600160a01b0385163b6125c15760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161033f565b600080866001600160a01b031685876040516125dd9190612ecf565b60006040518083038185875af1925050503d806000811461261a576040519150601f19603f3d011682016040523d82523d6000602084013e61261f565b606091505b509150915061262f8282866126ae565b979650505050505050565b600081815b84518110156126a657600085828151811061265c5761265c612ce7565b602002602001015190508083116126825760008381526020829052604090209250612693565b600081815260208490526040902092505b508061269e81612cce565b91505061263f565b509392505050565b606083156126bd5750816117d0565b8251156126cd5782518084602001fd5b8160405162461bcd60e51b815260040161033f919061280b565b8280546126f390612b87565b90600052602060002090601f016020900481019282612715576000855561275b565b82601f1061272e57805160ff191683800117855561275b565b8280016001018555821561275b579182015b8281111561275b578251825591602001919060010190612740565b5061276792915061276b565b5090565b5b80821115612767576000815560010161276c565b6001600160e01b03198116811461101057600080fd5b6000602082840312156127a857600080fd5b81356117d081612780565b60005b838110156127ce5781810151838201526020016127b6565b838111156116ca5750506000910152565b600081518084526127f78160208601602086016127b3565b601f01601f19169290920160200192915050565b6020815260006117d060208301846127df565b60006020828403121561283057600080fd5b5035919050565b6001600160a01b038116811461101057600080fd5b6000806040838503121561285f57600080fd5b823561286a81612837565b946020939093013593505050565b801515811461101057600080fd5b60006020828403121561289857600080fd5b81356117d081612878565b6000602082840312156128b557600080fd5b81356117d081612837565b6000806000606084860312156128d557600080fd5b83356128e081612837565b925060208401356128f081612837565b929592945050506040919091013590565b6000806040838503121561291457600080fd5b823561291f81612837565b9150602083013561292f81612837565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561296b5761296b61293a565b604051601f8501601f19908116603f011681019082821181831017156129935761299361293a565b816040528093508581528686860111156129ac57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156129d857600080fd5b813567ffffffffffffffff8111156129ef57600080fd5b8201601f81018413612a0057600080fd5b611a9c84823560208401612950565b60008060008060608587031215612a2557600080fd5b8435612a3081612837565b935060208501359250604085013567ffffffffffffffff80821115612a5457600080fd5b818701915087601f830112612a6857600080fd5b813581811115612a7757600080fd5b8860208260051b8501011115612a8c57600080fd5b95989497505060200194505050565b60008060408385031215612aae57600080fd5b8235612ab981612837565b9150602083013561292f81612878565b60008060008060808587031215612adf57600080fd5b8435612aea81612837565b93506020850135612afa81612837565b925060408501359150606085013567ffffffffffffffff811115612b1d57600080fd5b8501601f81018713612b2e57600080fd5b612b3d87823560208401612950565b91505092959194509250565b634e487b7160e01b600052602160045260246000fd5b6020810160058310612b8157634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c90821680612b9b57607f821691505b602082108103612bbb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612c6557612c65612c3c565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b600060208284031215612cc757600080fd5b5051919050565b600060018201612ce057612ce0612c3c565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615612d1757612d17612c3c565b500290565b8054600090600181811c9080831680612d3657607f831692505b60208084108203612d5757634e487b7160e01b600052602260045260246000fd5b818015612d6b5760018114612d7c57612da9565b60ff19861689528489019650612da9565b60008881526020902060005b86811015612da15781548b820152908501908301612d88565b505084890196505b50505050505092915050565b6000612dc18286612d1c565b8451612dd18183602089016127b3565b61262f81830186612d1c565b60008451612def8184602089016127b3565b845190830190612dd18183602089016127b3565b634e487b7160e01b600052601260045260246000fd5b600082612e2857612e28612e03565b500490565b600082821015612e3f57612e3f612c3c565b500390565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e77908301846127df565b9695505050505050565b600060208284031215612e9357600080fd5b81516117d081612780565b600082612ead57612ead612e03565b500690565b600060208284031215612ec457600080fd5b81516117d081612878565b60008251612ee18184602087016127b3565b919091019291505056fea2646970667358221220fa8f6185d430b9a0e603773d3ccbcb9615f32ba12ccb797eccaf5f9b11e9f60564736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180d0b0f1518b3d088a6ddc0776153675a2d452f26e2e8dec078d6073b8ee5bb44a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000cf2a7aa69f2334314a72fb596ed32cacced806e4000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63516d326b75726574536d426b35517755533156487546714e524346616e5978717144396d59394d76334d432f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6452466d56315464707973516f763550787a4a51566b715073714e437067364376615476624641574a5151642f00000000000000000000

-----Decoded View---------------
Arg [0] : _team (address[]): 0xCf2a7aA69f2334314a72fB596ed32CACcED806e4
Arg [1] : _teamShares (uint256[]): 100
Arg [2] : _theBaseURI (string): ipfs://QmcQm2kuretSmBk5QwUS1VHuFqNRCFanYxqqD9mY9Mv3MC/
Arg [3] : _theNotRevealedURI (string): ipfs://QmdRFmV1TdpysQov5PxzJQVkqPsqNCpg6CvaTvbFAWJQQd/
Arg [4] : _merkleRoot (bytes32): 0xd0b0f1518b3d088a6ddc0776153675a2d452f26e2e8dec078d6073b8ee5bb44a

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : d0b0f1518b3d088a6ddc0776153675a2d452f26e2e8dec078d6073b8ee5bb44a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 000000000000000000000000cf2a7aa69f2334314a72fb596ed32cacced806e4
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d63516d326b75726574536d426b35517755533156487546
Arg [11] : 714e524346616e5978717144396d59394d76334d432f00000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [13] : 697066733a2f2f516d6452466d56315464707973516f763550787a4a51566b71
Arg [14] : 5073714e437067364376615476624641574a5151642f00000000000000000000


Deployed Bytecode Sourcemap

64879:5508:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70348:26;;-1:-1:-1;;;70348:26:0;;216:2:1;70348:26:0;;;198:21:1;255:2;235:18;;;228:30;-1:-1:-1;;;274:18:1;;;267:46;330:18;;70348:26:0;;;;;;;;64879:5508;;;;36714:305;;;;;;;;;;-1:-1:-1;36714:305:0;;;;;:::i;:::-;;:::i;:::-;;;910:14:1;;903:22;885:41;;873:2;858:18;36714:305:0;;;;;;;;40031:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41534:204::-;;;;;;;;;;-1:-1:-1;41534:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2037:32:1;;;2019:51;;2007:2;1992:18;41534:204:0;1873:203:1;41097:371:0;;;;;;;;;;-1:-1:-1;41097:371:0;;;;;:::i;:::-;;:::i;:::-;;66285:96;;;;;;;;;;-1:-1:-1;66352:21:0;66285:96;;;2683:25:1;;;2671:2;2656:18;66285:96:0;2537:177:1;66512:87:0;;;;;;;;;;-1:-1:-1;66512:87:0;;;;;:::i;:::-;;:::i;35963:303::-;;;;;;;;;;-1:-1:-1;36217:12:0;;36201:13;;:28;35963:303;;59669:566;;;;;;;;;;-1:-1:-1;59669:566:0;;;;;:::i;:::-;;:::i;65578:38::-;;;;;;;;;;;;;;;;66729:120;;;;;;;;;;-1:-1:-1;66729:120:0;;;;;:::i;:::-;;:::i;42399:170::-;;;;;;;;;;-1:-1:-1;42399:170:0;;;;;:::i;:::-;;:::i;65233:25::-;;;;;;;;;;;;;;;;58014:91;;;;;;;;;;-1:-1:-1;58085:12:0;;58014:91;;66607:114;;;;;;;;;;-1:-1:-1;66607:114:0;;;;;:::i;:::-;;:::i;59143:135::-;;;;;;;;;;-1:-1:-1;59143:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;59240:21:0;;;59213:7;59240:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;59143:135;42640:185;;;;;;;;;;-1:-1:-1;42640:185:0;;;;;:::i;:::-;;:::i;60503:641::-;;;;;;;;;;-1:-1:-1;60503:641:0;;;;;:::i;:::-;;:::i;65413:28::-;;;;;;;;;;-1:-1:-1;65413:28:0;;;;;;;;66857:115;;;;;;;;;;-1:-1:-1;66857:115:0;;;;;:::i;:::-;;:::i;67092:127::-;;;;;;;;;;-1:-1:-1;67092:127:0;;;;;:::i;:::-;;:::i;70152:141::-;;;;;;;;;;;;;:::i;65450:26::-;;;;;;;;;;-1:-1:-1;65450:26:0;;;;;;;;;;;39839:125;;;;;;;;;;-1:-1:-1;39839:125:0;;;;;:::i;:::-;;:::i;65134:21::-;;;;;;;;;;;;;:::i;37083:206::-;;;;;;;;;;-1:-1:-1;37083:206:0;;;;;:::i;:::-;;:::i;63955:103::-;;;;;;;;;;;;;:::i;65164:28::-;;;;;;;;;;;;;:::i;59369:100::-;;;;;;;;;;-1:-1:-1;59369:100:0;;;;;:::i;:::-;;:::i;63304:87::-;;;;;;;;;;-1:-1:-1;63350:7:0;63377:6;-1:-1:-1;;;;;63377:6:0;63304:87;;65315:38;;;;;;;;;;;;;;;;67756:666;;;;;;:::i;:::-;;:::i;40200:104::-;;;;;;;;;;;;;:::i;58865:109::-;;;;;;;;;;-1:-1:-1;58865:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;58948:18:0;58921:7;58948:18;;;:9;:18;;;;;;;58865:109;65625:64;;;;;;;;;;-1:-1:-1;65625:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;65363:41;;;;;;;;;;;;;;;;66980:106;;;;;;;;;;-1:-1:-1;66980:106:0;;;;;:::i;:::-;;:::i;41810:287::-;;;;;;;;;;-1:-1:-1;41810:287:0;;;;;:::i;:::-;;:::i;67356:70::-;;;;;;;;;;;;;:::i;68435:455::-;;;;;;:::i;:::-;;:::i;42896:369::-;;;;;;;;;;-1:-1:-1;42896:369:0;;;;;:::i;:::-;;:::i;65485:37::-;;;;;;;;;;;;;:::i;69563:559::-;;;;;;;;;;-1:-1:-1;69563:559:0;;;;;:::i;:::-;;:::i;65201:23::-;;;;;;;;;;-1:-1:-1;65201:23:0;;;;;;;;;;;;;;;:::i;68896:187::-;;;;;;;;;;-1:-1:-1;68896:187:0;;;;;:::i;:::-;;:::i;58661:105::-;;;;;;;;;;-1:-1:-1;58661:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;58742:16:0;58715:7;58742:16;;;:7;:16;;;;;;;58661:105;58451:119;;;;;;;;;;-1:-1:-1;58451:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;58536:26:0;58509:7;58536:26;;;:19;:26;;;;;;;58451:119;67226:124;;;;;;;;;;-1:-1:-1;67226:124:0;;;;;:::i;:::-;;:::i;58199:95::-;;;;;;;;;;-1:-1:-1;58272:14:0;;58199:95;;42168:164;;;;;;;;;;-1:-1:-1;42168:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;42289:25:0;;;42265:4;42289:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42168:164;66389:115;;;;;;;;;;-1:-1:-1;66389:115:0;;;;;:::i;:::-;;:::i;64213:201::-;;;;;;;;;;-1:-1:-1;64213:201:0;;;;;:::i;:::-;;:::i;67654:92::-;;;;;;;;;;-1:-1:-1;67654:92:0;;;;;:::i;:::-;;:::i;36714:305::-;36816:4;-1:-1:-1;;;;;;36853:40:0;;-1:-1:-1;;;36853:40:0;;:105;;-1:-1:-1;;;;;;;36910:48:0;;-1:-1:-1;;;36910:48:0;36853:105;:158;;;-1:-1:-1;;;;;;;;;;2945:40:0;;;36975:36;36833:178;36714:305;-1:-1:-1;;36714:305:0:o;40031:100::-;40085:13;40118:5;40111:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40031:100;:::o;41534:204::-;41602:7;41627:16;41635:7;41627;:16::i;:::-;41622:64;;41652:34;;-1:-1:-1;;;41652:34:0;;;;;;;;;;;41622:64;-1:-1:-1;41706:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41706:24:0;;41534:204::o;41097:371::-;41170:13;41186:24;41202:7;41186:15;:24::i;:::-;41170:40;;41231:5;-1:-1:-1;;;;;41225:11:0;:2;-1:-1:-1;;;;;41225:11:0;;41221:48;;41245:24;;-1:-1:-1;;;41245:24:0;;;;;;;;;;;41221:48;32178:10;-1:-1:-1;;;;;41286:21:0;;;;;;:63;;-1:-1:-1;41312:37:0;41329:5;32178:10;42168:164;:::i;41312:37::-;41311:38;41286:63;41282:138;;;41373:35;;-1:-1:-1;;;41373:35:0;;;;;;;;;;;41282:138;41432:28;41441:2;41445:7;41454:5;41432:8;:28::i;:::-;41159:309;41097:371;;:::o;66512:87::-;63350:7;63377:6;-1:-1:-1;;;;;63377:6:0;32178:10;63524:23;63516:68;;;;-1:-1:-1;;;63516:68:0;;;;;;;:::i;:::-;66575:6:::1;:16:::0;;;::::1;;;;-1:-1:-1::0;;66575:16:0;;::::1;::::0;;;::::1;::::0;;66512:87::o;59669:566::-;-1:-1:-1;;;;;59745:16:0;;59764:1;59745:16;;;:7;:16;;;;;;59737:71;;;;-1:-1:-1;;;59737:71:0;;;;;;;:::i;:::-;59821:21;59869:15;58272:14;;;58199:95;59869:15;59845:39;;:21;:39;:::i;:::-;59821:63;;59895:15;59913:58;59929:7;59938:13;59953:17;59962:7;-1:-1:-1;;;;;58948:18:0;58921:7;58948:18;;;:9;:18;;;;;;;58865:109;59953:17;59913:15;:58::i;:::-;59895:76;;59992:7;60003:1;59992:12;59984:68;;;;-1:-1:-1;;;59984:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;60065:18:0;;;;;;:9;:18;;;;;:29;;60087:7;;60065:18;:29;;60087:7;;60065:29;:::i;:::-;;;;;;;;60123:7;60105:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;60143:35:0;;-1:-1:-1;60161:7:0;60170;60143:17;:35::i;:::-;60194:33;;;-1:-1:-1;;;;;11233:32:1;;11215:51;;11297:2;11282:18;;11275:34;;;60194:33:0;;11188:18:1;60194:33:0;;;;;;;59726:509;;59669:566;:::o;66729:120::-;63350:7;63377:6;-1:-1:-1;;;;;63377:6:0;32178:10;63524:23;63516:68;;;;-1:-1:-1;;;63516:68:0;;;;;;;:::i;:::-;66807:15:::1;:34:::0;66729:120::o;42399:170::-;42533:28;42543:4;42549:2;42553:7;42533:9;:28::i;66607:114::-;63350:7;63377:6;-1:-1:-1;;;;;63377:6:0;32178:10;63524:23;63516:68;;;;-1:-1:-1;;;63516:68:0;;;;;;;:::i;:::-;66685:12:::1;:28:::0;66607:114::o;42640:185::-;42778:39;42795:4;42801:2;42805:7;42778:39;;;;;;;;;;;;:16;:39::i;60503:641::-;-1:-1:-1;;;;;60585:16:0;;60604:1;60585:16;;;:7;:16;;;;;;60577:71;;;;-1:-1:-1;;;60577:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58536:26:0;;60661:21;58536:26;;;:19;:26;;;;;;60685:30;;-1:-1:-1;;;60685:30:0;;60709:4;60685:30;;;2019:51:1;-1:-1:-1;;;;;60685:15:0;;;;;1992:18:1;;60685:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;60661:77;;60749:15;60767:65;60783:7;60792:13;60807:24;60816:5;60823:7;-1:-1:-1;;;;;59240:21:0;;;59213:7;59240:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;59143:135;60767:65;60749:83;;60853:7;60864:1;60853:12;60845:68;;;;-1:-1:-1;;;60845:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;60926:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;60960:7;;60926:21;:41;;60960:7;;60926:41;:::i;:::-;;;;-1:-1:-1;;;;;;;60978:26:0;;;;;;:19;:26;;;;;:37;;61008:7;;60978:26;:37;;61008:7;;60978:37;:::i;:::-;;;;-1:-1:-1;61028:47:0;;-1:-1:-1;61051:5:0;61058:7;61067;61028:22;:47::i;:::-;61091:45;;;-1:-1:-1;;;;;11233:32:1;;;11215:51;;11297:2;11282:18;;11275:34;;;61091:45:0;;;;;11188:18:1;61091:45:0;;;;;;;60566:578;;60503:641;;:::o;66857:115::-;63350:7;63377:6;-1:-1:-1;;;;;63377:6:0;32178:10;63524:23;63516:68;;;;-1:-1:-1;;;63516:68:0;;;;;;;:::i;:::-;66934:13:::1;:30:::0;66857:115::o;67092:127::-;63350:7;63377:6;-1:-1:-1;;;;;63377:6:0;32178:10;63524:23;63516:68;;;;-1:-1:-1;;;63516:68:0;;;;;;;:::i;:::-;67178:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;67092:127:::0;:::o;70152:141::-;70198:6;70194:92;70215:10;;70211:1;:14;70194:92;;;70248:26;70264:8;70270:1;70264:5;:8::i;70248:26::-;70228:3;;;;:::i;:::-;;;;70194:92;;;;70152:141::o;39839:125::-;39903:7;39930:21;39943:7;39930:12;:21::i;:::-;:26;;39839:125;-1:-1:-1;;39839:125:0:o;65134:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37083:206::-;37147:7;-1:-1:-1;;;;;37171:19:0;;37167:60;;37199:28;;-1:-1:-1;;;37199:28:0;;;;;;;;;;;37167:60;-1:-1:-1;;;;;;37253:19:0;;;;;:12;:19;;;;;:27;;;;37083:206::o;63955:103::-;63350:7;63377:6;-1:-1:-1;;;;;63377:6:0;32178:10;63524:23;63516:68;;;;-1:-1:-1;;;63516:68:0;;;;;;;:::i;:::-;64020:30:::1;64047:1;64020:18;:30::i;:::-;63955:103::o:0;65164:28::-;;;;;;;:::i;59369:100::-;59420:7;59447;59455:5;59447:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;59447:14:0;;59369:100;-1:-1:-1;;59369:100:0:o;67756:666::-;66199:9;66212:10;66199:23;66191:66;;;;-1:-1:-1;;;66191:66:0;;12262:2:1;66191:66:0;;;12244:21:1;12301:2;12281:18;;;12274:30;12340:32;12320:18;;;12313:60;12390:18;;66191:66:0;12060:354:1;66191:66:0;67892:12:::1;::::0;67879:10:::1;67923::::0;;;67915:33:::1;;;::::0;-1:-1:-1;;;67915:33:0;;12621:2:1;67915:33:0::1;::::0;::::1;12603:21:1::0;12660:2;12640:18;;;12633:30;-1:-1:-1;;;12679:18:1;;;12672:40;12729:18;;67915:33:0::1;12419:334:1::0;67915:33:0::1;67982:12;67967:11;::::0;::::1;;:27;::::0;::::1;;;;;;:::i;:::-;;67959:68;;;::::0;-1:-1:-1;;;67959:68:0;;12960:2:1;67959:68:0::1;::::0;::::1;12942:21:1::0;12999:2;12979:18;;;12972:30;13038;13018:18;;;13011:58;13086:18;;67959:68:0::1;12758:352:1::0;67959:68:0::1;68046:33;68060:10;68072:6;;68046:13;:33::i;:::-;68038:61;;;::::0;-1:-1:-1;;;68038:61:0;;13317:2:1;68038:61:0::1;::::0;::::1;13299:21:1::0;13356:2;13336:18;;;13329:30;-1:-1:-1;;;13375:18:1;;;13368:45;13430:18;;68038:61:0::1;13115:339:1::0;68038:61:0::1;68151:10;68118:44;::::0;;;:32:::1;:44;::::0;;;;;68178:2:::1;::::0;68118:56:::1;::::0;68165:9;;68118:56:::1;:::i;:::-;:62;;68110:120;;;::::0;-1:-1:-1;;;68110:120:0;;13661:2:1;68110:120:0::1;::::0;::::1;13643:21:1::0;13700:2;13680:18;;;13673:30;13739:34;13719:18;;;13712:62;-1:-1:-1;;;13790:18:1;;;13783:43;13843:19;;68110:120:0::1;13459:409:1::0;68110:120:0::1;68262:17;68270:9:::0;68262:5;:17:::1;:::i;:::-;68249:9;:30;;68241:60;;;::::0;-1:-1:-1;;;68241:60:0;;14248:2:1;68241:60:0::1;::::0;::::1;14230:21:1::0;14287:2;14267:18;;;14260:30;-1:-1:-1;;;14306:18:1;;;14299:47;14363:18;;68241:60:0::1;14046:341:1::0;68241:60:0::1;68345:10;68312:44;::::0;;;:32:::1;:44;::::0;;;;:57;;68360:9;;68312:44;:57:::1;::::0;68360:9;;68312:57:::1;:::i;:::-;::::0;;;-1:-1:-1;68380:30:0::1;::::0;-1:-1:-1;68390:8:0;68400:9;68380::::1;:30::i;:::-;67868:554;67756:666:::0;;;;:::o;40200:104::-;40256:13;40289:7;40282:14;;;;;:::i;66980:106::-;63350:7;63377:6;-1:-1:-1;;;;;63377:6:0;32178:10;63524:23;63516:68;;;;-1:-1:-1;;;63516:68:0;;;;;;;:::i;:::-;67057:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;41810:287::-:0;32178:10;-1:-1:-1;;;;;41909:24:0;;;41905:54;;41942:17;;-1:-1:-1;;;41942:17:0;;;;;;;;;;;41905:54;32178:10;41972:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41972:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41972:53:0;;;;;;;;;;42041:48;;885:41:1;;;41972:42:0;;32178:10;42041:48;;858:18:1;42041:48:0;;;;;;;41810:287;;:::o;67356:70::-;63350:7;63377:6;-1:-1:-1;;;;;63377:6:0;32178:10;63524:23;63516:68;;;;-1:-1:-1;;;63516:68:0;;;;;;;:::i;:::-;67403:8:::1;:15:::0;;-1:-1:-1;;67403:15:0::1;67414:4;67403:15;::::0;;67356:70::o;68435:455::-;66199:9;66212:10;66199:23;66191:66;;;;-1:-1:-1;;;66191:66:0;;12262:2:1;66191:66:0;;;12244:21:1;12301:2;12281:18;;;12274:30;12340:32;12320:18;;;12313:60;12390:18;;66191:66:0;12060:354:1;66191:66:0;68547:15:::1;::::0;68534:10:::1;68581::::0;;;68573:33:::1;;;::::0;-1:-1:-1;;;68573:33:0;;12621:2:1;68573:33:0::1;::::0;::::1;12603:21:1::0;12660:2;12640:18;;;12633:30;-1:-1:-1;;;12679:18:1;;;12672:40;12729:18;;68573:33:0::1;12419:334:1::0;68573:33:0::1;68640:15;68625:11;::::0;::::1;;:30;::::0;::::1;;;;;;:::i;:::-;;68617:71;;;::::0;-1:-1:-1;;;68617:71:0;;14594:2:1;68617:71:0::1;::::0;::::1;14576:21:1::0;14633:2;14613:18;;;14606:30;14672;14652:18;;;14645:58;14720:18;;68617:71:0::1;14392:352:1::0;68617:71:0::1;65302:4;68723:9;68707:13;36217:12:::0;;36201:13;;:28;;35963:303;68707:13:::1;:25;;;;:::i;:::-;:39;;68699:71;;;::::0;-1:-1:-1;;;68699:71:0;;14951:2:1;68699:71:0::1;::::0;::::1;14933:21:1::0;14990:2;14970:18;;;14963:30;-1:-1:-1;;;15009:18:1;;;15002:49;15068:18;;68699:71:0::1;14749:343:1::0;68699:71:0::1;68802:17;68810:9:::0;68802:5;:17:::1;:::i;:::-;68789:9;:30;;68781:60;;;::::0;-1:-1:-1;;;68781:60:0;;14248:2:1;68781:60:0::1;::::0;::::1;14230:21:1::0;14287:2;14267:18;;;14260:30;-1:-1:-1;;;14306:18:1;;;14299:47;14363:18;;68781:60:0::1;14046:341:1::0;68781:60:0::1;68852:30;68862:8;68872:9;68852;:30::i;42896:369::-:0;43063:28;43073:4;43079:2;43083:7;43063:9;:28::i;:::-;-1:-1:-1;;;;;43106:13:0;;14887:19;:23;;43106:76;;;;;43126:56;43157:4;43163:2;43167:7;43176:5;43126:30;:56::i;:::-;43125:57;43106:76;43102:156;;;43206:40;;-1:-1:-1;;;43206:40:0;;;;;;;;;;;43102:156;42896:369;;;;:::o;65485:37::-;;;;;;;:::i;69563:559::-;69633:13;69667:15;69675:6;69667:7;:15::i;:::-;69659:51;;;;-1:-1:-1;;;69659:51:0;;15299:2:1;69659:51:0;;;15281:21:1;15338:2;15318:18;;;15311:30;15377:25;15357:18;;;15350:53;15420:18;;69659:51:0;15097:347:1;69659:51:0;69724:8;;;;:17;;:8;:17;69721:159;;69802:14;69818:17;:6;:15;:17::i;:::-;69837:13;69785:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69756:96;;69563:559;;;:::o;69721:159::-;69900:28;69931:10;:8;:10::i;:::-;69900:41;;70004:1;69979:14;69973:28;:32;:141;;;;;;;;;;;;;;;;;70046:14;70062:17;:6;:15;:17::i;:::-;70081:13;70029:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69973:141;69952:162;69563:559;-1:-1:-1;;;69563:559:0:o;68896:187::-;63350:7;63377:6;-1:-1:-1;;;;;63377:6:0;32178:10;63524:23;63516:68;;;;-1:-1:-1;;;63516:68:0;;;;;;;:::i;:::-;65302:4:::1;68993:9;68977:13;36217:12:::0;;36201:13;;:28;;35963:303;68977:13:::1;:25;;;;:::i;:::-;:39;;68969:70;;;::::0;-1:-1:-1;;;68969:70:0;;17771:2:1;68969:70:0::1;::::0;::::1;17753:21:1::0;17810:2;17790:18;;;17783:30;-1:-1:-1;;;17829:18:1;;;17822:48;17887:18;;68969:70:0::1;17569:342:1::0;68969:70:0::1;69050:25;69060:3;69065:9;69050;:25::i;67226:124::-:0;63350:7;63377:6;-1:-1:-1;;;;;63377:6:0;32178:10;63524:23;63516:68;;;;-1:-1:-1;;;63516:68:0;;;;;;;:::i;:::-;67312:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;66389:115::-:0;63350:7;63377:6;-1:-1:-1;;;;;63377:6:0;32178:10;63524:23;63516:68;;;;-1:-1:-1;;;63516:68:0;;;;;;;:::i;:::-;66469:10:::1;:27:::0;66389:115::o;64213:201::-;63350:7;63377:6;-1:-1:-1;;;;;63377:6:0;32178:10;63524:23;63516:68;;;;-1:-1:-1;;;63516:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;64302:22:0;::::1;64294:73;;;::::0;-1:-1:-1;;;64294:73:0;;18118:2:1;64294:73:0::1;::::0;::::1;18100:21:1::0;18157:2;18137:18;;;18130:30;18196:34;18176:18;;;18169:62;-1:-1:-1;;;18247:18:1;;;18240:36;18293:19;;64294:73:0::1;17916:402:1::0;64294:73:0::1;64378:28;64397:8;64378:18;:28::i;67654:92::-:0;63350:7;63377:6;-1:-1:-1;;;;;63377:6:0;32178:10;63524:23;63516:68;;;;-1:-1:-1;;;63516:68:0;;;;;;;:::i;:::-;67732:5:::1;67727:11;;;;;;;;:::i;:::-;67713;:25:::0;;-1:-1:-1;;67713:25:0::1;::::0;;::::1;::::0;::::1;;;;;;:::i;:::-;;;;;;67654:92:::0;:::o;12888:127::-;12977:19;;12995:1;12977:19;;;12888:127::o;43520:187::-;43577:4;43641:13;;43631:7;:23;43601:98;;;;-1:-1:-1;;43672:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;43672:27:0;;;;43671:28;;43520:187::o;51655:196::-;51770:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51770:29:0;-1:-1:-1;;;;;51770:29:0;;;;;;;;;51815:28;;51770:24;;51815:28;;;;;;;51655:196;;;:::o;61322:248::-;61532:12;;-1:-1:-1;;;;;61512:16:0;;61468:7;61512:16;;;:7;:16;;;;;;61468:7;;61547:15;;61496:32;;:13;:32;:::i;:::-;61495:49;;;;:::i;:::-;:67;;;;:::i;:::-;61488:74;61322:248;-1:-1:-1;;;;61322:248:0:o;15853:317::-;15968:6;15943:21;:31;;15935:73;;;;-1:-1:-1;;;15935:73:0;;18912:2:1;15935:73:0;;;18894:21:1;18951:2;18931:18;;;18924:30;18990:31;18970:18;;;18963:59;19039:18;;15935:73:0;18710:353:1;15935:73:0;16022:12;16040:9;-1:-1:-1;;;;;16040:14:0;16062:6;16040:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16021:52;;;16092:7;16084:78;;;;-1:-1:-1;;;16084:78:0;;19480:2:1;16084:78:0;;;19462:21:1;19519:2;19499:18;;;19492:30;19558:34;19538:18;;;19531:62;19629:28;19609:18;;;19602:56;19675:19;;16084:78:0;19278:422:1;46633:2113:0;46748:35;46786:21;46799:7;46786:12;:21::i;:::-;46862:18;;46748:59;;-1:-1:-1;46820:22:0;;-1:-1:-1;;;;;46846:34:0;32178:10;-1:-1:-1;;;;;46846:34:0;;:101;;;-1:-1:-1;46914:18:0;;46897:50;;32178:10;42168:164;:::i;46897:50::-;46846:154;;;-1:-1:-1;32178:10:0;46964:20;46976:7;46964:11;:20::i;:::-;-1:-1:-1;;;;;46964:36:0;;46846:154;46820:181;;47019:17;47014:66;;47045:35;;-1:-1:-1;;;47045:35:0;;;;;;;;;;;47014:66;47117:4;-1:-1:-1;;;;;47095:26:0;:13;:18;;;-1:-1:-1;;;;;47095:26:0;;47091:67;;47130:28;;-1:-1:-1;;;47130:28:0;;;;;;;;;;;47091:67;-1:-1:-1;;;;;47173:16:0;;47169:52;;47198:23;;-1:-1:-1;;;47198:23:0;;;;;;;;;;;47169:52;47342:49;47359:1;47363:7;47372:13;:18;;;47342:8;:49::i;:::-;-1:-1:-1;;;;;47687:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;47687:31:0;;;;;;;-1:-1:-1;;47687:31:0;;;;;;;47733:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;47733:29:0;;;;;;;;;;;47779:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;47824:61:0;;;;-1:-1:-1;;;47869:15:0;47824:61;;;;;;;;;;;48159:11;;;48189:24;;;;;:29;48159:11;;48189:29;48185:445;;48414:13;;48400:11;:27;48396:219;;;48484:18;;;48452:24;;;:11;:24;;;;;;;;:50;;48567:28;;;;48525:70;;-1:-1:-1;;;48525:70:0;-1:-1:-1;;;;;;48525:70:0;;;-1:-1:-1;;;;;48452:50:0;;;48525:70;;;;;;;48396:219;47662:979;48677:7;48673:2;-1:-1:-1;;;;;48658:27:0;48667:4;-1:-1:-1;;;;;48658:27:0;;;;;;;;;;;48696:42;42896:369;25438:211;25582:58;;;-1:-1:-1;;;;;11233:32:1;;25582:58:0;;;11215:51:1;11282:18;;;;11275:34;;;25582:58:0;;;;;;;;;;11188:18:1;;;;25582:58:0;;;;;;;;-1:-1:-1;;;;;25582:58:0;-1:-1:-1;;;25582:58:0;;;25555:86;;25575:5;;25555:19;:86::i;38668:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;38779:7:0;38862:13;;38855:4;:20;38824:886;;;38896:31;38930:17;;;:11;:17;;;;;;;;;38896:51;;;;;;;;;-1:-1:-1;;;;;38896:51:0;;;;-1:-1:-1;;;38896:51:0;;;;;;;;;;;-1:-1:-1;;;38896:51:0;;;;;;;;;;;;;;38966:729;;39016:14;;-1:-1:-1;;;;;39016:28:0;;39012:101;;39080:9;38668:1109;-1:-1:-1;;;38668:1109:0:o;39012:101::-;-1:-1:-1;;;39455:6:0;39500:17;;;;:11;:17;;;;;;;;;39488:29;;;;;;;;;-1:-1:-1;;;;;39488:29:0;;;;;-1:-1:-1;;;39488:29:0;;;;;;;;;;;-1:-1:-1;;;39488:29:0;;;;;;;;;;;;;39548:28;39544:109;;39616:9;38668:1109;-1:-1:-1;;;38668:1109:0:o;39544:109::-;39415:261;;;38877:833;38824:886;39738:31;;-1:-1:-1;;;39738:31:0;;;;;;;;;;;64574:191;64648:16;64667:6;;-1:-1:-1;;;;;64684:17:0;;;-1:-1:-1;;;;;;64684:17:0;;;;;;64717:40;;64667:6;;;;;;;64717:40;;64648:16;64717:40;64637:128;64574:191;:::o;69095:150::-;69183:4;69207:30;69215:14;69221:7;69357:25;;-1:-1:-1;;21380:2:1;21376:15;;;21372:53;69357:25:0;;;21360:66:1;69320:7:0;;21442:12:1;;69357:25:0;;;;;;;;;;;;69347:36;;;;;;69340:43;;69266:125;;;;69215:14;69231:5;;69207:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69207:7:0;;-1:-1:-1;;;69207:30:0:i;43715:104::-;43784:27;43794:2;43798:8;43784:27;;;;;;;;;;;;:9;:27::i;52343:667::-;52527:72;;-1:-1:-1;;;52527:72:0;;52506:4;;-1:-1:-1;;;;;52527:36:0;;;;;:72;;32178:10;;52578:4;;52584:7;;52593:5;;52527:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52527:72:0;;;;;;;;-1:-1:-1;;52527:72:0;;;;;;;;;;;;:::i;:::-;;;52523:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52761:6;:13;52778:1;52761:18;52757:235;;52807:40;;-1:-1:-1;;;52807:40:0;;;;;;;;;;;52757:235;52950:6;52944:13;52935:6;52931:2;52927:15;52920:38;52523:480;-1:-1:-1;;;;;;52646:55:0;-1:-1:-1;;;52646:55:0;;-1:-1:-1;52343:667:0;;;;;;:::o;10135:723::-;10191:13;10412:5;10421:1;10412:10;10408:53;;-1:-1:-1;;10439:10:0;;;;;;;;;;;;-1:-1:-1;;;10439:10:0;;;;;10135:723::o;10408:53::-;10486:5;10471:12;10527:78;10534:9;;10527:78;;10560:8;;;;:::i;:::-;;-1:-1:-1;10583:10:0;;-1:-1:-1;10591:2:0;10583:10;;:::i;:::-;;;10527:78;;;10615:19;10647:6;10637:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10637:17:0;;10615:39;;10665:154;10672:10;;10665:154;;10699:11;10709:1;10699:11;;:::i;:::-;;-1:-1:-1;10768:10:0;10776:2;10768:5;:10;:::i;:::-;10755:24;;:2;:24;:::i;:::-;10742:39;;10725:6;10732;10725:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10725:56:0;;;;;;;;-1:-1:-1;10796:11:0;10805:2;10796:11;;:::i;:::-;;;10665:154;;67434:108;67494:13;67527:7;67520:14;;;;;:::i;28011:716::-;28435:23;28461:69;28489:4;28461:69;;;;;;;;;;;;;;;;;28469:5;-1:-1:-1;;;;;28461:27:0;;;:69;;;;;:::i;:::-;28545:17;;28435:95;;-1:-1:-1;28545:21:0;28541:179;;28642:10;28631:30;;;;;;;;;;;;:::i;:::-;28623:85;;;;-1:-1:-1;;;28623:85:0;;21022:2:1;28623:85:0;;;21004:21:1;21061:2;21041:18;;;21034:30;21100:34;21080:18;;;21073:62;-1:-1:-1;;;21151:18:1;;;21144:40;21201:19;;28623:85:0;20820:406:1;69403:152:0;69480:4;69504:43;69523:5;69530:10;;69542:4;69504:18;:43::i;44182:163::-;44305:32;44311:2;44315:8;44325:5;44332:4;44305:5;:32::i;17337:229::-;17474:12;17506:52;17528:6;17536:4;17542:1;17545:12;17506:21;:52::i;29954:190::-;30079:4;30132;30103:25;30116:5;30123:4;30103:12;:25::i;:::-;:33;;29954:190;-1:-1:-1;;;;29954:190:0:o;44604:1775::-;44766:13;;-1:-1:-1;;;;;44794:16:0;;44790:48;;44819:19;;-1:-1:-1;;;44819:19:0;;;;;;;;;;;44790:48;44853:8;44865:1;44853:13;44849:44;;44875:18;;-1:-1:-1;;;44875:18:0;;;;;;;;;;;44849:44;-1:-1:-1;;;;;45244:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;45303:49:0;;45244:44;;;;;;;;45303:49;;;;-1:-1:-1;;45244:44:0;;;;;;45303:49;;;;;;;;;;;;;;;;45369:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;45419:66:0;;;;-1:-1:-1;;;45469:15:0;45419:66;;;;;;;;;;45369:25;45566:23;;;45610:4;:23;;;;-1:-1:-1;;;;;;45618:13:0;;14887:19;:23;;45618:15;45606:641;;;45654:314;45685:38;;45710:12;;-1:-1:-1;;;;;45685:38:0;;;45702:1;;45685:38;;45702:1;;45685:38;45751:69;45790:1;45794:2;45798:14;;;;;;45814:5;45751:30;:69::i;:::-;45746:174;;45856:40;;-1:-1:-1;;;45856:40:0;;;;;;;;;;;45746:174;45963:3;45947:12;:19;45654:314;;46049:12;46032:13;;:29;46028:43;;46063:8;;;46028:43;45606:641;;;46112:120;46143:40;;46168:14;;;;;-1:-1:-1;;;;;46143:40:0;;;46160:1;;46143:40;;46160:1;;46143:40;46227:3;46211:12;:19;46112:120;;45606:641;-1:-1:-1;46261:13:0;:28;46311:60;42896:369;18457:510;18627:12;18685:5;18660:21;:30;;18652:81;;;;-1:-1:-1;;;18652:81:0;;21667:2:1;18652:81:0;;;21649:21:1;21706:2;21686:18;;;21679:30;21745:34;21725:18;;;21718:62;-1:-1:-1;;;21796:18:1;;;21789:36;21842:19;;18652:81:0;21465:402:1;18652:81:0;-1:-1:-1;;;;;14887:19:0;;;18744:60;;;;-1:-1:-1;;;18744:60:0;;22074:2:1;18744:60:0;;;22056:21:1;22113:2;22093:18;;;22086:30;22152:31;22132:18;;;22125:59;22201:18;;18744:60:0;21872:353:1;18744:60:0;18818:12;18832:23;18859:6;-1:-1:-1;;;;;18859:11:0;18878:5;18885:4;18859:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18817:73;;;;18908:51;18925:7;18934:10;18946:12;18908:16;:51::i;:::-;18901:58;18457:510;-1:-1:-1;;;;;;;18457:510:0:o;30505:675::-;30588:7;30631:4;30588:7;30646:497;30670:5;:12;30666:1;:16;30646:497;;;30704:20;30727:5;30733:1;30727:8;;;;;;;;:::i;:::-;;;;;;;30704:31;;30770:12;30754;:28;30750:382;;31256:13;31306:15;;;31342:4;31335:15;;;31389:4;31373:21;;30882:57;;30750:382;;;31256:13;31306:15;;;31342:4;31335:15;;;31389:4;31373:21;;31059:57;;30750:382;-1:-1:-1;30684:3:0;;;;:::i;:::-;;;;30646:497;;;-1:-1:-1;31160:12:0;30505:675;-1:-1:-1;;;30505:675:0:o;21143:712::-;21293:12;21322:7;21318:530;;;-1:-1:-1;21353:10:0;21346:17;;21318:530;21467:17;;:21;21463:374;;21665:10;21659:17;21726:15;21713:10;21709:2;21705:19;21698:44;21463:374;21808:12;21801:20;;-1:-1:-1;;;21801:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;359:131:1;-1:-1:-1;;;;;;433:32:1;;423:43;;413:71;;480:1;477;470:12;495:245;553:6;606:2;594:9;585:7;581:23;577:32;574:52;;;622:1;619;612:12;574:52;661:9;648:23;680:30;704:5;680:30;:::i;937:258::-;1009:1;1019:113;1033:6;1030:1;1027:13;1019:113;;;1109:11;;;1103:18;1090:11;;;1083:39;1055:2;1048:10;1019:113;;;1150:6;1147:1;1144:13;1141:48;;;-1:-1:-1;;1185:1:1;1167:16;;1160:27;937:258::o;1200:::-;1242:3;1280:5;1274:12;1307:6;1302:3;1295:19;1323:63;1379:6;1372:4;1367:3;1363:14;1356:4;1349:5;1345:16;1323:63;:::i;:::-;1440:2;1419:15;-1:-1:-1;;1415:29:1;1406:39;;;;1447:4;1402:50;;1200:258;-1:-1:-1;;1200:258:1:o;1463:220::-;1612:2;1601:9;1594:21;1575:4;1632:45;1673:2;1662:9;1658:18;1650:6;1632:45;:::i;1688:180::-;1747:6;1800:2;1788:9;1779:7;1775:23;1771:32;1768:52;;;1816:1;1813;1806:12;1768:52;-1:-1:-1;1839:23:1;;1688:180;-1:-1:-1;1688:180:1:o;2081:131::-;-1:-1:-1;;;;;2156:31:1;;2146:42;;2136:70;;2202:1;2199;2192:12;2217:315;2285:6;2293;2346:2;2334:9;2325:7;2321:23;2317:32;2314:52;;;2362:1;2359;2352:12;2314:52;2401:9;2388:23;2420:31;2445:5;2420:31;:::i;:::-;2470:5;2522:2;2507:18;;;;2494:32;;-1:-1:-1;;;2217:315:1:o;2719:118::-;2805:5;2798:13;2791:21;2784:5;2781:32;2771:60;;2827:1;2824;2817:12;2842:241;2898:6;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;3006:9;2993:23;3025:28;3047:5;3025:28;:::i;3088:255::-;3155:6;3208:2;3196:9;3187:7;3183:23;3179:32;3176:52;;;3224:1;3221;3214:12;3176:52;3263:9;3250:23;3282:31;3307:5;3282:31;:::i;3348:456::-;3425:6;3433;3441;3494:2;3482:9;3473:7;3469:23;3465:32;3462:52;;;3510:1;3507;3500:12;3462:52;3549:9;3536:23;3568:31;3593:5;3568:31;:::i;:::-;3618:5;-1:-1:-1;3675:2:1;3660:18;;3647:32;3688:33;3647:32;3688:33;:::i;:::-;3348:456;;3740:7;;-1:-1:-1;;;3794:2:1;3779:18;;;;3766:32;;3348:456::o;3991:402::-;4073:6;4081;4134:2;4122:9;4113:7;4109:23;4105:32;4102:52;;;4150:1;4147;4140:12;4102:52;4189:9;4176:23;4208:31;4233:5;4208:31;:::i;:::-;4258:5;-1:-1:-1;4315:2:1;4300:18;;4287:32;4328:33;4287:32;4328:33;:::i;:::-;4380:7;4370:17;;;3991:402;;;;;:::o;4398:127::-;4459:10;4454:3;4450:20;4447:1;4440:31;4490:4;4487:1;4480:15;4514:4;4511:1;4504:15;4530:632;4595:5;4625:18;4666:2;4658:6;4655:14;4652:40;;;4672:18;;:::i;:::-;4747:2;4741:9;4715:2;4801:15;;-1:-1:-1;;4797:24:1;;;4823:2;4793:33;4789:42;4777:55;;;4847:18;;;4867:22;;;4844:46;4841:72;;;4893:18;;:::i;:::-;4933:10;4929:2;4922:22;4962:6;4953:15;;4992:6;4984;4977:22;5032:3;5023:6;5018:3;5014:16;5011:25;5008:45;;;5049:1;5046;5039:12;5008:45;5099:6;5094:3;5087:4;5079:6;5075:17;5062:44;5154:1;5147:4;5138:6;5130;5126:19;5122:30;5115:41;;;;4530:632;;;;;:::o;5167:451::-;5236:6;5289:2;5277:9;5268:7;5264:23;5260:32;5257:52;;;5305:1;5302;5295:12;5257:52;5345:9;5332:23;5378:18;5370:6;5367:30;5364:50;;;5410:1;5407;5400:12;5364:50;5433:22;;5486:4;5478:13;;5474:27;-1:-1:-1;5464:55:1;;5515:1;5512;5505:12;5464:55;5538:74;5604:7;5599:2;5586:16;5581:2;5577;5573:11;5538:74;:::i;5875:818::-;5979:6;5987;5995;6003;6056:2;6044:9;6035:7;6031:23;6027:32;6024:52;;;6072:1;6069;6062:12;6024:52;6111:9;6098:23;6130:31;6155:5;6130:31;:::i;:::-;6180:5;-1:-1:-1;6232:2:1;6217:18;;6204:32;;-1:-1:-1;6287:2:1;6272:18;;6259:32;6310:18;6340:14;;;6337:34;;;6367:1;6364;6357:12;6337:34;6405:6;6394:9;6390:22;6380:32;;6450:7;6443:4;6439:2;6435:13;6431:27;6421:55;;6472:1;6469;6462:12;6421:55;6512:2;6499:16;6538:2;6530:6;6527:14;6524:34;;;6554:1;6551;6544:12;6524:34;6607:7;6602:2;6592:6;6589:1;6585:14;6581:2;6577:23;6573:32;6570:45;6567:65;;;6628:1;6625;6618:12;6567:65;5875:818;;;;-1:-1:-1;;6659:2:1;6651:11;;-1:-1:-1;;;5875:818:1:o;6698:382::-;6763:6;6771;6824:2;6812:9;6803:7;6799:23;6795:32;6792:52;;;6840:1;6837;6830:12;6792:52;6879:9;6866:23;6898:31;6923:5;6898:31;:::i;:::-;6948:5;-1:-1:-1;7005:2:1;6990:18;;6977:32;7018:30;6977:32;7018:30;:::i;7085:795::-;7180:6;7188;7196;7204;7257:3;7245:9;7236:7;7232:23;7228:33;7225:53;;;7274:1;7271;7264:12;7225:53;7313:9;7300:23;7332:31;7357:5;7332:31;:::i;:::-;7382:5;-1:-1:-1;7439:2:1;7424:18;;7411:32;7452:33;7411:32;7452:33;:::i;:::-;7504:7;-1:-1:-1;7558:2:1;7543:18;;7530:32;;-1:-1:-1;7613:2:1;7598:18;;7585:32;7640:18;7629:30;;7626:50;;;7672:1;7669;7662:12;7626:50;7695:22;;7748:4;7740:13;;7736:27;-1:-1:-1;7726:55:1;;7777:1;7774;7767:12;7726:55;7800:74;7866:7;7861:2;7848:16;7843:2;7839;7835:11;7800:74;:::i;:::-;7790:84;;;7085:795;;;;;;;:::o;7885:127::-;7946:10;7941:3;7937:20;7934:1;7927:31;7977:4;7974:1;7967:15;8001:4;7998:1;7991:15;8017:337;8158:2;8143:18;;8191:1;8180:13;;8170:144;;8236:10;8231:3;8227:20;8224:1;8217:31;8271:4;8268:1;8261:15;8299:4;8296:1;8289:15;8170:144;8323:25;;;8017:337;:::o;9203:380::-;9282:1;9278:12;;;;9325;;;9346:61;;9400:4;9392:6;9388:17;9378:27;;9346:61;9453:2;9445:6;9442:14;9422:18;9419:38;9416:161;;9499:10;9494:3;9490:20;9487:1;9480:31;9534:4;9531:1;9524:15;9562:4;9559:1;9552:15;9416:161;;9203:380;;;:::o;9588:356::-;9790:2;9772:21;;;9809:18;;;9802:30;9868:34;9863:2;9848:18;;9841:62;9935:2;9920:18;;9588:356::o;9949:402::-;10151:2;10133:21;;;10190:2;10170:18;;;10163:30;10229:34;10224:2;10209:18;;10202:62;-1:-1:-1;;;10295:2:1;10280:18;;10273:36;10341:3;10326:19;;9949:402::o;10356:127::-;10417:10;10412:3;10408:20;10405:1;10398:31;10448:4;10445:1;10438:15;10472:4;10469:1;10462:15;10488:128;10528:3;10559:1;10555:6;10552:1;10549:13;10546:39;;;10565:18;;:::i;:::-;-1:-1:-1;10601:9:1;;10488:128::o;10621:407::-;10823:2;10805:21;;;10862:2;10842:18;;;10835:30;10901:34;10896:2;10881:18;;10874:62;-1:-1:-1;;;10967:2:1;10952:18;;10945:41;11018:3;11003:19;;10621:407::o;11320:184::-;11390:6;11443:2;11431:9;11422:7;11418:23;11414:32;11411:52;;;11459:1;11456;11449:12;11411:52;-1:-1:-1;11482:16:1;;11320:184;-1:-1:-1;11320:184:1:o;11788:135::-;11827:3;11848:17;;;11845:43;;11868:18;;:::i;:::-;-1:-1:-1;11915:1:1;11904:13;;11788:135::o;11928:127::-;11989:10;11984:3;11980:20;11977:1;11970:31;12020:4;12017:1;12010:15;12044:4;12041:1;12034:15;13873:168;13913:7;13979:1;13975;13971:6;13967:14;13964:1;13961:21;13956:1;13949:9;13942:17;13938:45;13935:71;;;13986:18;;:::i;:::-;-1:-1:-1;14026:9:1;;13873:168::o;15575:973::-;15660:12;;15625:3;;15715:1;15735:18;;;;15788;;;;15815:61;;15869:4;15861:6;15857:17;15847:27;;15815:61;15895:2;15943;15935:6;15932:14;15912:18;15909:38;15906:161;;15989:10;15984:3;15980:20;15977:1;15970:31;16024:4;16021:1;16014:15;16052:4;16049:1;16042:15;15906:161;16083:18;16110:104;;;;16228:1;16223:319;;;;16076:466;;16110:104;-1:-1:-1;;16143:24:1;;16131:37;;16188:16;;;;-1:-1:-1;16110:104:1;;16223:319;15522:1;15515:14;;;15559:4;15546:18;;16317:1;16331:165;16345:6;16342:1;16339:13;16331:165;;;16423:14;;16410:11;;;16403:35;16466:16;;;;16360:10;;16331:165;;;16335:3;;16525:6;16520:3;16516:16;16509:23;;16076:466;;;;;;;15575:973;;;;:::o;16553:456::-;16774:3;16802:38;16836:3;16828:6;16802:38;:::i;:::-;16869:6;16863:13;16885:52;16930:6;16926:2;16919:4;16911:6;16907:17;16885:52;:::i;:::-;16953:50;16995:6;16991:2;16987:15;16979:6;16953:50;:::i;17014:550::-;17238:3;17276:6;17270:13;17292:53;17338:6;17333:3;17326:4;17318:6;17314:17;17292:53;:::i;:::-;17408:13;;17367:16;;;;17430:57;17408:13;17367:16;17464:4;17452:17;;17430:57;:::i;18323:127::-;18384:10;18379:3;18375:20;18372:1;18365:31;18415:4;18412:1;18405:15;18439:4;18436:1;18429:15;18455:120;18495:1;18521;18511:35;;18526:18;;:::i;:::-;-1:-1:-1;18560:9:1;;18455:120::o;18580:125::-;18620:4;18648:1;18645;18642:8;18639:34;;;18653:18;;:::i;:::-;-1:-1:-1;18690:9:1;;18580:125::o;19705:489::-;-1:-1:-1;;;;;19974:15:1;;;19956:34;;20026:15;;20021:2;20006:18;;19999:43;20073:2;20058:18;;20051:34;;;20121:3;20116:2;20101:18;;20094:31;;;19899:4;;20142:46;;20168:19;;20160:6;20142:46;:::i;:::-;20134:54;19705:489;-1:-1:-1;;;;;;19705:489:1:o;20199:249::-;20268:6;20321:2;20309:9;20300:7;20296:23;20292:32;20289:52;;;20337:1;20334;20327:12;20289:52;20369:9;20363:16;20388:30;20412:5;20388:30;:::i;20453:112::-;20485:1;20511;20501:35;;20516:18;;:::i;:::-;-1:-1:-1;20550:9:1;;20453:112::o;20570:245::-;20637:6;20690:2;20678:9;20669:7;20665:23;20661:32;20658:52;;;20706:1;20703;20696:12;20658:52;20738:9;20732:16;20757:28;20779:5;20757:28;:::i;22230:274::-;22359:3;22397:6;22391:13;22413:53;22459:6;22454:3;22447:4;22439:6;22435:17;22413:53;:::i;:::-;22482:16;;;;;22230:274;-1:-1:-1;;22230:274:1:o

Swarm Source

ipfs://fa8f6185d430b9a0e603773d3ccbcb9615f32ba12ccb797eccaf5f9b11e9f605
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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