ETH Price: $3,298.39 (-3.31%)
Gas: 19 Gwei

Token

House Of Mempo (HOFM)
 

Overview

Max Total Supply

3,000 HOFM

Holders

789

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 HOFM
0x74a0f67e9d89c54a84e2147d0916f637bc18cb39
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Official House of Mempo THE DUAL REALITY COMMUNITY Welcome to Clan Mempo - the world’s first dual-reality community. Your Mempo NFT is a digital membership key that unlocks instant and ongoing benefits. ‍..

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Mempo

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-29
*/

// File: contracts/Mempo/IERC2981Royalties.sol


pragma solidity ^0.8.0;

/// @title IERC2981Royalties
/// @dev Interface for the ERC2981 - Token Royalty standard
interface IERC2981Royalties {
    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _value - the sale price of the NFT asset specified by _tokenId
    /// @return _receiver - address of who should be sent the royalty payment
    /// @return _royaltyAmount - the royalty payment amount for value sale price
    function royaltyInfo(uint256 _tokenId, uint256 _value)
        external
        view
        returns (address _receiver, uint256 _royaltyAmount);
}
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (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.
 */
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 Merklee 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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (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 `IERC721.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: contracts/Mempo/ERC2981Base.sol


pragma solidity ^0.8.0;



/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
abstract contract ERC2981Base is ERC165, IERC2981Royalties {
    struct RoyaltyInfo {
        address recipient;
        uint24 amount;
    }

    /// @inheritdoc	ERC165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            interfaceId == type(IERC2981Royalties).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}
// File: contracts/Mempo/ERC2981ContractWideRoyalties.sol


pragma solidity ^0.8.0;



/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
/// @dev This implementation has the same royalties for each and every tokens
abstract contract ERC2981ContractWideRoyalties is ERC2981Base {
    RoyaltyInfo private _royalties;

    /// @dev Sets token royalties
    /// @param recipient recipient of the royalties
    /// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0)
    function _setRoyalties(address recipient, uint256 value) internal {
        require(value <= 10000, 'ERC2981Royalties: Too high');
        _royalties = RoyaltyInfo(recipient, uint24(value));
    }

    /// @inheritdoc	IERC2981Royalties
    function royaltyInfo(uint256, uint256 value)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        RoyaltyInfo memory royalties = _royalties;
        receiver = royalties.recipient;
        royaltyAmount = (value * royalties.amount) / 10000;
    }
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 tokenId);

    /**
     * @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/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

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

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

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

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

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

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

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

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

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

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

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

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

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

// File: contracts/Mempo/Mempo.sol



pragma solidity >=0.7.0 <0.9.0;





contract Mempo is ERC721Enumerable, Ownable, ERC2981ContractWideRoyalties {
    using Strings for uint256;
    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.15 ether;
    uint256 public maxLimit = 10000;
    uint256 public maxSupply = 5000;
    uint256 public maxMintAmountPerTx = 2;
    bool public paused = true;
    bool public presaleActive = false;
    bytes32 private seedPhrase = 0x6abe10cdef935bbc20e799c9ecc3ed3f94f70081687588d1fc0e81319936e6d8;
    bytes32 public merkleRoot = 0x6a3375101d42b3eb58b92e7bbc169175139f15e27519e2db3921c814d42f72f8;
    mapping(address => uint256) public whiteListMintedNFTs;
    uint256 public contractOwnerNFTs = 225;
    uint256 public mintedByOwner = 0;
    uint256 public publicNFTStartingTokenId = 225;
    address payable private contractOwner;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        contractOwner = payable(msg.sender);
    }

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

    //Royalties Function
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721Enumerable, ERC2981Base)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    /// @notice Allows to set the royalties on the contract
    /// @dev This function in a real contract should be protected with a onlOwner (or equivalent) modifier
    /// @param recipient the royalties recipient
    /// @param value royalties value (between 0 and 10000)
    function setRoyalties(address recipient, uint256 value) public {
        _setRoyalties(recipient, value);
    }

    // public
    function mint(string memory phrase, uint256 _mintAmount) public payable {
        require(!paused, "the contract is paused");
        require(!presaleActive, "Can not use this function during presale");
        require(msg.value >= cost * _mintAmount, "insufficient funds");
        require(
            msg.sender != owner(),
            "This function can only be called by an outsider"
        );
        bytes32 hashedWord = sha256(abi.encodePacked(phrase));
        require(hashedWord == seedPhrase, "Password doesn't match");
        require(
            _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx,
            "max mint amount per session exceeded"
        );

        uint256 supply = totalSupply();
        require(
            supply + _mintAmount <= maxSupply,
            "max NFT limit exceeded, Try minting less NFTs"
        );

        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(msg.sender, publicNFTStartingTokenId+i);   
        }
        publicNFTStartingTokenId = publicNFTStartingTokenId + _mintAmount;
        contractOwner.transfer(address(this).balance);
    }

    function whiteListMint(bytes32[] calldata _merkleProof, uint256 _mintAmount)
        public
        payable
    {
        require(presaleActive, "presale is not active");
        require(msg.value >= cost * _mintAmount, "insufficient funds");
        require(
            msg.sender != owner(),
            "This function can only be called by an outsider"
        );
        require(_mintAmount <= 2, "Max 2 nfts could be minted");
        require(
            whiteListMintedNFTs[msg.sender] < 2,
            "Address has already claimed."
        );

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, leaf),
            "Invalid proof."
        );
        uint256 supply = totalSupply();
        require(
            supply + _mintAmount <= maxSupply,
            "max NFT limit exceeded, Try minting less NFTs"
        );

        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(msg.sender, publicNFTStartingTokenId+i);
            
        }
        publicNFTStartingTokenId = publicNFTStartingTokenId + _mintAmount;
        whiteListMintedNFTs[msg.sender] =
            whiteListMintedNFTs[msg.sender] +
            _mintAmount;
        contractOwner.transfer(address(this).balance);
    }

    function mintReservedNFTs(uint256 _mintAmount) public onlyOwner {
        require(
            mintedByOwner + _mintAmount <= contractOwnerNFTs,
            "Owner's NFT quota Ended"
        );
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(
            _mintAmount <= maxMintAmountPerTx,
            "max mint amount per session exceeded"
        );

        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(msg.sender, mintedByOwner+i);
        }
        mintedByOwner = mintedByOwner + _mintAmount;
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setmaxMintAmountPerTx(uint256 _newmaxMintAmountPerTx)
        public
        onlyOwner
    {
        require(
            _newmaxMintAmountPerTx <= 20,
            "You can set msxMintAmount max to 20"
        );
        maxMintAmountPerTx = _newmaxMintAmountPerTx;
    }

    function setMaxsupply(uint256 _newMaxSupply) public onlyOwner {
        require(
            _newMaxSupply <= maxLimit,
            "maxSupply can not be greater than the max Limit"
        );
        require(
            _newMaxSupply > maxSupply,
            "maxSupply can not be less than previous maxSupply"
        );
        maxSupply = _newMaxSupply;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setPresaleStatus(bool _presaleActive) public onlyOwner {
        presaleActive = _presaleActive;
    }

    function increasePresaleLimit(
        address _walletAddress,
        uint256 _increaseByAmount
    ) public onlyOwner {
        require(_increaseByAmount <= 2, "You can only increase the limit by 2");
        uint256 increaseBy = whiteListMintedNFTs[_walletAddress] -
            _increaseByAmount;
        whiteListMintedNFTs[_walletAddress] = increaseBy;
    }

    function setSecret(bytes32 _secret) public onlyOwner {
        seedPhrase = _secret;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function withdrawBalance() public onlyOwner {
        contractOwner.transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"name":"contractOwnerNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_walletAddress","type":"address"},{"internalType":"uint256","name":"_increaseByAmount","type":"uint256"}],"name":"increasePresaleLimit","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":"maxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"phrase","type":"string"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintReservedNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedByOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicNFTStartingTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_presaleActive","type":"bool"}],"name":"setPresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_secret","type":"bytes32"}],"name":"setSecret","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmountPerTx","type":"uint256"}],"name":"setmaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListMintedNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600d91906200021b565b50670214e8348c4f0000600e55612710600f5561138860105560026011556012805461ffff191660011790557f6abe10cdef935bbc20e799c9ecc3ed3f94f70081687588d1fc0e81319936e6d86013557f6a3375101d42b3eb58b92e7bbc169175139f15e27519e2db3921c814d42f72f860145560e160168190556000601755601855348015620000b857600080fd5b506040516200364a3803806200364a833981016040819052620000db9162000378565b825183908390620000f49060009060208501906200021b565b5080516200010a9060019060208401906200021b565b50505062000127620001216200014d60201b60201c565b62000151565b6200013281620001a3565b5050601980546001600160a01b03191633179055506200045c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200021790600c9060208401906200021b565b5050565b828054620002299062000409565b90600052602060002090601f0160209004810192826200024d576000855562000298565b82601f106200026857805160ff191683800117855562000298565b8280016001018555821562000298579182015b82811115620002985782518255916020019190600101906200027b565b50620002a6929150620002aa565b5090565b5b80821115620002a65760008155600101620002ab565b600082601f830112620002d357600080fd5b81516001600160401b0380821115620002f057620002f062000446565b604051601f8301601f19908116603f011681019082821181831017156200031b576200031b62000446565b816040528381526020925086838588010111156200033857600080fd5b600091505b838210156200035c57858201830151818301840152908201906200033d565b838211156200036e5760008385830101525b9695505050505050565b6000806000606084860312156200038e57600080fd5b83516001600160401b0380821115620003a657600080fd5b620003b487838801620002c1565b94506020860151915080821115620003cb57600080fd5b620003d987838801620002c1565b93506040860151915080821115620003f057600080fd5b50620003ff86828701620002c1565b9150509250925092565b600181811c908216806200041e57607f821691505b602082108114156200044057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6131de806200046c6000396000f3fe6080604052600436106102935760003560e01c80635fd8c7101161015a578063a22cb465116100c1578063d5abeb011161007a578063d5abeb01146107af578063e116e25e146107c5578063e19b0ddf146107db578063e985e9c5146107fb578063f2fde38b14610844578063f6f043d91461086457600080fd5b8063a22cb46514610711578063b88d4fde14610731578063bc9c247414610751578063c30bf31814610767578063c66828621461077a578063c87b56dd1461078f57600080fd5b8063867ec61611610113578063867ec616146106725780638895283f146106885780638c7ea24b146106a85780638da5cb5b146106c857806394354fd0146106e657806395d89b41146106fc57600080fd5b80635fd8c710146105d35780636352211e146105e85780636c0360eb1461060857806370a082311461061d578063715018a61461063d5780637cb647591461065257600080fd5b80632eb4a7ab116101fe57806344a0d68a116101b757806344a0d68a1461051a5780634f6ccce71461053a57806353135ca01461055a57806353db40731461057957806355f804b3146105995780635c975abb146105b957600080fd5b80632eb4a7ab1461044a5780632f745c591461046057806335a9c82f1461048057806336b29bdc146104a057806342842e0e146104cd578063438b6300146104ed57600080fd5b806313faede61161025057806313faede61461037c578063149835a0146103a057806318160ddd146103c05780631a861d26146103d557806323b872dd146103eb5780632a55205a1461040b57600080fd5b806301ffc9a71461029857806302329a29146102cd578063056b01ce146102ef57806306fdde0314610302578063081812fc14610324578063095ea7b31461035c575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612bfe565b610884565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e8366004612bb1565b610895565b005b6102ed6102fd366004612c6d565b6108db565b34801561030e57600080fd5b50610317610bb5565b6040516102c49190612e61565b34801561033057600080fd5b5061034461033f366004612bcc565b610c47565b6040516001600160a01b0390911681526020016102c4565b34801561036857600080fd5b506102ed610377366004612b0c565b610cdc565b34801561038857600080fd5b50610392600e5481565b6040519081526020016102c4565b3480156103ac57600080fd5b506102ed6103bb366004612bcc565b610df2565b3480156103cc57600080fd5b50600854610392565b3480156103e157600080fd5b50610392600f5481565b3480156103f757600080fd5b506102ed610406366004612a2a565b610ef6565b34801561041757600080fd5b5061042b610426366004612cb2565b610f27565b604080516001600160a01b0390931683526020830191909152016102c4565b34801561045657600080fd5b5061039260145481565b34801561046c57600080fd5b5061039261047b366004612b0c565b610f7c565b34801561048c57600080fd5b506102ed61049b366004612bcc565b611012565b3480156104ac57600080fd5b506103926104bb3660046129dc565b60156020526000908152604090205481565b3480156104d957600080fd5b506102ed6104e8366004612a2a565b611041565b3480156104f957600080fd5b5061050d6105083660046129dc565b61105c565b6040516102c49190612e1d565b34801561052657600080fd5b506102ed610535366004612bcc565b6110fe565b34801561054657600080fd5b50610392610555366004612bcc565b61112d565b34801561056657600080fd5b506012546102b890610100900460ff1681565b34801561058557600080fd5b506102ed610594366004612bcc565b6111c0565b3480156105a557600080fd5b506102ed6105b4366004612c38565b61124c565b3480156105c557600080fd5b506012546102b89060ff1681565b3480156105df57600080fd5b506102ed61128d565b3480156105f457600080fd5b50610344610603366004612bcc565b6112f3565b34801561061457600080fd5b5061031761136a565b34801561062957600080fd5b506103926106383660046129dc565b6113f8565b34801561064957600080fd5b506102ed61147f565b34801561065e57600080fd5b506102ed61066d366004612bcc565b6114b5565b34801561067e57600080fd5b5061039260165481565b34801561069457600080fd5b506102ed6106a3366004612bb1565b6114e4565b3480156106b457600080fd5b506102ed6106c3366004612b0c565b611528565b3480156106d457600080fd5b50600a546001600160a01b0316610344565b3480156106f257600080fd5b5061039260115481565b34801561070857600080fd5b50610317611532565b34801561071d57600080fd5b506102ed61072c366004612ae2565b611541565b34801561073d57600080fd5b506102ed61074c366004612a66565b61154c565b34801561075d57600080fd5b5061039260175481565b6102ed610775366004612b36565b611584565b34801561078657600080fd5b506103176118a2565b34801561079b57600080fd5b506103176107aa366004612bcc565b6118af565b3480156107bb57600080fd5b5061039260105481565b3480156107d157600080fd5b5061039260185481565b3480156107e757600080fd5b506102ed6107f6366004612b0c565b61198d565b34801561080757600080fd5b506102b86108163660046129f7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561085057600080fd5b506102ed61085f3660046129dc565b611a59565b34801561087057600080fd5b506102ed61087f366004612bcc565b611af1565b600061088f82611c30565b92915050565b600a546001600160a01b031633146108c85760405162461bcd60e51b81526004016108bf90612f57565b60405180910390fd5b6012805460ff1916911515919091179055565b60125460ff16156109275760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108bf565b601254610100900460ff16156109905760405162461bcd60e51b815260206004820152602860248201527f43616e206e6f742075736520746869732066756e6374696f6e20647572696e676044820152672070726573616c6560c01b60648201526084016108bf565b80600e5461099e9190613058565b3410156109e25760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108bf565b600a546001600160a01b0316331415610a0d5760405162461bcd60e51b81526004016108bf90612fdd565b6000600283604051602001610a229190612d00565b60408051601f1981840301815290829052610a3c91612d00565b602060405180830381855afa158015610a59573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610a7c9190612be5565b90506013548114610ac85760405162461bcd60e51b81526020600482015260166024820152750a0c2e6e6eedee4c840c8decae6dc4ee840dac2e8c6d60531b60448201526064016108bf565b600082118015610ada57506011548211155b610af65760405162461bcd60e51b81526004016108bf90612ec6565b6000610b0160085490565b601054909150610b11848361302c565b1115610b2f5760405162461bcd60e51b81526004016108bf90612f0a565b60005b83811015610b6357610b513382601854610b4c919061302c565b611c55565b80610b5b816130f5565b915050610b32565b5082601854610b72919061302c565b6018556019546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610bae573d6000803e3d6000fd5b5050505050565b606060008054610bc4906130ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf0906130ba565b8015610c3d5780601f10610c1257610100808354040283529160200191610c3d565b820191906000526020600020905b815481529060010190602001808311610c2057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cc05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108bf565b506000908152600460205260409020546001600160a01b031690565b6000610ce7826112f3565b9050806001600160a01b0316836001600160a01b03161415610d555760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108bf565b336001600160a01b0382161480610d715750610d718133610816565b610de35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108bf565b610ded8383611c6f565b505050565b600a546001600160a01b03163314610e1c5760405162461bcd60e51b81526004016108bf90612f57565b600f54811115610e865760405162461bcd60e51b815260206004820152602f60248201527f6d6178537570706c792063616e206e6f7420626520677265617465722074686160448201526e1b881d1a19481b585e08131a5b5a5d608a1b60648201526084016108bf565b6010548111610ef15760405162461bcd60e51b815260206004820152603160248201527f6d6178537570706c792063616e206e6f74206265206c657373207468616e2070604482015270726576696f7573206d6178537570706c7960781b60648201526084016108bf565b601055565b610f003382611cdd565b610f1c5760405162461bcd60e51b81526004016108bf90612f8c565b610ded838383611dd4565b60408051808201909152600b546001600160a01b038116808352600160a01b90910462ffffff1660208301819052909160009161271090610f689086613058565b610f729190613044565b9150509250929050565b6000610f87836113f8565b8210610fe95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108bf565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461103c5760405162461bcd60e51b81526004016108bf90612f57565b601355565b610ded8383836040518060200160405280600081525061154c565b60606000611069836113f8565b905060008167ffffffffffffffff8111156110865761108661317c565b6040519080825280602002602001820160405280156110af578160200160208202803683370190505b50905060005b828110156110f6576110c78582610f7c565b8282815181106110d9576110d9613166565b6020908102919091010152806110ee816130f5565b9150506110b5565b509392505050565b600a546001600160a01b031633146111285760405162461bcd60e51b81526004016108bf90612f57565b600e55565b600061113860085490565b821061119b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108bf565b600882815481106111ae576111ae613166565b90600052602060002001549050919050565b600a546001600160a01b031633146111ea5760405162461bcd60e51b81526004016108bf90612f57565b60148111156112475760405162461bcd60e51b815260206004820152602360248201527f596f752063616e20736574206d73784d696e74416d6f756e74206d617820746f60448201526202032360ec1b60648201526084016108bf565b601155565b600a546001600160a01b031633146112765760405162461bcd60e51b81526004016108bf90612f57565b805161128990600c906020840190612881565b5050565b600a546001600160a01b031633146112b75760405162461bcd60e51b81526004016108bf90612f57565b6019546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156112f0573d6000803e3d6000fd5b50565b6000818152600260205260408120546001600160a01b03168061088f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108bf565b600c8054611377906130ba565b80601f01602080910402602001604051908101604052809291908181526020018280546113a3906130ba565b80156113f05780601f106113c5576101008083540402835291602001916113f0565b820191906000526020600020905b8154815290600101906020018083116113d357829003601f168201915b505050505081565b60006001600160a01b0382166114635760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108bf565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114a95760405162461bcd60e51b81526004016108bf90612f57565b6114b36000611f7f565b565b600a546001600160a01b031633146114df5760405162461bcd60e51b81526004016108bf90612f57565b601455565b600a546001600160a01b0316331461150e5760405162461bcd60e51b81526004016108bf90612f57565b601280549115156101000261ff0019909216919091179055565b6112898282611fd1565b606060018054610bc4906130ba565b61128933838361206d565b6115563383611cdd565b6115725760405162461bcd60e51b81526004016108bf90612f8c565b61157e8484848461213c565b50505050565b601254610100900460ff166115d35760405162461bcd60e51b815260206004820152601560248201527470726573616c65206973206e6f742061637469766560581b60448201526064016108bf565b80600e546115e19190613058565b3410156116255760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108bf565b600a546001600160a01b03163314156116505760405162461bcd60e51b81526004016108bf90612fdd565b60028111156116a15760405162461bcd60e51b815260206004820152601a60248201527f4d61782032206e66747320636f756c64206265206d696e74656400000000000060448201526064016108bf565b336000908152601560205260409020546002116117005760405162461bcd60e51b815260206004820152601c60248201527f416464726573732068617320616c726561647920636c61696d65642e0000000060448201526064016108bf565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061177a84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601454915084905061216f565b6117b75760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b60448201526064016108bf565b60006117c260085490565b6010549091506117d2848361302c565b11156117f05760405162461bcd60e51b81526004016108bf90612f0a565b60005b8381101561181f5761180d3382601854610b4c919061302c565b80611817816130f5565b9150506117f3565b508260185461182e919061302c565b6018553360009081526015602052604090205461184c90849061302c565b336000908152601560205260408082209290925560195491516001600160a01b0392909216914780156108fc0292909190818181858888f1935050505015801561189a573d6000803e3d6000fd5b505050505050565b600d8054611377906130ba565b6000818152600260205260409020546060906001600160a01b031661192e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108bf565b6000611938612185565b905060008151116119585760405180602001604052806000815250611986565b8061196284612194565b600d60405160200161197693929190612d1c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146119b75760405162461bcd60e51b81526004016108bf90612f57565b6002811115611a145760405162461bcd60e51b8152602060048201526024808201527f596f752063616e206f6e6c7920696e63726561736520746865206c696d697420604482015263313c901960e11b60648201526084016108bf565b6001600160a01b038216600090815260156020526040812054611a38908390613077565b6001600160a01b039093166000908152601560205260409020929092555050565b600a546001600160a01b03163314611a835760405162461bcd60e51b81526004016108bf90612f57565b6001600160a01b038116611ae85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108bf565b6112f081611f7f565b600a546001600160a01b03163314611b1b5760405162461bcd60e51b81526004016108bf90612f57565b60165481601754611b2c919061302c565b1115611b7a5760405162461bcd60e51b815260206004820152601760248201527f4f776e65722773204e46542071756f746120456e64656400000000000000000060448201526064016108bf565b60008111611bca5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108bf565b601154811115611bec5760405162461bcd60e51b81526004016108bf90612ec6565b60005b81811015611c1b57611c093382601754610b4c919061302c565b80611c13816130f5565b915050611bef565b5080601754611c2a919061302c565b60175550565b60006001600160e01b0319821663152a902d60e11b148061088f575061088f82612292565b6112898282604051806020016040528060008152506122b7565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ca4826112f3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108bf565b6000611d61836112f3565b9050806001600160a01b0316846001600160a01b03161480611d9c5750836001600160a01b0316611d9184610c47565b6001600160a01b0316145b80611dcc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611de7826112f3565b6001600160a01b031614611e4f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108bf565b6001600160a01b038216611eb15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108bf565b611ebc8383836122ea565b611ec7600082611c6f565b6001600160a01b0383166000908152600360205260408120805460019290611ef0908490613077565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f1e90849061302c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127108111156120235760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f206869676800000000000060448201526064016108bf565b604080518082019091526001600160a01b0390921680835262ffffff9091166020909201829052600b8054600160a01b9093026001600160b81b0319909316909117919091179055565b816001600160a01b0316836001600160a01b031614156120cf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108bf565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612147848484611dd4565b612153848484846123a2565b61157e5760405162461bcd60e51b81526004016108bf90612e74565b60008261217c85846124af565b14949350505050565b6060600c8054610bc4906130ba565b6060816121b85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121e257806121cc816130f5565b91506121db9050600a83613044565b91506121bc565b60008167ffffffffffffffff8111156121fd576121fd61317c565b6040519080825280601f01601f191660200182016040528015612227576020820181803683370190505b5090505b8415611dcc5761223c600183613077565b9150612249600a86613110565b61225490603061302c565b60f81b81838151811061226957612269613166565b60200101906001600160f81b031916908160001a90535061228b600a86613044565b945061222b565b60006001600160e01b0319821663780e9d6360e01b148061088f575061088f82612553565b6122c183836125a3565b6122ce60008484846123a2565b610ded5760405162461bcd60e51b81526004016108bf90612e74565b6001600160a01b0383166123455761234081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612368565b816001600160a01b0316836001600160a01b0316146123685761236883826126f1565b6001600160a01b03821661237f57610ded8161278e565b826001600160a01b0316826001600160a01b031614610ded57610ded828261283d565b60006001600160a01b0384163b156124a457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123e6903390899088908890600401612de0565b602060405180830381600087803b15801561240057600080fd5b505af1925050508015612430575060408051601f3d908101601f1916820190925261242d91810190612c1b565b60015b61248a573d80801561245e576040519150601f19603f3d011682016040523d82523d6000602084013e612463565b606091505b5080516124825760405162461bcd60e51b81526004016108bf90612e74565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dcc565b506001949350505050565b600081815b84518110156110f65760008582815181106124d1576124d1613166565b60200260200101519050808311612513576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612540565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061254b816130f5565b9150506124b4565b60006001600160e01b031982166380ac58cd60e01b148061258457506001600160e01b03198216635b5e139f60e01b145b8061088f57506301ffc9a760e01b6001600160e01b031983161461088f565b6001600160a01b0382166125f95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108bf565b6000818152600260205260409020546001600160a01b03161561265e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108bf565b61266a600083836122ea565b6001600160a01b038216600090815260036020526040812080546001929061269390849061302c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016126fe846113f8565b6127089190613077565b60008381526007602052604090205490915080821461275b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906127a090600190613077565b600083815260096020526040812054600880549394509092849081106127c8576127c8613166565b9060005260206000200154905080600883815481106127e9576127e9613166565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061282157612821613150565b6001900381819060005260206000200160009055905550505050565b6000612848836113f8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461288d906130ba565b90600052602060002090601f0160209004810192826128af57600085556128f5565b82601f106128c857805160ff19168380011785556128f5565b828001600101855582156128f5579182015b828111156128f55782518255916020019190600101906128da565b50612901929150612905565b5090565b5b808211156129015760008155600101612906565b600067ffffffffffffffff808411156129355761293561317c565b604051601f8501601f19908116603f0116810190828211818310171561295d5761295d61317c565b8160405280935085815286868601111561297657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146129a757600080fd5b919050565b803580151581146129a757600080fd5b600082601f8301126129cd57600080fd5b6119868383356020850161291a565b6000602082840312156129ee57600080fd5b61198682612990565b60008060408385031215612a0a57600080fd5b612a1383612990565b9150612a2160208401612990565b90509250929050565b600080600060608486031215612a3f57600080fd5b612a4884612990565b9250612a5660208501612990565b9150604084013590509250925092565b60008060008060808587031215612a7c57600080fd5b612a8585612990565b9350612a9360208601612990565b925060408501359150606085013567ffffffffffffffff811115612ab657600080fd5b8501601f81018713612ac757600080fd5b612ad68782356020840161291a565b91505092959194509250565b60008060408385031215612af557600080fd5b612afe83612990565b9150612a21602084016129ac565b60008060408385031215612b1f57600080fd5b612b2883612990565b946020939093013593505050565b600080600060408486031215612b4b57600080fd5b833567ffffffffffffffff80821115612b6357600080fd5b818601915086601f830112612b7757600080fd5b813581811115612b8657600080fd5b8760208260051b8501011115612b9b57600080fd5b6020928301989097509590910135949350505050565b600060208284031215612bc357600080fd5b611986826129ac565b600060208284031215612bde57600080fd5b5035919050565b600060208284031215612bf757600080fd5b5051919050565b600060208284031215612c1057600080fd5b813561198681613192565b600060208284031215612c2d57600080fd5b815161198681613192565b600060208284031215612c4a57600080fd5b813567ffffffffffffffff811115612c6157600080fd5b611dcc848285016129bc565b60008060408385031215612c8057600080fd5b823567ffffffffffffffff811115612c9757600080fd5b612ca3858286016129bc565b95602094909401359450505050565b60008060408385031215612cc557600080fd5b50508035926020909101359150565b60008151808452612cec81602086016020860161308e565b601f01601f19169290920160200192915050565b60008251612d1281846020870161308e565b9190910192915050565b600084516020612d2f8285838a0161308e565b855191840191612d428184848a0161308e565b8554920191600090600181811c9080831680612d5f57607f831692505b858310811415612d7d57634e487b7160e01b85526022600452602485fd5b808015612d915760018114612da257612dcf565b60ff19851688528388019550612dcf565b60008b81526020902060005b85811015612dc75781548a820152908401908801612dae565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e1390830184612cd4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e5557835183529284019291840191600101612e39565b50909695505050505050565b6020815260006119866020830184612cd4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252602d908201527f6d6178204e4654206c696d69742065786365656465642c20547279206d696e7460408201526c696e67206c657373204e46547360981b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602f908201527f546869732066756e6374696f6e2063616e206f6e6c792062652063616c6c656460408201526e10313c9030b71037baba39b4b232b960891b606082015260800190565b6000821982111561303f5761303f613124565b500190565b6000826130535761305361313a565b500490565b600081600019048311821515161561307257613072613124565b500290565b60008282101561308957613089613124565b500390565b60005b838110156130a9578181015183820152602001613091565b8381111561157e5750506000910152565b600181811c908216806130ce57607f821691505b602082108114156130ef57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561310957613109613124565b5060010190565b60008261311f5761311f61313a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112f057600080fdfea2646970667358221220601fff4de48e2e87073c25286132ac971f2e80488716c5959cc4bd5c1cfa0bb564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e486f757365204f66204d656d706f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004484f464d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d626138484842483959536d64384235474d42634e4b466f68525969764e544e5655326364354c6267524176322f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c80635fd8c7101161015a578063a22cb465116100c1578063d5abeb011161007a578063d5abeb01146107af578063e116e25e146107c5578063e19b0ddf146107db578063e985e9c5146107fb578063f2fde38b14610844578063f6f043d91461086457600080fd5b8063a22cb46514610711578063b88d4fde14610731578063bc9c247414610751578063c30bf31814610767578063c66828621461077a578063c87b56dd1461078f57600080fd5b8063867ec61611610113578063867ec616146106725780638895283f146106885780638c7ea24b146106a85780638da5cb5b146106c857806394354fd0146106e657806395d89b41146106fc57600080fd5b80635fd8c710146105d35780636352211e146105e85780636c0360eb1461060857806370a082311461061d578063715018a61461063d5780637cb647591461065257600080fd5b80632eb4a7ab116101fe57806344a0d68a116101b757806344a0d68a1461051a5780634f6ccce71461053a57806353135ca01461055a57806353db40731461057957806355f804b3146105995780635c975abb146105b957600080fd5b80632eb4a7ab1461044a5780632f745c591461046057806335a9c82f1461048057806336b29bdc146104a057806342842e0e146104cd578063438b6300146104ed57600080fd5b806313faede61161025057806313faede61461037c578063149835a0146103a057806318160ddd146103c05780631a861d26146103d557806323b872dd146103eb5780632a55205a1461040b57600080fd5b806301ffc9a71461029857806302329a29146102cd578063056b01ce146102ef57806306fdde0314610302578063081812fc14610324578063095ea7b31461035c575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612bfe565b610884565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e8366004612bb1565b610895565b005b6102ed6102fd366004612c6d565b6108db565b34801561030e57600080fd5b50610317610bb5565b6040516102c49190612e61565b34801561033057600080fd5b5061034461033f366004612bcc565b610c47565b6040516001600160a01b0390911681526020016102c4565b34801561036857600080fd5b506102ed610377366004612b0c565b610cdc565b34801561038857600080fd5b50610392600e5481565b6040519081526020016102c4565b3480156103ac57600080fd5b506102ed6103bb366004612bcc565b610df2565b3480156103cc57600080fd5b50600854610392565b3480156103e157600080fd5b50610392600f5481565b3480156103f757600080fd5b506102ed610406366004612a2a565b610ef6565b34801561041757600080fd5b5061042b610426366004612cb2565b610f27565b604080516001600160a01b0390931683526020830191909152016102c4565b34801561045657600080fd5b5061039260145481565b34801561046c57600080fd5b5061039261047b366004612b0c565b610f7c565b34801561048c57600080fd5b506102ed61049b366004612bcc565b611012565b3480156104ac57600080fd5b506103926104bb3660046129dc565b60156020526000908152604090205481565b3480156104d957600080fd5b506102ed6104e8366004612a2a565b611041565b3480156104f957600080fd5b5061050d6105083660046129dc565b61105c565b6040516102c49190612e1d565b34801561052657600080fd5b506102ed610535366004612bcc565b6110fe565b34801561054657600080fd5b50610392610555366004612bcc565b61112d565b34801561056657600080fd5b506012546102b890610100900460ff1681565b34801561058557600080fd5b506102ed610594366004612bcc565b6111c0565b3480156105a557600080fd5b506102ed6105b4366004612c38565b61124c565b3480156105c557600080fd5b506012546102b89060ff1681565b3480156105df57600080fd5b506102ed61128d565b3480156105f457600080fd5b50610344610603366004612bcc565b6112f3565b34801561061457600080fd5b5061031761136a565b34801561062957600080fd5b506103926106383660046129dc565b6113f8565b34801561064957600080fd5b506102ed61147f565b34801561065e57600080fd5b506102ed61066d366004612bcc565b6114b5565b34801561067e57600080fd5b5061039260165481565b34801561069457600080fd5b506102ed6106a3366004612bb1565b6114e4565b3480156106b457600080fd5b506102ed6106c3366004612b0c565b611528565b3480156106d457600080fd5b50600a546001600160a01b0316610344565b3480156106f257600080fd5b5061039260115481565b34801561070857600080fd5b50610317611532565b34801561071d57600080fd5b506102ed61072c366004612ae2565b611541565b34801561073d57600080fd5b506102ed61074c366004612a66565b61154c565b34801561075d57600080fd5b5061039260175481565b6102ed610775366004612b36565b611584565b34801561078657600080fd5b506103176118a2565b34801561079b57600080fd5b506103176107aa366004612bcc565b6118af565b3480156107bb57600080fd5b5061039260105481565b3480156107d157600080fd5b5061039260185481565b3480156107e757600080fd5b506102ed6107f6366004612b0c565b61198d565b34801561080757600080fd5b506102b86108163660046129f7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561085057600080fd5b506102ed61085f3660046129dc565b611a59565b34801561087057600080fd5b506102ed61087f366004612bcc565b611af1565b600061088f82611c30565b92915050565b600a546001600160a01b031633146108c85760405162461bcd60e51b81526004016108bf90612f57565b60405180910390fd5b6012805460ff1916911515919091179055565b60125460ff16156109275760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108bf565b601254610100900460ff16156109905760405162461bcd60e51b815260206004820152602860248201527f43616e206e6f742075736520746869732066756e6374696f6e20647572696e676044820152672070726573616c6560c01b60648201526084016108bf565b80600e5461099e9190613058565b3410156109e25760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108bf565b600a546001600160a01b0316331415610a0d5760405162461bcd60e51b81526004016108bf90612fdd565b6000600283604051602001610a229190612d00565b60408051601f1981840301815290829052610a3c91612d00565b602060405180830381855afa158015610a59573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610a7c9190612be5565b90506013548114610ac85760405162461bcd60e51b81526020600482015260166024820152750a0c2e6e6eedee4c840c8decae6dc4ee840dac2e8c6d60531b60448201526064016108bf565b600082118015610ada57506011548211155b610af65760405162461bcd60e51b81526004016108bf90612ec6565b6000610b0160085490565b601054909150610b11848361302c565b1115610b2f5760405162461bcd60e51b81526004016108bf90612f0a565b60005b83811015610b6357610b513382601854610b4c919061302c565b611c55565b80610b5b816130f5565b915050610b32565b5082601854610b72919061302c565b6018556019546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610bae573d6000803e3d6000fd5b5050505050565b606060008054610bc4906130ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf0906130ba565b8015610c3d5780601f10610c1257610100808354040283529160200191610c3d565b820191906000526020600020905b815481529060010190602001808311610c2057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cc05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108bf565b506000908152600460205260409020546001600160a01b031690565b6000610ce7826112f3565b9050806001600160a01b0316836001600160a01b03161415610d555760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108bf565b336001600160a01b0382161480610d715750610d718133610816565b610de35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108bf565b610ded8383611c6f565b505050565b600a546001600160a01b03163314610e1c5760405162461bcd60e51b81526004016108bf90612f57565b600f54811115610e865760405162461bcd60e51b815260206004820152602f60248201527f6d6178537570706c792063616e206e6f7420626520677265617465722074686160448201526e1b881d1a19481b585e08131a5b5a5d608a1b60648201526084016108bf565b6010548111610ef15760405162461bcd60e51b815260206004820152603160248201527f6d6178537570706c792063616e206e6f74206265206c657373207468616e2070604482015270726576696f7573206d6178537570706c7960781b60648201526084016108bf565b601055565b610f003382611cdd565b610f1c5760405162461bcd60e51b81526004016108bf90612f8c565b610ded838383611dd4565b60408051808201909152600b546001600160a01b038116808352600160a01b90910462ffffff1660208301819052909160009161271090610f689086613058565b610f729190613044565b9150509250929050565b6000610f87836113f8565b8210610fe95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108bf565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461103c5760405162461bcd60e51b81526004016108bf90612f57565b601355565b610ded8383836040518060200160405280600081525061154c565b60606000611069836113f8565b905060008167ffffffffffffffff8111156110865761108661317c565b6040519080825280602002602001820160405280156110af578160200160208202803683370190505b50905060005b828110156110f6576110c78582610f7c565b8282815181106110d9576110d9613166565b6020908102919091010152806110ee816130f5565b9150506110b5565b509392505050565b600a546001600160a01b031633146111285760405162461bcd60e51b81526004016108bf90612f57565b600e55565b600061113860085490565b821061119b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108bf565b600882815481106111ae576111ae613166565b90600052602060002001549050919050565b600a546001600160a01b031633146111ea5760405162461bcd60e51b81526004016108bf90612f57565b60148111156112475760405162461bcd60e51b815260206004820152602360248201527f596f752063616e20736574206d73784d696e74416d6f756e74206d617820746f60448201526202032360ec1b60648201526084016108bf565b601155565b600a546001600160a01b031633146112765760405162461bcd60e51b81526004016108bf90612f57565b805161128990600c906020840190612881565b5050565b600a546001600160a01b031633146112b75760405162461bcd60e51b81526004016108bf90612f57565b6019546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156112f0573d6000803e3d6000fd5b50565b6000818152600260205260408120546001600160a01b03168061088f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108bf565b600c8054611377906130ba565b80601f01602080910402602001604051908101604052809291908181526020018280546113a3906130ba565b80156113f05780601f106113c5576101008083540402835291602001916113f0565b820191906000526020600020905b8154815290600101906020018083116113d357829003601f168201915b505050505081565b60006001600160a01b0382166114635760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108bf565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114a95760405162461bcd60e51b81526004016108bf90612f57565b6114b36000611f7f565b565b600a546001600160a01b031633146114df5760405162461bcd60e51b81526004016108bf90612f57565b601455565b600a546001600160a01b0316331461150e5760405162461bcd60e51b81526004016108bf90612f57565b601280549115156101000261ff0019909216919091179055565b6112898282611fd1565b606060018054610bc4906130ba565b61128933838361206d565b6115563383611cdd565b6115725760405162461bcd60e51b81526004016108bf90612f8c565b61157e8484848461213c565b50505050565b601254610100900460ff166115d35760405162461bcd60e51b815260206004820152601560248201527470726573616c65206973206e6f742061637469766560581b60448201526064016108bf565b80600e546115e19190613058565b3410156116255760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108bf565b600a546001600160a01b03163314156116505760405162461bcd60e51b81526004016108bf90612fdd565b60028111156116a15760405162461bcd60e51b815260206004820152601a60248201527f4d61782032206e66747320636f756c64206265206d696e74656400000000000060448201526064016108bf565b336000908152601560205260409020546002116117005760405162461bcd60e51b815260206004820152601c60248201527f416464726573732068617320616c726561647920636c61696d65642e0000000060448201526064016108bf565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061177a84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601454915084905061216f565b6117b75760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b60448201526064016108bf565b60006117c260085490565b6010549091506117d2848361302c565b11156117f05760405162461bcd60e51b81526004016108bf90612f0a565b60005b8381101561181f5761180d3382601854610b4c919061302c565b80611817816130f5565b9150506117f3565b508260185461182e919061302c565b6018553360009081526015602052604090205461184c90849061302c565b336000908152601560205260408082209290925560195491516001600160a01b0392909216914780156108fc0292909190818181858888f1935050505015801561189a573d6000803e3d6000fd5b505050505050565b600d8054611377906130ba565b6000818152600260205260409020546060906001600160a01b031661192e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108bf565b6000611938612185565b905060008151116119585760405180602001604052806000815250611986565b8061196284612194565b600d60405160200161197693929190612d1c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146119b75760405162461bcd60e51b81526004016108bf90612f57565b6002811115611a145760405162461bcd60e51b8152602060048201526024808201527f596f752063616e206f6e6c7920696e63726561736520746865206c696d697420604482015263313c901960e11b60648201526084016108bf565b6001600160a01b038216600090815260156020526040812054611a38908390613077565b6001600160a01b039093166000908152601560205260409020929092555050565b600a546001600160a01b03163314611a835760405162461bcd60e51b81526004016108bf90612f57565b6001600160a01b038116611ae85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108bf565b6112f081611f7f565b600a546001600160a01b03163314611b1b5760405162461bcd60e51b81526004016108bf90612f57565b60165481601754611b2c919061302c565b1115611b7a5760405162461bcd60e51b815260206004820152601760248201527f4f776e65722773204e46542071756f746120456e64656400000000000000000060448201526064016108bf565b60008111611bca5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108bf565b601154811115611bec5760405162461bcd60e51b81526004016108bf90612ec6565b60005b81811015611c1b57611c093382601754610b4c919061302c565b80611c13816130f5565b915050611bef565b5080601754611c2a919061302c565b60175550565b60006001600160e01b0319821663152a902d60e11b148061088f575061088f82612292565b6112898282604051806020016040528060008152506122b7565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ca4826112f3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108bf565b6000611d61836112f3565b9050806001600160a01b0316846001600160a01b03161480611d9c5750836001600160a01b0316611d9184610c47565b6001600160a01b0316145b80611dcc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611de7826112f3565b6001600160a01b031614611e4f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108bf565b6001600160a01b038216611eb15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108bf565b611ebc8383836122ea565b611ec7600082611c6f565b6001600160a01b0383166000908152600360205260408120805460019290611ef0908490613077565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f1e90849061302c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127108111156120235760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f206869676800000000000060448201526064016108bf565b604080518082019091526001600160a01b0390921680835262ffffff9091166020909201829052600b8054600160a01b9093026001600160b81b0319909316909117919091179055565b816001600160a01b0316836001600160a01b031614156120cf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108bf565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612147848484611dd4565b612153848484846123a2565b61157e5760405162461bcd60e51b81526004016108bf90612e74565b60008261217c85846124af565b14949350505050565b6060600c8054610bc4906130ba565b6060816121b85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121e257806121cc816130f5565b91506121db9050600a83613044565b91506121bc565b60008167ffffffffffffffff8111156121fd576121fd61317c565b6040519080825280601f01601f191660200182016040528015612227576020820181803683370190505b5090505b8415611dcc5761223c600183613077565b9150612249600a86613110565b61225490603061302c565b60f81b81838151811061226957612269613166565b60200101906001600160f81b031916908160001a90535061228b600a86613044565b945061222b565b60006001600160e01b0319821663780e9d6360e01b148061088f575061088f82612553565b6122c183836125a3565b6122ce60008484846123a2565b610ded5760405162461bcd60e51b81526004016108bf90612e74565b6001600160a01b0383166123455761234081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612368565b816001600160a01b0316836001600160a01b0316146123685761236883826126f1565b6001600160a01b03821661237f57610ded8161278e565b826001600160a01b0316826001600160a01b031614610ded57610ded828261283d565b60006001600160a01b0384163b156124a457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123e6903390899088908890600401612de0565b602060405180830381600087803b15801561240057600080fd5b505af1925050508015612430575060408051601f3d908101601f1916820190925261242d91810190612c1b565b60015b61248a573d80801561245e576040519150601f19603f3d011682016040523d82523d6000602084013e612463565b606091505b5080516124825760405162461bcd60e51b81526004016108bf90612e74565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dcc565b506001949350505050565b600081815b84518110156110f65760008582815181106124d1576124d1613166565b60200260200101519050808311612513576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612540565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061254b816130f5565b9150506124b4565b60006001600160e01b031982166380ac58cd60e01b148061258457506001600160e01b03198216635b5e139f60e01b145b8061088f57506301ffc9a760e01b6001600160e01b031983161461088f565b6001600160a01b0382166125f95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108bf565b6000818152600260205260409020546001600160a01b03161561265e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108bf565b61266a600083836122ea565b6001600160a01b038216600090815260036020526040812080546001929061269390849061302c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016126fe846113f8565b6127089190613077565b60008381526007602052604090205490915080821461275b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906127a090600190613077565b600083815260096020526040812054600880549394509092849081106127c8576127c8613166565b9060005260206000200154905080600883815481106127e9576127e9613166565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061282157612821613150565b6001900381819060005260206000200160009055905550505050565b6000612848836113f8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461288d906130ba565b90600052602060002090601f0160209004810192826128af57600085556128f5565b82601f106128c857805160ff19168380011785556128f5565b828001600101855582156128f5579182015b828111156128f55782518255916020019190600101906128da565b50612901929150612905565b5090565b5b808211156129015760008155600101612906565b600067ffffffffffffffff808411156129355761293561317c565b604051601f8501601f19908116603f0116810190828211818310171561295d5761295d61317c565b8160405280935085815286868601111561297657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146129a757600080fd5b919050565b803580151581146129a757600080fd5b600082601f8301126129cd57600080fd5b6119868383356020850161291a565b6000602082840312156129ee57600080fd5b61198682612990565b60008060408385031215612a0a57600080fd5b612a1383612990565b9150612a2160208401612990565b90509250929050565b600080600060608486031215612a3f57600080fd5b612a4884612990565b9250612a5660208501612990565b9150604084013590509250925092565b60008060008060808587031215612a7c57600080fd5b612a8585612990565b9350612a9360208601612990565b925060408501359150606085013567ffffffffffffffff811115612ab657600080fd5b8501601f81018713612ac757600080fd5b612ad68782356020840161291a565b91505092959194509250565b60008060408385031215612af557600080fd5b612afe83612990565b9150612a21602084016129ac565b60008060408385031215612b1f57600080fd5b612b2883612990565b946020939093013593505050565b600080600060408486031215612b4b57600080fd5b833567ffffffffffffffff80821115612b6357600080fd5b818601915086601f830112612b7757600080fd5b813581811115612b8657600080fd5b8760208260051b8501011115612b9b57600080fd5b6020928301989097509590910135949350505050565b600060208284031215612bc357600080fd5b611986826129ac565b600060208284031215612bde57600080fd5b5035919050565b600060208284031215612bf757600080fd5b5051919050565b600060208284031215612c1057600080fd5b813561198681613192565b600060208284031215612c2d57600080fd5b815161198681613192565b600060208284031215612c4a57600080fd5b813567ffffffffffffffff811115612c6157600080fd5b611dcc848285016129bc565b60008060408385031215612c8057600080fd5b823567ffffffffffffffff811115612c9757600080fd5b612ca3858286016129bc565b95602094909401359450505050565b60008060408385031215612cc557600080fd5b50508035926020909101359150565b60008151808452612cec81602086016020860161308e565b601f01601f19169290920160200192915050565b60008251612d1281846020870161308e565b9190910192915050565b600084516020612d2f8285838a0161308e565b855191840191612d428184848a0161308e565b8554920191600090600181811c9080831680612d5f57607f831692505b858310811415612d7d57634e487b7160e01b85526022600452602485fd5b808015612d915760018114612da257612dcf565b60ff19851688528388019550612dcf565b60008b81526020902060005b85811015612dc75781548a820152908401908801612dae565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e1390830184612cd4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e5557835183529284019291840191600101612e39565b50909695505050505050565b6020815260006119866020830184612cd4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252602d908201527f6d6178204e4654206c696d69742065786365656465642c20547279206d696e7460408201526c696e67206c657373204e46547360981b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602f908201527f546869732066756e6374696f6e2063616e206f6e6c792062652063616c6c656460408201526e10313c9030b71037baba39b4b232b960891b606082015260800190565b6000821982111561303f5761303f613124565b500190565b6000826130535761305361313a565b500490565b600081600019048311821515161561307257613072613124565b500290565b60008282101561308957613089613124565b500390565b60005b838110156130a9578181015183820152602001613091565b8381111561157e5750506000910152565b600181811c908216806130ce57607f821691505b602082108114156130ef57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561310957613109613124565b5060010190565b60008261311f5761311f61313a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112f057600080fdfea2646970667358221220601fff4de48e2e87073c25286132ac971f2e80488716c5959cc4bd5c1cfa0bb564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e486f757365204f66204d656d706f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004484f464d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d626138484842483959536d64384235474d42634e4b466f68525969764e544e5655326364354c6267524176322f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): House Of Mempo
Arg [1] : _symbol (string): HOFM
Arg [2] : _initBaseURI (string): https://ipfs.io/ipfs/Qmba8HHBH9YSmd8B5GMBcNKFohRYivNTNVU2cd5LbgRAv2/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 486f757365204f66204d656d706f000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 484f464d00000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d626138484842483959
Arg [9] : 536d64384235474d42634e4b466f68525969764e544e5655326364354c626752
Arg [10] : 4176322f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49162:7838:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50404:234;;;;;;;;;;-1:-1:-1;50404:234:0;;;;;:::i;:::-;;:::i;:::-;;;10736:14:1;;10729:22;10711:41;;10699:2;10684:18;50404:234:0;;;;;;;;56089:79;;;;;;;;;;-1:-1:-1;56089:79:0;;;;;:::i;:::-;;:::i;:::-;;51061:1143;;;;;;:::i;:::-;;:::i;30423:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31982:221::-;;;;;;;;;;-1:-1:-1;31982:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9118:32:1;;;9100:51;;9088:2;9073:18;31982:221:0;8954:203:1;31505:411:0;;;;;;;;;;-1:-1:-1;31505:411:0;;;;;:::i;:::-;;:::i;49347:32::-;;;;;;;;;;;;;;;;;;;10909:25:1;;;10897:2;10882:18;49347:32:0;10763:177:1;55595:374:0;;;;;;;;;;-1:-1:-1;55595:374:0;;;;;:::i;:::-;;:::i;43569:113::-;;;;;;;;;;-1:-1:-1;43657:10:0;:17;43569:113;;49386:31;;;;;;;;;;;;;;;;32732:339;;;;;;;;;;-1:-1:-1;32732:339:0;;;;;:::i;:::-;;:::i;21012:321::-;;;;;;;;;;-1:-1:-1;21012:321:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;9847:32:1;;;9829:51;;9911:2;9896:18;;9889:34;;;;9802:18;21012:321:0;9655:274:1;49680:94:0;;;;;;;;;;;;;;;;43237:256;;;;;;;;;;-1:-1:-1;43237:256:0;;;;;:::i;:::-;;:::i;56677:92::-;;;;;;;;;;-1:-1:-1;56677:92:0;;;;;:::i;:::-;;:::i;49781:54::-;;;;;;;;;;-1:-1:-1;49781:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;33142:185;;;;;;;;;;-1:-1:-1;33142:185:0;;;;;:::i;:::-;;:::i;54138:390::-;;;;;;;;;;-1:-1:-1;54138:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;55204:86::-;;;;;;;;;;-1:-1:-1;55204:86:0;;;;;:::i;:::-;;:::i;43759:233::-;;;;;;;;;;-1:-1:-1;43759:233:0;;;;;:::i;:::-;;:::i;49538:33::-;;;;;;;;;;-1:-1:-1;49538:33:0;;;;;;;;;;;55298:289;;;;;;;;;;-1:-1:-1;55298:289:0;;;;;:::i;:::-;;:::i;55977:104::-;;;;;;;;;;-1:-1:-1;55977:104:0;;;;;:::i;:::-;;:::i;49506:25::-;;;;;;;;;;-1:-1:-1;49506:25:0;;;;;;;;56889:108;;;;;;;;;;;;;:::i;30117:239::-;;;;;;;;;;-1:-1:-1;30117:239:0;;;;;:::i;:::-;;:::i;49275:21::-;;;;;;;;;;;;;:::i;29847:208::-;;;;;;;;;;-1:-1:-1;29847:208:0;;;;;:::i;:::-;;:::i;7681:103::-;;;;;;;;;;;;;:::i;56777:104::-;;;;;;;;;;-1:-1:-1;56777:104:0;;;;;:::i;:::-;;:::i;49842:38::-;;;;;;;;;;;;;;;;56176:113;;;;;;;;;;-1:-1:-1;56176:113:0;;;;;:::i;:::-;;:::i;50925:::-;;;;;;;;;;-1:-1:-1;50925:113:0;;;;;:::i;:::-;;:::i;7030:87::-;;;;;;;;;;-1:-1:-1;7103:6:0;;-1:-1:-1;;;;;7103:6:0;7030:87;;49462:37;;;;;;;;;;;;;;;;30592:104;;;;;;;;;;;;;:::i;32275:155::-;;;;;;;;;;-1:-1:-1;32275:155:0;;;;;:::i;:::-;;:::i;33398:328::-;;;;;;;;;;-1:-1:-1;33398:328:0;;;;;:::i;:::-;;:::i;49887:32::-;;;;;;;;;;;;;;;;52212:1337;;;;;;:::i;:::-;;:::i;49303:37::-;;;;;;;;;;;;;:::i;54536:642::-;;;;;;;;;;-1:-1:-1;54536:642:0;;;;;:::i;:::-;;:::i;49424:31::-;;;;;;;;;;;;;;;;49926:45;;;;;;;;;;;;;;;;56297:372;;;;;;;;;;-1:-1:-1;56297:372:0;;;;;:::i;:::-;;:::i;32501:164::-;;;;;;;;;;-1:-1:-1;32501:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32622:25:0;;;32598:4;32622:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32501:164;7939:201;;;;;;;;;;-1:-1:-1;7939:201:0;;;;;:::i;:::-;;:::i;53557:573::-;;;;;;;;;;-1:-1:-1;53557:573:0;;;;;:::i;:::-;;:::i;50404:234::-;50565:4;50594:36;50618:11;50594:23;:36::i;:::-;50587:43;50404:234;-1:-1:-1;;50404:234:0:o;56089:79::-;7103:6;;-1:-1:-1;;;;;7103:6:0;5834:10;7250:23;7242:68;;;;-1:-1:-1;;;7242:68:0;;;;;;;:::i;:::-;;;;;;;;;56145:6:::1;:15:::0;;-1:-1:-1;;56145:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56089:79::o;51061:1143::-;51153:6;;;;51152:7;51144:42;;;;-1:-1:-1;;;51144:42:0;;20452:2:1;51144:42:0;;;20434:21:1;20491:2;20471:18;;;20464:30;-1:-1:-1;;;20510:18:1;;;20503:52;20572:18;;51144:42:0;20250:346:1;51144:42:0;51206:13;;;;;;;51205:14;51197:67;;;;-1:-1:-1;;;51197:67:0;;12083:2:1;51197:67:0;;;12065:21:1;12122:2;12102:18;;;12095:30;12161:34;12141:18;;;12134:62;-1:-1:-1;;;12212:18:1;;;12205:38;12260:19;;51197:67:0;11881:404:1;51197:67:0;51303:11;51296:4;;:18;;;;:::i;:::-;51283:9;:31;;51275:62;;;;-1:-1:-1;;;51275:62:0;;22383:2:1;51275:62:0;;;22365:21:1;22422:2;22402:18;;;22395:30;-1:-1:-1;;;22441:18:1;;;22434:48;22499:18;;51275:62:0;22181:342:1;51275:62:0;7103:6;;-1:-1:-1;;;;;7103:6:0;51370:10;:21;;51348:118;;;;-1:-1:-1;;;51348:118:0;;;;;;;:::i;:::-;51477:18;51498:32;51522:6;51505:24;;;;;;;;:::i;:::-;;;;-1:-1:-1;;51505:24:0;;;;;;;;;;51498:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51477:53;;51563:10;;51549;:24;51541:59;;;;-1:-1:-1;;;51541:59:0;;23503:2:1;51541:59:0;;;23485:21:1;23542:2;23522:18;;;23515:30;-1:-1:-1;;;23561:18:1;;;23554:52;23623:18;;51541:59:0;23301:346:1;51541:59:0;51647:1;51633:11;:15;:52;;;;;51667:18;;51652:11;:33;;51633:52;51611:138;;;;-1:-1:-1;;;51611:138:0;;;;;;;:::i;:::-;51762:14;51779:13;43657:10;:17;;43569:113;51779:13;51849:9;;51762:30;;-1:-1:-1;51825:20:0;51834:11;51762:30;51825:20;:::i;:::-;:33;;51803:128;;;;-1:-1:-1;;;51803:128:0;;;;;;;:::i;:::-;51949:9;51944:121;51968:11;51964:1;:15;51944:121;;;52001:49;52011:10;52048:1;52023:24;;:26;;;;:::i;:::-;52001:9;:49::i;:::-;51981:3;;;;:::i;:::-;;;;51944:121;;;;52129:11;52102:24;;:38;;;;:::i;:::-;52075:24;:65;52151:13;;:45;;-1:-1:-1;;;;;52151:13:0;;;;52174:21;52151:45;;;;;:13;:45;:13;:45;52174:21;52151:13;:45;;;;;;;;;;;;;;;;;;;;;51133:1071;;51061:1143;;:::o;30423:100::-;30477:13;30510:5;30503:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30423:100;:::o;31982:221::-;32058:7;35325:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35325:16:0;32078:73;;;;-1:-1:-1;;;32078:73:0;;19678:2:1;32078:73:0;;;19660:21:1;19717:2;19697:18;;;19690:30;19756:34;19736:18;;;19729:62;-1:-1:-1;;;19807:18:1;;;19800:42;19859:19;;32078:73:0;19476:408:1;32078:73:0;-1:-1:-1;32171:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32171:24:0;;31982:221::o;31505:411::-;31586:13;31602:23;31617:7;31602:14;:23::i;:::-;31586:39;;31650:5;-1:-1:-1;;;;;31644:11:0;:2;-1:-1:-1;;;;;31644:11:0;;;31636:57;;;;-1:-1:-1;;;31636:57:0;;21629:2:1;31636:57:0;;;21611:21:1;21668:2;21648:18;;;21641:30;21707:34;21687:18;;;21680:62;-1:-1:-1;;;21758:18:1;;;21751:31;21799:19;;31636:57:0;21427:397:1;31636:57:0;5834:10;-1:-1:-1;;;;;31728:21:0;;;;:62;;-1:-1:-1;31753:37:0;31770:5;5834:10;32501:164;:::i;31753:37::-;31706:168;;;;-1:-1:-1;;;31706:168:0;;16486:2:1;31706:168:0;;;16468:21:1;16525:2;16505:18;;;16498:30;16564:34;16544:18;;;16537:62;16635:26;16615:18;;;16608:54;16679:19;;31706:168:0;16284:420:1;31706:168:0;31887:21;31896:2;31900:7;31887:8;:21::i;:::-;31575:341;31505:411;;:::o;55595:374::-;7103:6;;-1:-1:-1;;;;;7103:6:0;5834:10;7250:23;7242:68;;;;-1:-1:-1;;;7242:68:0;;;;;;;:::i;:::-;55707:8:::1;;55690:13;:25;;55668:122;;;::::0;-1:-1:-1;;;55668:122:0;;16911:2:1;55668:122:0::1;::::0;::::1;16893:21:1::0;16950:2;16930:18;;;16923:30;16989:34;16969:18;;;16962:62;-1:-1:-1;;;17040:18:1;;;17033:45;17095:19;;55668:122:0::1;16709:411:1::0;55668:122:0::1;55839:9;;55823:13;:25;55801:124;;;::::0;-1:-1:-1;;;55801:124:0;;13323:2:1;55801:124:0::1;::::0;::::1;13305:21:1::0;13362:2;13342:18;;;13335:30;13401:34;13381:18;;;13374:62;-1:-1:-1;;;13452:18:1;;;13445:47;13509:19;;55801:124:0::1;13121:413:1::0;55801:124:0::1;55936:9;:25:::0;55595:374::o;32732:339::-;32927:41;5834:10;32960:7;32927:18;:41::i;:::-;32919:103;;;;-1:-1:-1;;;32919:103:0;;;;;;;:::i;:::-;33035:28;33045:4;33051:2;33055:7;33035:9;:28::i;21012:321::-;21182:41;;;;;;;;;21213:10;21182:41;-1:-1:-1;;;;;21182:41:0;;;;;-1:-1:-1;;;21182:41:0;;;;;;;;;;;;;-1:-1:-1;;21320:5:0;;21292:24;;:5;:24;:::i;:::-;21291:34;;;;:::i;:::-;21275:50;;21171:162;21012:321;;;;;:::o;43237:256::-;43334:7;43370:23;43387:5;43370:16;:23::i;:::-;43362:5;:31;43354:87;;;;-1:-1:-1;;;43354:87:0;;12492:2:1;43354:87:0;;;12474:21:1;12531:2;12511:18;;;12504:30;12570:34;12550:18;;;12543:62;-1:-1:-1;;;12621:18:1;;;12614:41;12672:19;;43354:87:0;12290:407:1;43354:87:0;-1:-1:-1;;;;;;43459:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43237:256::o;56677:92::-;7103:6;;-1:-1:-1;;;;;7103:6:0;5834:10;7250:23;7242:68;;;;-1:-1:-1;;;7242:68:0;;;;;;;:::i;:::-;56741:10:::1;:20:::0;56677:92::o;33142:185::-;33280:39;33297:4;33303:2;33307:7;33280:39;;;;;;;;;;;;:16;:39::i;54138:390::-;54225:16;54259:23;54285:17;54295:6;54285:9;:17::i;:::-;54259:43;;54313:25;54355:15;54341:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54341:30:0;;54313:58;;54387:9;54382:113;54402:15;54398:1;:19;54382:113;;;54453:30;54473:6;54481:1;54453:19;:30::i;:::-;54439:8;54448:1;54439:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;54419:3;;;;:::i;:::-;;;;54382:113;;;-1:-1:-1;54512:8:0;54138:390;-1:-1:-1;;;54138:390:0:o;55204:86::-;7103:6;;-1:-1:-1;;;;;7103:6:0;5834:10;7250:23;7242:68;;;;-1:-1:-1;;;7242:68:0;;;;;;;:::i;:::-;55267:4:::1;:15:::0;55204:86::o;43759:233::-;43834:7;43870:30;43657:10;:17;;43569:113;43870:30;43862:5;:38;43854:95;;;;-1:-1:-1;;;43854:95:0;;23854:2:1;43854:95:0;;;23836:21:1;23893:2;23873:18;;;23866:30;23932:34;23912:18;;;23905:62;-1:-1:-1;;;23983:18:1;;;23976:42;24035:19;;43854:95:0;23652:408:1;43854:95:0;43967:10;43978:5;43967:17;;;;;;;;:::i;:::-;;;;;;;;;43960:24;;43759:233;;;:::o;55298:289::-;7103:6;;-1:-1:-1;;;;;7103:6:0;5834:10;7250:23;7242:68;;;;-1:-1:-1;;;7242:68:0;;;;;;;:::i;:::-;55460:2:::1;55434:22;:28;;55412:113;;;::::0;-1:-1:-1;;;55412:113:0;;15669:2:1;55412:113:0::1;::::0;::::1;15651:21:1::0;15708:2;15688:18;;;15681:30;15747:34;15727:18;;;15720:62;-1:-1:-1;;;15798:18:1;;;15791:33;15841:19;;55412:113:0::1;15467:399:1::0;55412:113:0::1;55536:18;:43:::0;55298:289::o;55977:104::-;7103:6;;-1:-1:-1;;;;;7103:6:0;5834:10;7250:23;7242:68;;;;-1:-1:-1;;;7242:68:0;;;;;;;:::i;:::-;56052:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55977:104:::0;:::o;56889:108::-;7103:6;;-1:-1:-1;;;;;7103:6:0;5834:10;7250:23;7242:68;;;;-1:-1:-1;;;7242:68:0;;;;;;;:::i;:::-;56944:13:::1;::::0;:45:::1;::::0;-1:-1:-1;;;;;56944:13:0;;::::1;::::0;56967:21:::1;56944:45:::0;::::1;;;::::0;:13:::1;:45:::0;:13;:45;56967:21;56944:13;:45;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;56889:108::o:0;30117:239::-;30189:7;30225:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30225:16:0;30260:19;30252:73;;;;-1:-1:-1;;;30252:73:0;;17738:2:1;30252:73:0;;;17720:21:1;17777:2;17757:18;;;17750:30;17816:34;17796:18;;;17789:62;-1:-1:-1;;;17867:18:1;;;17860:39;17916:19;;30252:73:0;17536:405:1;49275:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29847:208::-;29919:7;-1:-1:-1;;;;;29947:19:0;;29939:74;;;;-1:-1:-1;;;29939:74:0;;17327:2:1;29939:74:0;;;17309:21:1;17366:2;17346:18;;;17339:30;17405:34;17385:18;;;17378:62;-1:-1:-1;;;17456:18:1;;;17449:40;17506:19;;29939:74:0;17125:406:1;29939:74:0;-1:-1:-1;;;;;;30031:16:0;;;;;:9;:16;;;;;;;29847:208::o;7681:103::-;7103:6;;-1:-1:-1;;;;;7103:6:0;5834:10;7250:23;7242:68;;;;-1:-1:-1;;;7242:68:0;;;;;;;:::i;:::-;7746:30:::1;7773:1;7746:18;:30::i;:::-;7681:103::o:0;56777:104::-;7103:6;;-1:-1:-1;;;;;7103:6:0;5834:10;7250:23;7242:68;;;;-1:-1:-1;;;7242:68:0;;;;;;;:::i;:::-;56849:10:::1;:24:::0;56777:104::o;56176:113::-;7103:6;;-1:-1:-1;;;;;7103:6:0;5834:10;7250:23;7242:68;;;;-1:-1:-1;;;7242:68:0;;;;;;;:::i;:::-;56251:13:::1;:30:::0;;;::::1;;;;-1:-1:-1::0;;56251:30:0;;::::1;::::0;;;::::1;::::0;;56176:113::o;50925:::-;50999:31;51013:9;51024:5;50999:13;:31::i;30592:104::-;30648:13;30681:7;30674:14;;;;;:::i;32275:155::-;32370:52;5834:10;32403:8;32413;32370:18;:52::i;33398:328::-;33573:41;5834:10;33606:7;33573:18;:41::i;:::-;33565:103;;;;-1:-1:-1;;;33565:103:0;;;;;;;:::i;:::-;33679:39;33693:4;33699:2;33703:7;33712:5;33679:13;:39::i;:::-;33398:328;;;;:::o;52212:1337::-;52346:13;;;;;;;52338:47;;;;-1:-1:-1;;;52338:47:0;;18553:2:1;52338:47:0;;;18535:21:1;18592:2;18572:18;;;18565:30;-1:-1:-1;;;18611:18:1;;;18604:51;18672:18;;52338:47:0;18351:345:1;52338:47:0;52424:11;52417:4;;:18;;;;:::i;:::-;52404:9;:31;;52396:62;;;;-1:-1:-1;;;52396:62:0;;22383:2:1;52396:62:0;;;22365:21:1;22422:2;22402:18;;;22395:30;-1:-1:-1;;;22441:18:1;;;22434:48;22499:18;;52396:62:0;22181:342:1;52396:62:0;7103:6;;-1:-1:-1;;;;;7103:6:0;52491:10;:21;;52469:118;;;;-1:-1:-1;;;52469:118:0;;;;;;;:::i;:::-;52621:1;52606:11;:16;;52598:55;;;;-1:-1:-1;;;52598:55:0;;23148:2:1;52598:55:0;;;23130:21:1;23187:2;23167:18;;;23160:30;23226:28;23206:18;;;23199:56;23272:18;;52598:55:0;22946:350:1;52598:55:0;52706:10;52686:31;;;;:19;:31;;;;;;52720:1;-1:-1:-1;52664:113:0;;;;-1:-1:-1;;;52664:113:0;;11371:2:1;52664:113:0;;;11353:21:1;11410:2;11390:18;;;11383:30;11449;11429:18;;;11422:58;11497:18;;52664:113:0;11169:352:1;52664:113:0;52815:28;;-1:-1:-1;;52832:10:0;6525:2:1;6521:15;6517:53;52815:28:0;;;6505:66:1;52790:12:0;;6587::1;;52815:28:0;;;;;;;;;;;;52805:39;;;;;;52790:54;;52877:50;52896:12;;52877:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52910:10:0;;;-1:-1:-1;52922:4:0;;-1:-1:-1;52877:18:0;:50::i;:::-;52855:114;;;;-1:-1:-1;;;52855:114:0;;24267:2:1;52855:114:0;;;24249:21:1;24306:2;24286:18;;;24279:30;-1:-1:-1;;;24325:18:1;;;24318:44;24379:18;;52855:114:0;24065:338:1;52855:114:0;52980:14;52997:13;43657:10;:17;;43569:113;52997:13;53067:9;;52980:30;;-1:-1:-1;53043:20:0;53052:11;52980:30;53043:20;:::i;:::-;:33;;53021:128;;;;-1:-1:-1;;;53021:128:0;;;;;;;:::i;:::-;53167:9;53162:132;53186:11;53182:1;:15;53162:132;;;53219:49;53229:10;53266:1;53241:24;;:26;;;;:::i;53219:49::-;53199:3;;;;:::i;:::-;;;;53162:132;;;;53358:11;53331:24;;:38;;;;:::i;:::-;53304:24;:65;53447:10;53427:31;;;;:19;:31;;;;;;:58;;53474:11;;53427:58;:::i;:::-;53400:10;53380:31;;;;:19;:31;;;;;;:105;;;;53496:13;;:45;;-1:-1:-1;;;;;53496:13:0;;;;;53519:21;53496:45;;;;;53519:21;;53496:45;;53380:31;53496:45;53519:21;53496:13;:45;;;;;;;;;;;;;;;;;;;;;52327:1222;;52212:1337;;;:::o;49303:37::-;;;;;;;:::i;54536:642::-;35301:4;35325:16;;;:7;:16;;;;;;54654:13;;-1:-1:-1;;;;;35325:16:0;54685:113;;;;-1:-1:-1;;;54685:113:0;;21213:2:1;54685:113:0;;;21195:21:1;21252:2;21232:18;;;21225:30;21291:34;21271:18;;;21264:62;-1:-1:-1;;;21342:18:1;;;21335:45;21397:19;;54685:113:0;21011:411:1;54685:113:0;54811:28;54842:10;:8;:10::i;:::-;54811:41;;54914:1;54889:14;54883:28;:32;:287;;;;;;;;;;;;;;;;;55007:14;55048:18;:7;:16;:18::i;:::-;55093:13;54964:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54883:287;54863:307;54536:642;-1:-1:-1;;;54536:642:0:o;56297:372::-;7103:6;;-1:-1:-1;;;;;7103:6:0;5834:10;7250:23;7242:68;;;;-1:-1:-1;;;7242:68:0;;;;;;;:::i;:::-;56460:1:::1;56439:17;:22;;56431:71;;;::::0;-1:-1:-1;;;56431:71:0;;14505:2:1;56431:71:0::1;::::0;::::1;14487:21:1::0;14544:2;14524:18;;;14517:30;14583:34;14563:18;;;14556:62;-1:-1:-1;;;14634:18:1;;;14627:34;14678:19;;56431:71:0::1;14303:400:1::0;56431:71:0::1;-1:-1:-1::0;;;;;56534:35:0;::::1;56513:18;56534:35:::0;;;:19:::1;:35;::::0;;;;;:68:::1;::::0;56585:17;;56534:68:::1;:::i;:::-;-1:-1:-1::0;;;;;56613:35:0;;::::1;;::::0;;;:19:::1;:35;::::0;;;;:48;;;;-1:-1:-1;;56297:372:0:o;7939:201::-;7103:6;;-1:-1:-1;;;;;7103:6:0;5834:10;7250:23;7242:68;;;;-1:-1:-1;;;7242:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8028:22:0;::::1;8020:73;;;::::0;-1:-1:-1;;;8020:73:0;;13741:2:1;8020:73:0::1;::::0;::::1;13723:21:1::0;13780:2;13760:18;;;13753:30;13819:34;13799:18;;;13792:62;-1:-1:-1;;;13870:18:1;;;13863:36;13916:19;;8020:73:0::1;13539:402:1::0;8020:73:0::1;8104:28;8123:8;8104:18;:28::i;53557:573::-:0;7103:6;;-1:-1:-1;;;;;7103:6:0;5834:10;7250:23;7242:68;;;;-1:-1:-1;;;7242:68:0;;;;;;;:::i;:::-;53685:17:::1;;53670:11;53654:13;;:27;;;;:::i;:::-;:48;;53632:121;;;::::0;-1:-1:-1;;;53632:121:0;;22031:2:1;53632:121:0::1;::::0;::::1;22013:21:1::0;22070:2;22050:18;;;22043:30;22109:25;22089:18;;;22082:53;22152:18;;53632:121:0::1;21829:347:1::0;53632:121:0::1;53786:1;53772:11;:15;53764:55;;;::::0;-1:-1:-1;;;53764:55:0;;25026:2:1;53764:55:0::1;::::0;::::1;25008:21:1::0;25065:2;25045:18;;;25038:30;25104:29;25084:18;;;25077:57;25151:18;;53764:55:0::1;24824:351:1::0;53764:55:0::1;53867:18;;53852:11;:33;;53830:119;;;;-1:-1:-1::0;;;53830:119:0::1;;;;;;;:::i;:::-;53967:9;53962:107;53986:11;53982:1;:15;53962:107;;;54019:38;54029:10;54055:1;54041:13;;:15;;;;:::i;54019:38::-;53999:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53962:107;;;;54111:11;54095:13;;:27;;;;:::i;:::-;54079:13;:43:::0;-1:-1:-1;53557:573:0:o;19960:283::-;20090:4;-1:-1:-1;;;;;;20132:50:0;;-1:-1:-1;;;20132:50:0;;:103;;;20199:36;20223:11;20199:23;:36::i;36220:110::-;36296:26;36306:2;36310:7;36296:26;;;;;;;;;;;;:9;:26::i;39218:174::-;39293:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39293:29:0;-1:-1:-1;;;;;39293:29:0;;;;;;;;:24;;39347:23;39293:24;39347:14;:23::i;:::-;-1:-1:-1;;;;;39338:46:0;;;;;;;;;;;39218:174;;:::o;35530:348::-;35623:4;35325:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35325:16:0;35640:73;;;;-1:-1:-1;;;35640:73:0;;16073:2:1;35640:73:0;;;16055:21:1;16112:2;16092:18;;;16085:30;16151:34;16131:18;;;16124:62;-1:-1:-1;;;16202:18:1;;;16195:42;16254:19;;35640:73:0;15871:408:1;35640:73:0;35724:13;35740:23;35755:7;35740:14;:23::i;:::-;35724:39;;35793:5;-1:-1:-1;;;;;35782:16:0;:7;-1:-1:-1;;;;;35782:16:0;;:51;;;;35826:7;-1:-1:-1;;;;;35802:31:0;:20;35814:7;35802:11;:20::i;:::-;-1:-1:-1;;;;;35802:31:0;;35782:51;:87;;;-1:-1:-1;;;;;;32622:25:0;;;32598:4;32622:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35837:32;35774:96;35530:348;-1:-1:-1;;;;35530:348:0:o;38522:578::-;38681:4;-1:-1:-1;;;;;38654:31:0;:23;38669:7;38654:14;:23::i;:::-;-1:-1:-1;;;;;38654:31:0;;38646:85;;;;-1:-1:-1;;;38646:85:0;;20803:2:1;38646:85:0;;;20785:21:1;20842:2;20822:18;;;20815:30;20881:34;20861:18;;;20854:62;-1:-1:-1;;;20932:18:1;;;20925:39;20981:19;;38646:85:0;20601:405:1;38646:85:0;-1:-1:-1;;;;;38750:16:0;;38742:65;;;;-1:-1:-1;;;38742:65:0;;14910:2:1;38742:65:0;;;14892:21:1;14949:2;14929:18;;;14922:30;14988:34;14968:18;;;14961:62;-1:-1:-1;;;15039:18:1;;;15032:34;15083:19;;38742:65:0;14708:400:1;38742:65:0;38820:39;38841:4;38847:2;38851:7;38820:20;:39::i;:::-;38924:29;38941:1;38945:7;38924:8;:29::i;:::-;-1:-1:-1;;;;;38966:15:0;;;;;;:9;:15;;;;;:20;;38985:1;;38966:15;:20;;38985:1;;38966:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38997:13:0;;;;;;:9;:13;;;;;:18;;39014:1;;38997:13;:18;;39014:1;;38997:18;:::i;:::-;;;;-1:-1:-1;;39026:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39026:21:0;-1:-1:-1;;;;;39026:21:0;;;;;;;;;39065:27;;39026:16;;39065:27;;;;;;;38522:578;;;:::o;8300:191::-;8393:6;;;-1:-1:-1;;;;;8410:17:0;;;-1:-1:-1;;;;;;8410:17:0;;;;;;;8443:40;;8393:6;;;8410:17;8393:6;;8443:40;;8374:16;;8443:40;8363:128;8300:191;:::o;20766:199::-;20860:5;20851;:14;;20843:53;;;;-1:-1:-1;;;20843:53:0;;11728:2:1;20843:53:0;;;11710:21:1;11767:2;11747:18;;;11740:30;11806:28;11786:18;;;11779:56;11852:18;;20843:53:0;11526:350:1;20843:53:0;20920:37;;;;;;;;;-1:-1:-1;;;;;20920:37:0;;;;;;;;;;;;;;;;;20907:10;:50;;-1:-1:-1;;;20907:50:0;;;-1:-1:-1;;;;;;20907:50:0;;;;;;;;;;;;20766:199::o;39534:315::-;39689:8;-1:-1:-1;;;;;39680:17:0;:5;-1:-1:-1;;;;;39680:17:0;;;39672:55;;;;-1:-1:-1;;;39672:55:0;;15315:2:1;39672:55:0;;;15297:21:1;15354:2;15334:18;;;15327:30;15393:27;15373:18;;;15366:55;15438:18;;39672:55:0;15113:349:1;39672:55:0;-1:-1:-1;;;;;39738:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39738:46:0;;;;;;;;;;39800:41;;10711::1;;;39800::0;;10684:18:1;39800:41:0;;;;;;;39534:315;;;:::o;34608:::-;34765:28;34775:4;34781:2;34785:7;34765:9;:28::i;:::-;34812:48;34835:4;34841:2;34845:7;34854:5;34812:22;:48::i;:::-;34804:111;;;;-1:-1:-1;;;34804:111:0;;;;;;;:::i;1691:190::-;1816:4;1869;1840:25;1853:5;1860:4;1840:12;:25::i;:::-;:33;;1691:190;-1:-1:-1;;;;1691:190:0:o;50262:108::-;50322:13;50355:7;50348:14;;;;;:::i;3316:723::-;3372:13;3593:10;3589:53;;-1:-1:-1;;3620:10:0;;;;;;;;;;;;-1:-1:-1;;;3620:10:0;;;;;3316:723::o;3589:53::-;3667:5;3652:12;3708:78;3715:9;;3708:78;;3741:8;;;;:::i;:::-;;-1:-1:-1;3764:10:0;;-1:-1:-1;3772:2:0;3764:10;;:::i;:::-;;;3708:78;;;3796:19;3828:6;3818:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3818:17:0;;3796:39;;3846:154;3853:10;;3846:154;;3880:11;3890:1;3880:11;;:::i;:::-;;-1:-1:-1;3949:10:0;3957:2;3949:5;:10;:::i;:::-;3936:24;;:2;:24;:::i;:::-;3923:39;;3906:6;3913;3906:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3906:56:0;;;;;;;;-1:-1:-1;3977:11:0;3986:2;3977:11;;:::i;:::-;;;3846:154;;42929:224;43031:4;-1:-1:-1;;;;;;43055:50:0;;-1:-1:-1;;;43055:50:0;;:90;;;43109:36;43133:11;43109:23;:36::i;36557:321::-;36687:18;36693:2;36697:7;36687:5;:18::i;:::-;36738:54;36769:1;36773:2;36777:7;36786:5;36738:22;:54::i;:::-;36716:154;;;;-1:-1:-1;;;36716:154:0;;;;;;;:::i;44605:589::-;-1:-1:-1;;;;;44811:18:0;;44807:187;;44846:40;44878:7;46021:10;:17;;45994:24;;;;:15;:24;;;;;:44;;;46049:24;;;;;;;;;;;;45917:164;44846:40;44807:187;;;44916:2;-1:-1:-1;;;;;44908:10:0;:4;-1:-1:-1;;;;;44908:10:0;;44904:90;;44935:47;44968:4;44974:7;44935:32;:47::i;:::-;-1:-1:-1;;;;;45008:16:0;;45004:183;;45041:45;45078:7;45041:36;:45::i;45004:183::-;45114:4;-1:-1:-1;;;;;45108:10:0;:2;-1:-1:-1;;;;;45108:10:0;;45104:83;;45135:40;45163:2;45167:7;45135:27;:40::i;40414:799::-;40569:4;-1:-1:-1;;;;;40590:13:0;;9641:20;9689:8;40586:620;;40626:72;;-1:-1:-1;;;40626:72:0;;-1:-1:-1;;;;;40626:36:0;;;;;:72;;5834:10;;40677:4;;40683:7;;40692:5;;40626:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40626:72:0;;;;;;;;-1:-1:-1;;40626:72:0;;;;;;;;;;;;:::i;:::-;;;40622:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40868:13:0;;40864:272;;40911:60;;-1:-1:-1;;;40911:60:0;;;;;;;:::i;40864:272::-;41086:6;41080:13;41071:6;41067:2;41063:15;41056:38;40622:529;-1:-1:-1;;;;;;40749:51:0;-1:-1:-1;;;40749:51:0;;-1:-1:-1;40742:58:0;;40586:620;-1:-1:-1;41190:4:0;40414:799;;;;;;:::o;2243:701::-;2326:7;2369:4;2326:7;2384:523;2408:5;:12;2404:1;:16;2384:523;;;2442:20;2465:5;2471:1;2465:8;;;;;;;;:::i;:::-;;;;;;;2442:31;;2508:12;2492;:28;2488:408;;2645:44;;;;;;6767:19:1;;;6802:12;;;6795:28;;;6839:12;;2645:44:0;;;;;;;;;;;;2635:55;;;;;;2620:70;;2488:408;;;2835:44;;;;;;6767:19:1;;;6802:12;;;6795:28;;;6839:12;;2835:44:0;;;;;;;;;;;;2825:55;;;;;;2810:70;;2488:408;-1:-1:-1;2422:3:0;;;;:::i;:::-;;;;2384:523;;29478:305;29580:4;-1:-1:-1;;;;;;29617:40:0;;-1:-1:-1;;;29617:40:0;;:105;;-1:-1:-1;;;;;;;29674:48:0;;-1:-1:-1;;;29674:48:0;29617:105;:158;;;-1:-1:-1;;;;;;;;;;19571:40:0;;;29739:36;19462:157;37214:382;-1:-1:-1;;;;;37294:16:0;;37286:61;;;;-1:-1:-1;;;37286:61:0;;19317:2:1;37286:61:0;;;19299:21:1;;;19336:18;;;19329:30;19395:34;19375:18;;;19368:62;19447:18;;37286:61:0;19115:356:1;37286:61:0;35301:4;35325:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35325:16:0;:30;37358:58;;;;-1:-1:-1;;;37358:58:0;;14148:2:1;37358:58:0;;;14130:21:1;14187:2;14167:18;;;14160:30;14226;14206:18;;;14199:58;14274:18;;37358:58:0;13946:352:1;37358:58:0;37429:45;37458:1;37462:2;37466:7;37429:20;:45::i;:::-;-1:-1:-1;;;;;37487:13:0;;;;;;:9;:13;;;;;:18;;37504:1;;37487:13;:18;;37504:1;;37487:18;:::i;:::-;;;;-1:-1:-1;;37516:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37516:21:0;-1:-1:-1;;;;;37516:21:0;;;;;;;;37555:33;;37516:16;;;37555:33;;37516:16;;37555:33;37214:382;;:::o;46708:988::-;46974:22;47024:1;46999:22;47016:4;46999:16;:22::i;:::-;:26;;;;:::i;:::-;47036:18;47057:26;;;:17;:26;;;;;;46974:51;;-1:-1:-1;47190:28:0;;;47186:328;;-1:-1:-1;;;;;47257:18:0;;47235:19;47257:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47308:30;;;;;;:44;;;47425:30;;:17;:30;;;;;:43;;;47186:328;-1:-1:-1;47610:26:0;;;;:17;:26;;;;;;;;47603:33;;;-1:-1:-1;;;;;47654:18:0;;;;;:12;:18;;;;;:34;;;;;;;47647:41;46708:988::o;47991:1079::-;48269:10;:17;48244:22;;48269:21;;48289:1;;48269:21;:::i;:::-;48301:18;48322:24;;;:15;:24;;;;;;48695:10;:26;;48244:46;;-1:-1:-1;48322:24:0;;48244:46;;48695:26;;;;;;:::i;:::-;;;;;;;;;48673:48;;48759:11;48734:10;48745;48734:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48839:28;;;:15;:28;;;;;;;:41;;;49011:24;;;;;49004:31;49046:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48062:1008;;;47991:1079;:::o;45495:221::-;45580:14;45597:20;45614:2;45597:16;:20::i;:::-;-1:-1:-1;;;;;45628:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45673:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45495:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:221;1036:5;1089:3;1082:4;1074:6;1070:17;1066:27;1056:55;;1107:1;1104;1097:12;1056:55;1129:79;1204:3;1195:6;1182:20;1175:4;1167:6;1163:17;1129:79;:::i;1219:186::-;1278:6;1331:2;1319:9;1310:7;1306:23;1302:32;1299:52;;;1347:1;1344;1337:12;1299:52;1370:29;1389:9;1370:29;:::i;1410:260::-;1478:6;1486;1539:2;1527:9;1518:7;1514:23;1510:32;1507:52;;;1555:1;1552;1545:12;1507:52;1578:29;1597:9;1578:29;:::i;:::-;1568:39;;1626:38;1660:2;1649:9;1645:18;1626:38;:::i;:::-;1616:48;;1410:260;;;;;:::o;1675:328::-;1752:6;1760;1768;1821:2;1809:9;1800:7;1796:23;1792:32;1789:52;;;1837:1;1834;1827:12;1789:52;1860:29;1879:9;1860:29;:::i;:::-;1850:39;;1908:38;1942:2;1931:9;1927:18;1908:38;:::i;:::-;1898:48;;1993:2;1982:9;1978:18;1965:32;1955:42;;1675:328;;;;;:::o;2008:666::-;2103:6;2111;2119;2127;2180:3;2168:9;2159:7;2155:23;2151:33;2148:53;;;2197:1;2194;2187:12;2148:53;2220:29;2239:9;2220:29;:::i;:::-;2210:39;;2268:38;2302:2;2291:9;2287:18;2268:38;:::i;:::-;2258:48;;2353:2;2342:9;2338:18;2325:32;2315:42;;2408:2;2397:9;2393:18;2380:32;2435:18;2427:6;2424:30;2421:50;;;2467:1;2464;2457:12;2421:50;2490:22;;2543:4;2535:13;;2531:27;-1:-1:-1;2521:55:1;;2572:1;2569;2562:12;2521:55;2595:73;2660:7;2655:2;2642:16;2637:2;2633;2629:11;2595:73;:::i;:::-;2585:83;;;2008:666;;;;;;;:::o;2679:254::-;2744:6;2752;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;:::-;2834:39;;2892:35;2923:2;2912:9;2908:18;2892:35;:::i;2938:254::-;3006:6;3014;3067:2;3055:9;3046:7;3042:23;3038:32;3035:52;;;3083:1;3080;3073:12;3035:52;3106:29;3125:9;3106:29;:::i;:::-;3096:39;3182:2;3167:18;;;;3154:32;;-1:-1:-1;;;2938:254:1:o;3197:689::-;3292:6;3300;3308;3361:2;3349:9;3340:7;3336:23;3332:32;3329:52;;;3377:1;3374;3367:12;3329:52;3417:9;3404:23;3446:18;3487:2;3479:6;3476:14;3473:34;;;3503:1;3500;3493:12;3473:34;3541:6;3530:9;3526:22;3516:32;;3586:7;3579:4;3575:2;3571:13;3567:27;3557:55;;3608:1;3605;3598:12;3557:55;3648:2;3635:16;3674:2;3666:6;3663:14;3660:34;;;3690:1;3687;3680:12;3660:34;3745:7;3738:4;3728:6;3725:1;3721:14;3717:2;3713:23;3709:34;3706:47;3703:67;;;3766:1;3763;3756:12;3703:67;3797:4;3789:13;;;;3821:6;;-1:-1:-1;3859:20:1;;;;3846:34;;3197:689;-1:-1:-1;;;;3197:689:1:o;3891:180::-;3947:6;4000:2;3988:9;3979:7;3975:23;3971:32;3968:52;;;4016:1;4013;4006:12;3968:52;4039:26;4055:9;4039:26;:::i;4076:180::-;4135:6;4188:2;4176:9;4167:7;4163:23;4159:32;4156:52;;;4204:1;4201;4194:12;4156:52;-1:-1:-1;4227:23:1;;4076:180;-1:-1:-1;4076:180:1:o;4261:184::-;4331:6;4384:2;4372:9;4363:7;4359:23;4355:32;4352:52;;;4400:1;4397;4390:12;4352:52;-1:-1:-1;4423:16:1;;4261:184;-1:-1:-1;4261:184:1:o;4450:245::-;4508:6;4561:2;4549:9;4540:7;4536:23;4532:32;4529:52;;;4577:1;4574;4567:12;4529:52;4616:9;4603:23;4635:30;4659:5;4635:30;:::i;4700:249::-;4769:6;4822:2;4810:9;4801:7;4797:23;4793:32;4790:52;;;4838:1;4835;4828:12;4790:52;4870:9;4864:16;4889:30;4913:5;4889:30;:::i;4954:322::-;5023:6;5076:2;5064:9;5055:7;5051:23;5047:32;5044:52;;;5092:1;5089;5082:12;5044:52;5132:9;5119:23;5165:18;5157:6;5154:30;5151:50;;;5197:1;5194;5187:12;5151:50;5220;5262:7;5253:6;5242:9;5238:22;5220:50;:::i;5281:390::-;5359:6;5367;5420:2;5408:9;5399:7;5395:23;5391:32;5388:52;;;5436:1;5433;5426:12;5388:52;5476:9;5463:23;5509:18;5501:6;5498:30;5495:50;;;5541:1;5538;5531:12;5495:50;5564;5606:7;5597:6;5586:9;5582:22;5564:50;:::i;:::-;5554:60;5661:2;5646:18;;;;5633:32;;-1:-1:-1;;;;5281:390:1:o;5861:248::-;5929:6;5937;5990:2;5978:9;5969:7;5965:23;5961:32;5958:52;;;6006:1;6003;5996:12;5958:52;-1:-1:-1;;6029:23:1;;;6099:2;6084:18;;;6071:32;;-1:-1:-1;5861:248:1:o;6114:257::-;6155:3;6193:5;6187:12;6220:6;6215:3;6208:19;6236:63;6292:6;6285:4;6280:3;6276:14;6269:4;6262:5;6258:16;6236:63;:::i;:::-;6353:2;6332:15;-1:-1:-1;;6328:29:1;6319:39;;;;6360:4;6315:50;;6114:257;-1:-1:-1;;6114:257:1:o;6862:274::-;6991:3;7029:6;7023:13;7045:53;7091:6;7086:3;7079:4;7071:6;7067:17;7045:53;:::i;:::-;7114:16;;;;;6862:274;-1:-1:-1;;6862:274:1:o;7422:1527::-;7646:3;7684:6;7678:13;7710:4;7723:51;7767:6;7762:3;7757:2;7749:6;7745:15;7723:51;:::i;:::-;7837:13;;7796:16;;;;7859:55;7837:13;7796:16;7881:15;;;7859:55;:::i;:::-;8003:13;;7936:20;;;7976:1;;8063;8085:18;;;;8138;;;;8165:93;;8243:4;8233:8;8229:19;8217:31;;8165:93;8306:2;8296:8;8293:16;8273:18;8270:40;8267:167;;;-1:-1:-1;;;8333:33:1;;8389:4;8386:1;8379:15;8419:4;8340:3;8407:17;8267:167;8450:18;8477:110;;;;8601:1;8596:328;;;;8443:481;;8477:110;-1:-1:-1;;8512:24:1;;8498:39;;8557:20;;;;-1:-1:-1;8477:110:1;;8596:328;25435:1;25428:14;;;25472:4;25459:18;;8691:1;8705:169;8719:8;8716:1;8713:15;8705:169;;;8801:14;;8786:13;;;8779:37;8844:16;;;;8736:10;;8705:169;;;8709:3;;8905:8;8898:5;8894:20;8887:27;;8443:481;-1:-1:-1;8940:3:1;;7422:1527;-1:-1:-1;;;;;;;;;;;7422:1527:1:o;9162:488::-;-1:-1:-1;;;;;9431:15:1;;;9413:34;;9483:15;;9478:2;9463:18;;9456:43;9530:2;9515:18;;9508:34;;;9578:3;9573:2;9558:18;;9551:31;;;9356:4;;9599:45;;9624:19;;9616:6;9599:45;:::i;:::-;9591:53;9162:488;-1:-1:-1;;;;;;9162:488:1:o;9934:632::-;10105:2;10157:21;;;10227:13;;10130:18;;;10249:22;;;10076:4;;10105:2;10328:15;;;;10302:2;10287:18;;;10076:4;10371:169;10385:6;10382:1;10379:13;10371:169;;;10446:13;;10434:26;;10515:15;;;;10480:12;;;;10407:1;10400:9;10371:169;;;-1:-1:-1;10557:3:1;;9934:632;-1:-1:-1;;;;;;9934:632:1:o;10945:219::-;11094:2;11083:9;11076:21;11057:4;11114:44;11154:2;11143:9;11139:18;11131:6;11114:44;:::i;12702:414::-;12904:2;12886:21;;;12943:2;12923:18;;;12916:30;12982:34;12977:2;12962:18;;12955:62;-1:-1:-1;;;13048:2:1;13033:18;;13026:48;13106:3;13091:19;;12702:414::o;17946:400::-;18148:2;18130:21;;;18187:2;18167:18;;;18160:30;18226:34;18221:2;18206:18;;18199:62;-1:-1:-1;;;18292:2:1;18277:18;;18270:34;18336:3;18321:19;;17946:400::o;18701:409::-;18903:2;18885:21;;;18942:2;18922:18;;;18915:30;18981:34;18976:2;18961:18;;18954:62;-1:-1:-1;;;19047:2:1;19032:18;;19025:43;19100:3;19085:19;;18701:409::o;19889:356::-;20091:2;20073:21;;;20110:18;;;20103:30;20169:34;20164:2;20149:18;;20142:62;20236:2;20221:18;;19889:356::o;22528:413::-;22730:2;22712:21;;;22769:2;22749:18;;;22742:30;22808:34;22803:2;22788:18;;22781:62;-1:-1:-1;;;22874:2:1;22859:18;;22852:47;22931:3;22916:19;;22528:413::o;24408:411::-;24610:2;24592:21;;;24649:2;24629:18;;;24622:30;24688:34;24683:2;24668:18;;24661:62;-1:-1:-1;;;24754:2:1;24739:18;;24732:45;24809:3;24794:19;;24408:411::o;25488:128::-;25528:3;25559:1;25555:6;25552:1;25549:13;25546:39;;;25565:18;;:::i;:::-;-1:-1:-1;25601:9:1;;25488:128::o;25621:120::-;25661:1;25687;25677:35;;25692:18;;:::i;:::-;-1:-1:-1;25726:9:1;;25621:120::o;25746:168::-;25786:7;25852:1;25848;25844:6;25840:14;25837:1;25834:21;25829:1;25822:9;25815:17;25811:45;25808:71;;;25859:18;;:::i;:::-;-1:-1:-1;25899:9:1;;25746:168::o;25919:125::-;25959:4;25987:1;25984;25981:8;25978:34;;;25992:18;;:::i;:::-;-1:-1:-1;26029:9:1;;25919:125::o;26049:258::-;26121:1;26131:113;26145:6;26142:1;26139:13;26131:113;;;26221:11;;;26215:18;26202:11;;;26195:39;26167:2;26160:10;26131:113;;;26262:6;26259:1;26256:13;26253:48;;;-1:-1:-1;;26297:1:1;26279:16;;26272:27;26049:258::o;26312:380::-;26391:1;26387:12;;;;26434;;;26455:61;;26509:4;26501:6;26497:17;26487:27;;26455:61;26562:2;26554:6;26551:14;26531:18;26528:38;26525:161;;;26608:10;26603:3;26599:20;26596:1;26589:31;26643:4;26640:1;26633:15;26671:4;26668:1;26661:15;26525:161;;26312:380;;;:::o;26697:135::-;26736:3;-1:-1:-1;;26757:17:1;;26754:43;;;26777:18;;:::i;:::-;-1:-1:-1;26824:1:1;26813:13;;26697:135::o;26837:112::-;26869:1;26895;26885:35;;26900:18;;:::i;:::-;-1:-1:-1;26934:9:1;;26837:112::o;26954:127::-;27015:10;27010:3;27006:20;27003:1;26996:31;27046:4;27043:1;27036:15;27070:4;27067:1;27060:15;27086:127;27147:10;27142:3;27138:20;27135:1;27128:31;27178:4;27175:1;27168:15;27202:4;27199:1;27192:15;27218:127;27279:10;27274:3;27270:20;27267:1;27260:31;27310:4;27307:1;27300:15;27334:4;27331:1;27324:15;27350:127;27411:10;27406:3;27402:20;27399:1;27392:31;27442:4;27439:1;27432:15;27466:4;27463:1;27456:15;27482:127;27543:10;27538:3;27534:20;27531:1;27524:31;27574:4;27571:1;27564:15;27598:4;27595:1;27588:15;27614:131;-1:-1:-1;;;;;;27688:32:1;;27678:43;;27668:71;;27735:1;27732;27725:12

Swarm Source

ipfs://601fff4de48e2e87073c25286132ac971f2e80488716c5959cc4bd5c1cfa0bb5
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.