ETH Price: $2,605.02 (-1.94%)

Token

Phase001_Cosmic Girls (CVC)
 

Overview

Max Total Supply

215 CVC

Holders

152

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CVC
0x9ee619dc24470db54f2541ecc5981b2df0c6c64f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Cosmic

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-15
*/

// SPDX-License-Identifier: MIT
// 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/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/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: heozzi/CVC_Phase001.sol



pragma solidity >=0.8.9 <0.9.0;





contract Cosmic is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  mapping(address => uint256) public SaleList;
  // mapping(address => uint256) public Publicmint;

  string public uriPrefix = 'https://gateway.pinata.cloud/ipfs/QmSG7ebY6whDcYoUpT94SrRCqSxbdLWwaZvb6f324716Wn/';
  
  uint256 public cost;
  uint256 public maxSupply;
  uint256 public maxMintAmountPerTx;
  uint256 public SaleCount=0;
  uint256 public MaxSale = 1000;
  uint256 public MaxPublic = 5000;
  uint256 private CVCPrivate;

  bool public paused = true;
  bool public paused2 = true;
  bool public SaleMinted = true;
  bool public SetPrivated = true;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    uint256 _cost,
    uint256 _maxSupply,
    uint256 _maxMintAmountPerTx
  ) ERC721A(_tokenName, _tokenSymbol) {
    cost = _cost;
    maxSupply = _maxSupply;
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is Paused!');
    require(totalSupply()+_mintAmount <= MaxPublic, "Max supply Public!");
    _safeMint(_msgSender(), _mintAmount);
  }
  function salemint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!SaleMinted, 'The contract is Paused!');
    require(SaleCount+_mintAmount <= MaxSale, "Max supply exceeded!");
    require(SaleList[_msgSender()]+_mintAmount<=10,'MMMExceeded');
    SaleCount += _mintAmount;
    SaleList[_msgSender()] +=_mintAmount;
    _safeMint(_msgSender(), _mintAmount);
  } 
  function Privatemint(uint256 _mintAmount,uint256 _pvk) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused2, 'The contract is Paused!');
    require(_pvk==CVCPrivate,'Not Matched');
    require(totalSupply()+_mintAmount <= MaxPublic, "Max supply Public!");
    _safeMint(_msgSender(), _mintAmount);
  }

  function giftMint(address[] calldata receivers,uint256 _mintAmount) external onlyOwner {
        require(totalSupply() + receivers.length*_mintAmount <= maxSupply, "Max supply exceeded!");
        for (uint256 i = 0; i < receivers.length; i++) {
            _safeMint(receivers[i], _mintAmount);
        }
    }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned && ownership.addr != address(0)) {
        latestOwnerAddress = ownership.addr;
      }

      if (latestOwnerAddress == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

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

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString()))
        : '';
  }
  function burn(uint256 tokenId) public virtual { 
      return _burn(tokenId);
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxSale(uint256 _MaxSale) public onlyOwner {
    MaxSale = _MaxSale;
  }

  function setSaleMinted(bool _saleMinted) public onlyOwner {
    SaleMinted = _saleMinted;
  }
  function setMaxPublic(uint256 _MaxPublic) public onlyOwner {
    MaxPublic = _MaxPublic;
  }

  function setCVCPrivate(uint256 _CVCPrivate) public onlyOwner {
    CVCPrivate = _CVCPrivate;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }
  function setPaused2(bool _state) public onlyOwner {
    paused2 = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }

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

  function setBaseURI(string calldata baseURI) external onlyOwner {
        uriPrefix = baseURI;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"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":"MaxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_pvk","type":"uint256"}],"name":"Privatemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"SaleCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"SaleList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SaleMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SetPrivated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"giftMint","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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"salemint","outputs":[],"stateMutability":"payable","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_CVCPrivate","type":"uint256"}],"name":"setCVCPrivate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MaxPublic","type":"uint256"}],"name":"setMaxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MaxSale","type":"uint256"}],"name":"setMaxSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleMinted","type":"bool"}],"name":"setSaleMinted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280605181526020016200542a60519139600b90805190602001906200003592919062000251565b506000600f556103e86010556113886011556001601360006101000a81548160ff0219169083151502179055506001601360016101000a81548160ff0219169083151502179055506001601360026101000a81548160ff0219169083151502179055506001601360036101000a81548160ff021916908315150217905550348015620000c057600080fd5b506040516200547b3803806200547b8339818101604052810190620000e69190620004d9565b848481600290805190602001906200010092919062000251565b5080600390805190602001906200011992919062000251565b506200012a6200017a60201b60201c565b600081905550505062000152620001466200018360201b60201c565b6200018b60201b60201c565b600160098190555082600c8190555081600d8190555080600e81905550505050505062000604565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025f90620005ce565b90600052602060002090601f016020900481019282620002835760008555620002cf565b82601f106200029e57805160ff1916838001178555620002cf565b82800160010185558215620002cf579182015b82811115620002ce578251825591602001919060010190620002b1565b5b509050620002de9190620002e2565b5090565b5b80821115620002fd576000816000905550600101620002e3565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200036a826200031f565b810181811067ffffffffffffffff821117156200038c576200038b62000330565b5b80604052505050565b6000620003a162000301565b9050620003af82826200035f565b919050565b600067ffffffffffffffff821115620003d257620003d162000330565b5b620003dd826200031f565b9050602081019050919050565b60005b838110156200040a578082015181840152602081019050620003ed565b838111156200041a576000848401525b50505050565b6000620004376200043184620003b4565b62000395565b9050828152602081018484840111156200045657620004556200031a565b5b62000463848285620003ea565b509392505050565b600082601f83011262000483576200048262000315565b5b81516200049584826020860162000420565b91505092915050565b6000819050919050565b620004b3816200049e565b8114620004bf57600080fd5b50565b600081519050620004d381620004a8565b92915050565b600080600080600060a08688031215620004f857620004f76200030b565b5b600086015167ffffffffffffffff81111562000519576200051862000310565b5b62000527888289016200046b565b955050602086015167ffffffffffffffff8111156200054b576200054a62000310565b5b62000559888289016200046b565b94505060406200056c88828901620004c2565b93505060606200057f88828901620004c2565b92505060806200059288828901620004c2565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005e757607f821691505b60208210811415620005fe57620005fd6200059f565b5b50919050565b614e1680620006146000396000f3fe60806040526004361061027d5760003560e01c806366aedc431161014f578063acdbf6e4116100c1578063d5abeb011161007a578063d5abeb0114610945578063e985e9c514610970578063efbd73f4146109ad578063f2fde38b146109d6578063f72351de146109ff578063fbdb849414610a2a5761027d565b8063acdbf6e414610855578063b071401b14610871578063b88d4fde1461089a578063bd4434cf146108c3578063c87b56dd146108df578063ca657a461461091c5761027d565b806394354fd01161011357806394354fd01461076657806395d89b4114610791578063967b2692146107bc578063a0712d68146107e7578063a22cb46514610803578063a33b41661461082c5761027d565b806366aedc431461069557806370a08231146106be578063715018a6146106fb57806378dbfaff146107125780638da5cb5b1461073b5761027d565b806342842e0e116101f35780635b732a20116101ac5780635b732a20146105815780635c975abb146105ac5780635daedca8146105d757806362b99ad4146106025780636352211e1461062d5780636515c6a91461066a5761027d565b806342842e0e1461047557806342966c681461049e578063438b6300146104c757806344a0d68a146105045780634f98ac4e1461052d57806355f804b3146105585761027d565b80630c91bb65116102455780630c91bb651461037957806313faede6146103b657806316c38b3c146103e157806318160ddd1461040a57806323b872dd146104355780633ccfd60b1461045e5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea57806308290dc514610327578063095ea7b314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613ca3565b610a53565b6040516102b69190613ceb565b60405180910390f35b3480156102cb57600080fd5b506102d4610b35565b6040516102e19190613d9f565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613df7565b610bc7565b60405161031e9190613e65565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613df7565b610c43565b005b34801561035c57600080fd5b5061037760048036038101906103729190613eac565b610cc9565b005b34801561038557600080fd5b506103a0600480360381019061039b9190613eec565b610dd4565b6040516103ad9190613f28565b60405180910390f35b3480156103c257600080fd5b506103cb610dec565b6040516103d89190613f28565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190613f6f565b610df2565b005b34801561041657600080fd5b5061041f610e8b565b60405161042c9190613f28565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613f9c565b610ea2565b005b34801561046a57600080fd5b50610473610eb2565b005b34801561048157600080fd5b5061049c60048036038101906104979190613f9c565b611004565b005b3480156104aa57600080fd5b506104c560048036038101906104c09190613df7565b611024565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190613eec565b611030565b6040516104fb91906140ad565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613df7565b61124b565b005b34801561053957600080fd5b506105426112d1565b60405161054f9190613ceb565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190614134565b6112e4565b005b34801561058d57600080fd5b50610596611376565b6040516105a39190613f28565b60405180910390f35b3480156105b857600080fd5b506105c161137c565b6040516105ce9190613ceb565b60405180910390f35b3480156105e357600080fd5b506105ec61138f565b6040516105f99190613ceb565b60405180910390f35b34801561060e57600080fd5b506106176113a2565b6040516106249190613d9f565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190613df7565b611430565b6040516106619190613e65565b60405180910390f35b34801561067657600080fd5b5061067f611446565b60405161068c9190613ceb565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190613df7565b611459565b005b3480156106ca57600080fd5b506106e560048036038101906106e09190613eec565b6114df565b6040516106f29190613f28565b60405180910390f35b34801561070757600080fd5b506107106115af565b005b34801561071e57600080fd5b5061073960048036038101906107349190613f6f565b611637565b005b34801561074757600080fd5b506107506116d0565b60405161075d9190613e65565b60405180910390f35b34801561077257600080fd5b5061077b6116fa565b6040516107889190613f28565b60405180910390f35b34801561079d57600080fd5b506107a6611700565b6040516107b39190613d9f565b60405180910390f35b3480156107c857600080fd5b506107d1611792565b6040516107de9190613f28565b60405180910390f35b61080160048036038101906107fc9190613df7565b611798565b005b34801561080f57600080fd5b5061082a60048036038101906108259190614181565b61194f565b005b34801561083857600080fd5b50610853600480360381019061084e9190614217565b611ac7565b005b61086f600480360381019061086a9190614277565b611c00565b005b34801561087d57600080fd5b5061089860048036038101906108939190613df7565b611dfc565b005b3480156108a657600080fd5b506108c160048036038101906108bc91906143e7565b611e82565b005b6108dd60048036038101906108d89190613df7565b611efe565b005b3480156108eb57600080fd5b5061090660048036038101906109019190613df7565b6121bb565b6040516109139190613d9f565b60405180910390f35b34801561092857600080fd5b50610943600480360381019061093e9190613f6f565b612262565b005b34801561095157600080fd5b5061095a6122fb565b6040516109679190613f28565b60405180910390f35b34801561097c57600080fd5b506109976004803603810190610992919061446a565b612301565b6040516109a49190613ceb565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906144aa565b612395565b005b3480156109e257600080fd5b506109fd60048036038101906109f89190613eec565b6124c9565b005b348015610a0b57600080fd5b50610a146125c1565b604051610a219190613f28565b60405180910390f35b348015610a3657600080fd5b50610a516004803603810190610a4c9190613df7565b6125c7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b2e5750610b2d8261264d565b5b9050919050565b606060028054610b4490614519565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7090614519565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b6000610bd2826126b7565b610c08576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c4b612705565b73ffffffffffffffffffffffffffffffffffffffff16610c696116d0565b73ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690614597565b60405180910390fd5b8060108190555050565b6000610cd482611430565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d5b612705565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d8d5750610d8b81610d86612705565b612301565b155b15610dc4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dcf83838361270d565b505050565b600a6020528060005260406000206000915090505481565b600c5481565b610dfa612705565b73ffffffffffffffffffffffffffffffffffffffff16610e186116d0565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590614597565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6000610e956127bf565b6001546000540303905090565b610ead8383836127c8565b505050565b610eba612705565b73ffffffffffffffffffffffffffffffffffffffff16610ed86116d0565b73ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590614597565b60405180910390fd5b60026009541415610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90614603565b60405180910390fd5b60026009819055506000610f866116d0565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fa990614654565b60006040518083038185875af1925050503d8060008114610fe6576040519150601f19603f3d011682016040523d82523d6000602084013e610feb565b606091505b5050905080610ff957600080fd5b506001600981905550565b61101f83838360405180602001604052806000815250611e82565b505050565b61102d81612c7e565b50565b6060600061103d836114df565b905060008167ffffffffffffffff81111561105b5761105a6142bc565b5b6040519080825280602002602001820160405280156110895781602001602082028036833780820191505090505b50905060006110966127bf565b90506000805b84821080156110ad5750600d548311155b1561123e576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156111ba5750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b156111c757806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122a578385848151811061120f5761120e614669565b5b6020026020010181815250508280611226906146c7565b9350505b8380611235906146c7565b9450505061109c565b8395505050505050919050565b611253612705565b73ffffffffffffffffffffffffffffffffffffffff166112716116d0565b73ffffffffffffffffffffffffffffffffffffffff16146112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be90614597565b60405180910390fd5b80600c8190555050565b601360039054906101000a900460ff1681565b6112ec612705565b73ffffffffffffffffffffffffffffffffffffffff1661130a6116d0565b73ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790614597565b60405180910390fd5b8181600b9190611371929190613b51565b505050565b60105481565b601360009054906101000a900460ff1681565b601360029054906101000a900460ff1681565b600b80546113af90614519565b80601f01602080910402602001604051908101604052809291908181526020018280546113db90614519565b80156114285780601f106113fd57610100808354040283529160200191611428565b820191906000526020600020905b81548152906001019060200180831161140b57829003601f168201915b505050505081565b600061143b82612c8c565b600001519050919050565b601360019054906101000a900460ff1681565b611461612705565b73ffffffffffffffffffffffffffffffffffffffff1661147f6116d0565b73ffffffffffffffffffffffffffffffffffffffff16146114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90614597565b60405180910390fd5b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611547576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115b7612705565b73ffffffffffffffffffffffffffffffffffffffff166115d56116d0565b73ffffffffffffffffffffffffffffffffffffffff161461162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290614597565b60405180910390fd5b6116356000612f1b565b565b61163f612705565b73ffffffffffffffffffffffffffffffffffffffff1661165d6116d0565b73ffffffffffffffffffffffffffffffffffffffff16146116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90614597565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606003805461170f90614519565b80601f016020809104026020016040519081016040528092919081815260200182805461173b90614519565b80156117885780601f1061175d57610100808354040283529160200191611788565b820191906000526020600020905b81548152906001019060200180831161176b57829003601f168201915b5050505050905090565b600f5481565b806000811180156117ab5750600e548111155b6117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e19061475c565b60405180910390fd5b600d54816117f6610e8b565b611800919061477c565b1115611841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118389061481e565b60405180910390fd5b8180600c54611850919061483e565b341015611892576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611889906148e4565b60405180910390fd5b601360009054906101000a900460ff16156118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990614950565b60405180910390fd5b601154836118ee610e8b565b6118f8919061477c565b1115611939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611930906149bc565b60405180910390fd5b61194a611944612705565b84612fe1565b505050565b611957612705565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119c9612705565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a76612705565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611abb9190613ceb565b60405180910390a35050565b611acf612705565b73ffffffffffffffffffffffffffffffffffffffff16611aed6116d0565b73ffffffffffffffffffffffffffffffffffffffff1614611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90614597565b60405180910390fd5b600d548184849050611b55919061483e565b611b5d610e8b565b611b67919061477c565b1115611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f9061481e565b60405180910390fd5b60005b83839050811015611bfa57611be7848483818110611bcc57611bcb614669565b5b9050602002016020810190611be19190613eec565b83612fe1565b8080611bf2906146c7565b915050611bab565b50505050565b81600081118015611c135750600e548111155b611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c499061475c565b60405180910390fd5b600d5481611c5e610e8b565b611c68919061477c565b1115611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca09061481e565b60405180910390fd5b8280600c54611cb8919061483e565b341015611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf1906148e4565b60405180910390fd5b601360019054906101000a900460ff1615611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4190614950565b60405180910390fd5b6012548314611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8590614a28565b60405180910390fd5b60115484611d9a610e8b565b611da4919061477c565b1115611de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddc906149bc565b60405180910390fd5b611df6611df0612705565b85612fe1565b50505050565b611e04612705565b73ffffffffffffffffffffffffffffffffffffffff16611e226116d0565b73ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90614597565b60405180910390fd5b80600e8190555050565b611e8d8484846127c8565b611eac8373ffffffffffffffffffffffffffffffffffffffff16612fff565b8015611ec15750611ebf84848484613022565b155b15611ef8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b80600081118015611f115750600e548111155b611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f479061475c565b60405180910390fd5b600d5481611f5c610e8b565b611f66919061477c565b1115611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e9061481e565b60405180910390fd5b8180600c54611fb6919061483e565b341015611ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fef906148e4565b60405180910390fd5b601360029054906101000a900460ff1615612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90614950565b60405180910390fd5b60105483600f54612059919061477c565b111561209a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120919061481e565b60405180910390fd5b600a83600a60006120a9612705565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120ee919061477c565b111561212f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212690614a94565b60405180910390fd5b82600f6000828254612141919061477c565b9250508190555082600a6000612155612705565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461219e919061477c565b925050819055506121b66121b0612705565b84612fe1565b505050565b60606121c6826126b7565b612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90614b26565b60405180910390fd5b600061220f613182565b9050600081511161222f576040518060200160405280600081525061225a565b8061223984613214565b60405160200161224a929190614b82565b6040516020818303038152906040525b915050919050565b61226a612705565b73ffffffffffffffffffffffffffffffffffffffff166122886116d0565b73ffffffffffffffffffffffffffffffffffffffff16146122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d590614597565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156123a85750600e548111155b6123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de9061475c565b60405180910390fd5b600d54816123f3610e8b565b6123fd919061477c565b111561243e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124359061481e565b60405180910390fd5b612446612705565b73ffffffffffffffffffffffffffffffffffffffff166124646116d0565b73ffffffffffffffffffffffffffffffffffffffff16146124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b190614597565b60405180910390fd5b6124c48284612fe1565b505050565b6124d1612705565b73ffffffffffffffffffffffffffffffffffffffff166124ef6116d0565b73ffffffffffffffffffffffffffffffffffffffff1614612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c90614597565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac90614c18565b60405180910390fd5b6125be81612f1b565b50565b60115481565b6125cf612705565b73ffffffffffffffffffffffffffffffffffffffff166125ed6116d0565b73ffffffffffffffffffffffffffffffffffffffff1614612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a90614597565b60405180910390fd5b8060118190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816126c26127bf565b111580156126d1575060005482105b80156126fe575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006127d382612c8c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461283e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661285f612705565b73ffffffffffffffffffffffffffffffffffffffff16148061288e575061288d85612888612705565b612301565b5b806128d3575061289c612705565b73ffffffffffffffffffffffffffffffffffffffff166128bb84610bc7565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061290c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612973576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129808585856001613375565b61298c6000848761270d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c0c576000548214612c0b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c77858585600161337b565b5050505050565b612c89816000613381565b50565b612c94613bd7565b600082905080612ca26127bf565b11158015612cb1575060005481105b15612ee4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ee257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dc6578092505050612f16565b5b600115612ee157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612edc578092505050612f16565b612dc7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ffb828260405180602001604052806000815250613771565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613048612705565b8786866040518563ffffffff1660e01b815260040161306a9493929190614c8d565b602060405180830381600087803b15801561308457600080fd5b505af19250505080156130b557506040513d601f19601f820116820180604052508101906130b29190614cee565b60015b61312f573d80600081146130e5576040519150601f19603f3d011682016040523d82523d6000602084013e6130ea565b606091505b50600081511415613127576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461319190614519565b80601f01602080910402602001604051908101604052809291908181526020018280546131bd90614519565b801561320a5780601f106131df5761010080835404028352916020019161320a565b820191906000526020600020905b8154815290600101906020018083116131ed57829003601f168201915b5050505050905090565b6060600082141561325c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613370565b600082905060005b6000821461328e578080613277906146c7565b915050600a826132879190614d4a565b9150613264565b60008167ffffffffffffffff8111156132aa576132a96142bc565b5b6040519080825280601f01601f1916602001820160405280156132dc5781602001600182028036833780820191505090505b5090505b60008514613369576001826132f59190614d7b565b9150600a856133049190614daf565b6030613310919061477c565b60f81b81838151811061332657613325614669565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133629190614d4a565b94506132e0565b8093505050505b919050565b50505050565b50505050565b600061338c83612c8c565b9050600081600001519050821561346d5760008173ffffffffffffffffffffffffffffffffffffffff166133be612705565b73ffffffffffffffffffffffffffffffffffffffff1614806133ed57506133ec826133e7612705565b612301565b5b8061343257506133fb612705565b73ffffffffffffffffffffffffffffffffffffffff1661341a86610bc7565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061346b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b61347b816000866001613375565b6134876000858361270d565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156136eb5760005482146136ea57848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461375981600086600161337b565b60016000815480929190600101919050555050505050565b61377e8383836001613783565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156137f0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561382b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138386000868387613375565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613a025750613a018773ffffffffffffffffffffffffffffffffffffffff16612fff565b5b15613ac8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a776000888480600101955088613022565b613aad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613a08578260005414613ac357600080fd5b613b34565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613ac9575b816000819055505050613b4a600086838761337b565b5050505050565b828054613b5d90614519565b90600052602060002090601f016020900481019282613b7f5760008555613bc6565b82601f10613b9857803560ff1916838001178555613bc6565b82800160010185558215613bc6579182015b82811115613bc5578235825591602001919060010190613baa565b5b509050613bd39190613c1a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613c33576000816000905550600101613c1b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c8081613c4b565b8114613c8b57600080fd5b50565b600081359050613c9d81613c77565b92915050565b600060208284031215613cb957613cb8613c41565b5b6000613cc784828501613c8e565b91505092915050565b60008115159050919050565b613ce581613cd0565b82525050565b6000602082019050613d006000830184613cdc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d40578082015181840152602081019050613d25565b83811115613d4f576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d7182613d06565b613d7b8185613d11565b9350613d8b818560208601613d22565b613d9481613d55565b840191505092915050565b60006020820190508181036000830152613db98184613d66565b905092915050565b6000819050919050565b613dd481613dc1565b8114613ddf57600080fd5b50565b600081359050613df181613dcb565b92915050565b600060208284031215613e0d57613e0c613c41565b5b6000613e1b84828501613de2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e4f82613e24565b9050919050565b613e5f81613e44565b82525050565b6000602082019050613e7a6000830184613e56565b92915050565b613e8981613e44565b8114613e9457600080fd5b50565b600081359050613ea681613e80565b92915050565b60008060408385031215613ec357613ec2613c41565b5b6000613ed185828601613e97565b9250506020613ee285828601613de2565b9150509250929050565b600060208284031215613f0257613f01613c41565b5b6000613f1084828501613e97565b91505092915050565b613f2281613dc1565b82525050565b6000602082019050613f3d6000830184613f19565b92915050565b613f4c81613cd0565b8114613f5757600080fd5b50565b600081359050613f6981613f43565b92915050565b600060208284031215613f8557613f84613c41565b5b6000613f9384828501613f5a565b91505092915050565b600080600060608486031215613fb557613fb4613c41565b5b6000613fc386828701613e97565b9350506020613fd486828701613e97565b9250506040613fe586828701613de2565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61402481613dc1565b82525050565b6000614036838361401b565b60208301905092915050565b6000602082019050919050565b600061405a82613fef565b6140648185613ffa565b935061406f8361400b565b8060005b838110156140a0578151614087888261402a565b975061409283614042565b925050600181019050614073565b5085935050505092915050565b600060208201905081810360008301526140c7818461404f565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126140f4576140f36140cf565b5b8235905067ffffffffffffffff811115614111576141106140d4565b5b60208301915083600182028301111561412d5761412c6140d9565b5b9250929050565b6000806020838503121561414b5761414a613c41565b5b600083013567ffffffffffffffff81111561416957614168613c46565b5b614175858286016140de565b92509250509250929050565b6000806040838503121561419857614197613c41565b5b60006141a685828601613e97565b92505060206141b785828601613f5a565b9150509250929050565b60008083601f8401126141d7576141d66140cf565b5b8235905067ffffffffffffffff8111156141f4576141f36140d4565b5b6020830191508360208202830111156142105761420f6140d9565b5b9250929050565b6000806000604084860312156142305761422f613c41565b5b600084013567ffffffffffffffff81111561424e5761424d613c46565b5b61425a868287016141c1565b9350935050602061426d86828701613de2565b9150509250925092565b6000806040838503121561428e5761428d613c41565b5b600061429c85828601613de2565b92505060206142ad85828601613de2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6142f482613d55565b810181811067ffffffffffffffff82111715614313576143126142bc565b5b80604052505050565b6000614326613c37565b905061433282826142eb565b919050565b600067ffffffffffffffff821115614352576143516142bc565b5b61435b82613d55565b9050602081019050919050565b82818337600083830152505050565b600061438a61438584614337565b61431c565b9050828152602081018484840111156143a6576143a56142b7565b5b6143b1848285614368565b509392505050565b600082601f8301126143ce576143cd6140cf565b5b81356143de848260208601614377565b91505092915050565b6000806000806080858703121561440157614400613c41565b5b600061440f87828801613e97565b945050602061442087828801613e97565b935050604061443187828801613de2565b925050606085013567ffffffffffffffff81111561445257614451613c46565b5b61445e878288016143b9565b91505092959194509250565b6000806040838503121561448157614480613c41565b5b600061448f85828601613e97565b92505060206144a085828601613e97565b9150509250929050565b600080604083850312156144c1576144c0613c41565b5b60006144cf85828601613de2565b92505060206144e085828601613e97565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061453157607f821691505b60208210811415614545576145446144ea565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614581602083613d11565b915061458c8261454b565b602082019050919050565b600060208201905081810360008301526145b081614574565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006145ed601f83613d11565b91506145f8826145b7565b602082019050919050565b6000602082019050818103600083015261461c816145e0565b9050919050565b600081905092915050565b50565b600061463e600083614623565b91506146498261462e565b600082019050919050565b600061465f82614631565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146d282613dc1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561470557614704614698565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000614746601483613d11565b915061475182614710565b602082019050919050565b6000602082019050818103600083015261477581614739565b9050919050565b600061478782613dc1565b915061479283613dc1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147c7576147c6614698565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000614808601483613d11565b9150614813826147d2565b602082019050919050565b60006020820190508181036000830152614837816147fb565b9050919050565b600061484982613dc1565b915061485483613dc1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561488d5761488c614698565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006148ce601383613d11565b91506148d982614898565b602082019050919050565b600060208201905081810360008301526148fd816148c1565b9050919050565b7f54686520636f6e74726163742069732050617573656421000000000000000000600082015250565b600061493a601783613d11565b915061494582614904565b602082019050919050565b600060208201905081810360008301526149698161492d565b9050919050565b7f4d617820737570706c79205075626c6963210000000000000000000000000000600082015250565b60006149a6601283613d11565b91506149b182614970565b602082019050919050565b600060208201905081810360008301526149d581614999565b9050919050565b7f4e6f74204d617463686564000000000000000000000000000000000000000000600082015250565b6000614a12600b83613d11565b9150614a1d826149dc565b602082019050919050565b60006020820190508181036000830152614a4181614a05565b9050919050565b7f4d4d4d4578636565646564000000000000000000000000000000000000000000600082015250565b6000614a7e600b83613d11565b9150614a8982614a48565b602082019050919050565b60006020820190508181036000830152614aad81614a71565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614b10602f83613d11565b9150614b1b82614ab4565b604082019050919050565b60006020820190508181036000830152614b3f81614b03565b9050919050565b600081905092915050565b6000614b5c82613d06565b614b668185614b46565b9350614b76818560208601613d22565b80840191505092915050565b6000614b8e8285614b51565b9150614b9a8284614b51565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c02602683613d11565b9150614c0d82614ba6565b604082019050919050565b60006020820190508181036000830152614c3181614bf5565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c5f82614c38565b614c698185614c43565b9350614c79818560208601613d22565b614c8281613d55565b840191505092915050565b6000608082019050614ca26000830187613e56565b614caf6020830186613e56565b614cbc6040830185613f19565b8181036060830152614cce8184614c54565b905095945050505050565b600081519050614ce881613c77565b92915050565b600060208284031215614d0457614d03613c41565b5b6000614d1284828501614cd9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d5582613dc1565b9150614d6083613dc1565b925082614d7057614d6f614d1b565b5b828204905092915050565b6000614d8682613dc1565b9150614d9183613dc1565b925082821015614da457614da3614698565b5b828203905092915050565b6000614dba82613dc1565b9150614dc583613dc1565b925082614dd557614dd4614d1b565b5b82820690509291505056fea2646970667358221220fd5e402158199e270b65aec4e056f069beebd551bd1de6fdf8b863ff18c6182f64736f6c6343000809003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5347376562593677684463596f55705439345372524371537862644c5777615a76623666333234373136576e2f00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000056bc75e2d6310000000000000000000000000000000000000000000000000000000000000000015b3000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001550686173653030315f436f736d6963204769726c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000034356430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806366aedc431161014f578063acdbf6e4116100c1578063d5abeb011161007a578063d5abeb0114610945578063e985e9c514610970578063efbd73f4146109ad578063f2fde38b146109d6578063f72351de146109ff578063fbdb849414610a2a5761027d565b8063acdbf6e414610855578063b071401b14610871578063b88d4fde1461089a578063bd4434cf146108c3578063c87b56dd146108df578063ca657a461461091c5761027d565b806394354fd01161011357806394354fd01461076657806395d89b4114610791578063967b2692146107bc578063a0712d68146107e7578063a22cb46514610803578063a33b41661461082c5761027d565b806366aedc431461069557806370a08231146106be578063715018a6146106fb57806378dbfaff146107125780638da5cb5b1461073b5761027d565b806342842e0e116101f35780635b732a20116101ac5780635b732a20146105815780635c975abb146105ac5780635daedca8146105d757806362b99ad4146106025780636352211e1461062d5780636515c6a91461066a5761027d565b806342842e0e1461047557806342966c681461049e578063438b6300146104c757806344a0d68a146105045780634f98ac4e1461052d57806355f804b3146105585761027d565b80630c91bb65116102455780630c91bb651461037957806313faede6146103b657806316c38b3c146103e157806318160ddd1461040a57806323b872dd146104355780633ccfd60b1461045e5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea57806308290dc514610327578063095ea7b314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613ca3565b610a53565b6040516102b69190613ceb565b60405180910390f35b3480156102cb57600080fd5b506102d4610b35565b6040516102e19190613d9f565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613df7565b610bc7565b60405161031e9190613e65565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613df7565b610c43565b005b34801561035c57600080fd5b5061037760048036038101906103729190613eac565b610cc9565b005b34801561038557600080fd5b506103a0600480360381019061039b9190613eec565b610dd4565b6040516103ad9190613f28565b60405180910390f35b3480156103c257600080fd5b506103cb610dec565b6040516103d89190613f28565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190613f6f565b610df2565b005b34801561041657600080fd5b5061041f610e8b565b60405161042c9190613f28565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613f9c565b610ea2565b005b34801561046a57600080fd5b50610473610eb2565b005b34801561048157600080fd5b5061049c60048036038101906104979190613f9c565b611004565b005b3480156104aa57600080fd5b506104c560048036038101906104c09190613df7565b611024565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190613eec565b611030565b6040516104fb91906140ad565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613df7565b61124b565b005b34801561053957600080fd5b506105426112d1565b60405161054f9190613ceb565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190614134565b6112e4565b005b34801561058d57600080fd5b50610596611376565b6040516105a39190613f28565b60405180910390f35b3480156105b857600080fd5b506105c161137c565b6040516105ce9190613ceb565b60405180910390f35b3480156105e357600080fd5b506105ec61138f565b6040516105f99190613ceb565b60405180910390f35b34801561060e57600080fd5b506106176113a2565b6040516106249190613d9f565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190613df7565b611430565b6040516106619190613e65565b60405180910390f35b34801561067657600080fd5b5061067f611446565b60405161068c9190613ceb565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190613df7565b611459565b005b3480156106ca57600080fd5b506106e560048036038101906106e09190613eec565b6114df565b6040516106f29190613f28565b60405180910390f35b34801561070757600080fd5b506107106115af565b005b34801561071e57600080fd5b5061073960048036038101906107349190613f6f565b611637565b005b34801561074757600080fd5b506107506116d0565b60405161075d9190613e65565b60405180910390f35b34801561077257600080fd5b5061077b6116fa565b6040516107889190613f28565b60405180910390f35b34801561079d57600080fd5b506107a6611700565b6040516107b39190613d9f565b60405180910390f35b3480156107c857600080fd5b506107d1611792565b6040516107de9190613f28565b60405180910390f35b61080160048036038101906107fc9190613df7565b611798565b005b34801561080f57600080fd5b5061082a60048036038101906108259190614181565b61194f565b005b34801561083857600080fd5b50610853600480360381019061084e9190614217565b611ac7565b005b61086f600480360381019061086a9190614277565b611c00565b005b34801561087d57600080fd5b5061089860048036038101906108939190613df7565b611dfc565b005b3480156108a657600080fd5b506108c160048036038101906108bc91906143e7565b611e82565b005b6108dd60048036038101906108d89190613df7565b611efe565b005b3480156108eb57600080fd5b5061090660048036038101906109019190613df7565b6121bb565b6040516109139190613d9f565b60405180910390f35b34801561092857600080fd5b50610943600480360381019061093e9190613f6f565b612262565b005b34801561095157600080fd5b5061095a6122fb565b6040516109679190613f28565b60405180910390f35b34801561097c57600080fd5b506109976004803603810190610992919061446a565b612301565b6040516109a49190613ceb565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906144aa565b612395565b005b3480156109e257600080fd5b506109fd60048036038101906109f89190613eec565b6124c9565b005b348015610a0b57600080fd5b50610a146125c1565b604051610a219190613f28565b60405180910390f35b348015610a3657600080fd5b50610a516004803603810190610a4c9190613df7565b6125c7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b2e5750610b2d8261264d565b5b9050919050565b606060028054610b4490614519565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7090614519565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b6000610bd2826126b7565b610c08576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c4b612705565b73ffffffffffffffffffffffffffffffffffffffff16610c696116d0565b73ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690614597565b60405180910390fd5b8060108190555050565b6000610cd482611430565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d5b612705565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d8d5750610d8b81610d86612705565b612301565b155b15610dc4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dcf83838361270d565b505050565b600a6020528060005260406000206000915090505481565b600c5481565b610dfa612705565b73ffffffffffffffffffffffffffffffffffffffff16610e186116d0565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590614597565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6000610e956127bf565b6001546000540303905090565b610ead8383836127c8565b505050565b610eba612705565b73ffffffffffffffffffffffffffffffffffffffff16610ed86116d0565b73ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590614597565b60405180910390fd5b60026009541415610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90614603565b60405180910390fd5b60026009819055506000610f866116d0565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fa990614654565b60006040518083038185875af1925050503d8060008114610fe6576040519150601f19603f3d011682016040523d82523d6000602084013e610feb565b606091505b5050905080610ff957600080fd5b506001600981905550565b61101f83838360405180602001604052806000815250611e82565b505050565b61102d81612c7e565b50565b6060600061103d836114df565b905060008167ffffffffffffffff81111561105b5761105a6142bc565b5b6040519080825280602002602001820160405280156110895781602001602082028036833780820191505090505b50905060006110966127bf565b90506000805b84821080156110ad5750600d548311155b1561123e576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156111ba5750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b156111c757806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122a578385848151811061120f5761120e614669565b5b6020026020010181815250508280611226906146c7565b9350505b8380611235906146c7565b9450505061109c565b8395505050505050919050565b611253612705565b73ffffffffffffffffffffffffffffffffffffffff166112716116d0565b73ffffffffffffffffffffffffffffffffffffffff16146112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be90614597565b60405180910390fd5b80600c8190555050565b601360039054906101000a900460ff1681565b6112ec612705565b73ffffffffffffffffffffffffffffffffffffffff1661130a6116d0565b73ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790614597565b60405180910390fd5b8181600b9190611371929190613b51565b505050565b60105481565b601360009054906101000a900460ff1681565b601360029054906101000a900460ff1681565b600b80546113af90614519565b80601f01602080910402602001604051908101604052809291908181526020018280546113db90614519565b80156114285780601f106113fd57610100808354040283529160200191611428565b820191906000526020600020905b81548152906001019060200180831161140b57829003601f168201915b505050505081565b600061143b82612c8c565b600001519050919050565b601360019054906101000a900460ff1681565b611461612705565b73ffffffffffffffffffffffffffffffffffffffff1661147f6116d0565b73ffffffffffffffffffffffffffffffffffffffff16146114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90614597565b60405180910390fd5b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611547576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115b7612705565b73ffffffffffffffffffffffffffffffffffffffff166115d56116d0565b73ffffffffffffffffffffffffffffffffffffffff161461162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290614597565b60405180910390fd5b6116356000612f1b565b565b61163f612705565b73ffffffffffffffffffffffffffffffffffffffff1661165d6116d0565b73ffffffffffffffffffffffffffffffffffffffff16146116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90614597565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606003805461170f90614519565b80601f016020809104026020016040519081016040528092919081815260200182805461173b90614519565b80156117885780601f1061175d57610100808354040283529160200191611788565b820191906000526020600020905b81548152906001019060200180831161176b57829003601f168201915b5050505050905090565b600f5481565b806000811180156117ab5750600e548111155b6117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e19061475c565b60405180910390fd5b600d54816117f6610e8b565b611800919061477c565b1115611841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118389061481e565b60405180910390fd5b8180600c54611850919061483e565b341015611892576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611889906148e4565b60405180910390fd5b601360009054906101000a900460ff16156118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990614950565b60405180910390fd5b601154836118ee610e8b565b6118f8919061477c565b1115611939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611930906149bc565b60405180910390fd5b61194a611944612705565b84612fe1565b505050565b611957612705565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119c9612705565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a76612705565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611abb9190613ceb565b60405180910390a35050565b611acf612705565b73ffffffffffffffffffffffffffffffffffffffff16611aed6116d0565b73ffffffffffffffffffffffffffffffffffffffff1614611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90614597565b60405180910390fd5b600d548184849050611b55919061483e565b611b5d610e8b565b611b67919061477c565b1115611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f9061481e565b60405180910390fd5b60005b83839050811015611bfa57611be7848483818110611bcc57611bcb614669565b5b9050602002016020810190611be19190613eec565b83612fe1565b8080611bf2906146c7565b915050611bab565b50505050565b81600081118015611c135750600e548111155b611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c499061475c565b60405180910390fd5b600d5481611c5e610e8b565b611c68919061477c565b1115611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca09061481e565b60405180910390fd5b8280600c54611cb8919061483e565b341015611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf1906148e4565b60405180910390fd5b601360019054906101000a900460ff1615611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4190614950565b60405180910390fd5b6012548314611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8590614a28565b60405180910390fd5b60115484611d9a610e8b565b611da4919061477c565b1115611de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddc906149bc565b60405180910390fd5b611df6611df0612705565b85612fe1565b50505050565b611e04612705565b73ffffffffffffffffffffffffffffffffffffffff16611e226116d0565b73ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90614597565b60405180910390fd5b80600e8190555050565b611e8d8484846127c8565b611eac8373ffffffffffffffffffffffffffffffffffffffff16612fff565b8015611ec15750611ebf84848484613022565b155b15611ef8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b80600081118015611f115750600e548111155b611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f479061475c565b60405180910390fd5b600d5481611f5c610e8b565b611f66919061477c565b1115611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e9061481e565b60405180910390fd5b8180600c54611fb6919061483e565b341015611ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fef906148e4565b60405180910390fd5b601360029054906101000a900460ff1615612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90614950565b60405180910390fd5b60105483600f54612059919061477c565b111561209a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120919061481e565b60405180910390fd5b600a83600a60006120a9612705565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120ee919061477c565b111561212f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212690614a94565b60405180910390fd5b82600f6000828254612141919061477c565b9250508190555082600a6000612155612705565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461219e919061477c565b925050819055506121b66121b0612705565b84612fe1565b505050565b60606121c6826126b7565b612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90614b26565b60405180910390fd5b600061220f613182565b9050600081511161222f576040518060200160405280600081525061225a565b8061223984613214565b60405160200161224a929190614b82565b6040516020818303038152906040525b915050919050565b61226a612705565b73ffffffffffffffffffffffffffffffffffffffff166122886116d0565b73ffffffffffffffffffffffffffffffffffffffff16146122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d590614597565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156123a85750600e548111155b6123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de9061475c565b60405180910390fd5b600d54816123f3610e8b565b6123fd919061477c565b111561243e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124359061481e565b60405180910390fd5b612446612705565b73ffffffffffffffffffffffffffffffffffffffff166124646116d0565b73ffffffffffffffffffffffffffffffffffffffff16146124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b190614597565b60405180910390fd5b6124c48284612fe1565b505050565b6124d1612705565b73ffffffffffffffffffffffffffffffffffffffff166124ef6116d0565b73ffffffffffffffffffffffffffffffffffffffff1614612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c90614597565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac90614c18565b60405180910390fd5b6125be81612f1b565b50565b60115481565b6125cf612705565b73ffffffffffffffffffffffffffffffffffffffff166125ed6116d0565b73ffffffffffffffffffffffffffffffffffffffff1614612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a90614597565b60405180910390fd5b8060118190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816126c26127bf565b111580156126d1575060005482105b80156126fe575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006127d382612c8c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461283e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661285f612705565b73ffffffffffffffffffffffffffffffffffffffff16148061288e575061288d85612888612705565b612301565b5b806128d3575061289c612705565b73ffffffffffffffffffffffffffffffffffffffff166128bb84610bc7565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061290c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612973576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129808585856001613375565b61298c6000848761270d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c0c576000548214612c0b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c77858585600161337b565b5050505050565b612c89816000613381565b50565b612c94613bd7565b600082905080612ca26127bf565b11158015612cb1575060005481105b15612ee4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ee257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dc6578092505050612f16565b5b600115612ee157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612edc578092505050612f16565b612dc7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ffb828260405180602001604052806000815250613771565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613048612705565b8786866040518563ffffffff1660e01b815260040161306a9493929190614c8d565b602060405180830381600087803b15801561308457600080fd5b505af19250505080156130b557506040513d601f19601f820116820180604052508101906130b29190614cee565b60015b61312f573d80600081146130e5576040519150601f19603f3d011682016040523d82523d6000602084013e6130ea565b606091505b50600081511415613127576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461319190614519565b80601f01602080910402602001604051908101604052809291908181526020018280546131bd90614519565b801561320a5780601f106131df5761010080835404028352916020019161320a565b820191906000526020600020905b8154815290600101906020018083116131ed57829003601f168201915b5050505050905090565b6060600082141561325c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613370565b600082905060005b6000821461328e578080613277906146c7565b915050600a826132879190614d4a565b9150613264565b60008167ffffffffffffffff8111156132aa576132a96142bc565b5b6040519080825280601f01601f1916602001820160405280156132dc5781602001600182028036833780820191505090505b5090505b60008514613369576001826132f59190614d7b565b9150600a856133049190614daf565b6030613310919061477c565b60f81b81838151811061332657613325614669565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133629190614d4a565b94506132e0565b8093505050505b919050565b50505050565b50505050565b600061338c83612c8c565b9050600081600001519050821561346d5760008173ffffffffffffffffffffffffffffffffffffffff166133be612705565b73ffffffffffffffffffffffffffffffffffffffff1614806133ed57506133ec826133e7612705565b612301565b5b8061343257506133fb612705565b73ffffffffffffffffffffffffffffffffffffffff1661341a86610bc7565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061346b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b61347b816000866001613375565b6134876000858361270d565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156136eb5760005482146136ea57848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461375981600086600161337b565b60016000815480929190600101919050555050505050565b61377e8383836001613783565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156137f0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561382b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138386000868387613375565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613a025750613a018773ffffffffffffffffffffffffffffffffffffffff16612fff565b5b15613ac8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a776000888480600101955088613022565b613aad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613a08578260005414613ac357600080fd5b613b34565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613ac9575b816000819055505050613b4a600086838761337b565b5050505050565b828054613b5d90614519565b90600052602060002090601f016020900481019282613b7f5760008555613bc6565b82601f10613b9857803560ff1916838001178555613bc6565b82800160010185558215613bc6579182015b82811115613bc5578235825591602001919060010190613baa565b5b509050613bd39190613c1a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613c33576000816000905550600101613c1b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c8081613c4b565b8114613c8b57600080fd5b50565b600081359050613c9d81613c77565b92915050565b600060208284031215613cb957613cb8613c41565b5b6000613cc784828501613c8e565b91505092915050565b60008115159050919050565b613ce581613cd0565b82525050565b6000602082019050613d006000830184613cdc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d40578082015181840152602081019050613d25565b83811115613d4f576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d7182613d06565b613d7b8185613d11565b9350613d8b818560208601613d22565b613d9481613d55565b840191505092915050565b60006020820190508181036000830152613db98184613d66565b905092915050565b6000819050919050565b613dd481613dc1565b8114613ddf57600080fd5b50565b600081359050613df181613dcb565b92915050565b600060208284031215613e0d57613e0c613c41565b5b6000613e1b84828501613de2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e4f82613e24565b9050919050565b613e5f81613e44565b82525050565b6000602082019050613e7a6000830184613e56565b92915050565b613e8981613e44565b8114613e9457600080fd5b50565b600081359050613ea681613e80565b92915050565b60008060408385031215613ec357613ec2613c41565b5b6000613ed185828601613e97565b9250506020613ee285828601613de2565b9150509250929050565b600060208284031215613f0257613f01613c41565b5b6000613f1084828501613e97565b91505092915050565b613f2281613dc1565b82525050565b6000602082019050613f3d6000830184613f19565b92915050565b613f4c81613cd0565b8114613f5757600080fd5b50565b600081359050613f6981613f43565b92915050565b600060208284031215613f8557613f84613c41565b5b6000613f9384828501613f5a565b91505092915050565b600080600060608486031215613fb557613fb4613c41565b5b6000613fc386828701613e97565b9350506020613fd486828701613e97565b9250506040613fe586828701613de2565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61402481613dc1565b82525050565b6000614036838361401b565b60208301905092915050565b6000602082019050919050565b600061405a82613fef565b6140648185613ffa565b935061406f8361400b565b8060005b838110156140a0578151614087888261402a565b975061409283614042565b925050600181019050614073565b5085935050505092915050565b600060208201905081810360008301526140c7818461404f565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126140f4576140f36140cf565b5b8235905067ffffffffffffffff811115614111576141106140d4565b5b60208301915083600182028301111561412d5761412c6140d9565b5b9250929050565b6000806020838503121561414b5761414a613c41565b5b600083013567ffffffffffffffff81111561416957614168613c46565b5b614175858286016140de565b92509250509250929050565b6000806040838503121561419857614197613c41565b5b60006141a685828601613e97565b92505060206141b785828601613f5a565b9150509250929050565b60008083601f8401126141d7576141d66140cf565b5b8235905067ffffffffffffffff8111156141f4576141f36140d4565b5b6020830191508360208202830111156142105761420f6140d9565b5b9250929050565b6000806000604084860312156142305761422f613c41565b5b600084013567ffffffffffffffff81111561424e5761424d613c46565b5b61425a868287016141c1565b9350935050602061426d86828701613de2565b9150509250925092565b6000806040838503121561428e5761428d613c41565b5b600061429c85828601613de2565b92505060206142ad85828601613de2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6142f482613d55565b810181811067ffffffffffffffff82111715614313576143126142bc565b5b80604052505050565b6000614326613c37565b905061433282826142eb565b919050565b600067ffffffffffffffff821115614352576143516142bc565b5b61435b82613d55565b9050602081019050919050565b82818337600083830152505050565b600061438a61438584614337565b61431c565b9050828152602081018484840111156143a6576143a56142b7565b5b6143b1848285614368565b509392505050565b600082601f8301126143ce576143cd6140cf565b5b81356143de848260208601614377565b91505092915050565b6000806000806080858703121561440157614400613c41565b5b600061440f87828801613e97565b945050602061442087828801613e97565b935050604061443187828801613de2565b925050606085013567ffffffffffffffff81111561445257614451613c46565b5b61445e878288016143b9565b91505092959194509250565b6000806040838503121561448157614480613c41565b5b600061448f85828601613e97565b92505060206144a085828601613e97565b9150509250929050565b600080604083850312156144c1576144c0613c41565b5b60006144cf85828601613de2565b92505060206144e085828601613e97565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061453157607f821691505b60208210811415614545576145446144ea565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614581602083613d11565b915061458c8261454b565b602082019050919050565b600060208201905081810360008301526145b081614574565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006145ed601f83613d11565b91506145f8826145b7565b602082019050919050565b6000602082019050818103600083015261461c816145e0565b9050919050565b600081905092915050565b50565b600061463e600083614623565b91506146498261462e565b600082019050919050565b600061465f82614631565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146d282613dc1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561470557614704614698565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000614746601483613d11565b915061475182614710565b602082019050919050565b6000602082019050818103600083015261477581614739565b9050919050565b600061478782613dc1565b915061479283613dc1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147c7576147c6614698565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000614808601483613d11565b9150614813826147d2565b602082019050919050565b60006020820190508181036000830152614837816147fb565b9050919050565b600061484982613dc1565b915061485483613dc1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561488d5761488c614698565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006148ce601383613d11565b91506148d982614898565b602082019050919050565b600060208201905081810360008301526148fd816148c1565b9050919050565b7f54686520636f6e74726163742069732050617573656421000000000000000000600082015250565b600061493a601783613d11565b915061494582614904565b602082019050919050565b600060208201905081810360008301526149698161492d565b9050919050565b7f4d617820737570706c79205075626c6963210000000000000000000000000000600082015250565b60006149a6601283613d11565b91506149b182614970565b602082019050919050565b600060208201905081810360008301526149d581614999565b9050919050565b7f4e6f74204d617463686564000000000000000000000000000000000000000000600082015250565b6000614a12600b83613d11565b9150614a1d826149dc565b602082019050919050565b60006020820190508181036000830152614a4181614a05565b9050919050565b7f4d4d4d4578636565646564000000000000000000000000000000000000000000600082015250565b6000614a7e600b83613d11565b9150614a8982614a48565b602082019050919050565b60006020820190508181036000830152614aad81614a71565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614b10602f83613d11565b9150614b1b82614ab4565b604082019050919050565b60006020820190508181036000830152614b3f81614b03565b9050919050565b600081905092915050565b6000614b5c82613d06565b614b668185614b46565b9350614b76818560208601613d22565b80840191505092915050565b6000614b8e8285614b51565b9150614b9a8284614b51565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c02602683613d11565b9150614c0d82614ba6565b604082019050919050565b60006020820190508181036000830152614c3181614bf5565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c5f82614c38565b614c698185614c43565b9350614c79818560208601613d22565b614c8281613d55565b840191505092915050565b6000608082019050614ca26000830187613e56565b614caf6020830186613e56565b614cbc6040830185613f19565b8181036060830152614cce8184614c54565b905095945050505050565b600081519050614ce881613c77565b92915050565b600060208284031215614d0457614d03613c41565b5b6000614d1284828501614cd9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d5582613dc1565b9150614d6083613dc1565b925082614d7057614d6f614d1b565b5b828204905092915050565b6000614d8682613dc1565b9150614d9183613dc1565b925082821015614da457614da3614698565b5b828203905092915050565b6000614dba82613dc1565b9150614dc583613dc1565b925082614dd557614dd4614d1b565b5b82820690509291505056fea2646970667358221220fd5e402158199e270b65aec4e056f069beebd551bd1de6fdf8b863ff18c6182f64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000056bc75e2d6310000000000000000000000000000000000000000000000000000000000000000015b3000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001550686173653030315f436f736d6963204769726c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000034356430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Phase001_Cosmic Girls
Arg [1] : _tokenSymbol (string): CVC
Arg [2] : _cost (uint256): 100000000000000000000
Arg [3] : _maxSupply (uint256): 5555
Arg [4] : _maxMintAmountPerTx (uint256): 10

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000056bc75e2d63100000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000015b3
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [6] : 50686173653030315f436f736d6963204769726c730000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4356430000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49992:5607:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32153:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35266:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36769:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54355:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36332:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50084:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50305:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54886:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31402:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37634:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55052:322;;;;;;;;;;;;;:::i;:::-;;37875:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54186:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52911:796;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54275:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50625:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55490:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50427:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50530:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50591:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50187:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35074:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50560:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54646:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32522:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9911:103;;;;;;;;;;;;;:::i;:::-;;54447:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9260:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50358:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35435:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50396:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51340:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37045:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52426:316;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52067:353;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54750:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38131:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51630:432;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53820:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54967:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50329:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37403:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52750:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10169:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50461:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54546:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32153:305;32255:4;32307:25;32292:40;;;:11;:40;;;;:105;;;;32364:33;32349:48;;;:11;:48;;;;32292:105;:158;;;;32414:36;32438:11;32414:23;:36::i;:::-;32292:158;32272:178;;32153:305;;;:::o;35266:100::-;35320:13;35353:5;35346:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35266:100;:::o;36769:204::-;36837:7;36862:16;36870:7;36862;:16::i;:::-;36857:64;;36887:34;;;;;;;;;;;;;;36857:64;36941:15;:24;36957:7;36941:24;;;;;;;;;;;;;;;;;;;;;36934:31;;36769:204;;;:::o;54355:86::-;9491:12;:10;:12::i;:::-;9480:23;;:7;:5;:7::i;:::-;:23;;;9472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54427:8:::1;54417:7;:18;;;;54355:86:::0;:::o;36332:371::-;36405:13;36421:24;36437:7;36421:15;:24::i;:::-;36405:40;;36466:5;36460:11;;:2;:11;;;36456:48;;;36480:24;;;;;;;;;;;;;;36456:48;36537:5;36521:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;36547:37;36564:5;36571:12;:10;:12::i;:::-;36547:16;:37::i;:::-;36546:38;36521:63;36517:138;;;36608:35;;;;;;;;;;;;;;36517:138;36667:28;36676:2;36680:7;36689:5;36667:8;:28::i;:::-;36394:309;36332:371;;:::o;50084:43::-;;;;;;;;;;;;;;;;;:::o;50305:19::-;;;;:::o;54886:77::-;9491:12;:10;:12::i;:::-;9480:23;;:7;:5;:7::i;:::-;:23;;;9472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54951:6:::1;54942;;:15;;;;;;;;;;;;;;;;;;54886:77:::0;:::o;31402:303::-;31446:7;31671:15;:13;:15::i;:::-;31656:12;;31640:13;;:28;:46;31633:53;;31402:303;:::o;37634:170::-;37768:28;37778:4;37784:2;37788:7;37768:9;:28::i;:::-;37634:170;;;:::o;55052:322::-;9491:12;:10;:12::i;:::-;9480:23;;:7;:5;:7::i;:::-;:23;;;9472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;55196:7:::2;55217;:5;:7::i;:::-;55209:21;;55238;55209:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55195:69;;;55279:2;55271:11;;;::::0;::::2;;55102:272;1801:1:::1;2755:7;:22;;;;55052:322::o:0;37875:185::-;38013:39;38030:4;38036:2;38040:7;38013:39;;;;;;;;;;;;:16;:39::i;:::-;37875:185;;;:::o;54186:83::-;54249:14;54255:7;54249:5;:14::i;:::-;54186:83;:::o;52911:796::-;52971:16;52996:23;53022:17;53032:6;53022:9;:17::i;:::-;52996:43;;53046:30;53093:15;53079:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53046:63;;53116:22;53141:15;:13;:15::i;:::-;53116:40;;53163:23;53197:26;53232:441;53257:15;53239;:33;:64;;;;;53294:9;;53276:14;:27;;53239:64;53232:441;;;53314:31;53348:11;:27;53360:14;53348:27;;;;;;;;;;;53314:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53391:9;:16;;;53390:17;:49;;;;;53437:1;53411:28;;:9;:14;;;:28;;;;53390:49;53386:111;;;53473:9;:14;;;53452:35;;53386:111;53533:6;53511:28;;:18;:28;;;53507:132;;;53585:14;53552:13;53566:15;53552:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;53612:17;;;;;:::i;:::-;;;;53507:132;53649:16;;;;;:::i;:::-;;;;53305:368;53232:441;;;53688:13;53681:20;;;;;;;52911:796;;;:::o;54275:74::-;9491:12;:10;:12::i;:::-;9480:23;;:7;:5;:7::i;:::-;:23;;;9472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54338:5:::1;54331:4;:12;;;;54275:74:::0;:::o;50625:30::-;;;;;;;;;;;;;:::o;55490:102::-;9491:12;:10;:12::i;:::-;9480:23;;:7;:5;:7::i;:::-;:23;;;9472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55577:7:::1;;55565:9;:19;;;;;;;:::i;:::-;;55490:102:::0;;:::o;50427:29::-;;;;:::o;50530:25::-;;;;;;;;;;;;;:::o;50591:29::-;;;;;;;;;;;;;:::o;50187:109::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35074:125::-;35138:7;35165:21;35178:7;35165:12;:21::i;:::-;:26;;;35158:33;;35074:125;;;:::o;50560:26::-;;;;;;;;;;;;;:::o;54646:98::-;9491:12;:10;:12::i;:::-;9480:23;;:7;:5;:7::i;:::-;:23;;;9472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54727:11:::1;54714:10;:24;;;;54646:98:::0;:::o;32522:206::-;32586:7;32627:1;32610:19;;:5;:19;;;32606:60;;;32638:28;;;;;;;;;;;;;;32606:60;32692:12;:19;32705:5;32692:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;32684:36;;32677:43;;32522:206;;;:::o;9911:103::-;9491:12;:10;:12::i;:::-;9480:23;;:7;:5;:7::i;:::-;:23;;;9472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9976:30:::1;10003:1;9976:18;:30::i;:::-;9911:103::o:0;54447:95::-;9491:12;:10;:12::i;:::-;9480:23;;:7;:5;:7::i;:::-;:23;;;9472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54525:11:::1;54512:10;;:24;;;;;;;;;;;;;;;;;;54447:95:::0;:::o;9260:87::-;9306:7;9333:6;;;;;;;;;;;9326:13;;9260:87;:::o;50358:33::-;;;;:::o;35435:104::-;35491:13;35524:7;35517:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35435:104;:::o;50396:26::-;;;;:::o;51340:286::-;51405:11;51037:1;51023:11;:15;:52;;;;;51057:18;;51042:11;:33;;51023:52;51015:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51146:9;;51131:11;51115:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51107:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51438:11:::1;51285;51278:4;;:18;;;;:::i;:::-;51265:9;:31;;51257:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51467:6:::2;;;;;;;;;;;51466:7;51458:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;51545:9;;51530:11;51516:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;51508:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51584:36;51594:12;:10;:12::i;:::-;51608:11;51584:9;:36::i;:::-;51187:1:::1;51340:286:::0;;:::o;37045:287::-;37156:12;:10;:12::i;:::-;37144:24;;:8;:24;;;37140:54;;;37177:17;;;;;;;;;;;;;;37140:54;37252:8;37207:18;:32;37226:12;:10;:12::i;:::-;37207:32;;;;;;;;;;;;;;;:42;37240:8;37207:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;37305:8;37276:48;;37291:12;:10;:12::i;:::-;37276:48;;;37315:8;37276:48;;;;;;:::i;:::-;;;;;;;;37045:287;;:::o;52426:316::-;9491:12;:10;:12::i;:::-;9480:23;;:7;:5;:7::i;:::-;:23;;;9472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52580:9:::1;;52565:11;52548:9;;:16;;:28;;;;:::i;:::-;52532:13;:11;:13::i;:::-;:44;;;;:::i;:::-;:57;;52524:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;52630:9;52625:110;52649:9;;:16;;52645:1;:20;52625:110;;;52687:36;52697:9;;52707:1;52697:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;52711:11;52687:9;:36::i;:::-;52667:3;;;;;:::i;:::-;;;;52625:110;;;;52426:316:::0;;;:::o;52067:353::-;52152:11;51037:1;51023:11;:15;:52;;;;;51057:18;;51042:11;:33;;51023:52;51015:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51146:9;;51131:11;51115:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51107:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;52185:11:::1;51285;51278:4;;:18;;;;:::i;:::-;51265:9;:31;;51257:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;52214:7:::2;;;;;;;;;;;52213:8;52205:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;52270:10;;52264:4;:16;52256:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;52339:9;;52324:11;52310:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;52302:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52378:36;52388:12;:10;:12::i;:::-;52402:11;52378:9;:36::i;:::-;51187:1:::1;52067:353:::0;;;:::o;54750:130::-;9491:12;:10;:12::i;:::-;9480:23;;:7;:5;:7::i;:::-;:23;;;9472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54855:19:::1;54834:18;:40;;;;54750:130:::0;:::o;38131:369::-;38298:28;38308:4;38314:2;38318:7;38298:9;:28::i;:::-;38341:15;:2;:13;;;:15::i;:::-;:76;;;;;38361:56;38392:4;38398:2;38402:7;38411:5;38361:30;:56::i;:::-;38360:57;38341:76;38337:156;;;38441:40;;;;;;;;;;;;;;38337:156;38131:369;;;;:::o;51630:432::-;51699:11;51037:1;51023:11;:15;:52;;;;;51057:18;;51042:11;:33;;51023:52;51015:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51146:9;;51131:11;51115:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51107:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51732:11:::1;51285;51278:4;;:18;;;;:::i;:::-;51265:9;:31;;51257:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51761:10:::2;;;;;;;;;;;51760:11;51752:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;51839:7;;51824:11;51814:9;;:21;;;;:::i;:::-;:32;;51806:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51922:2;51909:11;51886:8;:22;51895:12;:10;:12::i;:::-;51886:22;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;:38;;51878:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;51959:11;51946:9;;:24;;;;;;;:::i;:::-;;;;;;;;52002:11;51977:8;:22;51986:12;:10;:12::i;:::-;51977:22;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;52020;52030:12;:10;:12::i;:::-;52044:11;52020:9;:36::i;:::-;51187:1:::1;51630:432:::0;;:::o;53820:362::-;53894:13;53924:17;53932:8;53924:7;:17::i;:::-;53916:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;54002:28;54033:10;:8;:10::i;:::-;54002:41;;54088:1;54063:14;54057:28;:32;:119;;;;;;;;;;;;;;;;;54125:14;54141:19;:8;:17;:19::i;:::-;54108:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54057:119;54050:126;;;53820:362;;;:::o;54967:79::-;9491:12;:10;:12::i;:::-;9480:23;;:7;:5;:7::i;:::-;:23;;;9472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55034:6:::1;55024:7;;:16;;;;;;;;;;;;;;;;;;54967:79:::0;:::o;50329:24::-;;;;:::o;37403:164::-;37500:4;37524:18;:25;37543:5;37524:25;;;;;;;;;;;;;;;:35;37550:8;37524:35;;;;;;;;;;;;;;;;;;;;;;;;;37517:42;;37403:164;;;;:::o;52750:155::-;52836:11;51037:1;51023:11;:15;:52;;;;;51057:18;;51042:11;:33;;51023:52;51015:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51146:9;;51131:11;51115:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51107:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9491:12:::1;:10;:12::i;:::-;9480:23;;:7;:5;:7::i;:::-;:23;;;9472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52866:33:::2;52876:9;52887:11;52866:9;:33::i;:::-;52750:155:::0;;;:::o;10169:201::-;9491:12;:10;:12::i;:::-;9480:23;;:7;:5;:7::i;:::-;:23;;;9472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10278:1:::1;10258:22;;:8;:22;;;;10250:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10334:28;10353:8;10334:18;:28::i;:::-;10169:201:::0;:::o;50461:31::-;;;;:::o;54546:94::-;9491:12;:10;:12::i;:::-;9480:23;;:7;:5;:7::i;:::-;:23;;;9472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54624:10:::1;54612:9;:22;;;;54546:94:::0;:::o;22044:157::-;22129:4;22168:25;22153:40;;;:11;:40;;;;22146:47;;22044:157;;;:::o;38755:187::-;38812:4;38855:7;38836:15;:13;:15::i;:::-;:26;;:53;;;;;38876:13;;38866:7;:23;38836:53;:98;;;;;38907:11;:20;38919:7;38907:20;;;;;;;;;;;:27;;;;;;;;;;;;38906:28;38836:98;38829:105;;38755:187;;;:::o;7984:98::-;8037:7;8064:10;8057:17;;7984:98;:::o;46925:196::-;47067:2;47040:15;:24;47056:7;47040:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47105:7;47101:2;47085:28;;47094:5;47085:28;;;;;;;;;;;;46925:196;;;:::o;53713:101::-;53778:7;53805:1;53798:8;;53713:101;:::o;41868:2130::-;41983:35;42021:21;42034:7;42021:12;:21::i;:::-;41983:59;;42081:4;42059:26;;:13;:18;;;:26;;;42055:67;;42094:28;;;;;;;;;;;;;;42055:67;42135:22;42177:4;42161:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42198:36;42215:4;42221:12;:10;:12::i;:::-;42198:16;:36::i;:::-;42161:73;:126;;;;42275:12;:10;:12::i;:::-;42251:36;;:20;42263:7;42251:11;:20::i;:::-;:36;;;42161:126;42135:153;;42306:17;42301:66;;42332:35;;;;;;;;;;;;;;42301:66;42396:1;42382:16;;:2;:16;;;42378:52;;;42407:23;;;;;;;;;;;;;;42378:52;42443:43;42465:4;42471:2;42475:7;42484:1;42443:21;:43::i;:::-;42551:35;42568:1;42572:7;42581:4;42551:8;:35::i;:::-;42912:1;42882:12;:18;42895:4;42882:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42956:1;42928:12;:16;42941:2;42928:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42974:31;43008:11;:20;43020:7;43008:20;;;;;;;;;;;42974:54;;43059:2;43043:8;:13;;;:18;;;;;;;;;;;;;;;;;;43109:15;43076:8;:23;;;:49;;;;;;;;;;;;;;;;;;43377:19;43409:1;43399:7;:11;43377:33;;43425:31;43459:11;:24;43471:11;43459:24;;;;;;;;;;;43425:58;;43527:1;43502:27;;:8;:13;;;;;;;;;;;;:27;;;43498:384;;;43712:13;;43697:11;:28;43693:174;;43766:4;43750:8;:13;;;:20;;;;;;;;;;;;;;;;;;43819:13;:28;;;43793:8;:23;;;:54;;;;;;;;;;;;;;;;;;43693:174;43498:384;42857:1036;;;43929:7;43925:2;43910:27;;43919:4;43910:27;;;;;;;;;;;;43948:42;43969:4;43975:2;43979:7;43988:1;43948:20;:42::i;:::-;41972:2026;;41868:2130;;;:::o;44081:89::-;44141:21;44147:7;44156:5;44141;:21::i;:::-;44081:89;:::o;33903:1109::-;33965:21;;:::i;:::-;33999:12;34014:7;33999:22;;34082:4;34063:15;:13;:15::i;:::-;:23;;:47;;;;;34097:13;;34090:4;:20;34063:47;34059:886;;;34131:31;34165:11;:17;34177:4;34165:17;;;;;;;;;;;34131:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34206:9;:16;;;34201:729;;34277:1;34251:28;;:9;:14;;;:28;;;34247:101;;34315:9;34308:16;;;;;;34247:101;34650:261;34657:4;34650:261;;;34690:6;;;;;;;;34735:11;:17;34747:4;34735:17;;;;;;;;;;;34723:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34809:1;34783:28;;:9;:14;;;:28;;;34779:109;;34851:9;34844:16;;;;;;34779:109;34650:261;;;34201:729;34112:833;34059:886;34973:31;;;;;;;;;;;;;;33903:1109;;;;:::o;10530:191::-;10604:16;10623:6;;;;;;;;;;;10604:25;;10649:8;10640:6;;:17;;;;;;;;;;;;;;;;;;10704:8;10673:40;;10694:8;10673:40;;;;;;;;;;;;10593:128;10530:191;:::o;38950:104::-;39019:27;39029:2;39033:8;39019:27;;;;;;;;;;;;:9;:27::i;:::-;38950:104;;:::o;11961:326::-;12021:4;12278:1;12256:7;:19;;;:23;12249:30;;11961:326;;;:::o;47613:667::-;47776:4;47813:2;47797:36;;;47834:12;:10;:12::i;:::-;47848:4;47854:7;47863:5;47797:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47793:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48048:1;48031:6;:13;:18;48027:235;;;48077:40;;;;;;;;;;;;;;48027:235;48220:6;48214:13;48205:6;48201:2;48197:15;48190:38;47793:480;47926:45;;;47916:55;;;:6;:55;;;;47909:62;;;47613:667;;;;;;:::o;55380:104::-;55440:13;55469:9;55462:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55380:104;:::o;5546:723::-;5602:13;5832:1;5823:5;:10;5819:53;;;5850:10;;;;;;;;;;;;;;;;;;;;;5819:53;5882:12;5897:5;5882:20;;5913:14;5938:78;5953:1;5945:4;:9;5938:78;;5971:8;;;;;:::i;:::-;;;;6002:2;5994:10;;;;;:::i;:::-;;;5938:78;;;6026:19;6058:6;6048:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6026:39;;6076:154;6092:1;6083:5;:10;6076:154;;6120:1;6110:11;;;;;:::i;:::-;;;6187:2;6179:5;:10;;;;:::i;:::-;6166:2;:24;;;;:::i;:::-;6153:39;;6136:6;6143;6136:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6216:2;6207:11;;;;;:::i;:::-;;;6076:154;;;6254:6;6240:21;;;;;5546:723;;;;:::o;48928:159::-;;;;;:::o;49746:158::-;;;;;:::o;44399:2408::-;44479:35;44517:21;44530:7;44517:12;:21::i;:::-;44479:59;;44551:12;44566:13;:18;;;44551:33;;44601:13;44597:290;;;44631:22;44673:4;44657:20;;:12;:10;:12::i;:::-;:20;;;:77;;;;44698:36;44715:4;44721:12;:10;:12::i;:::-;44698:16;:36::i;:::-;44657:77;:134;;;;44779:12;:10;:12::i;:::-;44755:36;;:20;44767:7;44755:11;:20::i;:::-;:36;;;44657:134;44631:161;;44814:17;44809:66;;44840:35;;;;;;;;;;;;;;44809:66;44616:271;44597:290;44899:51;44921:4;44935:1;44939:7;44948:1;44899:21;:51::i;:::-;45015:35;45032:1;45036:7;45045:4;45015:8;:35::i;:::-;45346:31;45380:12;:18;45393:4;45380:18;;;;;;;;;;;;;;;45346:52;;45436:1;45413:11;:19;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45480:1;45452:11;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45580:31;45614:11;:20;45626:7;45614:20;;;;;;;;;;;45580:54;;45665:4;45649:8;:13;;;:20;;;;;;;;;;;;;;;;;;45717:15;45684:8;:23;;;:49;;;;;;;;;;;;;;;;;;45766:4;45748:8;:15;;;:22;;;;;;;;;;;;;;;;;;46018:19;46050:1;46040:7;:11;46018:33;;46066:31;46100:11;:24;46112:11;46100:24;;;;;;;;;;;46066:58;;46168:1;46143:27;;:8;:13;;;;;;;;;;;;:27;;;46139:384;;;46353:13;;46338:11;:28;46334:174;;46407:4;46391:8;:13;;;:20;;;;;;;;;;;;;;;;;;46460:13;:28;;;46434:8;:23;;;:54;;;;;;;;;;;;;;;;;;46334:174;46139:384;45321:1213;;;;46578:7;46574:1;46551:35;;46560:4;46551:35;;;;;;;;;;;;46597:50;46618:4;46632:1;46636:7;46645:1;46597:20;:50::i;:::-;46774:12;;:14;;;;;;;;;;;;;44468:2339;;44399:2408;;:::o;39417:163::-;39540:32;39546:2;39550:8;39560:5;39567:4;39540:5;:32::i;:::-;39417:163;;;:::o;39839:1775::-;39978:20;40001:13;;39978:36;;40043:1;40029:16;;:2;:16;;;40025:48;;;40054:19;;;;;;;;;;;;;;40025:48;40100:1;40088:8;:13;40084:44;;;40110:18;;;;;;;;;;;;;;40084:44;40141:61;40171:1;40175:2;40179:12;40193:8;40141:21;:61::i;:::-;40514:8;40479:12;:16;40492:2;40479:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40578:8;40538:12;:16;40551:2;40538:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40637:2;40604:11;:25;40616:12;40604:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40704:15;40654:11;:25;40666:12;40654:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;40737:20;40760:12;40737:35;;40787:11;40816:8;40801:12;:23;40787:37;;40845:4;:23;;;;;40853:15;:2;:13;;;:15::i;:::-;40845:23;40841:641;;;40889:314;40945:12;40941:2;40920:38;;40937:1;40920:38;;;;;;;;;;;;40986:69;41025:1;41029:2;41033:14;;;;;;41049:5;40986:30;:69::i;:::-;40981:174;;41091:40;;;;;;;;;;;;;;40981:174;41198:3;41182:12;:19;;40889:314;;41284:12;41267:13;;:29;41263:43;;41298:8;;;41263:43;40841:641;;;41347:120;41403:14;;;;;;41399:2;41378:40;;41395:1;41378:40;;;;;;;;;;;;41462:3;41446:12;:19;;41347:120;;40841:641;41512:12;41496:13;:28;;;;40454:1082;;41546:60;41575:1;41579:2;41583:12;41597:8;41546:20;:60::i;:::-;39967:1647;39839:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:329::-;4997:6;5046:2;5034:9;5025:7;5021:23;5017:32;5014:119;;;5052:79;;:::i;:::-;5014:119;5172:1;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5143:117;4938:329;;;;:::o;5273:118::-;5360:24;5378:5;5360:24;:::i;:::-;5355:3;5348:37;5273:118;;:::o;5397:222::-;5490:4;5528:2;5517:9;5513:18;5505:26;;5541:71;5609:1;5598:9;5594:17;5585:6;5541:71;:::i;:::-;5397:222;;;;:::o;5625:116::-;5695:21;5710:5;5695:21;:::i;:::-;5688:5;5685:32;5675:60;;5731:1;5728;5721:12;5675:60;5625:116;:::o;5747:133::-;5790:5;5828:6;5815:20;5806:29;;5844:30;5868:5;5844:30;:::i;:::-;5747:133;;;;:::o;5886:323::-;5942:6;5991:2;5979:9;5970:7;5966:23;5962:32;5959:119;;;5997:79;;:::i;:::-;5959:119;6117:1;6142:50;6184:7;6175:6;6164:9;6160:22;6142:50;:::i;:::-;6132:60;;6088:114;5886:323;;;;:::o;6215:619::-;6292:6;6300;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:53;6681:7;6672:6;6661:9;6657:22;6636:53;:::i;:::-;6626:63;;6581:118;6738:2;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6709:118;6215:619;;;;;:::o;6840:114::-;6907:6;6941:5;6935:12;6925:22;;6840:114;;;:::o;6960:184::-;7059:11;7093:6;7088:3;7081:19;7133:4;7128:3;7124:14;7109:29;;6960:184;;;;:::o;7150:132::-;7217:4;7240:3;7232:11;;7270:4;7265:3;7261:14;7253:22;;7150:132;;;:::o;7288:108::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7288:108;;:::o;7402:179::-;7471:10;7492:46;7534:3;7526:6;7492:46;:::i;:::-;7570:4;7565:3;7561:14;7547:28;;7402:179;;;;:::o;7587:113::-;7657:4;7689;7684:3;7680:14;7672:22;;7587:113;;;:::o;7736:732::-;7855:3;7884:54;7932:5;7884:54;:::i;:::-;7954:86;8033:6;8028:3;7954:86;:::i;:::-;7947:93;;8064:56;8114:5;8064:56;:::i;:::-;8143:7;8174:1;8159:284;8184:6;8181:1;8178:13;8159:284;;;8260:6;8254:13;8287:63;8346:3;8331:13;8287:63;:::i;:::-;8280:70;;8373:60;8426:6;8373:60;:::i;:::-;8363:70;;8219:224;8206:1;8203;8199:9;8194:14;;8159:284;;;8163:14;8459:3;8452:10;;7860:608;;;7736:732;;;;:::o;8474:373::-;8617:4;8655:2;8644:9;8640:18;8632:26;;8704:9;8698:4;8694:20;8690:1;8679:9;8675:17;8668:47;8732:108;8835:4;8826:6;8732:108;:::i;:::-;8724:116;;8474:373;;;;:::o;8853:117::-;8962:1;8959;8952:12;8976:117;9085:1;9082;9075:12;9099:117;9208:1;9205;9198:12;9236:553;9294:8;9304:6;9354:3;9347:4;9339:6;9335:17;9331:27;9321:122;;9362:79;;:::i;:::-;9321:122;9475:6;9462:20;9452:30;;9505:18;9497:6;9494:30;9491:117;;;9527:79;;:::i;:::-;9491:117;9641:4;9633:6;9629:17;9617:29;;9695:3;9687:4;9679:6;9675:17;9665:8;9661:32;9658:41;9655:128;;;9702:79;;:::i;:::-;9655:128;9236:553;;;;;:::o;9795:529::-;9866:6;9874;9923:2;9911:9;9902:7;9898:23;9894:32;9891:119;;;9929:79;;:::i;:::-;9891:119;10077:1;10066:9;10062:17;10049:31;10107:18;10099:6;10096:30;10093:117;;;10129:79;;:::i;:::-;10093:117;10242:65;10299:7;10290:6;10279:9;10275:22;10242:65;:::i;:::-;10224:83;;;;10020:297;9795:529;;;;;:::o;10330:468::-;10395:6;10403;10452:2;10440:9;10431:7;10427:23;10423:32;10420:119;;;10458:79;;:::i;:::-;10420:119;10578:1;10603:53;10648:7;10639:6;10628:9;10624:22;10603:53;:::i;:::-;10593:63;;10549:117;10705:2;10731:50;10773:7;10764:6;10753:9;10749:22;10731:50;:::i;:::-;10721:60;;10676:115;10330:468;;;;;:::o;10821:568::-;10894:8;10904:6;10954:3;10947:4;10939:6;10935:17;10931:27;10921:122;;10962:79;;:::i;:::-;10921:122;11075:6;11062:20;11052:30;;11105:18;11097:6;11094:30;11091:117;;;11127:79;;:::i;:::-;11091:117;11241:4;11233:6;11229:17;11217:29;;11295:3;11287:4;11279:6;11275:17;11265:8;11261:32;11258:41;11255:128;;;11302:79;;:::i;:::-;11255:128;10821:568;;;;;:::o;11395:704::-;11490:6;11498;11506;11555:2;11543:9;11534:7;11530:23;11526:32;11523:119;;;11561:79;;:::i;:::-;11523:119;11709:1;11698:9;11694:17;11681:31;11739:18;11731:6;11728:30;11725:117;;;11761:79;;:::i;:::-;11725:117;11874:80;11946:7;11937:6;11926:9;11922:22;11874:80;:::i;:::-;11856:98;;;;11652:312;12003:2;12029:53;12074:7;12065:6;12054:9;12050:22;12029:53;:::i;:::-;12019:63;;11974:118;11395:704;;;;;:::o;12105:474::-;12173:6;12181;12230:2;12218:9;12209:7;12205:23;12201:32;12198:119;;;12236:79;;:::i;:::-;12198:119;12356:1;12381:53;12426:7;12417:6;12406:9;12402:22;12381:53;:::i;:::-;12371:63;;12327:117;12483:2;12509:53;12554:7;12545:6;12534:9;12530:22;12509:53;:::i;:::-;12499:63;;12454:118;12105:474;;;;;:::o;12585:117::-;12694:1;12691;12684:12;12708:180;12756:77;12753:1;12746:88;12853:4;12850:1;12843:15;12877:4;12874:1;12867:15;12894:281;12977:27;12999:4;12977:27;:::i;:::-;12969:6;12965:40;13107:6;13095:10;13092:22;13071:18;13059:10;13056:34;13053:62;13050:88;;;13118:18;;:::i;:::-;13050:88;13158:10;13154:2;13147:22;12937:238;12894:281;;:::o;13181:129::-;13215:6;13242:20;;:::i;:::-;13232:30;;13271:33;13299:4;13291:6;13271:33;:::i;:::-;13181:129;;;:::o;13316:307::-;13377:4;13467:18;13459:6;13456:30;13453:56;;;13489:18;;:::i;:::-;13453:56;13527:29;13549:6;13527:29;:::i;:::-;13519:37;;13611:4;13605;13601:15;13593:23;;13316:307;;;:::o;13629:154::-;13713:6;13708:3;13703;13690:30;13775:1;13766:6;13761:3;13757:16;13750:27;13629:154;;;:::o;13789:410::-;13866:5;13891:65;13907:48;13948:6;13907:48;:::i;:::-;13891:65;:::i;:::-;13882:74;;13979:6;13972:5;13965:21;14017:4;14010:5;14006:16;14055:3;14046:6;14041:3;14037:16;14034:25;14031:112;;;14062:79;;:::i;:::-;14031:112;14152:41;14186:6;14181:3;14176;14152:41;:::i;:::-;13872:327;13789:410;;;;;:::o;14218:338::-;14273:5;14322:3;14315:4;14307:6;14303:17;14299:27;14289:122;;14330:79;;:::i;:::-;14289:122;14447:6;14434:20;14472:78;14546:3;14538:6;14531:4;14523:6;14519:17;14472:78;:::i;:::-;14463:87;;14279:277;14218:338;;;;:::o;14562:943::-;14657:6;14665;14673;14681;14730:3;14718:9;14709:7;14705:23;14701:33;14698:120;;;14737:79;;:::i;:::-;14698:120;14857:1;14882:53;14927:7;14918:6;14907:9;14903:22;14882:53;:::i;:::-;14872:63;;14828:117;14984:2;15010:53;15055:7;15046:6;15035:9;15031:22;15010:53;:::i;:::-;15000:63;;14955:118;15112:2;15138:53;15183:7;15174:6;15163:9;15159:22;15138:53;:::i;:::-;15128:63;;15083:118;15268:2;15257:9;15253:18;15240:32;15299:18;15291:6;15288:30;15285:117;;;15321:79;;:::i;:::-;15285:117;15426:62;15480:7;15471:6;15460:9;15456:22;15426:62;:::i;:::-;15416:72;;15211:287;14562:943;;;;;;;:::o;15511:474::-;15579:6;15587;15636:2;15624:9;15615:7;15611:23;15607:32;15604:119;;;15642:79;;:::i;:::-;15604:119;15762:1;15787:53;15832:7;15823:6;15812:9;15808:22;15787:53;:::i;:::-;15777:63;;15733:117;15889:2;15915:53;15960:7;15951:6;15940:9;15936:22;15915:53;:::i;:::-;15905:63;;15860:118;15511:474;;;;;:::o;15991:::-;16059:6;16067;16116:2;16104:9;16095:7;16091:23;16087:32;16084:119;;;16122:79;;:::i;:::-;16084:119;16242:1;16267:53;16312:7;16303:6;16292:9;16288:22;16267:53;:::i;:::-;16257:63;;16213:117;16369:2;16395:53;16440:7;16431:6;16420:9;16416:22;16395:53;:::i;:::-;16385:63;;16340:118;15991:474;;;;;:::o;16471:180::-;16519:77;16516:1;16509:88;16616:4;16613:1;16606:15;16640:4;16637:1;16630:15;16657:320;16701:6;16738:1;16732:4;16728:12;16718:22;;16785:1;16779:4;16775:12;16806:18;16796:81;;16862:4;16854:6;16850:17;16840:27;;16796:81;16924:2;16916:6;16913:14;16893:18;16890:38;16887:84;;;16943:18;;:::i;:::-;16887:84;16708:269;16657:320;;;:::o;16983:182::-;17123:34;17119:1;17111:6;17107:14;17100:58;16983:182;:::o;17171:366::-;17313:3;17334:67;17398:2;17393:3;17334:67;:::i;:::-;17327:74;;17410:93;17499:3;17410:93;:::i;:::-;17528:2;17523:3;17519:12;17512:19;;17171:366;;;:::o;17543:419::-;17709:4;17747:2;17736:9;17732:18;17724:26;;17796:9;17790:4;17786:20;17782:1;17771:9;17767:17;17760:47;17824:131;17950:4;17824:131;:::i;:::-;17816:139;;17543:419;;;:::o;17968:181::-;18108:33;18104:1;18096:6;18092:14;18085:57;17968:181;:::o;18155:366::-;18297:3;18318:67;18382:2;18377:3;18318:67;:::i;:::-;18311:74;;18394:93;18483:3;18394:93;:::i;:::-;18512:2;18507:3;18503:12;18496:19;;18155:366;;;:::o;18527:419::-;18693:4;18731:2;18720:9;18716:18;18708:26;;18780:9;18774:4;18770:20;18766:1;18755:9;18751:17;18744:47;18808:131;18934:4;18808:131;:::i;:::-;18800:139;;18527:419;;;:::o;18952:147::-;19053:11;19090:3;19075:18;;18952:147;;;;:::o;19105:114::-;;:::o;19225:398::-;19384:3;19405:83;19486:1;19481:3;19405:83;:::i;:::-;19398:90;;19497:93;19586:3;19497:93;:::i;:::-;19615:1;19610:3;19606:11;19599:18;;19225:398;;;:::o;19629:379::-;19813:3;19835:147;19978:3;19835:147;:::i;:::-;19828:154;;19999:3;19992:10;;19629:379;;;:::o;20014:180::-;20062:77;20059:1;20052:88;20159:4;20156:1;20149:15;20183:4;20180:1;20173:15;20200:180;20248:77;20245:1;20238:88;20345:4;20342:1;20335:15;20369:4;20366:1;20359:15;20386:233;20425:3;20448:24;20466:5;20448:24;:::i;:::-;20439:33;;20494:66;20487:5;20484:77;20481:103;;;20564:18;;:::i;:::-;20481:103;20611:1;20604:5;20600:13;20593:20;;20386:233;;;:::o;20625:170::-;20765:22;20761:1;20753:6;20749:14;20742:46;20625:170;:::o;20801:366::-;20943:3;20964:67;21028:2;21023:3;20964:67;:::i;:::-;20957:74;;21040:93;21129:3;21040:93;:::i;:::-;21158:2;21153:3;21149:12;21142:19;;20801:366;;;:::o;21173:419::-;21339:4;21377:2;21366:9;21362:18;21354:26;;21426:9;21420:4;21416:20;21412:1;21401:9;21397:17;21390:47;21454:131;21580:4;21454:131;:::i;:::-;21446:139;;21173:419;;;:::o;21598:305::-;21638:3;21657:20;21675:1;21657:20;:::i;:::-;21652:25;;21691:20;21709:1;21691:20;:::i;:::-;21686:25;;21845:1;21777:66;21773:74;21770:1;21767:81;21764:107;;;21851:18;;:::i;:::-;21764:107;21895:1;21892;21888:9;21881:16;;21598:305;;;;:::o;21909:170::-;22049:22;22045:1;22037:6;22033:14;22026:46;21909:170;:::o;22085:366::-;22227:3;22248:67;22312:2;22307:3;22248:67;:::i;:::-;22241:74;;22324:93;22413:3;22324:93;:::i;:::-;22442:2;22437:3;22433:12;22426:19;;22085:366;;;:::o;22457:419::-;22623:4;22661:2;22650:9;22646:18;22638:26;;22710:9;22704:4;22700:20;22696:1;22685:9;22681:17;22674:47;22738:131;22864:4;22738:131;:::i;:::-;22730:139;;22457:419;;;:::o;22882:348::-;22922:7;22945:20;22963:1;22945:20;:::i;:::-;22940:25;;22979:20;22997:1;22979:20;:::i;:::-;22974:25;;23167:1;23099:66;23095:74;23092:1;23089:81;23084:1;23077:9;23070:17;23066:105;23063:131;;;23174:18;;:::i;:::-;23063:131;23222:1;23219;23215:9;23204:20;;22882:348;;;;:::o;23236:169::-;23376:21;23372:1;23364:6;23360:14;23353:45;23236:169;:::o;23411:366::-;23553:3;23574:67;23638:2;23633:3;23574:67;:::i;:::-;23567:74;;23650:93;23739:3;23650:93;:::i;:::-;23768:2;23763:3;23759:12;23752:19;;23411:366;;;:::o;23783:419::-;23949:4;23987:2;23976:9;23972:18;23964:26;;24036:9;24030:4;24026:20;24022:1;24011:9;24007:17;24000:47;24064:131;24190:4;24064:131;:::i;:::-;24056:139;;23783:419;;;:::o;24208:173::-;24348:25;24344:1;24336:6;24332:14;24325:49;24208:173;:::o;24387:366::-;24529:3;24550:67;24614:2;24609:3;24550:67;:::i;:::-;24543:74;;24626:93;24715:3;24626:93;:::i;:::-;24744:2;24739:3;24735:12;24728:19;;24387:366;;;:::o;24759:419::-;24925:4;24963:2;24952:9;24948:18;24940:26;;25012:9;25006:4;25002:20;24998:1;24987:9;24983:17;24976:47;25040:131;25166:4;25040:131;:::i;:::-;25032:139;;24759:419;;;:::o;25184:168::-;25324:20;25320:1;25312:6;25308:14;25301:44;25184:168;:::o;25358:366::-;25500:3;25521:67;25585:2;25580:3;25521:67;:::i;:::-;25514:74;;25597:93;25686:3;25597:93;:::i;:::-;25715:2;25710:3;25706:12;25699:19;;25358:366;;;:::o;25730:419::-;25896:4;25934:2;25923:9;25919:18;25911:26;;25983:9;25977:4;25973:20;25969:1;25958:9;25954:17;25947:47;26011:131;26137:4;26011:131;:::i;:::-;26003:139;;25730:419;;;:::o;26155:161::-;26295:13;26291:1;26283:6;26279:14;26272:37;26155:161;:::o;26322:366::-;26464:3;26485:67;26549:2;26544:3;26485:67;:::i;:::-;26478:74;;26561:93;26650:3;26561:93;:::i;:::-;26679:2;26674:3;26670:12;26663:19;;26322:366;;;:::o;26694:419::-;26860:4;26898:2;26887:9;26883:18;26875:26;;26947:9;26941:4;26937:20;26933:1;26922:9;26918:17;26911:47;26975:131;27101:4;26975:131;:::i;:::-;26967:139;;26694:419;;;:::o;27119:161::-;27259:13;27255:1;27247:6;27243:14;27236:37;27119:161;:::o;27286:366::-;27428:3;27449:67;27513:2;27508:3;27449:67;:::i;:::-;27442:74;;27525:93;27614:3;27525:93;:::i;:::-;27643:2;27638:3;27634:12;27627:19;;27286:366;;;:::o;27658:419::-;27824:4;27862:2;27851:9;27847:18;27839:26;;27911:9;27905:4;27901:20;27897:1;27886:9;27882:17;27875:47;27939:131;28065:4;27939:131;:::i;:::-;27931:139;;27658:419;;;:::o;28083:234::-;28223:34;28219:1;28211:6;28207:14;28200:58;28292:17;28287:2;28279:6;28275:15;28268:42;28083:234;:::o;28323:366::-;28465:3;28486:67;28550:2;28545:3;28486:67;:::i;:::-;28479:74;;28562:93;28651:3;28562:93;:::i;:::-;28680:2;28675:3;28671:12;28664:19;;28323:366;;;:::o;28695:419::-;28861:4;28899:2;28888:9;28884:18;28876:26;;28948:9;28942:4;28938:20;28934:1;28923:9;28919:17;28912:47;28976:131;29102:4;28976:131;:::i;:::-;28968:139;;28695:419;;;:::o;29120:148::-;29222:11;29259:3;29244:18;;29120:148;;;;:::o;29274:377::-;29380:3;29408:39;29441:5;29408:39;:::i;:::-;29463:89;29545:6;29540:3;29463:89;:::i;:::-;29456:96;;29561:52;29606:6;29601:3;29594:4;29587:5;29583:16;29561:52;:::i;:::-;29638:6;29633:3;29629:16;29622:23;;29384:267;29274:377;;;;:::o;29657:435::-;29837:3;29859:95;29950:3;29941:6;29859:95;:::i;:::-;29852:102;;29971:95;30062:3;30053:6;29971:95;:::i;:::-;29964:102;;30083:3;30076:10;;29657:435;;;;;:::o;30098:225::-;30238:34;30234:1;30226:6;30222:14;30215:58;30307:8;30302:2;30294:6;30290:15;30283:33;30098:225;:::o;30329:366::-;30471:3;30492:67;30556:2;30551:3;30492:67;:::i;:::-;30485:74;;30568:93;30657:3;30568:93;:::i;:::-;30686:2;30681:3;30677:12;30670:19;;30329:366;;;:::o;30701:419::-;30867:4;30905:2;30894:9;30890:18;30882:26;;30954:9;30948:4;30944:20;30940:1;30929:9;30925:17;30918:47;30982:131;31108:4;30982:131;:::i;:::-;30974:139;;30701:419;;;:::o;31126:98::-;31177:6;31211:5;31205:12;31195:22;;31126:98;;;:::o;31230:168::-;31313:11;31347:6;31342:3;31335:19;31387:4;31382:3;31378:14;31363:29;;31230:168;;;;:::o;31404:360::-;31490:3;31518:38;31550:5;31518:38;:::i;:::-;31572:70;31635:6;31630:3;31572:70;:::i;:::-;31565:77;;31651:52;31696:6;31691:3;31684:4;31677:5;31673:16;31651:52;:::i;:::-;31728:29;31750:6;31728:29;:::i;:::-;31723:3;31719:39;31712:46;;31494:270;31404:360;;;;:::o;31770:640::-;31965:4;32003:3;31992:9;31988:19;31980:27;;32017:71;32085:1;32074:9;32070:17;32061:6;32017:71;:::i;:::-;32098:72;32166:2;32155:9;32151:18;32142:6;32098:72;:::i;:::-;32180;32248:2;32237:9;32233:18;32224:6;32180:72;:::i;:::-;32299:9;32293:4;32289:20;32284:2;32273:9;32269:18;32262:48;32327:76;32398:4;32389:6;32327:76;:::i;:::-;32319:84;;31770:640;;;;;;;:::o;32416:141::-;32472:5;32503:6;32497:13;32488:22;;32519:32;32545:5;32519:32;:::i;:::-;32416:141;;;;:::o;32563:349::-;32632:6;32681:2;32669:9;32660:7;32656:23;32652:32;32649:119;;;32687:79;;:::i;:::-;32649:119;32807:1;32832:63;32887:7;32878:6;32867:9;32863:22;32832:63;:::i;:::-;32822:73;;32778:127;32563:349;;;;:::o;32918:180::-;32966:77;32963:1;32956:88;33063:4;33060:1;33053:15;33087:4;33084:1;33077:15;33104:185;33144:1;33161:20;33179:1;33161:20;:::i;:::-;33156:25;;33195:20;33213:1;33195:20;:::i;:::-;33190:25;;33234:1;33224:35;;33239:18;;:::i;:::-;33224:35;33281:1;33278;33274:9;33269:14;;33104:185;;;;:::o;33295:191::-;33335:4;33355:20;33373:1;33355:20;:::i;:::-;33350:25;;33389:20;33407:1;33389:20;:::i;:::-;33384:25;;33428:1;33425;33422:8;33419:34;;;33433:18;;:::i;:::-;33419:34;33478:1;33475;33471:9;33463:17;;33295:191;;;;:::o;33492:176::-;33524:1;33541:20;33559:1;33541:20;:::i;:::-;33536:25;;33575:20;33593:1;33575:20;:::i;:::-;33570:25;;33614:1;33604:35;;33619:18;;:::i;:::-;33604:35;33660:1;33657;33653:9;33648:14;;33492:176;;;;:::o

Swarm Source

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