ETH Price: $3,069.43 (+1.50%)
Gas: 4 Gwei

Token

Cryptid Clan (CC)
 

Overview

Max Total Supply

647 CC

Holders

187

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 CC
0x24d45C8D175d9eEfF2B68B53466644fB750AaC67
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Introducing Cryptid Clan, a collection of 3,933 Hand-Drawn, Bigfoot NFT's. These NFT's will be your portal into new adventures throughout the metaverse and the real world. Enjoy access to a robust metaverse built on NFTWorlds, backed by a self-sustaining economy P2E games, lan...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CryptidClan

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-21
*/

// File: contracts/WRLD_TOKEN.sol


pragma solidity ^0.8.0;

interface IWRLD_TOKEN {
    function balanceOf(address owner) external view returns(uint256);
    function transferFrom(address, address, uint256) external;
    function allowance(address owner, address spender) external view returns(uint256);
    function approve(address spender, uint256 amount) external returns(bool);
}
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/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: @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/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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

// File: contracts/CryptidClan.sol



//Developer : FazelPejmanfar



pragma solidity >=0.7.0 <0.9.0;







contract CryptidClan is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.13 ether;
  uint256 public wlcost = 0.11 ether;
  uint256 public WRLD_PRICE = 1100 ether;
  uint256 public WRLD_PRICE_WL = 999 ether;
  uint256 public maxSupply = 3933;
  uint256 public WlSupply = 3933;
  uint256 public MaxperWallet = 10;
  uint256 public MaxperWalletWl = 3;
  uint256 public MaxperTxWl = 3;
  uint256 public maxpertx = 10; // max mint per tx
  bool public paused = false;
  bool public revealed = false;
  bool public preSale = true;
  bool public publicSale = false;
  bytes32 public merkleRoot = 0x4ca6910f7cb1d9a99d8e5f7a2034efa6bed27cb52fd2eaa24e2c45993bf7bb30;
  IWRLD_TOKEN private WTOKEN;

  constructor(
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721A("Cryptid Clan", "CC") {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
    WTOKEN = IWRLD_TOKEN(0xD5d86FC8d5C0Ea1aC1Ac5Dfab6E529c9967a45E9);
  }

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

        function initialize() public onlyOwner {
        WTOKEN.approve(address(this), 4326300000000000000000000);
    }

  // public
    function mint(uint256 tokens) public payable nonReentrant {
    require(msg.sender == tx.origin);
    require(!paused, "CC: oops contract is paused");
    require(publicSale, "CC: Sale Hasn't started yet");
    uint256 supply = totalSupply();
    require(tokens > 0, "CC: need to mint at least 1 NFT");
    require(tokens <= maxpertx, "CC: max mint amount per tx exceeded");
    require(supply + tokens <= maxSupply, "CC: We Soldout");
    require(_numberMinted(_msgSender()) + tokens <= MaxperWallet, "CC: Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "CC: insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }
/// @dev presale mint for whitelisted
    function presalemint(uint256 tokens, bytes32[] calldata merkleProof) public payable nonReentrant {
    require(msg.sender == tx.origin);
    require(!paused, "CC: oops contract is paused");
    require(preSale, "CC: Presale Hasn't started yet");
    require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "CC: You are not Whitelisted");
    uint256 supply = totalSupply();
    require(_numberMinted(_msgSender()) + tokens <= MaxperWalletWl, "CC: Max NFT Per Wallet exceeded");
    require(tokens > 0, "CC: need to mint at least 1 NFT");
    require(tokens <= MaxperTxWl, "CC: max mint per Tx exceeded");
    require(supply + tokens <= WlSupply, "CC: Whitelist MaxSupply exceeded");
    require(msg.value >= wlcost * tokens, "CC: insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }

      function mintwrld(uint256 tokens) external nonReentrant {
       require(msg.sender == tx.origin);
       require(!paused, "CC: oops contract is paused");
       require(publicSale, "CC: Sale Hasn't started yet");
       uint256 supply = totalSupply();
       require(tokens > 0, "CC: need to mint at least 1 NFT");
       require(tokens <= maxpertx, "CC: max mint amount per tx exceeded");
       require(supply + tokens <= maxSupply, "CC: We Soldout");
       require(_numberMinted(_msgSender()) + tokens <= MaxperWallet, "CC: Max NFT Per Wallet exceeded");
       require(WRLD_PRICE * tokens <= WTOKEN.balanceOf(msg.sender), "Low WRLD");
       require(WRLD_PRICE * tokens <= WTOKEN.allowance(msg.sender, address(this)), "Low WRLD");

        WTOKEN.transferFrom(msg.sender, address(this), WRLD_PRICE * tokens);

        _safeMint(msg.sender, tokens);
    }

        function presalemintwrld(uint256 tokens, bytes32[] calldata merkleProof) external nonReentrant {
        require(msg.sender == tx.origin);
        require(!paused, "CC: oops contract is paused");
        require(preSale, "CC: Presale Hasn't started yet");
        require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "CC: You are not Whitelisted");
        uint256 supply = totalSupply();
        require(_numberMinted(_msgSender()) + tokens <= MaxperWalletWl, "CC: Max NFT Per Wallet exceeded");
        require(tokens > 0, "CC: need to mint at least 1 NFT");
        require(tokens <= MaxperTxWl, "CC: max mint per Tx exceeded");
        require(supply + tokens <= WlSupply, "CC: Whitelist MaxSupply exceeded");
        require(WRLD_PRICE_WL * tokens <= WTOKEN.balanceOf(msg.sender), "Low WRLD");
        require(WRLD_PRICE_WL * tokens <= WTOKEN.allowance(msg.sender, address(this)), "Low WRLD");

        WTOKEN.transferFrom(msg.sender, address(this), WRLD_PRICE_WL * tokens);

      _safeMint(_msgSender(), tokens);
    
  }




  /// @dev use giveaway or vualt
     function gift(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }

  


  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }

  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }
  
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

    function setWlMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWalletWl = _limit;
  }

  function setmaxpertx(uint256 _maxpertx) public onlyOwner {
    maxpertx = _maxpertx;
  }

    function setWLMaxpertx(uint256 _wlmaxpertx) public onlyOwner {
    MaxperTxWl = _wlmaxpertx;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

    function setWlCost(uint256 _newWlCost) public onlyOwner {
    wlcost = _newWlCost;
  }

    function setWRLDcost(uint256 _newCost) public onlyOwner {
    WRLD_PRICE = _newCost;
  }

      function setWRLDWLcost(uint256 _newCost) public onlyOwner {
    WRLD_PRICE_WL = _newCost;
  }

    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

    function setwlsupply(uint256 _newsupply) public onlyOwner {
    WlSupply = _newsupply;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

    function togglepreSale(bool _state) external onlyOwner {
        preSale = _state;
    }

    function togglepublicSale(bool _state) external onlyOwner {
        publicSale = _state;
    }
  
 
  function withdraw() public payable onlyOwner nonReentrant {
    (bool success, ) = payable(0x7eC6D99967FD5dE3ad28507b6B52C0A6527c6cB3).call{value: address(this).balance}("");
    require(success);
    WTOKEN.transferFrom(address(this), (0x7eC6D99967FD5dE3ad28507b6B52C0A6527c6cB3), WTOKEN.balanceOf(address(this)));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MaxperTxWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WRLD_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WRLD_PRICE_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxpertx","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":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mintwrld","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"presalemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"presalemintwrld","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","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":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlmaxpertx","type":"uint256"}],"name":"setWLMaxpertx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWRLDWLcost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWRLDcost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWlCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWlMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxpertx","type":"uint256"}],"name":"setmaxpertx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setwlsupply","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":"bool","name":"_state","type":"bool"}],"name":"togglepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepublicSale","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600b9190620002bf565b506701cdda4faccd0000600d55670186cc6acd4b0000600e55683ba1910bf341b00000600f55683627e8f712373c0000601055610f5d6011819055601255600a6013819055600360148190556015556016556017805463ffffffff1916620100001790557f4ca6910f7cb1d9a99d8e5f7a2034efa6bed27cb52fd2eaa24e2c45993bf7bb30601855348015620000bd57600080fd5b5060405162003ab738038062003ab7833981016040819052620000e09162000432565b6040518060400160405280600c81526020016b21b93cb83a34b21021b630b760a11b81525060405180604001604052806002815260200161434360f01b815250816002908051906020019062000138929190620002bf565b5080516200014e906003906020840190620002bf565b50506001600055506200016133620001aa565b60016009556200017182620001fc565b6200017c8162000264565b5050601980546001600160a01b03191673d5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9179055620004d9565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200024b5760405162461bcd60e51b8152602060048201819052602482015260008051602062003a9783398151915260448201526064015b60405180910390fd5b80516200026090600a906020840190620002bf565b5050565b6008546001600160a01b03163314620002af5760405162461bcd60e51b8152602060048201819052602482015260008051602062003a97833981519152604482015260640162000242565b80516200026090600c9060208401905b828054620002cd906200049c565b90600052602060002090601f016020900481019282620002f157600085556200033c565b82601f106200030c57805160ff19168380011785556200033c565b828001600101855582156200033c579182015b828111156200033c5782518255916020019190600101906200031f565b506200034a9291506200034e565b5090565b5b808211156200034a57600081556001016200034f565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200038d57600080fd5b81516001600160401b0380821115620003aa57620003aa62000365565b604051601f8301601f19908116603f01168101908282118183101715620003d557620003d562000365565b81604052838152602092508683858801011115620003f257600080fd5b600091505b83821015620004165785820183015181830184015290820190620003f7565b83821115620004285760008385830101525b9695505050505050565b600080604083850312156200044657600080fd5b82516001600160401b03808211156200045e57600080fd5b6200046c868387016200037b565b935060208501519150808211156200048357600080fd5b5062000492858286016200037b565b9150509250929050565b600181811c90821680620004b157607f821691505b60208210811415620004d357634e487b7160e01b600052602260045260246000fd5b50919050565b6135ae80620004e96000396000f3fe6080604052600436106103a15760003560e01c806370a08231116101e7578063c66828621161010d578063e268e4d3116100a0578063f2c4ce1e1161006f578063f2c4ce1e14610a39578063f2fde38b14610a59578063f3257cdd14610a79578063fea0e05814610a9957600080fd5b8063e268e4d31461099a578063e985e9c5146109ba578063eff6011014610a03578063f12f6d5d14610a1957600080fd5b8063d5abeb01116100dc578063d5abeb011461092e578063d8ed370c14610944578063da3ef23f1461095a578063dc33e6811461097a57600080fd5b8063c6682862146108b9578063c8151d02146108ce578063c87b56dd146108ee578063d581a48f1461090e57600080fd5b806395d89b4111610185578063bd7a199811610154578063bd7a19981461084d578063bde0608a14610863578063c14da5cb14610883578063c19f11ed1461089957600080fd5b806395d89b41146107e5578063a0712d68146107fa578063a22cb4651461080d578063b88d4fde1461082d57600080fd5b80638129fc1c116101c15780638129fc1c1461077257806383a076be146107875780638da5cb5b146107a7578063940cd05b146107c557600080fd5b806370a082311461071d578063715018a61461073d5780637cb647591461075257600080fd5b806323b872dd116102cc578063518302271161026a57806363451e811161023957806363451e81146106bc5780636352211e146106d25780636c0360eb146106f25780636c2d3c4f1461070757600080fd5b8063518302271461064357806355f804b3146106625780635a7adf7f146106825780635c975abb146106a257600080fd5b80633ccfd60b116102a65780633ccfd60b146105db57806342842e0e146105e357806344a0d68a14610603578063458c4f9e1461062357600080fd5b806323b872dd146105845780632eb4a7ab146105a457806333bc1c5c146105ba57600080fd5b8063081c8c4411610344578063149835a011610313578063149835a01461050f57806318160ddd1461052f5780631866756c146105445780631deef3fe1461056457600080fd5b8063081c8c44146104ae578063095ea7b3146104c35780630bddb613146104e357806313faede6146104f957600080fd5b8063025c032011610380578063025c032014610421578063036e4cb51461044157806306fdde0314610454578063081812fc1461047657600080fd5b806277ec05146103a657806301ffc9a7146103cf57806302329a29146103ff575b600080fd5b3480156103b257600080fd5b506103bc60145481565b6040519081526020015b60405180910390f35b3480156103db57600080fd5b506103ef6103ea366004612dda565b610ab9565b60405190151581526020016103c6565b34801561040b57600080fd5b5061041f61041a366004612e05565b610b0b565b005b34801561042d57600080fd5b5061041f61043c366004612e22565b610b51565b61041f61044f366004612e3b565b610b80565b34801561046057600080fd5b50610469610e98565b6040516103c69190612f12565b34801561048257600080fd5b50610496610491366004612e22565b610f2a565b6040516001600160a01b0390911681526020016103c6565b3480156104ba57600080fd5b50610469610f6e565b3480156104cf57600080fd5b5061041f6104de366004612f41565b610ffc565b3480156104ef57600080fd5b506103bc60125481565b34801561050557600080fd5b506103bc600d5481565b34801561051b57600080fd5b5061041f61052a366004612e22565b61108a565b34801561053b57600080fd5b506103bc6110b9565b34801561055057600080fd5b5061041f61055f366004612e22565b6110c7565b34801561057057600080fd5b5061041f61057f366004612e22565b6110f6565b34801561059057600080fd5b5061041f61059f366004612f6b565b61144c565b3480156105b057600080fd5b506103bc60185481565b3480156105c657600080fd5b506017546103ef906301000000900460ff1681565b61041f611457565b3480156105ef57600080fd5b5061041f6105fe366004612f6b565b61160d565b34801561060f57600080fd5b5061041f61061e366004612e22565b611628565b34801561062f57600080fd5b5061041f61063e366004612e22565b611657565b34801561064f57600080fd5b506017546103ef90610100900460ff1681565b34801561066e57600080fd5b5061041f61067d366004613033565b611686565b34801561068e57600080fd5b506017546103ef9062010000900460ff1681565b3480156106ae57600080fd5b506017546103ef9060ff1681565b3480156106c857600080fd5b506103bc600f5481565b3480156106de57600080fd5b506104966106ed366004612e22565b6116c7565b3480156106fe57600080fd5b506104696116d9565b34801561071357600080fd5b506103bc600e5481565b34801561072957600080fd5b506103bc61073836600461307c565b6116e6565b34801561074957600080fd5b5061041f611735565b34801561075e57600080fd5b5061041f61076d366004612e22565b61176b565b34801561077e57600080fd5b5061041f61179a565b34801561079357600080fd5b5061041f6107a2366004613097565b611846565b3480156107b357600080fd5b506008546001600160a01b0316610496565b3480156107d157600080fd5b5061041f6107e0366004612e05565b61195a565b3480156107f157600080fd5b5061046961199e565b61041f610808366004612e22565b6119ad565b34801561081957600080fd5b5061041f6108283660046130c3565b611b8c565b34801561083957600080fd5b5061041f6108483660046130fa565b611c22565b34801561085957600080fd5b506103bc60135481565b34801561086f57600080fd5b5061041f61087e366004612e22565b611c73565b34801561088f57600080fd5b506103bc60105481565b3480156108a557600080fd5b5061041f6108b4366004612e22565b611ca2565b3480156108c557600080fd5b50610469611cd1565b3480156108da57600080fd5b5061041f6108e9366004612e22565b611cde565b3480156108fa57600080fd5b50610469610909366004612e22565b611d0d565b34801561091a57600080fd5b5061041f610929366004612e3b565b611e7d565b34801561093a57600080fd5b506103bc60115481565b34801561095057600080fd5b506103bc60155481565b34801561096657600080fd5b5061041f610975366004613033565b6122b4565b34801561098657600080fd5b506103bc61099536600461307c565b6122f1565b3480156109a657600080fd5b5061041f6109b5366004612e22565b6122fc565b3480156109c657600080fd5b506103ef6109d5366004613176565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a0f57600080fd5b506103bc60165481565b348015610a2557600080fd5b5061041f610a34366004612e22565b61232b565b348015610a4557600080fd5b5061041f610a54366004613033565b61235a565b348015610a6557600080fd5b5061041f610a7436600461307c565b612397565b348015610a8557600080fd5b5061041f610a94366004612e05565b61242f565b348015610aa557600080fd5b5061041f610ab4366004612e05565b612477565b60006001600160e01b031982166380ac58cd60e01b1480610aea57506001600160e01b03198216635b5e139f60e01b145b80610b0557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610b3e5760405162461bcd60e51b8152600401610b35906131a0565b60405180910390fd5b6017805460ff1916911515919091179055565b6008546001600160a01b03163314610b7b5760405162461bcd60e51b8152600401610b35906131a0565b600f55565b60026009541415610ba35760405162461bcd60e51b8152600401610b35906131d5565b6002600955333214610bb457600080fd5b60175460ff1615610bd75760405162461bcd60e51b8152600401610b359061320c565b60175462010000900460ff16610c2f5760405162461bcd60e51b815260206004820152601e60248201527f43433a2050726573616c65204861736e277420737461727465642079657400006044820152606401610b35565b610ca5828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506018546040516bffffffffffffffffffffffff193360601b16602082015290925060340190505b604051602081830303815290604052805190602001206124bd565b610cf15760405162461bcd60e51b815260206004820152601b60248201527f43433a20596f7520617265206e6f742057686974656c697374656400000000006044820152606401610b35565b6000610cfb6110b9565b905060145484610d37610d0b3390565b6001600160a01b0316600090815260056020526040902054600160401b900467ffffffffffffffff1690565b610d419190613259565b1115610d5f5760405162461bcd60e51b8152600401610b3590613271565b60008411610d7f5760405162461bcd60e51b8152600401610b35906132a8565b601554841115610dd15760405162461bcd60e51b815260206004820152601c60248201527f43433a206d6178206d696e7420706572205478206578636565646564000000006044820152606401610b35565b601254610dde8583613259565b1115610e2c5760405162461bcd60e51b815260206004820181905260248201527f43433a2057686974656c697374204d6178537570706c792065786365656465646044820152606401610b35565b83600e54610e3a91906132df565b341015610e825760405162461bcd60e51b815260206004820152601660248201527543433a20696e73756666696369656e742066756e647360501b6044820152606401610b35565b610e8d335b856124d3565b505060016009555050565b606060028054610ea7906132fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed3906132fe565b8015610f205780601f10610ef557610100808354040283529160200191610f20565b820191906000526020600020905b815481529060010190602001808311610f0357829003601f168201915b5050505050905090565b6000610f35826124ed565b610f52576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600c8054610f7b906132fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa7906132fe565b8015610ff45780601f10610fc957610100808354040283529160200191610ff4565b820191906000526020600020905b815481529060010190602001808311610fd757829003601f168201915b505050505081565b6000611007826116c7565b9050806001600160a01b0316836001600160a01b0316141561103c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061105c575061105a81336109d5565b155b1561107a576040516367d9dca160e11b815260040160405180910390fd5b611085838383612526565b505050565b6008546001600160a01b031633146110b45760405162461bcd60e51b8152600401610b35906131a0565b601155565b600154600054036000190190565b6008546001600160a01b031633146110f15760405162461bcd60e51b8152600401610b35906131a0565b601555565b600260095414156111195760405162461bcd60e51b8152600401610b35906131d5565b600260095533321461112a57600080fd5b60175460ff161561114d5760405162461bcd60e51b8152600401610b359061320c565b6017546301000000900460ff166111a65760405162461bcd60e51b815260206004820152601b60248201527f43433a2053616c65204861736e277420737461727465642079657400000000006044820152606401610b35565b60006111b06110b9565b9050600082116111d25760405162461bcd60e51b8152600401610b35906132a8565b6016548211156111f45760405162461bcd60e51b8152600401610b3590613339565b6011546112018383613259565b11156112405760405162461bcd60e51b815260206004820152600e60248201526d10d0ce8815d94814dbdb191bdd5d60921b6044820152606401610b35565b6013548261124d33610d0b565b6112579190613259565b11156112755760405162461bcd60e51b8152600401610b3590613271565b6019546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156112bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e1919061337c565b82600f546112ef91906132df565b111561130d5760405162461bcd60e51b8152600401610b3590613395565b601954604051636eb1769f60e11b81523360048201523060248201526001600160a01b039091169063dd62ed3e90604401602060405180830381865afa15801561135b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137f919061337c565b82600f5461138d91906132df565b11156113ab5760405162461bcd60e51b8152600401610b3590613395565b601954600f546001600160a01b03909116906323b872dd90339030906113d29087906132df565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561142157600080fd5b505af1158015611435573d6000803e3d6000fd5b5050505061144333836124d3565b50506001600955565b611085838383612582565b6008546001600160a01b031633146114815760405162461bcd60e51b8152600401610b35906131a0565b600260095414156114a45760405162461bcd60e51b8152600401610b35906131d5565b6002600955604051600090737ec6d99967fd5de3ad28507b6b52c0a6527c6cb39047908381818185875af1925050503d80600081146114ff576040519150601f19603f3d011682016040523d82523d6000602084013e611504565b606091505b505090508061151257600080fd5b6019546040516370a0823160e01b815230600482018190526001600160a01b03909216916323b872dd91737ec6d99967fd5de3ad28507b6b52c0a6527c6cb39084906370a0823190602401602060405180830381865afa15801561157a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159e919061337c565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b1580156115ed57600080fd5b505af1158015611601573d6000803e3d6000fd5b50506001600955505050565b61108583838360405180602001604052806000815250611c22565b6008546001600160a01b031633146116525760405162461bcd60e51b8152600401610b35906131a0565b600d55565b6008546001600160a01b031633146116815760405162461bcd60e51b8152600401610b35906131a0565b601255565b6008546001600160a01b031633146116b05760405162461bcd60e51b8152600401610b35906131a0565b80516116c390600a906020840190612d2b565b5050565b60006116d282612772565b5192915050565b600a8054610f7b906132fe565b60006001600160a01b03821661170f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461175f5760405162461bcd60e51b8152600401610b35906131a0565b611769600061289b565b565b6008546001600160a01b031633146117955760405162461bcd60e51b8152600401610b35906131a0565b601855565b6008546001600160a01b031633146117c45760405162461bcd60e51b8152600401610b35906131a0565b60195460405163095ea7b360e01b81523060048201526a039421316498382cf0000060248201526001600160a01b039091169063095ea7b3906044016020604051808303816000875af115801561181f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184391906133b7565b50565b6008546001600160a01b031633146118705760405162461bcd60e51b8152600401610b35906131a0565b600260095414156118935760405162461bcd60e51b8152600401610b35906131d5565b6002600955816118e55760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b35565b60006118ef6110b9565b6011549091506118ff8483613259565b11156119465760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b35565b61195082846124d3565b5050600160095550565b6008546001600160a01b031633146119845760405162461bcd60e51b8152600401610b35906131a0565b601780549115156101000261ff0019909216919091179055565b606060038054610ea7906132fe565b600260095414156119d05760405162461bcd60e51b8152600401610b35906131d5565b60026009553332146119e157600080fd5b60175460ff1615611a045760405162461bcd60e51b8152600401610b359061320c565b6017546301000000900460ff16611a5d5760405162461bcd60e51b815260206004820152601b60248201527f43433a2053616c65204861736e277420737461727465642079657400000000006044820152606401610b35565b6000611a676110b9565b905060008211611a895760405162461bcd60e51b8152600401610b35906132a8565b601654821115611aab5760405162461bcd60e51b8152600401610b3590613339565b601154611ab88383613259565b1115611af75760405162461bcd60e51b815260206004820152600e60248201526d10d0ce8815d94814dbdb191bdd5d60921b6044820152606401610b35565b60135482611b0433610d0b565b611b0e9190613259565b1115611b2c5760405162461bcd60e51b8152600401610b3590613271565b81600d54611b3a91906132df565b341015611b825760405162461bcd60e51b815260206004820152601660248201527543433a20696e73756666696369656e742066756e647360501b6044820152606401610b35565b61144333836124d3565b6001600160a01b038216331415611bb65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611c2d848484612582565b6001600160a01b0383163b15158015611c4f5750611c4d848484846128ed565b155b15611c6d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314611c9d5760405162461bcd60e51b8152600401610b35906131a0565b601455565b6008546001600160a01b03163314611ccc5760405162461bcd60e51b8152600401610b35906131a0565b601055565b600b8054610f7b906132fe565b6008546001600160a01b03163314611d085760405162461bcd60e51b8152600401610b35906131a0565b601655565b6060611d18826124ed565b611d7d5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610b35565b601754610100900460ff16611e1e57600c8054611d99906132fe565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc5906132fe565b8015611e125780601f10611de757610100808354040283529160200191611e12565b820191906000526020600020905b815481529060010190602001808311611df557829003601f168201915b50505050509050919050565b6000611e286129d6565b90506000815111611e485760405180602001604052806000815250611e76565b80611e52846129e5565b600b604051602001611e66939291906133d4565b6040516020818303038152906040525b9392505050565b60026009541415611ea05760405162461bcd60e51b8152600401610b35906131d5565b6002600955333214611eb157600080fd5b60175460ff1615611ed45760405162461bcd60e51b8152600401610b359061320c565b60175462010000900460ff16611f2c5760405162461bcd60e51b815260206004820152601e60248201527f43433a2050726573616c65204861736e277420737461727465642079657400006044820152606401610b35565b611f8b828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506018546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050610c8a565b611fd75760405162461bcd60e51b815260206004820152601b60248201527f43433a20596f7520617265206e6f742057686974656c697374656400000000006044820152606401610b35565b6000611fe16110b9565b905060145484611ff1610d0b3390565b611ffb9190613259565b11156120195760405162461bcd60e51b8152600401610b3590613271565b600084116120395760405162461bcd60e51b8152600401610b35906132a8565b60155484111561208b5760405162461bcd60e51b815260206004820152601c60248201527f43433a206d6178206d696e7420706572205478206578636565646564000000006044820152606401610b35565b6012546120988583613259565b11156120e65760405162461bcd60e51b815260206004820181905260248201527f43433a2057686974656c697374204d6178537570706c792065786365656465646044820152606401610b35565b6019546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa15801561212e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612152919061337c565b8460105461216091906132df565b111561217e5760405162461bcd60e51b8152600401610b3590613395565b601954604051636eb1769f60e11b81523360048201523060248201526001600160a01b039091169063dd62ed3e90604401602060405180830381865afa1580156121cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121f0919061337c565b846010546121fe91906132df565b111561221c5760405162461bcd60e51b8152600401610b3590613395565b6019546010546001600160a01b03909116906323b872dd90339030906122439089906132df565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561229257600080fd5b505af11580156122a6573d6000803e3d6000fd5b50505050610e8d610e873390565b6008546001600160a01b031633146122de5760405162461bcd60e51b8152600401610b35906131a0565b80516116c390600b906020840190612d2b565b6000610b0582610d0b565b6008546001600160a01b031633146123265760405162461bcd60e51b8152600401610b35906131a0565b601355565b6008546001600160a01b031633146123555760405162461bcd60e51b8152600401610b35906131a0565b600e55565b6008546001600160a01b031633146123845760405162461bcd60e51b8152600401610b35906131a0565b80516116c390600c906020840190612d2b565b6008546001600160a01b031633146123c15760405162461bcd60e51b8152600401610b35906131a0565b6001600160a01b0381166124265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b35565b6118438161289b565b6008546001600160a01b031633146124595760405162461bcd60e51b8152600401610b35906131a0565b6017805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b031633146124a15760405162461bcd60e51b8152600401610b35906131a0565b60178054911515620100000262ff000019909216919091179055565b6000826124ca8584612ae3565b14949350505050565b6116c3828260405180602001604052806000815250612b57565b600081600111158015612501575060005482105b8015610b05575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061258d82612772565b9050836001600160a01b031681600001516001600160a01b0316146125c45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806125e257506125e285336109d5565b806125fd5750336125f284610f2a565b6001600160a01b0316145b90508061261d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661264457604051633a954ecd60e21b815260040160405180910390fd5b61265060008487612526565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612726576000548214612726578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156127a2575060005481105b1561288257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906128805780516001600160a01b031615612816579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561287b579392505050565b612816565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612922903390899088908890600401613498565b6020604051808303816000875af192505050801561295d575060408051601f3d908101601f1916820190925261295a918101906134d5565b60015b6129b8573d80801561298b576040519150601f19603f3d011682016040523d82523d6000602084013e612990565b606091505b5080516129b0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610ea7906132fe565b606081612a095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a335780612a1d816134f2565b9150612a2c9050600a83613523565b9150612a0d565b60008167ffffffffffffffff811115612a4e57612a4e612fa7565b6040519080825280601f01601f191660200182016040528015612a78576020820181803683370190505b5090505b84156129ce57612a8d600183613537565b9150612a9a600a8661354e565b612aa5906030613259565b60f81b818381518110612aba57612aba613562565b60200101906001600160f81b031916908160001a905350612adc600a86613523565b9450612a7c565b600081815b8451811015612b4f576000858281518110612b0557612b05613562565b60200260200101519050808311612b2b5760008381526020829052604090209250612b3c565b600081815260208490526040902092505b5080612b47816134f2565b915050612ae8565b509392505050565b61108583838360016000546001600160a01b038516612b8857604051622e076360e81b815260040160405180910390fd5b83612ba65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612c5357506001600160a01b0387163b15155b15612cdc575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612ca460008884806001019550886128ed565b612cc1576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612c59578260005414612cd757600080fd5b612d22565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612cdd575b5060005561276b565b828054612d37906132fe565b90600052602060002090601f016020900481019282612d595760008555612d9f565b82601f10612d7257805160ff1916838001178555612d9f565b82800160010185558215612d9f579182015b82811115612d9f578251825591602001919060010190612d84565b50612dab929150612daf565b5090565b5b80821115612dab5760008155600101612db0565b6001600160e01b03198116811461184357600080fd5b600060208284031215612dec57600080fd5b8135611e7681612dc4565b801515811461184357600080fd5b600060208284031215612e1757600080fd5b8135611e7681612df7565b600060208284031215612e3457600080fd5b5035919050565b600080600060408486031215612e5057600080fd5b83359250602084013567ffffffffffffffff80821115612e6f57600080fd5b818601915086601f830112612e8357600080fd5b813581811115612e9257600080fd5b8760208260051b8501011115612ea757600080fd5b6020830194508093505050509250925092565b60005b83811015612ed5578181015183820152602001612ebd565b83811115611c6d5750506000910152565b60008151808452612efe816020860160208601612eba565b601f01601f19169290920160200192915050565b602081526000611e766020830184612ee6565b80356001600160a01b0381168114612f3c57600080fd5b919050565b60008060408385031215612f5457600080fd5b612f5d83612f25565b946020939093013593505050565b600080600060608486031215612f8057600080fd5b612f8984612f25565b9250612f9760208501612f25565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612fd857612fd8612fa7565b604051601f8501601f19908116603f0116810190828211818310171561300057613000612fa7565b8160405280935085815286868601111561301957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561304557600080fd5b813567ffffffffffffffff81111561305c57600080fd5b8201601f8101841361306d57600080fd5b6129ce84823560208401612fbd565b60006020828403121561308e57600080fd5b611e7682612f25565b600080604083850312156130aa57600080fd5b823591506130ba60208401612f25565b90509250929050565b600080604083850312156130d657600080fd5b6130df83612f25565b915060208301356130ef81612df7565b809150509250929050565b6000806000806080858703121561311057600080fd5b61311985612f25565b935061312760208601612f25565b925060408501359150606085013567ffffffffffffffff81111561314a57600080fd5b8501601f8101871361315b57600080fd5b61316a87823560208401612fbd565b91505092959194509250565b6000806040838503121561318957600080fd5b61319283612f25565b91506130ba60208401612f25565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601b908201527f43433a206f6f707320636f6e7472616374206973207061757365640000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561326c5761326c613243565b500190565b6020808252601f908201527f43433a204d6178204e4654205065722057616c6c657420657863656564656400604082015260600190565b6020808252601f908201527f43433a206e65656420746f206d696e74206174206c656173742031204e465400604082015260600190565b60008160001904831182151516156132f9576132f9613243565b500290565b600181811c9082168061331257607f821691505b6020821081141561333357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526023908201527f43433a206d6178206d696e7420616d6f756e742070657220747820657863656560408201526219195960ea1b606082015260800190565b60006020828403121561338e57600080fd5b5051919050565b602080825260089082015267131bddc815d4931160c21b604082015260600190565b6000602082840312156133c957600080fd5b8151611e7681612df7565b6000845160206133e78285838a01612eba565b8551918401916133fa8184848a01612eba565b8554920191600090600181811c908083168061341757607f831692505b85831081141561343557634e487b7160e01b85526022600452602485fd5b808015613449576001811461345a57613487565b60ff19851688528388019550613487565b60008b81526020902060005b8581101561347f5781548a820152908401908801613466565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134cb90830184612ee6565b9695505050505050565b6000602082840312156134e757600080fd5b8151611e7681612dc4565b600060001982141561350657613506613243565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826135325761353261350d565b500490565b60008282101561354957613549613243565b500390565b60008261355d5761355d61350d565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220fdfaeab173bc3c0b521f689a71e84a586af41338bd9158d35613f6f8c7e2acb164736f6c634300080c00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53544b70313941434541515a757434536a48703251555843684374796e4e71344e736a534b325741585046652f00000000000000000000000000000000000000000000000000000000000000000000000000000000004a697066733a2f2f516d58394771744d7a6a5452645554384169667246434c6b7a76654177735a4d6f703243635967773441427970742f48696464656e5f4d657461646174612e6a736f6e00000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103a15760003560e01c806370a08231116101e7578063c66828621161010d578063e268e4d3116100a0578063f2c4ce1e1161006f578063f2c4ce1e14610a39578063f2fde38b14610a59578063f3257cdd14610a79578063fea0e05814610a9957600080fd5b8063e268e4d31461099a578063e985e9c5146109ba578063eff6011014610a03578063f12f6d5d14610a1957600080fd5b8063d5abeb01116100dc578063d5abeb011461092e578063d8ed370c14610944578063da3ef23f1461095a578063dc33e6811461097a57600080fd5b8063c6682862146108b9578063c8151d02146108ce578063c87b56dd146108ee578063d581a48f1461090e57600080fd5b806395d89b4111610185578063bd7a199811610154578063bd7a19981461084d578063bde0608a14610863578063c14da5cb14610883578063c19f11ed1461089957600080fd5b806395d89b41146107e5578063a0712d68146107fa578063a22cb4651461080d578063b88d4fde1461082d57600080fd5b80638129fc1c116101c15780638129fc1c1461077257806383a076be146107875780638da5cb5b146107a7578063940cd05b146107c557600080fd5b806370a082311461071d578063715018a61461073d5780637cb647591461075257600080fd5b806323b872dd116102cc578063518302271161026a57806363451e811161023957806363451e81146106bc5780636352211e146106d25780636c0360eb146106f25780636c2d3c4f1461070757600080fd5b8063518302271461064357806355f804b3146106625780635a7adf7f146106825780635c975abb146106a257600080fd5b80633ccfd60b116102a65780633ccfd60b146105db57806342842e0e146105e357806344a0d68a14610603578063458c4f9e1461062357600080fd5b806323b872dd146105845780632eb4a7ab146105a457806333bc1c5c146105ba57600080fd5b8063081c8c4411610344578063149835a011610313578063149835a01461050f57806318160ddd1461052f5780631866756c146105445780631deef3fe1461056457600080fd5b8063081c8c44146104ae578063095ea7b3146104c35780630bddb613146104e357806313faede6146104f957600080fd5b8063025c032011610380578063025c032014610421578063036e4cb51461044157806306fdde0314610454578063081812fc1461047657600080fd5b806277ec05146103a657806301ffc9a7146103cf57806302329a29146103ff575b600080fd5b3480156103b257600080fd5b506103bc60145481565b6040519081526020015b60405180910390f35b3480156103db57600080fd5b506103ef6103ea366004612dda565b610ab9565b60405190151581526020016103c6565b34801561040b57600080fd5b5061041f61041a366004612e05565b610b0b565b005b34801561042d57600080fd5b5061041f61043c366004612e22565b610b51565b61041f61044f366004612e3b565b610b80565b34801561046057600080fd5b50610469610e98565b6040516103c69190612f12565b34801561048257600080fd5b50610496610491366004612e22565b610f2a565b6040516001600160a01b0390911681526020016103c6565b3480156104ba57600080fd5b50610469610f6e565b3480156104cf57600080fd5b5061041f6104de366004612f41565b610ffc565b3480156104ef57600080fd5b506103bc60125481565b34801561050557600080fd5b506103bc600d5481565b34801561051b57600080fd5b5061041f61052a366004612e22565b61108a565b34801561053b57600080fd5b506103bc6110b9565b34801561055057600080fd5b5061041f61055f366004612e22565b6110c7565b34801561057057600080fd5b5061041f61057f366004612e22565b6110f6565b34801561059057600080fd5b5061041f61059f366004612f6b565b61144c565b3480156105b057600080fd5b506103bc60185481565b3480156105c657600080fd5b506017546103ef906301000000900460ff1681565b61041f611457565b3480156105ef57600080fd5b5061041f6105fe366004612f6b565b61160d565b34801561060f57600080fd5b5061041f61061e366004612e22565b611628565b34801561062f57600080fd5b5061041f61063e366004612e22565b611657565b34801561064f57600080fd5b506017546103ef90610100900460ff1681565b34801561066e57600080fd5b5061041f61067d366004613033565b611686565b34801561068e57600080fd5b506017546103ef9062010000900460ff1681565b3480156106ae57600080fd5b506017546103ef9060ff1681565b3480156106c857600080fd5b506103bc600f5481565b3480156106de57600080fd5b506104966106ed366004612e22565b6116c7565b3480156106fe57600080fd5b506104696116d9565b34801561071357600080fd5b506103bc600e5481565b34801561072957600080fd5b506103bc61073836600461307c565b6116e6565b34801561074957600080fd5b5061041f611735565b34801561075e57600080fd5b5061041f61076d366004612e22565b61176b565b34801561077e57600080fd5b5061041f61179a565b34801561079357600080fd5b5061041f6107a2366004613097565b611846565b3480156107b357600080fd5b506008546001600160a01b0316610496565b3480156107d157600080fd5b5061041f6107e0366004612e05565b61195a565b3480156107f157600080fd5b5061046961199e565b61041f610808366004612e22565b6119ad565b34801561081957600080fd5b5061041f6108283660046130c3565b611b8c565b34801561083957600080fd5b5061041f6108483660046130fa565b611c22565b34801561085957600080fd5b506103bc60135481565b34801561086f57600080fd5b5061041f61087e366004612e22565b611c73565b34801561088f57600080fd5b506103bc60105481565b3480156108a557600080fd5b5061041f6108b4366004612e22565b611ca2565b3480156108c557600080fd5b50610469611cd1565b3480156108da57600080fd5b5061041f6108e9366004612e22565b611cde565b3480156108fa57600080fd5b50610469610909366004612e22565b611d0d565b34801561091a57600080fd5b5061041f610929366004612e3b565b611e7d565b34801561093a57600080fd5b506103bc60115481565b34801561095057600080fd5b506103bc60155481565b34801561096657600080fd5b5061041f610975366004613033565b6122b4565b34801561098657600080fd5b506103bc61099536600461307c565b6122f1565b3480156109a657600080fd5b5061041f6109b5366004612e22565b6122fc565b3480156109c657600080fd5b506103ef6109d5366004613176565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a0f57600080fd5b506103bc60165481565b348015610a2557600080fd5b5061041f610a34366004612e22565b61232b565b348015610a4557600080fd5b5061041f610a54366004613033565b61235a565b348015610a6557600080fd5b5061041f610a7436600461307c565b612397565b348015610a8557600080fd5b5061041f610a94366004612e05565b61242f565b348015610aa557600080fd5b5061041f610ab4366004612e05565b612477565b60006001600160e01b031982166380ac58cd60e01b1480610aea57506001600160e01b03198216635b5e139f60e01b145b80610b0557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610b3e5760405162461bcd60e51b8152600401610b35906131a0565b60405180910390fd5b6017805460ff1916911515919091179055565b6008546001600160a01b03163314610b7b5760405162461bcd60e51b8152600401610b35906131a0565b600f55565b60026009541415610ba35760405162461bcd60e51b8152600401610b35906131d5565b6002600955333214610bb457600080fd5b60175460ff1615610bd75760405162461bcd60e51b8152600401610b359061320c565b60175462010000900460ff16610c2f5760405162461bcd60e51b815260206004820152601e60248201527f43433a2050726573616c65204861736e277420737461727465642079657400006044820152606401610b35565b610ca5828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506018546040516bffffffffffffffffffffffff193360601b16602082015290925060340190505b604051602081830303815290604052805190602001206124bd565b610cf15760405162461bcd60e51b815260206004820152601b60248201527f43433a20596f7520617265206e6f742057686974656c697374656400000000006044820152606401610b35565b6000610cfb6110b9565b905060145484610d37610d0b3390565b6001600160a01b0316600090815260056020526040902054600160401b900467ffffffffffffffff1690565b610d419190613259565b1115610d5f5760405162461bcd60e51b8152600401610b3590613271565b60008411610d7f5760405162461bcd60e51b8152600401610b35906132a8565b601554841115610dd15760405162461bcd60e51b815260206004820152601c60248201527f43433a206d6178206d696e7420706572205478206578636565646564000000006044820152606401610b35565b601254610dde8583613259565b1115610e2c5760405162461bcd60e51b815260206004820181905260248201527f43433a2057686974656c697374204d6178537570706c792065786365656465646044820152606401610b35565b83600e54610e3a91906132df565b341015610e825760405162461bcd60e51b815260206004820152601660248201527543433a20696e73756666696369656e742066756e647360501b6044820152606401610b35565b610e8d335b856124d3565b505060016009555050565b606060028054610ea7906132fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed3906132fe565b8015610f205780601f10610ef557610100808354040283529160200191610f20565b820191906000526020600020905b815481529060010190602001808311610f0357829003601f168201915b5050505050905090565b6000610f35826124ed565b610f52576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600c8054610f7b906132fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa7906132fe565b8015610ff45780601f10610fc957610100808354040283529160200191610ff4565b820191906000526020600020905b815481529060010190602001808311610fd757829003601f168201915b505050505081565b6000611007826116c7565b9050806001600160a01b0316836001600160a01b0316141561103c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061105c575061105a81336109d5565b155b1561107a576040516367d9dca160e11b815260040160405180910390fd5b611085838383612526565b505050565b6008546001600160a01b031633146110b45760405162461bcd60e51b8152600401610b35906131a0565b601155565b600154600054036000190190565b6008546001600160a01b031633146110f15760405162461bcd60e51b8152600401610b35906131a0565b601555565b600260095414156111195760405162461bcd60e51b8152600401610b35906131d5565b600260095533321461112a57600080fd5b60175460ff161561114d5760405162461bcd60e51b8152600401610b359061320c565b6017546301000000900460ff166111a65760405162461bcd60e51b815260206004820152601b60248201527f43433a2053616c65204861736e277420737461727465642079657400000000006044820152606401610b35565b60006111b06110b9565b9050600082116111d25760405162461bcd60e51b8152600401610b35906132a8565b6016548211156111f45760405162461bcd60e51b8152600401610b3590613339565b6011546112018383613259565b11156112405760405162461bcd60e51b815260206004820152600e60248201526d10d0ce8815d94814dbdb191bdd5d60921b6044820152606401610b35565b6013548261124d33610d0b565b6112579190613259565b11156112755760405162461bcd60e51b8152600401610b3590613271565b6019546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156112bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e1919061337c565b82600f546112ef91906132df565b111561130d5760405162461bcd60e51b8152600401610b3590613395565b601954604051636eb1769f60e11b81523360048201523060248201526001600160a01b039091169063dd62ed3e90604401602060405180830381865afa15801561135b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137f919061337c565b82600f5461138d91906132df565b11156113ab5760405162461bcd60e51b8152600401610b3590613395565b601954600f546001600160a01b03909116906323b872dd90339030906113d29087906132df565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561142157600080fd5b505af1158015611435573d6000803e3d6000fd5b5050505061144333836124d3565b50506001600955565b611085838383612582565b6008546001600160a01b031633146114815760405162461bcd60e51b8152600401610b35906131a0565b600260095414156114a45760405162461bcd60e51b8152600401610b35906131d5565b6002600955604051600090737ec6d99967fd5de3ad28507b6b52c0a6527c6cb39047908381818185875af1925050503d80600081146114ff576040519150601f19603f3d011682016040523d82523d6000602084013e611504565b606091505b505090508061151257600080fd5b6019546040516370a0823160e01b815230600482018190526001600160a01b03909216916323b872dd91737ec6d99967fd5de3ad28507b6b52c0a6527c6cb39084906370a0823190602401602060405180830381865afa15801561157a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159e919061337c565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b1580156115ed57600080fd5b505af1158015611601573d6000803e3d6000fd5b50506001600955505050565b61108583838360405180602001604052806000815250611c22565b6008546001600160a01b031633146116525760405162461bcd60e51b8152600401610b35906131a0565b600d55565b6008546001600160a01b031633146116815760405162461bcd60e51b8152600401610b35906131a0565b601255565b6008546001600160a01b031633146116b05760405162461bcd60e51b8152600401610b35906131a0565b80516116c390600a906020840190612d2b565b5050565b60006116d282612772565b5192915050565b600a8054610f7b906132fe565b60006001600160a01b03821661170f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461175f5760405162461bcd60e51b8152600401610b35906131a0565b611769600061289b565b565b6008546001600160a01b031633146117955760405162461bcd60e51b8152600401610b35906131a0565b601855565b6008546001600160a01b031633146117c45760405162461bcd60e51b8152600401610b35906131a0565b60195460405163095ea7b360e01b81523060048201526a039421316498382cf0000060248201526001600160a01b039091169063095ea7b3906044016020604051808303816000875af115801561181f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184391906133b7565b50565b6008546001600160a01b031633146118705760405162461bcd60e51b8152600401610b35906131a0565b600260095414156118935760405162461bcd60e51b8152600401610b35906131d5565b6002600955816118e55760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b35565b60006118ef6110b9565b6011549091506118ff8483613259565b11156119465760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b35565b61195082846124d3565b5050600160095550565b6008546001600160a01b031633146119845760405162461bcd60e51b8152600401610b35906131a0565b601780549115156101000261ff0019909216919091179055565b606060038054610ea7906132fe565b600260095414156119d05760405162461bcd60e51b8152600401610b35906131d5565b60026009553332146119e157600080fd5b60175460ff1615611a045760405162461bcd60e51b8152600401610b359061320c565b6017546301000000900460ff16611a5d5760405162461bcd60e51b815260206004820152601b60248201527f43433a2053616c65204861736e277420737461727465642079657400000000006044820152606401610b35565b6000611a676110b9565b905060008211611a895760405162461bcd60e51b8152600401610b35906132a8565b601654821115611aab5760405162461bcd60e51b8152600401610b3590613339565b601154611ab88383613259565b1115611af75760405162461bcd60e51b815260206004820152600e60248201526d10d0ce8815d94814dbdb191bdd5d60921b6044820152606401610b35565b60135482611b0433610d0b565b611b0e9190613259565b1115611b2c5760405162461bcd60e51b8152600401610b3590613271565b81600d54611b3a91906132df565b341015611b825760405162461bcd60e51b815260206004820152601660248201527543433a20696e73756666696369656e742066756e647360501b6044820152606401610b35565b61144333836124d3565b6001600160a01b038216331415611bb65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611c2d848484612582565b6001600160a01b0383163b15158015611c4f5750611c4d848484846128ed565b155b15611c6d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314611c9d5760405162461bcd60e51b8152600401610b35906131a0565b601455565b6008546001600160a01b03163314611ccc5760405162461bcd60e51b8152600401610b35906131a0565b601055565b600b8054610f7b906132fe565b6008546001600160a01b03163314611d085760405162461bcd60e51b8152600401610b35906131a0565b601655565b6060611d18826124ed565b611d7d5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610b35565b601754610100900460ff16611e1e57600c8054611d99906132fe565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc5906132fe565b8015611e125780601f10611de757610100808354040283529160200191611e12565b820191906000526020600020905b815481529060010190602001808311611df557829003601f168201915b50505050509050919050565b6000611e286129d6565b90506000815111611e485760405180602001604052806000815250611e76565b80611e52846129e5565b600b604051602001611e66939291906133d4565b6040516020818303038152906040525b9392505050565b60026009541415611ea05760405162461bcd60e51b8152600401610b35906131d5565b6002600955333214611eb157600080fd5b60175460ff1615611ed45760405162461bcd60e51b8152600401610b359061320c565b60175462010000900460ff16611f2c5760405162461bcd60e51b815260206004820152601e60248201527f43433a2050726573616c65204861736e277420737461727465642079657400006044820152606401610b35565b611f8b828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506018546040516bffffffffffffffffffffffff193360601b1660208201529092506034019050610c8a565b611fd75760405162461bcd60e51b815260206004820152601b60248201527f43433a20596f7520617265206e6f742057686974656c697374656400000000006044820152606401610b35565b6000611fe16110b9565b905060145484611ff1610d0b3390565b611ffb9190613259565b11156120195760405162461bcd60e51b8152600401610b3590613271565b600084116120395760405162461bcd60e51b8152600401610b35906132a8565b60155484111561208b5760405162461bcd60e51b815260206004820152601c60248201527f43433a206d6178206d696e7420706572205478206578636565646564000000006044820152606401610b35565b6012546120988583613259565b11156120e65760405162461bcd60e51b815260206004820181905260248201527f43433a2057686974656c697374204d6178537570706c792065786365656465646044820152606401610b35565b6019546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa15801561212e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612152919061337c565b8460105461216091906132df565b111561217e5760405162461bcd60e51b8152600401610b3590613395565b601954604051636eb1769f60e11b81523360048201523060248201526001600160a01b039091169063dd62ed3e90604401602060405180830381865afa1580156121cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121f0919061337c565b846010546121fe91906132df565b111561221c5760405162461bcd60e51b8152600401610b3590613395565b6019546010546001600160a01b03909116906323b872dd90339030906122439089906132df565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561229257600080fd5b505af11580156122a6573d6000803e3d6000fd5b50505050610e8d610e873390565b6008546001600160a01b031633146122de5760405162461bcd60e51b8152600401610b35906131a0565b80516116c390600b906020840190612d2b565b6000610b0582610d0b565b6008546001600160a01b031633146123265760405162461bcd60e51b8152600401610b35906131a0565b601355565b6008546001600160a01b031633146123555760405162461bcd60e51b8152600401610b35906131a0565b600e55565b6008546001600160a01b031633146123845760405162461bcd60e51b8152600401610b35906131a0565b80516116c390600c906020840190612d2b565b6008546001600160a01b031633146123c15760405162461bcd60e51b8152600401610b35906131a0565b6001600160a01b0381166124265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b35565b6118438161289b565b6008546001600160a01b031633146124595760405162461bcd60e51b8152600401610b35906131a0565b6017805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b031633146124a15760405162461bcd60e51b8152600401610b35906131a0565b60178054911515620100000262ff000019909216919091179055565b6000826124ca8584612ae3565b14949350505050565b6116c3828260405180602001604052806000815250612b57565b600081600111158015612501575060005482105b8015610b05575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061258d82612772565b9050836001600160a01b031681600001516001600160a01b0316146125c45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806125e257506125e285336109d5565b806125fd5750336125f284610f2a565b6001600160a01b0316145b90508061261d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661264457604051633a954ecd60e21b815260040160405180910390fd5b61265060008487612526565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612726576000548214612726578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156127a2575060005481105b1561288257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906128805780516001600160a01b031615612816579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561287b579392505050565b612816565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612922903390899088908890600401613498565b6020604051808303816000875af192505050801561295d575060408051601f3d908101601f1916820190925261295a918101906134d5565b60015b6129b8573d80801561298b576040519150601f19603f3d011682016040523d82523d6000602084013e612990565b606091505b5080516129b0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610ea7906132fe565b606081612a095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a335780612a1d816134f2565b9150612a2c9050600a83613523565b9150612a0d565b60008167ffffffffffffffff811115612a4e57612a4e612fa7565b6040519080825280601f01601f191660200182016040528015612a78576020820181803683370190505b5090505b84156129ce57612a8d600183613537565b9150612a9a600a8661354e565b612aa5906030613259565b60f81b818381518110612aba57612aba613562565b60200101906001600160f81b031916908160001a905350612adc600a86613523565b9450612a7c565b600081815b8451811015612b4f576000858281518110612b0557612b05613562565b60200260200101519050808311612b2b5760008381526020829052604090209250612b3c565b600081815260208490526040902092505b5080612b47816134f2565b915050612ae8565b509392505050565b61108583838360016000546001600160a01b038516612b8857604051622e076360e81b815260040160405180910390fd5b83612ba65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612c5357506001600160a01b0387163b15155b15612cdc575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612ca460008884806001019550886128ed565b612cc1576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612c59578260005414612cd757600080fd5b612d22565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612cdd575b5060005561276b565b828054612d37906132fe565b90600052602060002090601f016020900481019282612d595760008555612d9f565b82601f10612d7257805160ff1916838001178555612d9f565b82800160010185558215612d9f579182015b82811115612d9f578251825591602001919060010190612d84565b50612dab929150612daf565b5090565b5b80821115612dab5760008155600101612db0565b6001600160e01b03198116811461184357600080fd5b600060208284031215612dec57600080fd5b8135611e7681612dc4565b801515811461184357600080fd5b600060208284031215612e1757600080fd5b8135611e7681612df7565b600060208284031215612e3457600080fd5b5035919050565b600080600060408486031215612e5057600080fd5b83359250602084013567ffffffffffffffff80821115612e6f57600080fd5b818601915086601f830112612e8357600080fd5b813581811115612e9257600080fd5b8760208260051b8501011115612ea757600080fd5b6020830194508093505050509250925092565b60005b83811015612ed5578181015183820152602001612ebd565b83811115611c6d5750506000910152565b60008151808452612efe816020860160208601612eba565b601f01601f19169290920160200192915050565b602081526000611e766020830184612ee6565b80356001600160a01b0381168114612f3c57600080fd5b919050565b60008060408385031215612f5457600080fd5b612f5d83612f25565b946020939093013593505050565b600080600060608486031215612f8057600080fd5b612f8984612f25565b9250612f9760208501612f25565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612fd857612fd8612fa7565b604051601f8501601f19908116603f0116810190828211818310171561300057613000612fa7565b8160405280935085815286868601111561301957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561304557600080fd5b813567ffffffffffffffff81111561305c57600080fd5b8201601f8101841361306d57600080fd5b6129ce84823560208401612fbd565b60006020828403121561308e57600080fd5b611e7682612f25565b600080604083850312156130aa57600080fd5b823591506130ba60208401612f25565b90509250929050565b600080604083850312156130d657600080fd5b6130df83612f25565b915060208301356130ef81612df7565b809150509250929050565b6000806000806080858703121561311057600080fd5b61311985612f25565b935061312760208601612f25565b925060408501359150606085013567ffffffffffffffff81111561314a57600080fd5b8501601f8101871361315b57600080fd5b61316a87823560208401612fbd565b91505092959194509250565b6000806040838503121561318957600080fd5b61319283612f25565b91506130ba60208401612f25565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601b908201527f43433a206f6f707320636f6e7472616374206973207061757365640000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561326c5761326c613243565b500190565b6020808252601f908201527f43433a204d6178204e4654205065722057616c6c657420657863656564656400604082015260600190565b6020808252601f908201527f43433a206e65656420746f206d696e74206174206c656173742031204e465400604082015260600190565b60008160001904831182151516156132f9576132f9613243565b500290565b600181811c9082168061331257607f821691505b6020821081141561333357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526023908201527f43433a206d6178206d696e7420616d6f756e742070657220747820657863656560408201526219195960ea1b606082015260800190565b60006020828403121561338e57600080fd5b5051919050565b602080825260089082015267131bddc815d4931160c21b604082015260600190565b6000602082840312156133c957600080fd5b8151611e7681612df7565b6000845160206133e78285838a01612eba565b8551918401916133fa8184848a01612eba565b8554920191600090600181811c908083168061341757607f831692505b85831081141561343557634e487b7160e01b85526022600452602485fd5b808015613449576001811461345a57613487565b60ff19851688528388019550613487565b60008b81526020902060005b8581101561347f5781548a820152908401908801613466565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134cb90830184612ee6565b9695505050505050565b6000602082840312156134e757600080fd5b8151611e7681612dc4565b600060001982141561350657613506613243565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826135325761353261350d565b500490565b60008282101561354957613549613243565b500390565b60008261355d5761355d61350d565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220fdfaeab173bc3c0b521f689a71e84a586af41338bd9158d35613f6f8c7e2acb164736f6c634300080c0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53544b70313941434541515a757434536a48703251555843684374796e4e71344e736a534b325741585046652f00000000000000000000000000000000000000000000000000000000000000000000000000000000004a697066733a2f2f516d58394771744d7a6a5452645554384169667246434c6b7a76654177735a4d6f703243635967773441427970742f48696464656e5f4d657461646174612e6a736f6e00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmSTKp19ACEAQZut4SjHp2QUXChCtynNq4NsjSK2WAXPFe/
Arg [1] : _initNotRevealedUri (string): ipfs://QmX9GqtMzjTRdUT8AifrFCLkzveAwsZMop2CcYgw4ABypt/Hidden_Metadata.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d53544b70313941434541515a757434536a487032515558
Arg [4] : 43684374796e4e71344e736a534b325741585046652f00000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000004a
Arg [6] : 697066733a2f2f516d58394771744d7a6a5452645554384169667246434c6b7a
Arg [7] : 76654177735a4d6f703243635967773441427970742f48696464656e5f4d6574
Arg [8] : 61646174612e6a736f6e00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50399:8231:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50867:33;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;50867:33:0;;;;;;;;32516:305;;;;;;;;;;-1:-1:-1;32516:305:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;32516:305:0;582:187:1;58018:73:0;;;;;;;;;;-1:-1:-1;58018:73:0;;;;;:::i;:::-;;:::i;:::-;;57255:90;;;;;;;;;;-1:-1:-1;57255:90:0;;;;;:::i;:::-;;:::i;52616:852::-;;;;;;:::i;:::-;;:::i;35629:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37132:204::-;;;;;;;;;;-1:-1:-1;37132:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2931:32:1;;;2913:51;;2901:2;2886:18;37132:204:0;2767:203:1;50562:28:0;;;;;;;;;;;;;:::i;36695:371::-;;;;;;;;;;-1:-1:-1;36695:371:0;;;;;:::i;:::-;;:::i;50795:30::-;;;;;;;;;;;;;;;;50595:32;;;;;;;;;;;;;;;;57458:94;;;;;;;;;;-1:-1:-1;57458:94:0;;;;;:::i;:::-;;:::i;31765:303::-;;;;;;;;;;;;;:::i;56965:98::-;;;;;;;;;;-1:-1:-1;56965:98:0;;;;;:::i;:::-;;:::i;53478:875::-;;;;;;;;;;-1:-1:-1;53478:875:0;;;;;:::i;:::-;;:::i;37997:170::-;;;;;;;;;;-1:-1:-1;37997:170:0;;;;;:::i;:::-;;:::i;51121:94::-;;;;;;;;;;;;;;;;51086:30;;;;;;;;;;-1:-1:-1;51086:30:0;;;;;;;;;;;58304:323;;;:::i;38238:185::-;;;;;;;;;;-1:-1:-1;38238:185:0;;;;;:::i;:::-;;:::i;57071:80::-;;;;;;;;;;-1:-1:-1;57071:80:0;;;;;:::i;:::-;;:::i;57560:92::-;;;;;;;;;;-1:-1:-1;57560:92:0;;;;;:::i;:::-;;:::i;51022:28::-;;;;;;;;;;-1:-1:-1;51022:28:0;;;;;;;;;;;57658:98;;;;;;;;;;-1:-1:-1;57658:98:0;;;;;:::i;:::-;;:::i;51055:26::-;;;;;;;;;;-1:-1:-1;51055:26:0;;;;;;;;;;;50991;;;;;;;;;;-1:-1:-1;50991:26:0;;;;;;;;50671:38;;;;;;;;;;;;;;;;35437:125;;;;;;;;;;-1:-1:-1;35437:125:0;;;;;:::i;:::-;;:::i;50494:21::-;;;;;;;;;;;;;:::i;50632:34::-;;;;;;;;;;;;;;;;32885:206;;;;;;;;;;-1:-1:-1;32885:206:0;;;;;:::i;:::-;;:::i;10274:103::-;;;;;;;;;;;;;:::i;56551:106::-;;;;;;;;;;-1:-1:-1;56551:106:0;;;;;:::i;:::-;;:::i;51770:114::-;;;;;;;;;;;;;:::i;55500:318::-;;;;;;;;;;-1:-1:-1;55500:318:0;;;;;:::i;:::-;;:::i;9623:87::-;;;;;;;;;;-1:-1:-1;9696:6:0;;-1:-1:-1;;;;;9696:6:0;9623:87;;56467:78;;;;;;;;;;-1:-1:-1;56467:78:0;;;;;:::i;:::-;;:::i;35798:104::-;;;;;;;;;;;;;:::i;51905:666::-;;;;;;:::i;:::-;;:::i;37408:287::-;;;;;;;;;;-1:-1:-1;37408:287:0;;;;;:::i;:::-;;:::i;38494:369::-;;;;;;;;;;-1:-1:-1;38494:369:0;;;;;:::i;:::-;;:::i;50830:32::-;;;;;;;;;;;;;;;;56765:96;;;;;;;;;;-1:-1:-1;56765:96:0;;;;;:::i;:::-;;:::i;50714:40::-;;;;;;;;;;;;;;;;57355:95;;;;;;;;;;-1:-1:-1;57355:95:0;;;;;:::i;:::-;;:::i;50520:37::-;;;;;;;;;;;;;:::i;56867:90::-;;;;;;;;;;-1:-1:-1;56867:90:0;;;;;:::i;:::-;;:::i;55832:498::-;;;;;;;;;;-1:-1:-1;55832:498:0;;;;;:::i;:::-;;:::i;54365:1086::-;;;;;;;;;;-1:-1:-1;54365:1086:0;;;;;:::i;:::-;;:::i;50759:31::-;;;;;;;;;;;;;;;;50905:29;;;;;;;;;;;;;;;;57762:122;;;;;;;;;;-1:-1:-1;57762:122:0;;;;;:::i;:::-;;:::i;56338:107::-;;;;;;;;;;-1:-1:-1;56338:107:0;;;;;:::i;:::-;;:::i;56665:92::-;;;;;;;;;;-1:-1:-1;56665:92:0;;;;;:::i;:::-;;:::i;37766:164::-;;;;;;;;;;-1:-1:-1;37766:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37887:25:0;;;37863:4;37887:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37766:164;50939:28;;;;;;;;;;;;;;;;57159:88;;;;;;;;;;-1:-1:-1;57159:88:0;;;;;:::i;:::-;;:::i;57892:120::-;;;;;;;;;;-1:-1:-1;57892:120:0;;;;;:::i;:::-;;:::i;10532:201::-;;;;;;;;;;-1:-1:-1;10532:201:0;;;;;:::i;:::-;;:::i;58197:96::-;;;;;;;;;;-1:-1:-1;58197:96:0;;;;;:::i;:::-;;:::i;58099:90::-;;;;;;;;;;-1:-1:-1;58099:90:0;;;;;:::i;:::-;;:::i;32516:305::-;32618:4;-1:-1:-1;;;;;;32655:40:0;;-1:-1:-1;;;32655:40:0;;:105;;-1:-1:-1;;;;;;;32712:48:0;;-1:-1:-1;;;32712:48:0;32655:105;:158;;;-1:-1:-1;;;;;;;;;;22516:40:0;;;32777:36;32635:178;32516:305;-1:-1:-1;;32516:305:0:o;58018:73::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;;;;;;;;;58070:6:::1;:15:::0;;-1:-1:-1;;58070:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58018:73::o;57255:90::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;57318:10:::1;:21:::0;57255:90::o;52616:852::-;4597:1;5195:7;;:19;;5187:63;;;;-1:-1:-1;;;5187:63:0;;;;;;;:::i;:::-;4597:1;5328:7;:18;52728:10:::1;52742:9;52728:23;52720:32;;;::::0;::::1;;52768:6;::::0;::::1;;52767:7;52759:47;;;;-1:-1:-1::0;;;52759:47:0::1;;;;;;;:::i;:::-;52821:7;::::0;;;::::1;;;52813:50;;;::::0;-1:-1:-1;;;52813:50:0;;8323:2:1;52813:50:0::1;::::0;::::1;8305:21:1::0;8362:2;8342:18;;;8335:30;8401:32;8381:18;;;8374:60;8451:18;;52813:50:0::1;8121:354:1::0;52813:50:0::1;52878:84;52897:11;;52878:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;52910:10:0::1;::::0;52932:28:::1;::::0;-1:-1:-1;;52949:10:0::1;8629:2:1::0;8625:15;8621:53;52932:28:0::1;::::0;::::1;8609:66:1::0;52910:10:0;;-1:-1:-1;8691:12:1;;;-1:-1:-1;52932:28:0::1;;;;;;;;;;;;;52922:39;;;;;;52878:18;:84::i;:::-;52870:124;;;::::0;-1:-1:-1;;;52870:124:0;;8916:2:1;52870:124:0::1;::::0;::::1;8898:21:1::0;8955:2;8935:18;;;8928:30;8994:29;8974:18;;;8967:57;9041:18;;52870:124:0::1;8714:351:1::0;52870:124:0::1;53001:14;53018:13;:11;:13::i;:::-;53001:30;;53086:14;;53076:6;53046:27;53060:12;8427:10:::0;;8347:98;53060:12:::1;-1:-1:-1::0;;;;;33269:19:0;33234:7;33269:19;;;:12;:19;;;;;:32;-1:-1:-1;;;33269:32:0;;;;;33173:137;53046:27:::1;:36;;;;:::i;:::-;:54;;53038:98;;;;-1:-1:-1::0;;;53038:98:0::1;;;;;;;:::i;:::-;53160:1;53151:6;:10;53143:54;;;;-1:-1:-1::0;;;53143:54:0::1;;;;;;;:::i;:::-;53222:10;;53212:6;:20;;53204:61;;;::::0;-1:-1:-1;;;53204:61:0;;10257:2:1;53204:61:0::1;::::0;::::1;10239:21:1::0;10296:2;10276:18;;;10269:30;10335;10315:18;;;10308:58;10383:18;;53204:61:0::1;10055:352:1::0;53204:61:0::1;53299:8;::::0;53280:15:::1;53289:6:::0;53280;:15:::1;:::i;:::-;:27;;53272:72;;;::::0;-1:-1:-1;;;53272:72:0;;10614:2:1;53272:72:0::1;::::0;::::1;10596:21:1::0;;;10633:18;;;10626:30;10692:34;10672:18;;;10665:62;10744:18;;53272:72:0::1;10412:356:1::0;53272:72:0::1;53381:6;53372;;:15;;;;:::i;:::-;53359:9;:28;;53351:63;;;::::0;-1:-1:-1;;;53351:63:0;;11148:2:1;53351:63:0::1;::::0;::::1;11130:21:1::0;11187:2;11167:18;;;11160:30;-1:-1:-1;;;11206:18:1;;;11199:52;11268:18;;53351:63:0::1;10946:346:1::0;53351:63:0::1;53425:31;8427:10:::0;53435:12:::1;53449:6;53425:9;:31::i;:::-;-1:-1:-1::0;;4553:1:0;5507:7;:22;-1:-1:-1;;52616:852:0:o;35629:100::-;35683:13;35716:5;35709:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35629:100;:::o;37132:204::-;37200:7;37225:16;37233:7;37225;:16::i;:::-;37220:64;;37250:34;;-1:-1:-1;;;37250:34:0;;;;;;;;;;;37220:64;-1:-1:-1;37304:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37304:24:0;;37132:204::o;50562:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36695:371::-;36768:13;36784:24;36800:7;36784:15;:24::i;:::-;36768:40;;36829:5;-1:-1:-1;;;;;36823:11:0;:2;-1:-1:-1;;;;;36823:11:0;;36819:48;;;36843:24;;-1:-1:-1;;;36843:24:0;;;;;;;;;;;36819:48;8427:10;-1:-1:-1;;;;;36884:21:0;;;;;;:63;;-1:-1:-1;36910:37:0;36927:5;8427:10;37766:164;:::i;36910:37::-;36909:38;36884:63;36880:138;;;36971:35;;-1:-1:-1;;;36971:35:0;;;;;;;;;;;36880:138;37030:28;37039:2;37043:7;37052:5;37030:8;:28::i;:::-;36757:309;36695:371;;:::o;57458:94::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;57524:9:::1;:22:::0;57458:94::o;31765:303::-;51749:1;32019:12;31809:7;32003:13;:28;-1:-1:-1;;32003:46:0;;31765:303::o;56965:98::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;57033:10:::1;:24:::0;56965:98::o;53478:875::-;4597:1;5195:7;;:19;;5187:63;;;;-1:-1:-1;;;5187:63:0;;;;;;;:::i;:::-;4597:1;5328:7;:18;53552:10:::1;53566:9;53552:23;53544:32;;;::::0;::::1;;53595:6;::::0;::::1;;53594:7;53586:47;;;;-1:-1:-1::0;;;53586:47:0::1;;;;;;;:::i;:::-;53651:10;::::0;;;::::1;;;53643:50;;;::::0;-1:-1:-1;;;53643:50:0;;11884:2:1;53643:50:0::1;::::0;::::1;11866:21:1::0;11923:2;11903:18;;;11896:30;11962:29;11942:18;;;11935:57;12009:18;;53643:50:0::1;11682:351:1::0;53643:50:0::1;53703:14;53720:13;:11;:13::i;:::-;53703:30;;53760:1;53751:6;:10;53743:54;;;;-1:-1:-1::0;;;53743:54:0::1;;;;;;;:::i;:::-;53825:8;;53815:6;:18;;53807:66;;;;-1:-1:-1::0;;;53807:66:0::1;;;;;;;:::i;:::-;53910:9;::::0;53891:15:::1;53900:6:::0;53891;:15:::1;:::i;:::-;:28;;53883:55;;;::::0;-1:-1:-1;;;53883:55:0;;12644:2:1;53883:55:0::1;::::0;::::1;12626:21:1::0;12683:2;12663:18;;;12656:30;-1:-1:-1;;;12702:18:1;;;12695:44;12756:18;;53883:55:0::1;12442:338:1::0;53883:55:0::1;53996:12;::::0;53986:6;53956:27:::1;8427:10:::0;53046:13:::1;:27::i;53956:::-;:36;;;;:::i;:::-;:52;;53948:96;;;;-1:-1:-1::0;;;53948:96:0::1;;;;;;;:::i;:::-;54085:6;::::0;:28:::1;::::0;-1:-1:-1;;;54085:28:0;;54102:10:::1;54085:28;::::0;::::1;2913:51:1::0;-1:-1:-1;;;;;54085:6:0;;::::1;::::0;:16:::1;::::0;2886:18:1;;54085:28:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54075:6;54062:10;;:19;;;;:::i;:::-;:51;;54054:72;;;;-1:-1:-1::0;;;54054:72:0::1;;;;;;;:::i;:::-;54167:6;::::0;:43:::1;::::0;-1:-1:-1;;;54167:43:0;;54184:10:::1;54167:43;::::0;::::1;13522:34:1::0;54204:4:0::1;13572:18:1::0;;;13565:43;-1:-1:-1;;;;;54167:6:0;;::::1;::::0;:16:::1;::::0;13457:18:1;;54167:43:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54157:6;54144:10;;:19;;;;:::i;:::-;:66;;54136:87;;;;-1:-1:-1::0;;;54136:87:0::1;;;;;;;:::i;:::-;54236:6;::::0;54283:10:::1;::::0;-1:-1:-1;;;;;54236:6:0;;::::1;::::0;:19:::1;::::0;54256:10:::1;::::0;54276:4:::1;::::0;54283:19:::1;::::0;54296:6;;54283:19:::1;:::i;:::-;54236:67;::::0;-1:-1:-1;;;;;;54236:67:0::1;::::0;;;;;;-1:-1:-1;;;;;13877:15:1;;;54236:67:0::1;::::0;::::1;13859:34:1::0;13929:15;;;;13909:18;;;13902:43;13961:18;;;13954:34;13794:18;;54236:67:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54316:29;54326:10;54338:6;54316:9;:29::i;:::-;-1:-1:-1::0;;4553:1:0;5507:7;:22;53478:875::o;37997:170::-;38131:28;38141:4;38147:2;38151:7;38131:9;:28::i;58304:323::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;4597:1:::1;5195:7;;:19;;5187:63;;;;-1:-1:-1::0;;;5187:63:0::1;;;;;;;:::i;:::-;4597:1;5328:7;:18:::0;58388:90:::2;::::0;58370:12:::2;::::0;58396:42:::2;::::0;58452:21:::2;::::0;58370:12;58388:90;58370:12;58388:90;58452:21;58396:42;58388:90:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58369:109;;;58493:7;58485:16;;;::::0;::::2;;58508:6;::::0;58589:31:::2;::::0;-1:-1:-1;;;58589:31:0;;58536:4:::2;58589:31;::::0;::::2;2913:51:1::0;;;-1:-1:-1;;;;;58508:6:0;;::::2;::::0;:19:::2;::::0;58544:42:::2;::::0;58508:6;;58589:16:::2;::::0;2886:18:1;;58589:31:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58508:113;::::0;-1:-1:-1;;;;;;58508:113:0::2;::::0;;;;;;-1:-1:-1;;;;;13877:15:1;;;58508:113:0::2;::::0;::::2;13859:34:1::0;13929:15;;;;13909:18;;;13902:43;13961:18;;;13954:34;13794:18;;58508:113:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;4553:1:0::1;5507:7;:22:::0;-1:-1:-1;;;58304:323:0:o;38238:185::-;38376:39;38393:4;38399:2;38403:7;38376:39;;;;;;;;;;;;:16;:39::i;57071:80::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;57130:4:::1;:15:::0;57071:80::o;57560:92::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;57625:8:::1;:21:::0;57560:92::o;57658:98::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;57729:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57658:98:::0;:::o;35437:125::-;35501:7;35528:21;35541:7;35528:12;:21::i;:::-;:26;;35437:125;-1:-1:-1;;35437:125:0:o;50494:21::-;;;;;;;:::i;32885:206::-;32949:7;-1:-1:-1;;;;;32973:19:0;;32969:60;;33001:28;;-1:-1:-1;;;33001:28:0;;;;;;;;;;;32969:60;-1:-1:-1;;;;;;33055:19:0;;;;;:12;:19;;;;;:27;;;;32885:206::o;10274:103::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;10339:30:::1;10366:1;10339:18;:30::i;:::-;10274:103::o:0;56551:106::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;56625:10:::1;:24:::0;56551:106::o;51770:114::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;51820:6:::1;::::0;:56:::1;::::0;-1:-1:-1;;;51820:56:0;;51843:4:::1;51820:56;::::0;::::1;14415:51:1::0;51850:25:0::1;14482:18:1::0;;;14475:34;-1:-1:-1;;;;;51820:6:0;;::::1;::::0;:14:::1;::::0;14388:18:1;;51820:56:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51770:114::o:0;55500:318::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;4597:1:::1;5195:7;;:19;;5187:63;;;;-1:-1:-1::0;;;5187:63:0::1;;;;;;;:::i;:::-;4597:1;5328:7;:18:::0;55601:15;55593:55:::2;;;::::0;-1:-1:-1;;;55593:55:0;;14972:2:1;55593:55:0::2;::::0;::::2;14954:21:1::0;15011:2;14991:18;;;14984:30;15050:29;15030:18;;;15023:57;15097:18;;55593:55:0::2;14770:351:1::0;55593:55:0::2;55655:14;55672:13;:11;:13::i;:::-;55724:9;::::0;55655:30;;-1:-1:-1;55700:20:0::2;55709:11:::0;55655:30;55700:20:::2;:::i;:::-;:33;;55692:68;;;::::0;-1:-1:-1;;;55692:68:0;;15328:2:1;55692:68:0::2;::::0;::::2;15310:21:1::0;15367:2;15347:18;;;15340:30;-1:-1:-1;;;15386:18:1;;;15379:52;15448:18;;55692:68:0::2;15126:346:1::0;55692:68:0::2;55771:35;55781:11;55794;55771:9;:35::i;:::-;-1:-1:-1::0;;4553:1:0::1;5507:7;:22:::0;-1:-1:-1;55500:318:0:o;56467:78::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;56522:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;56522:17:0;;::::1;::::0;;;::::1;::::0;;56467:78::o;35798:104::-;35854:13;35887:7;35880:14;;;;;:::i;51905:666::-;4597:1;5195:7;;:19;;5187:63;;;;-1:-1:-1;;;5187:63:0;;;;;;;:::i;:::-;4597:1;5328:7;:18;51978:10:::1;51992:9;51978:23;51970:32;;;::::0;::::1;;52018:6;::::0;::::1;;52017:7;52009:47;;;;-1:-1:-1::0;;;52009:47:0::1;;;;;;;:::i;:::-;52071:10;::::0;;;::::1;;;52063:50;;;::::0;-1:-1:-1;;;52063:50:0;;11884:2:1;52063:50:0::1;::::0;::::1;11866:21:1::0;11923:2;11903:18;;;11896:30;11962:29;11942:18;;;11935:57;12009:18;;52063:50:0::1;11682:351:1::0;52063:50:0::1;52120:14;52137:13;:11;:13::i;:::-;52120:30;;52174:1;52165:6;:10;52157:54;;;;-1:-1:-1::0;;;52157:54:0::1;;;;;;;:::i;:::-;52236:8;;52226:6;:18;;52218:66;;;;-1:-1:-1::0;;;52218:66:0::1;;;;;;;:::i;:::-;52318:9;::::0;52299:15:::1;52308:6:::0;52299;:15:::1;:::i;:::-;:28;;52291:55;;;::::0;-1:-1:-1;;;52291:55:0;;12644:2:1;52291:55:0::1;::::0;::::1;12626:21:1::0;12683:2;12663:18;;;12656:30;-1:-1:-1;;;12702:18:1;;;12695:44;12756:18;;52291:55:0::1;12442:338:1::0;52291:55:0::1;52401:12;::::0;52391:6;52361:27:::1;8427:10:::0;53046:13:::1;:27::i;52361:::-;:36;;;;:::i;:::-;:52;;52353:96;;;;-1:-1:-1::0;;;52353:96:0::1;;;;;;;:::i;:::-;52484:6;52477:4;;:13;;;;:::i;:::-;52464:9;:26;;52456:61;;;::::0;-1:-1:-1;;;52456:61:0;;11148:2:1;52456:61:0::1;::::0;::::1;11130:21:1::0;11187:2;11167:18;;;11160:30;-1:-1:-1;;;11206:18:1;;;11199:52;11268:18;;52456:61:0::1;10946:346:1::0;52456:61:0::1;52528:31;8427:10:::0;52552:6:::1;52528:9;:31::i;37408:287::-:0;-1:-1:-1;;;;;37507:24:0;;8427:10;37507:24;37503:54;;;37540:17;;-1:-1:-1;;;37540:17:0;;;;;;;;;;;37503:54;8427:10;37570:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37570:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37570:53:0;;;;;;;;;;37639:48;;722:41:1;;;37570:42:0;;8427:10;37639:48;;695:18:1;37639:48:0;;;;;;;37408:287;;:::o;38494:369::-;38661:28;38671:4;38677:2;38681:7;38661:9;:28::i;:::-;-1:-1:-1;;;;;38704:13:0;;12619:19;:23;;38704:76;;;;;38724:56;38755:4;38761:2;38765:7;38774:5;38724:30;:56::i;:::-;38723:57;38704:76;38700:156;;;38804:40;;-1:-1:-1;;;38804:40:0;;;;;;;;;;;38700:156;38494:369;;;;:::o;56765:96::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;56832:14:::1;:23:::0;56765:96::o;57355:95::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;57420:13:::1;:24:::0;57355:95::o;50520:37::-;;;;;;;:::i;56867:90::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;56931:8:::1;:20:::0;56867:90::o;55832:498::-;55930:13;55971:16;55979:7;55971;:16::i;:::-;55955:98;;;;-1:-1:-1;;;55955:98:0;;15679:2:1;55955:98:0;;;15661:21:1;15718:2;15698:18;;;15691:30;15757:34;15737:18;;;15730:62;-1:-1:-1;;;15808:18:1;;;15801:46;15864:19;;55955:98:0;15477:412:1;55955:98:0;56069:8;;;;;;;56066:62;;56106:14;56099:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55832:498;;;:::o;56066:62::-;56136:28;56167:10;:8;:10::i;:::-;56136:41;;56222:1;56197:14;56191:28;:32;:133;;;;;;;;;;;;;;;;;56259:14;56275:18;:7;:16;:18::i;:::-;56295:13;56242:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56191:133;56184:140;55832:498;-1:-1:-1;;;55832:498:0:o;54365:1086::-;4597:1;5195:7;;:19;;5187:63;;;;-1:-1:-1;;;5187:63:0;;;;;;;:::i;:::-;4597:1;5328:7;:18;54479:10:::1;54493:9;54479:23;54471:32;;;::::0;::::1;;54523:6;::::0;::::1;;54522:7;54514:47;;;;-1:-1:-1::0;;;54514:47:0::1;;;;;;;:::i;:::-;54580:7;::::0;;;::::1;;;54572:50;;;::::0;-1:-1:-1;;;54572:50:0;;8323:2:1;54572:50:0::1;::::0;::::1;8305:21:1::0;8362:2;8342:18;;;8335:30;8401:32;8381:18;;;8374:60;8451:18;;54572:50:0::1;8121:354:1::0;54572:50:0::1;54641:84;54660:11;;54641:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;54673:10:0::1;::::0;54695:28:::1;::::0;-1:-1:-1;;54712:10:0::1;8629:2:1::0;8625:15;8621:53;54695:28:0::1;::::0;::::1;8609:66:1::0;54673:10:0;;-1:-1:-1;8691:12:1;;;-1:-1:-1;54695:28:0::1;8480:229:1::0;54641:84:0::1;54633:124;;;::::0;-1:-1:-1;;;54633:124:0;;8916:2:1;54633:124:0::1;::::0;::::1;8898:21:1::0;8955:2;8935:18;;;8928:30;8994:29;8974:18;;;8967:57;9041:18;;54633:124:0::1;8714:351:1::0;54633:124:0::1;54768:14;54785:13;:11;:13::i;:::-;54768:30;;54857:14;;54847:6;54817:27;54831:12;8427:10:::0;;8347:98;54817:27:::1;:36;;;;:::i;:::-;:54;;54809:98;;;;-1:-1:-1::0;;;54809:98:0::1;;;;;;;:::i;:::-;54935:1;54926:6;:10;54918:54;;;;-1:-1:-1::0;;;54918:54:0::1;;;;;;;:::i;:::-;55001:10;;54991:6;:20;;54983:61;;;::::0;-1:-1:-1;;;54983:61:0;;10257:2:1;54983:61:0::1;::::0;::::1;10239:21:1::0;10296:2;10276:18;;;10269:30;10335;10315:18;;;10308:58;10383:18;;54983:61:0::1;10055:352:1::0;54983:61:0::1;55082:8;::::0;55063:15:::1;55072:6:::0;55063;:15:::1;:::i;:::-;:27;;55055:72;;;::::0;-1:-1:-1;;;55055:72:0;;10614:2:1;55055:72:0::1;::::0;::::1;10596:21:1::0;;;10633:18;;;10626:30;10692:34;10672:18;;;10665:62;10744:18;;55055:72:0::1;10412:356:1::0;55055:72:0::1;55172:6;::::0;:28:::1;::::0;-1:-1:-1;;;55172:28:0;;55189:10:::1;55172:28;::::0;::::1;2913:51:1::0;-1:-1:-1;;;;;55172:6:0;;::::1;::::0;:16:::1;::::0;2886:18:1;;55172:28:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55162:6;55146:13;;:22;;;;:::i;:::-;:54;;55138:75;;;;-1:-1:-1::0;;;55138:75:0::1;;;;;;;:::i;:::-;55258:6;::::0;:43:::1;::::0;-1:-1:-1;;;55258:43:0;;55275:10:::1;55258:43;::::0;::::1;13522:34:1::0;55295:4:0::1;13572:18:1::0;;;13565:43;-1:-1:-1;;;;;55258:6:0;;::::1;::::0;:16:::1;::::0;13457:18:1;;55258:43:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55248:6;55232:13;;:22;;;;:::i;:::-;:69;;55224:90;;;;-1:-1:-1::0;;;55224:90:0::1;;;;;;;:::i;:::-;55327:6;::::0;55374:13:::1;::::0;-1:-1:-1;;;;;55327:6:0;;::::1;::::0;:19:::1;::::0;55347:10:::1;::::0;55367:4:::1;::::0;55374:22:::1;::::0;55390:6;;55374:22:::1;:::i;:::-;55327:70;::::0;-1:-1:-1;;;;;;55327:70:0::1;::::0;;;;;;-1:-1:-1;;;;;13877:15:1;;;55327:70:0::1;::::0;::::1;13859:34:1::0;13929:15;;;;13909:18;;;13902:43;13961:18;;;13954:34;13794:18;;55327:70:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;55408:31;55418:12;8427:10:::0;;8347:98;57762:122;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;57845:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;56338:107::-:0;56396:7;56419:20;56433:5;56419:13;:20::i;56665:92::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;56730:12:::1;:21:::0;56665:92::o;57159:88::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;57222:6:::1;:19:::0;57159:88::o;57892:120::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;57974:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;10532:201::-:0;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10621:22:0;::::1;10613:73;;;::::0;-1:-1:-1;;;10613:73:0;;17754:2:1;10613:73:0::1;::::0;::::1;17736:21:1::0;17793:2;17773:18;;;17766:30;17832:34;17812:18;;;17805:62;-1:-1:-1;;;17883:18:1;;;17876:36;17929:19;;10613:73:0::1;17552:402:1::0;10613:73:0::1;10697:28;10716:8;10697:18;:28::i;58197:96::-:0;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;58266:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;58266:19:0;;::::1;::::0;;;::::1;::::0;;58197:96::o;58099:90::-;9696:6;;-1:-1:-1;;;;;9696:6:0;8427:10;9843:23;9835:68;;;;-1:-1:-1;;;9835:68:0;;;;;;;:::i;:::-;58165:7:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;58165:16:0;;::::1;::::0;;;::::1;::::0;;58099:90::o;1319:190::-;1444:4;1497;1468:25;1481:5;1488:4;1468:12;:25::i;:::-;:33;;1319:190;-1:-1:-1;;;;1319:190:0:o;39313:104::-;39382:27;39392:2;39396:8;39382:27;;;;;;;;;;;;:9;:27::i;39118:187::-;39175:4;39218:7;51749:1;39199:26;;:53;;;;;39239:13;;39229:7;:23;39199:53;:98;;;;-1:-1:-1;;39270:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;39270:27:0;;;;39269:28;;39118:187::o;47288:196::-;47403:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47403:29:0;-1:-1:-1;;;;;47403:29:0;;;;;;;;;47448:28;;47403:24;;47448:28;;;;;;;47288:196;;;:::o;42231:2130::-;42346:35;42384:21;42397:7;42384:12;:21::i;:::-;42346:59;;42444:4;-1:-1:-1;;;;;42422:26:0;:13;:18;;;-1:-1:-1;;;;;42422:26:0;;42418:67;;42457:28;;-1:-1:-1;;;42457:28:0;;;;;;;;;;;42418:67;42498:22;8427:10;-1:-1:-1;;;;;42524:20:0;;;;:73;;-1:-1:-1;42561:36:0;42578:4;8427:10;37766:164;:::i;42561:36::-;42524:126;;;-1:-1:-1;8427:10:0;42614:20;42626:7;42614:11;:20::i;:::-;-1:-1:-1;;;;;42614:36:0;;42524:126;42498:153;;42669:17;42664:66;;42695:35;;-1:-1:-1;;;42695:35:0;;;;;;;;;;;42664:66;-1:-1:-1;;;;;42745:16:0;;42741:52;;42770:23;;-1:-1:-1;;;42770:23:0;;;;;;;;;;;42741:52;42914:35;42931:1;42935:7;42944:4;42914:8;:35::i;:::-;-1:-1:-1;;;;;43245:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;43245:31:0;;;;;;;-1:-1:-1;;43245:31:0;;;;;;;43291:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;43291:29:0;;;;;;;;;;;43371:20;;;:11;:20;;;;;;43406:18;;-1:-1:-1;;;;;;43439:49:0;;;;-1:-1:-1;;;43472:15:0;43439:49;;;;;;;;;;43762:11;;43822:24;;;;;43865:13;;43371:20;;43822:24;;43865:13;43861:384;;44075:13;;44060:11;:28;44056:174;;44113:20;;44182:28;;;;44156:54;;-1:-1:-1;;;44156:54:0;-1:-1:-1;;;;;;44156:54:0;;;-1:-1:-1;;;;;44113:20:0;;44156:54;;;;44056:174;43220:1036;;;44292:7;44288:2;-1:-1:-1;;;;;44273:27:0;44282:4;-1:-1:-1;;;;;44273:27:0;;;;;;;;;;;44311:42;42335:2026;;42231:2130;;;:::o;34266:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;34377:7:0;;51749:1;34426:23;;:47;;;;;34460:13;;34453:4;:20;34426:47;34422:886;;;34494:31;34528:17;;;:11;:17;;;;;;;;;34494:51;;;;;;;;;-1:-1:-1;;;;;34494:51:0;;;;-1:-1:-1;;;34494:51:0;;;;;;;;;;;-1:-1:-1;;;34494:51:0;;;;;;;;;;;;;;34564:729;;34614:14;;-1:-1:-1;;;;;34614:28:0;;34610:101;;34678:9;34266:1109;-1:-1:-1;;;34266:1109:0:o;34610:101::-;-1:-1:-1;;;35053:6:0;35098:17;;;;:11;:17;;;;;;;;;35086:29;;;;;;;;;-1:-1:-1;;;;;35086:29:0;;;;;-1:-1:-1;;;35086:29:0;;;;;;;;;;;-1:-1:-1;;;35086:29:0;;;;;;;;;;;;;35146:28;35142:109;;35214:9;34266:1109;-1:-1:-1;;;34266:1109:0:o;35142:109::-;35013:261;;;34475:833;34422:886;35336:31;;-1:-1:-1;;;35336:31:0;;;;;;;;;;;10893:191;10986:6;;;-1:-1:-1;;;;;11003:17:0;;;-1:-1:-1;;;;;;11003:17:0;;;;;;;11036:40;;10986:6;;;11003:17;10986:6;;11036:40;;10967:16;;11036:40;10956:128;10893:191;:::o;47976:667::-;48160:72;;-1:-1:-1;;;48160:72:0;;48139:4;;-1:-1:-1;;;;;48160:36:0;;;;;:72;;8427:10;;48211:4;;48217:7;;48226:5;;48160:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48160:72:0;;;;;;;;-1:-1:-1;;48160:72:0;;;;;;;;;;;;:::i;:::-;;;48156:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48394:13:0;;48390:235;;48440:40;;-1:-1:-1;;;48440:40:0;;;;;;;;;;;48390:235;48583:6;48577:13;48568:6;48564:2;48560:15;48553:38;48156:480;-1:-1:-1;;;;;;48279:55:0;-1:-1:-1;;;48279:55:0;;-1:-1:-1;48156:480:0;47976:667;;;;;;:::o;51547:102::-;51607:13;51636:7;51629:14;;;;;:::i;5909:723::-;5965:13;6186:10;6182:53;;-1:-1:-1;;6213:10:0;;;;;;;;;;;;-1:-1:-1;;;6213:10:0;;;;;5909:723::o;6182:53::-;6260:5;6245:12;6301:78;6308:9;;6301:78;;6334:8;;;;:::i;:::-;;-1:-1:-1;6357:10:0;;-1:-1:-1;6365:2:0;6357:10;;:::i;:::-;;;6301:78;;;6389:19;6421:6;6411:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6411:17:0;;6389:39;;6439:154;6446:10;;6439:154;;6473:11;6483:1;6473:11;;:::i;:::-;;-1:-1:-1;6542:10:0;6550:2;6542:5;:10;:::i;:::-;6529:24;;:2;:24;:::i;:::-;6516:39;;6499:6;6506;6499:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6499:56:0;;;;;;;;-1:-1:-1;6570:11:0;6579:2;6570:11;;:::i;:::-;;;6439:154;;1871:675;1954:7;1997:4;1954:7;2012:497;2036:5;:12;2032:1;:16;2012:497;;;2070:20;2093:5;2099:1;2093:8;;;;;;;;:::i;:::-;;;;;;;2070:31;;2136:12;2120;:28;2116:382;;2622:13;2672:15;;;2708:4;2701:15;;;2755:4;2739:21;;2248:57;;2116:382;;;2622:13;2672:15;;;2708:4;2701:15;;;2755:4;2739:21;;2425:57;;2116:382;-1:-1:-1;2050:3:0;;;;:::i;:::-;;;;2012:497;;;-1:-1:-1;2526:12:0;1871:675;-1:-1:-1;;;1871:675:0:o;39780:163::-;39903:32;39909:2;39913:8;39923:5;39930:4;40341:20;40364:13;-1:-1:-1;;;;;40392:16:0;;40388:48;;40417:19;;-1:-1:-1;;;40417:19:0;;;;;;;;;;;40388:48;40451:13;40447:44;;40473:18;;-1:-1:-1;;;40473:18:0;;;;;;;;;;;40447:44;-1:-1:-1;;;;;40842:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;40901:49:0;;40842:44;;;;;;;;40901:49;;;-1:-1:-1;;;;;40842:44:0;;;;;;40901:49;;;;;;;;;;;;;;;;40967:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;41017:66:0;;;;-1:-1:-1;;;41067:15:0;41017:66;;;;;;;;;;40967:25;41164:23;;;41208:4;:23;;;;-1:-1:-1;;;;;;41216:13:0;;12619:19;:23;;41216:15;41204:641;;;41252:314;41283:38;;41308:12;;-1:-1:-1;;;;;41283:38:0;;;41300:1;;41283:38;;41300:1;;41283:38;41349:69;41388:1;41392:2;41396:14;;;;;;41412:5;41349:30;:69::i;:::-;41344:174;;41454:40;;-1:-1:-1;;;41454:40:0;;;;;;;;;;;41344:174;41561:3;41545:12;:19;;41252:314;;41647:12;41630:13;;:29;41626:43;;41661:8;;;41626:43;41204:641;;;41710:120;41741:40;;41766:14;;;;;-1:-1:-1;;;;;41741:40:0;;;41758:1;;41741:40;;41758:1;;41741:40;41825:3;41809:12;:19;;41710:120;;41204:641;-1:-1:-1;41859:13:0;:28;41909:60;38494:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:118::-;860:5;853:13;846:21;839:5;836:32;826:60;;882:1;879;872:12;897:241;953:6;1006:2;994:9;985:7;981:23;977:32;974:52;;;1022:1;1019;1012:12;974:52;1061:9;1048:23;1080:28;1102:5;1080:28;:::i;1143:180::-;1202:6;1255:2;1243:9;1234:7;1230:23;1226:32;1223:52;;;1271:1;1268;1261:12;1223:52;-1:-1:-1;1294:23:1;;1143:180;-1:-1:-1;1143:180:1:o;1328:683::-;1423:6;1431;1439;1492:2;1480:9;1471:7;1467:23;1463:32;1460:52;;;1508:1;1505;1498:12;1460:52;1544:9;1531:23;1521:33;;1605:2;1594:9;1590:18;1577:32;1628:18;1669:2;1661:6;1658:14;1655:34;;;1685:1;1682;1675:12;1655:34;1723:6;1712:9;1708:22;1698:32;;1768:7;1761:4;1757:2;1753:13;1749:27;1739:55;;1790:1;1787;1780:12;1739:55;1830:2;1817:16;1856:2;1848:6;1845:14;1842:34;;;1872:1;1869;1862:12;1842:34;1925:7;1920:2;1910:6;1907:1;1903:14;1899:2;1895:23;1891:32;1888:45;1885:65;;;1946:1;1943;1936:12;1885:65;1977:2;1973;1969:11;1959:21;;1999:6;1989:16;;;;;1328:683;;;;;:::o;2016:258::-;2088:1;2098:113;2112:6;2109:1;2106:13;2098:113;;;2188:11;;;2182:18;2169:11;;;2162:39;2134:2;2127:10;2098:113;;;2229:6;2226:1;2223:13;2220:48;;;-1:-1:-1;;2264:1:1;2246:16;;2239:27;2016:258::o;2279:::-;2321:3;2359:5;2353:12;2386:6;2381:3;2374:19;2402:63;2458:6;2451:4;2446:3;2442:14;2435:4;2428:5;2424:16;2402:63;:::i;:::-;2519:2;2498:15;-1:-1:-1;;2494:29:1;2485:39;;;;2526:4;2481:50;;2279:258;-1:-1:-1;;2279:258:1:o;2542:220::-;2691:2;2680:9;2673:21;2654:4;2711:45;2752:2;2741:9;2737:18;2729:6;2711:45;:::i;2975:173::-;3043:20;;-1:-1:-1;;;;;3092:31:1;;3082:42;;3072:70;;3138:1;3135;3128:12;3072:70;2975:173;;;:::o;3153:254::-;3221:6;3229;3282:2;3270:9;3261:7;3257:23;3253:32;3250:52;;;3298:1;3295;3288:12;3250:52;3321:29;3340:9;3321:29;:::i;:::-;3311:39;3397:2;3382:18;;;;3369:32;;-1:-1:-1;;;3153:254:1:o;3412:328::-;3489:6;3497;3505;3558:2;3546:9;3537:7;3533:23;3529:32;3526:52;;;3574:1;3571;3564:12;3526:52;3597:29;3616:9;3597:29;:::i;:::-;3587:39;;3645:38;3679:2;3668:9;3664:18;3645:38;:::i;:::-;3635:48;;3730:2;3719:9;3715:18;3702:32;3692:42;;3412:328;;;;;:::o;3927:127::-;3988:10;3983:3;3979:20;3976:1;3969:31;4019:4;4016:1;4009:15;4043:4;4040:1;4033:15;4059:632;4124:5;4154:18;4195:2;4187:6;4184:14;4181:40;;;4201:18;;:::i;:::-;4276:2;4270:9;4244:2;4330:15;;-1:-1:-1;;4326:24:1;;;4352:2;4322:33;4318:42;4306:55;;;4376:18;;;4396:22;;;4373:46;4370:72;;;4422:18;;:::i;:::-;4462:10;4458:2;4451:22;4491:6;4482:15;;4521:6;4513;4506:22;4561:3;4552:6;4547:3;4543:16;4540:25;4537:45;;;4578:1;4575;4568:12;4537:45;4628:6;4623:3;4616:4;4608:6;4604:17;4591:44;4683:1;4676:4;4667:6;4659;4655:19;4651:30;4644:41;;;;4059:632;;;;;:::o;4696:451::-;4765:6;4818:2;4806:9;4797:7;4793:23;4789:32;4786:52;;;4834:1;4831;4824:12;4786:52;4874:9;4861:23;4907:18;4899:6;4896:30;4893:50;;;4939:1;4936;4929:12;4893:50;4962:22;;5015:4;5007:13;;5003:27;-1:-1:-1;4993:55:1;;5044:1;5041;5034:12;4993:55;5067:74;5133:7;5128:2;5115:16;5110:2;5106;5102:11;5067:74;:::i;5152:186::-;5211:6;5264:2;5252:9;5243:7;5239:23;5235:32;5232:52;;;5280:1;5277;5270:12;5232:52;5303:29;5322:9;5303:29;:::i;5528:254::-;5596:6;5604;5657:2;5645:9;5636:7;5632:23;5628:32;5625:52;;;5673:1;5670;5663:12;5625:52;5709:9;5696:23;5686:33;;5738:38;5772:2;5761:9;5757:18;5738:38;:::i;:::-;5728:48;;5528:254;;;;;:::o;5787:315::-;5852:6;5860;5913:2;5901:9;5892:7;5888:23;5884:32;5881:52;;;5929:1;5926;5919:12;5881:52;5952:29;5971:9;5952:29;:::i;:::-;5942:39;;6031:2;6020:9;6016:18;6003:32;6044:28;6066:5;6044:28;:::i;:::-;6091:5;6081:15;;;5787:315;;;;;:::o;6107:667::-;6202:6;6210;6218;6226;6279:3;6267:9;6258:7;6254:23;6250:33;6247:53;;;6296:1;6293;6286:12;6247:53;6319:29;6338:9;6319:29;:::i;:::-;6309:39;;6367:38;6401:2;6390:9;6386:18;6367:38;:::i;:::-;6357:48;;6452:2;6441:9;6437:18;6424:32;6414:42;;6507:2;6496:9;6492:18;6479:32;6534:18;6526:6;6523:30;6520:50;;;6566:1;6563;6556:12;6520:50;6589:22;;6642:4;6634:13;;6630:27;-1:-1:-1;6620:55:1;;6671:1;6668;6661:12;6620:55;6694:74;6760:7;6755:2;6742:16;6737:2;6733;6729:11;6694:74;:::i;:::-;6684:84;;;6107:667;;;;;;;:::o;6779:260::-;6847:6;6855;6908:2;6896:9;6887:7;6883:23;6879:32;6876:52;;;6924:1;6921;6914:12;6876:52;6947:29;6966:9;6947:29;:::i;:::-;6937:39;;6995:38;7029:2;7018:9;7014:18;6995:38;:::i;7044:356::-;7246:2;7228:21;;;7265:18;;;7258:30;7324:34;7319:2;7304:18;;7297:62;7391:2;7376:18;;7044:356::o;7405:355::-;7607:2;7589:21;;;7646:2;7626:18;;;7619:30;7685:33;7680:2;7665:18;;7658:61;7751:2;7736:18;;7405:355::o;7765:351::-;7967:2;7949:21;;;8006:2;7986:18;;;7979:30;8045:29;8040:2;8025:18;;8018:57;8107:2;8092:18;;7765:351::o;9070:127::-;9131:10;9126:3;9122:20;9119:1;9112:31;9162:4;9159:1;9152:15;9186:4;9183:1;9176:15;9202:128;9242:3;9273:1;9269:6;9266:1;9263:13;9260:39;;;9279:18;;:::i;:::-;-1:-1:-1;9315:9:1;;9202:128::o;9335:355::-;9537:2;9519:21;;;9576:2;9556:18;;;9549:30;9615:33;9610:2;9595:18;;9588:61;9681:2;9666:18;;9335:355::o;9695:::-;9897:2;9879:21;;;9936:2;9916:18;;;9909:30;9975:33;9970:2;9955:18;;9948:61;10041:2;10026:18;;9695:355::o;10773:168::-;10813:7;10879:1;10875;10871:6;10867:14;10864:1;10861:21;10856:1;10849:9;10842:17;10838:45;10835:71;;;10886:18;;:::i;:::-;-1:-1:-1;10926:9:1;;10773:168::o;11297:380::-;11376:1;11372:12;;;;11419;;;11440:61;;11494:4;11486:6;11482:17;11472:27;;11440:61;11547:2;11539:6;11536:14;11516:18;11513:38;11510:161;;;11593:10;11588:3;11584:20;11581:1;11574:31;11628:4;11625:1;11618:15;11656:4;11653:1;11646:15;11510:161;;11297:380;;;:::o;12038:399::-;12240:2;12222:21;;;12279:2;12259:18;;;12252:30;12318:34;12313:2;12298:18;;12291:62;-1:-1:-1;;;12384:2:1;12369:18;;12362:33;12427:3;12412:19;;12038:399::o;12785:184::-;12855:6;12908:2;12896:9;12887:7;12883:23;12879:32;12876:52;;;12924:1;12921;12914:12;12876:52;-1:-1:-1;12947:16:1;;12785:184;-1:-1:-1;12785:184:1:o;12974:331::-;13176:2;13158:21;;;13215:1;13195:18;;;13188:29;-1:-1:-1;;;13248:2:1;13233:18;;13226:38;13296:2;13281:18;;12974:331::o;14520:245::-;14587:6;14640:2;14628:9;14619:7;14615:23;14611:32;14608:52;;;14656:1;14653;14646:12;14608:52;14688:9;14682:16;14707:28;14729:5;14707:28;:::i;16020:1527::-;16244:3;16282:6;16276:13;16308:4;16321:51;16365:6;16360:3;16355:2;16347:6;16343:15;16321:51;:::i;:::-;16435:13;;16394:16;;;;16457:55;16435:13;16394:16;16479:15;;;16457:55;:::i;:::-;16601:13;;16534:20;;;16574:1;;16661;16683:18;;;;16736;;;;16763:93;;16841:4;16831:8;16827:19;16815:31;;16763:93;16904:2;16894:8;16891:16;16871:18;16868:40;16865:167;;;-1:-1:-1;;;16931:33:1;;16987:4;16984:1;16977:15;17017:4;16938:3;17005:17;16865:167;17048:18;17075:110;;;;17199:1;17194:328;;;;17041:481;;17075:110;-1:-1:-1;;17110:24:1;;17096:39;;17155:20;;;;-1:-1:-1;17075:110:1;;17194:328;15967:1;15960:14;;;16004:4;15991:18;;17289:1;17303:169;17317:8;17314:1;17311:15;17303:169;;;17399:14;;17384:13;;;17377:37;17442:16;;;;17334:10;;17303:169;;;17307:3;;17503:8;17496:5;17492:20;17485:27;;17041:481;-1:-1:-1;17538:3:1;;16020:1527;-1:-1:-1;;;;;;;;;;;16020:1527:1:o;17959:489::-;-1:-1:-1;;;;;18228:15:1;;;18210:34;;18280:15;;18275:2;18260:18;;18253:43;18327:2;18312:18;;18305:34;;;18375:3;18370:2;18355:18;;18348:31;;;18153:4;;18396:46;;18422:19;;18414:6;18396:46;:::i;:::-;18388:54;17959:489;-1:-1:-1;;;;;;17959:489:1:o;18453:249::-;18522:6;18575:2;18563:9;18554:7;18550:23;18546:32;18543:52;;;18591:1;18588;18581:12;18543:52;18623:9;18617:16;18642:30;18666:5;18642:30;:::i;18707:135::-;18746:3;-1:-1:-1;;18767:17:1;;18764:43;;;18787:18;;:::i;:::-;-1:-1:-1;18834:1:1;18823:13;;18707:135::o;18847:127::-;18908:10;18903:3;18899:20;18896:1;18889:31;18939:4;18936:1;18929:15;18963:4;18960:1;18953:15;18979:120;19019:1;19045;19035:35;;19050:18;;:::i;:::-;-1:-1:-1;19084:9:1;;18979:120::o;19104:125::-;19144:4;19172:1;19169;19166:8;19163:34;;;19177:18;;:::i;:::-;-1:-1:-1;19214:9:1;;19104:125::o;19234:112::-;19266:1;19292;19282:35;;19297:18;;:::i;:::-;-1:-1:-1;19331:9:1;;19234:112::o;19351:127::-;19412:10;19407:3;19403:20;19400:1;19393:31;19443:4;19440:1;19433:15;19467:4;19464:1;19457:15

Swarm Source

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