ETH Price: $3,104.62 (+0.21%)
Gas: 3 Gwei

Token

Puchikano Pixel Girls (PPG)
 

Overview

Max Total Supply

165 PPG

Holders

126

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PPG
0x162ffc9198596cb130b7f0d844c2e4fde0784a85
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:
Contract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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.7.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
                /// @solidity memory-safe-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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/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.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 1;
    }

    /**
     * @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: Contract.sol


pragma solidity ^0.8.0;





contract Contract is ERC721A, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    bool public publicSale = true;
    uint256 public maxSupply = 500;
    uint256 public freeSupply = 100;
    uint256 public maxPerTx = 3;
    uint256 maxFreeMint = 1;
    uint256 public publicCost = .004 ether;

    mapping(address => uint256) public freeMintClaimed;

    constructor(string memory _initBaseURI) ERC721A("Puchikano Pixel Girls", "PPG") {
        setBaseURI(_initBaseURI);
    }

    // public mint
    function mint(uint256 quantity) external payable {
        require(publicSale, "The public sale is not enabled!");
        uint256 supply = totalSupply();
        require(quantity > 0, "Quantity must be higher than zero!");
        require(quantity <= maxPerTx, "Quantity exceeds The Limit");
        require(supply + quantity <= maxSupply, "Max supply reached!");
        require(msg.value >= publicCost * quantity, "Not enough ether!");

        _safeMint(msg.sender, quantity);
    }

    // free mint
    function freeMint(uint256 quantity) external payable {
        require(publicSale, "The public sale is not enabled!");
        uint256 supply = totalSupply();
        require(quantity > 0, "Quantity must be higher than zero!");
        require(freeSupply > 0, "Free mint has ended!");
        require(supply + quantity <= maxSupply, "Max supply reached!");
        require(freeMintClaimed[msg.sender] + quantity <= maxFreeMint, "Quantity exceed the limit!");

        _safeMint(msg.sender, quantity);
        freeMintClaimed[msg.sender] += quantity;
        freeSupply--;
    }


    function devMint(uint256 quantity) external onlyOwner {
        uint256 supply = totalSupply();
        require(quantity > 0, "Quantity must be higher than zero!");
        require(supply + quantity <= maxSupply, "Max supply reached!");
        _safeMint(msg.sender, quantity);
    }

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

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

        string memory currentBaseURI = _baseURI();

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

    function setMaxSupply(uint256 _amount) public onlyOwner {
        maxSupply = _amount;
    }

    function setMaxFreeMint(uint256 _amount) public onlyOwner {
        maxFreeMint = _amount;
    }

    function setSale( bool _publicSale) public onlyOwner {
        publicSale = _publicSale;
    }

    function setTx(uint256 _amount) public onlyOwner {
        maxPerTx = _amount;
    }

    function setPrice(uint256 _publicCost) public onlyOwner {
        publicCost = _publicCost;
    }

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

    function airdrop(uint256 quantity, address _address) public onlyOwner {
        uint256 supply = totalSupply();
        require(quantity > 0, "Quantity must be higher than zero!");
        require(supply + quantity <= maxSupply, "Max supply reached!");
        _safeMint(_address, quantity);
    }

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

    function withdraw() public onlyOwner {
        (bool ts, ) = payable(owner()).call{value: address(this).balance}("");
        require(ts);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicCost","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicSale","type":"bool"}],"name":"setSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTx","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000519291906200036c565b506001600b60006101000a81548160ff0219169083151502179055506101f4600c556064600d556003600e556001600f55660e35fa931a00006010553480156200009a57600080fd5b5060405162004327380380620043278339818101604052810190620000c091906200049a565b6040518060400160405280601581526020017f50756368696b616e6f20506978656c204769726c7300000000000000000000008152506040518060400160405280600381526020017f50504700000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001449291906200036c565b5080600390805190602001906200015d9291906200036c565b506200016e620001ae60201b60201c565b6000819055505050620001966200018a620001b760201b60201c565b620001bf60201b60201c565b620001a7816200028560201b60201c565b50620006f2565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000295620002b160201b60201c565b8060099080519060200190620002ad9291906200036c565b5050565b620002c1620001b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e76200034260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003379062000512565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200037a90620005da565b90600052602060002090601f0160209004810192826200039e5760008555620003ea565b82601f10620003b957805160ff1916838001178555620003ea565b82800160010185558215620003ea579182015b82811115620003e9578251825591602001919060010190620003cc565b5b509050620003f99190620003fd565b5090565b5b8082111562000418576000816000905550600101620003fe565b5090565b6000620004336200042d846200055d565b62000534565b905082815260208101848484011115620004525762000451620006a9565b5b6200045f848285620005a4565b509392505050565b600082601f8301126200047f576200047e620006a4565b5b8151620004918482602086016200041c565b91505092915050565b600060208284031215620004b357620004b2620006b3565b5b600082015167ffffffffffffffff811115620004d457620004d3620006ae565b5b620004e28482850162000467565b91505092915050565b6000620004fa60208362000593565b91506200050782620006c9565b602082019050919050565b600060208201905081810360008301526200052d81620004eb565b9050919050565b60006200054062000553565b90506200054e828262000610565b919050565b6000604051905090565b600067ffffffffffffffff8211156200057b576200057a62000675565b5b6200058682620006b8565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005c4578082015181840152602081019050620005a7565b83811115620005d4576000848401525b50505050565b60006002820490506001821680620005f357607f821691505b602082108114156200060a576200060962000646565b5b50919050565b6200061b82620006b8565b810181811067ffffffffffffffff821117156200063d576200063c62000675565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613c2580620007026000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063da3ef23f1161006f578063da3ef23f14610779578063e0ec7c36146107a2578063e985e9c5146107df578063f2fde38b1461081c578063f968adbe146108455761021a565b8063b88d4fde14610694578063bc63f02e146106bd578063c6682862146106e6578063c87b56dd14610711578063d5abeb011461074e5761021a565b80638da5cb5b116100f25780638da5cb5b146105d057806391b7f5ed146105fb57806395d89b4114610624578063a0712d681461064f578063a22cb4651461066b5761021a565b8063715018a614610549578063742a4c9b146105605780637c928fe9146105895780638693da20146105a55761021a565b8063375a069a116101a6578063620cc86c11610175578063620cc86c146104525780636352211e1461047b5780636c0360eb146104b85780636f8b44b0146104e357806370a082311461050c5761021a565b8063375a069a146103c05780633ccfd60b146103e957806342842e0e1461040057806355f804b3146104295761021a565b806318160ddd116101ed57806318160ddd146102ed5780631d2e5a3a1461031857806323b872dd1461034157806324a6ab0c1461036a57806333bc1c5c146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612e93565b610870565b6040516102539190613320565b60405180910390f35b34801561026857600080fd5b50610271610952565b60405161027e919061333b565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612f36565b6109e4565b6040516102bb91906132b9565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612e26565b610a60565b005b3480156102f957600080fd5b50610302610b6b565b60405161030f919061349d565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612e66565b610b82565b005b34801561034d57600080fd5b5061036860048036038101906103639190612d10565b610ba7565b005b34801561037657600080fd5b5061037f610bb7565b60405161038c919061349d565b60405180910390f35b3480156103a157600080fd5b506103aa610bbd565b6040516103b79190613320565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612f36565b610bd0565b005b3480156103f557600080fd5b506103fe610c85565b005b34801561040c57600080fd5b5061042760048036038101906104229190612d10565b610d0d565b005b34801561043557600080fd5b50610450600480360381019061044b9190612eed565b610d2d565b005b34801561045e57600080fd5b5061047960048036038101906104749190612f36565b610d4f565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612f36565b610d61565b6040516104af91906132b9565b60405180910390f35b3480156104c457600080fd5b506104cd610d77565b6040516104da919061333b565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190612f36565b610e05565b005b34801561051857600080fd5b50610533600480360381019061052e9190612ca3565b610e17565b604051610540919061349d565b60405180910390f35b34801561055557600080fd5b5061055e610ee7565b005b34801561056c57600080fd5b5061058760048036038101906105829190612f36565b610efb565b005b6105a3600480360381019061059e9190612f36565b610f0d565b005b3480156105b157600080fd5b506105ba61114b565b6040516105c7919061349d565b60405180910390f35b3480156105dc57600080fd5b506105e5611151565b6040516105f291906132b9565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190612f36565b61117b565b005b34801561063057600080fd5b5061063961118d565b604051610646919061333b565b60405180910390f35b61066960048036038101906106649190612f36565b61121f565b005b34801561067757600080fd5b50610692600480360381019061068d9190612de6565b6113b0565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190612d63565b611528565b005b3480156106c957600080fd5b506106e460048036038101906106df9190612f63565b6115a4565b005b3480156106f257600080fd5b506106fb61165a565b604051610708919061333b565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190612f36565b6116e8565b604051610745919061333b565b60405180910390f35b34801561075a57600080fd5b50610763611792565b604051610770919061349d565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b9190612eed565b611798565b005b3480156107ae57600080fd5b506107c960048036038101906107c49190612ca3565b6117ba565b6040516107d6919061349d565b60405180910390f35b3480156107eb57600080fd5b5061080660048036038101906108019190612cd0565b6117d2565b6040516108139190613320565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e9190612ca3565b611866565b005b34801561085157600080fd5b5061085a6118ea565b604051610867919061349d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094b575061094a826118f0565b5b9050919050565b60606002805461096190613797565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90613797565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b60006109ef8261195a565b610a25576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6b82610d61565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af26119a8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b245750610b2281610b1d6119a8565b6117d2565b155b15610b5b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b668383836119b0565b505050565b6000610b75611a62565b6001546000540303905090565b610b8a611a6b565b80600b60006101000a81548160ff02191690831515021790555050565b610bb2838383611ae9565b505050565b600d5481565b600b60009054906101000a900460ff1681565b610bd8611a6b565b6000610be2610b6b565b905060008211610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e906133bd565b60405180910390fd5b600c548282610c3691906135a2565b1115610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061343d565b60405180910390fd5b610c813383611f9f565b5050565b610c8d611a6b565b6000610c97611151565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cba906132a4565b60006040518083038185875af1925050503d8060008114610cf7576040519150601f19603f3d011682016040523d82523d6000602084013e610cfc565b606091505b5050905080610d0a57600080fd5b50565b610d2883838360405180602001604052806000815250611528565b505050565b610d35611a6b565b8060099080519060200190610d4b929190612a74565b5050565b610d57611a6b565b80600e8190555050565b6000610d6c82611fbd565b600001519050919050565b60098054610d8490613797565b80601f0160208091040260200160405190810160405280929190818152602001828054610db090613797565b8015610dfd5780601f10610dd257610100808354040283529160200191610dfd565b820191906000526020600020905b815481529060010190602001808311610de057829003601f168201915b505050505081565b610e0d611a6b565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e7f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610eef611a6b565b610ef9600061224c565b565b610f03611a6b565b80600f8190555050565b600b60009054906101000a900460ff16610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f539061345d565b60405180910390fd5b6000610f66610b6b565b905060008211610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa2906133bd565b60405180910390fd5b6000600d5411610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe79061347d565b60405180910390fd5b600c548282610fff91906135a2565b1115611040576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110379061343d565b60405180910390fd5b600f5482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108e91906135a2565b11156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c69061339d565b60405180910390fd5b6110d93383611f9f565b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461112891906135a2565b92505081905550600d60008154809291906111429061376d565b91905055505050565b60105481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611183611a6b565b8060108190555050565b60606003805461119c90613797565b80601f01602080910402602001604051908101604052809291908181526020018280546111c890613797565b80156112155780601f106111ea57610100808354040283529160200191611215565b820191906000526020600020905b8154815290600101906020018083116111f857829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1661126e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112659061345d565b60405180910390fd5b6000611278610b6b565b9050600082116112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b4906133bd565b60405180910390fd5b600e54821115611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f99061341d565b60405180910390fd5b600c54828261131191906135a2565b1115611352576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113499061343d565b60405180910390fd5b816010546113609190613629565b3410156113a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113999061335d565b60405180910390fd5b6113ac3383611f9f565b5050565b6113b86119a8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061142a6119a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114d76119a8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161151c9190613320565b60405180910390a35050565b611533848484611ae9565b6115528373ffffffffffffffffffffffffffffffffffffffff16612312565b8015611567575061156584848484612335565b155b1561159e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6115ac611a6b565b60006115b6610b6b565b9050600083116115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f2906133bd565b60405180910390fd5b600c54838261160a91906135a2565b111561164b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116429061343d565b60405180910390fd5b6116558284611f9f565b505050565b600a805461166790613797565b80601f016020809104026020016040519081016040528092919081815260200182805461169390613797565b80156116e05780601f106116b5576101008083540402835291602001916116e0565b820191906000526020600020905b8154815290600101906020018083116116c357829003601f168201915b505050505081565b60606116f38261195a565b611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906133fd565b60405180910390fd5b600061173c612495565b9050600081511161175c576040518060200160405280600081525061178a565b8061176684612527565b600a60405160200161177a93929190613273565b6040516020818303038152906040525b915050919050565b600c5481565b6117a0611a6b565b80600a90805190602001906117b6929190612a74565b5050565b60116020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61186e611a6b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d59061337d565b60405180910390fd5b6118e78161224c565b50565b600e5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611965611a62565b11158015611974575060005482105b80156119a1575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b611a736119a8565b73ffffffffffffffffffffffffffffffffffffffff16611a91611151565b73ffffffffffffffffffffffffffffffffffffffff1614611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade906133dd565b60405180910390fd5b565b6000611af482611fbd565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b5f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b806119a8565b73ffffffffffffffffffffffffffffffffffffffff161480611baf5750611bae85611ba96119a8565b6117d2565b5b80611bf45750611bbd6119a8565b73ffffffffffffffffffffffffffffffffffffffff16611bdc846109e4565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c2d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c94576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ca18585856001612688565b611cad600084876119b0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f2d576000548214611f2c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f98858585600161268e565b5050505050565b611fb9828260405180602001604052806000815250612694565b5050565b611fc5612afa565b600082905080611fd3611a62565b11158015611fe2575060005481105b15612215576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161221357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120f7578092505050612247565b5b60011561221257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461220d578092505050612247565b6120f8565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261235b6119a8565b8786866040518563ffffffff1660e01b815260040161237d94939291906132d4565b602060405180830381600087803b15801561239757600080fd5b505af19250505080156123c857506040513d601f19601f820116820180604052508101906123c59190612ec0565b60015b612442573d80600081146123f8576040519150601f19603f3d011682016040523d82523d6000602084013e6123fd565b606091505b5060008151141561243a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546124a490613797565b80601f01602080910402602001604051908101604052809291908181526020018280546124d090613797565b801561251d5780601f106124f25761010080835404028352916020019161251d565b820191906000526020600020905b81548152906001019060200180831161250057829003601f168201915b5050505050905090565b6060600082141561256f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612683565b600082905060005b600082146125a157808061258a906137fa565b915050600a8261259a91906135f8565b9150612577565b60008167ffffffffffffffff8111156125bd576125bc613930565b5b6040519080825280601f01601f1916602001820160405280156125ef5781602001600182028036833780820191505090505b5090505b6000851461267c576001826126089190613683565b9150600a856126179190613843565b603061262391906135a2565b60f81b81838151811061263957612638613901565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561267591906135f8565b94506125f3565b8093505050505b919050565b50505050565b50505050565b6126a183838360016126a6565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612713576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561274e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61275b6000868387612688565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561292557506129248773ffffffffffffffffffffffffffffffffffffffff16612312565b5b156129eb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461299a6000888480600101955088612335565b6129d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561292b5782600054146129e657600080fd5b612a57565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156129ec575b816000819055505050612a6d600086838761268e565b5050505050565b828054612a8090613797565b90600052602060002090601f016020900481019282612aa25760008555612ae9565b82601f10612abb57805160ff1916838001178555612ae9565b82800160010185558215612ae9579182015b82811115612ae8578251825591602001919060010190612acd565b5b509050612af69190612b3d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b56576000816000905550600101612b3e565b5090565b6000612b6d612b68846134dd565b6134b8565b905082815260208101848484011115612b8957612b88613964565b5b612b9484828561372b565b509392505050565b6000612baf612baa8461350e565b6134b8565b905082815260208101848484011115612bcb57612bca613964565b5b612bd684828561372b565b509392505050565b600081359050612bed81613b93565b92915050565b600081359050612c0281613baa565b92915050565b600081359050612c1781613bc1565b92915050565b600081519050612c2c81613bc1565b92915050565b600082601f830112612c4757612c4661395f565b5b8135612c57848260208601612b5a565b91505092915050565b600082601f830112612c7557612c7461395f565b5b8135612c85848260208601612b9c565b91505092915050565b600081359050612c9d81613bd8565b92915050565b600060208284031215612cb957612cb861396e565b5b6000612cc784828501612bde565b91505092915050565b60008060408385031215612ce757612ce661396e565b5b6000612cf585828601612bde565b9250506020612d0685828601612bde565b9150509250929050565b600080600060608486031215612d2957612d2861396e565b5b6000612d3786828701612bde565b9350506020612d4886828701612bde565b9250506040612d5986828701612c8e565b9150509250925092565b60008060008060808587031215612d7d57612d7c61396e565b5b6000612d8b87828801612bde565b9450506020612d9c87828801612bde565b9350506040612dad87828801612c8e565b925050606085013567ffffffffffffffff811115612dce57612dcd613969565b5b612dda87828801612c32565b91505092959194509250565b60008060408385031215612dfd57612dfc61396e565b5b6000612e0b85828601612bde565b9250506020612e1c85828601612bf3565b9150509250929050565b60008060408385031215612e3d57612e3c61396e565b5b6000612e4b85828601612bde565b9250506020612e5c85828601612c8e565b9150509250929050565b600060208284031215612e7c57612e7b61396e565b5b6000612e8a84828501612bf3565b91505092915050565b600060208284031215612ea957612ea861396e565b5b6000612eb784828501612c08565b91505092915050565b600060208284031215612ed657612ed561396e565b5b6000612ee484828501612c1d565b91505092915050565b600060208284031215612f0357612f0261396e565b5b600082013567ffffffffffffffff811115612f2157612f20613969565b5b612f2d84828501612c60565b91505092915050565b600060208284031215612f4c57612f4b61396e565b5b6000612f5a84828501612c8e565b91505092915050565b60008060408385031215612f7a57612f7961396e565b5b6000612f8885828601612c8e565b9250506020612f9985828601612bde565b9150509250929050565b612fac816136b7565b82525050565b612fbb816136c9565b82525050565b6000612fcc82613554565b612fd6818561356a565b9350612fe681856020860161373a565b612fef81613973565b840191505092915050565b60006130058261355f565b61300f8185613586565b935061301f81856020860161373a565b61302881613973565b840191505092915050565b600061303e8261355f565b6130488185613597565b935061305881856020860161373a565b80840191505092915050565b6000815461307181613797565b61307b8186613597565b9450600182166000811461309657600181146130a7576130da565b60ff198316865281860193506130da565b6130b08561353f565b60005b838110156130d2578154818901526001820191506020810190506130b3565b838801955050505b50505092915050565b60006130f0601183613586565b91506130fb82613984565b602082019050919050565b6000613113602683613586565b915061311e826139ad565b604082019050919050565b6000613136601a83613586565b9150613141826139fc565b602082019050919050565b6000613159602283613586565b915061316482613a25565b604082019050919050565b600061317c602083613586565b915061318782613a74565b602082019050919050565b600061319f602f83613586565b91506131aa82613a9d565b604082019050919050565b60006131c2601a83613586565b91506131cd82613aec565b602082019050919050565b60006131e560008361357b565b91506131f082613b15565b600082019050919050565b6000613208601383613586565b915061321382613b18565b602082019050919050565b600061322b601f83613586565b915061323682613b41565b602082019050919050565b600061324e601483613586565b915061325982613b6a565b602082019050919050565b61326d81613721565b82525050565b600061327f8286613033565b915061328b8285613033565b91506132978284613064565b9150819050949350505050565b60006132af826131d8565b9150819050919050565b60006020820190506132ce6000830184612fa3565b92915050565b60006080820190506132e96000830187612fa3565b6132f66020830186612fa3565b6133036040830185613264565b81810360608301526133158184612fc1565b905095945050505050565b60006020820190506133356000830184612fb2565b92915050565b600060208201905081810360008301526133558184612ffa565b905092915050565b60006020820190508181036000830152613376816130e3565b9050919050565b6000602082019050818103600083015261339681613106565b9050919050565b600060208201905081810360008301526133b681613129565b9050919050565b600060208201905081810360008301526133d68161314c565b9050919050565b600060208201905081810360008301526133f68161316f565b9050919050565b6000602082019050818103600083015261341681613192565b9050919050565b60006020820190508181036000830152613436816131b5565b9050919050565b60006020820190508181036000830152613456816131fb565b9050919050565b600060208201905081810360008301526134768161321e565b9050919050565b6000602082019050818103600083015261349681613241565b9050919050565b60006020820190506134b26000830184613264565b92915050565b60006134c26134d3565b90506134ce82826137c9565b919050565b6000604051905090565b600067ffffffffffffffff8211156134f8576134f7613930565b5b61350182613973565b9050602081019050919050565b600067ffffffffffffffff82111561352957613528613930565b5b61353282613973565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135ad82613721565b91506135b883613721565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135ed576135ec613874565b5b828201905092915050565b600061360382613721565b915061360e83613721565b92508261361e5761361d6138a3565b5b828204905092915050565b600061363482613721565b915061363f83613721565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561367857613677613874565b5b828202905092915050565b600061368e82613721565b915061369983613721565b9250828210156136ac576136ab613874565b5b828203905092915050565b60006136c282613701565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561375857808201518184015260208101905061373d565b83811115613767576000848401525b50505050565b600061377882613721565b9150600082141561378c5761378b613874565b5b600182039050919050565b600060028204905060018216806137af57607f821691505b602082108114156137c3576137c26138d2565b5b50919050565b6137d282613973565b810181811067ffffffffffffffff821117156137f1576137f0613930565b5b80604052505050565b600061380582613721565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561383857613837613874565b5b600182019050919050565b600061384e82613721565b915061385983613721565b925082613869576138686138a3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f75676820657468657221000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e746974792065786365656420746865206c696d697421000000000000600082015250565b7f5175616e74697479206d75737420626520686967686572207468616e207a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e74697479206578636565647320546865204c696d6974000000000000600082015250565b50565b7f4d617820737570706c7920726561636865642100000000000000000000000000600082015250565b7f546865207075626c69632073616c65206973206e6f7420656e61626c65642100600082015250565b7f46726565206d696e742068617320656e64656421000000000000000000000000600082015250565b613b9c816136b7565b8114613ba757600080fd5b50565b613bb3816136c9565b8114613bbe57600080fd5b50565b613bca816136d5565b8114613bd557600080fd5b50565b613be181613721565b8114613bec57600080fd5b5056fea26469706673582212207e66f7553cc72a8a9dafc8f5b352d0966cf89a3f67b21c1e9d71c96a566e1edf64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d586e62376276794e734531535254525737317376414e62324a61366534456b6274535045646f6e4855344e322f00000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063da3ef23f1161006f578063da3ef23f14610779578063e0ec7c36146107a2578063e985e9c5146107df578063f2fde38b1461081c578063f968adbe146108455761021a565b8063b88d4fde14610694578063bc63f02e146106bd578063c6682862146106e6578063c87b56dd14610711578063d5abeb011461074e5761021a565b80638da5cb5b116100f25780638da5cb5b146105d057806391b7f5ed146105fb57806395d89b4114610624578063a0712d681461064f578063a22cb4651461066b5761021a565b8063715018a614610549578063742a4c9b146105605780637c928fe9146105895780638693da20146105a55761021a565b8063375a069a116101a6578063620cc86c11610175578063620cc86c146104525780636352211e1461047b5780636c0360eb146104b85780636f8b44b0146104e357806370a082311461050c5761021a565b8063375a069a146103c05780633ccfd60b146103e957806342842e0e1461040057806355f804b3146104295761021a565b806318160ddd116101ed57806318160ddd146102ed5780631d2e5a3a1461031857806323b872dd1461034157806324a6ab0c1461036a57806333bc1c5c146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612e93565b610870565b6040516102539190613320565b60405180910390f35b34801561026857600080fd5b50610271610952565b60405161027e919061333b565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612f36565b6109e4565b6040516102bb91906132b9565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612e26565b610a60565b005b3480156102f957600080fd5b50610302610b6b565b60405161030f919061349d565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612e66565b610b82565b005b34801561034d57600080fd5b5061036860048036038101906103639190612d10565b610ba7565b005b34801561037657600080fd5b5061037f610bb7565b60405161038c919061349d565b60405180910390f35b3480156103a157600080fd5b506103aa610bbd565b6040516103b79190613320565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612f36565b610bd0565b005b3480156103f557600080fd5b506103fe610c85565b005b34801561040c57600080fd5b5061042760048036038101906104229190612d10565b610d0d565b005b34801561043557600080fd5b50610450600480360381019061044b9190612eed565b610d2d565b005b34801561045e57600080fd5b5061047960048036038101906104749190612f36565b610d4f565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612f36565b610d61565b6040516104af91906132b9565b60405180910390f35b3480156104c457600080fd5b506104cd610d77565b6040516104da919061333b565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190612f36565b610e05565b005b34801561051857600080fd5b50610533600480360381019061052e9190612ca3565b610e17565b604051610540919061349d565b60405180910390f35b34801561055557600080fd5b5061055e610ee7565b005b34801561056c57600080fd5b5061058760048036038101906105829190612f36565b610efb565b005b6105a3600480360381019061059e9190612f36565b610f0d565b005b3480156105b157600080fd5b506105ba61114b565b6040516105c7919061349d565b60405180910390f35b3480156105dc57600080fd5b506105e5611151565b6040516105f291906132b9565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190612f36565b61117b565b005b34801561063057600080fd5b5061063961118d565b604051610646919061333b565b60405180910390f35b61066960048036038101906106649190612f36565b61121f565b005b34801561067757600080fd5b50610692600480360381019061068d9190612de6565b6113b0565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190612d63565b611528565b005b3480156106c957600080fd5b506106e460048036038101906106df9190612f63565b6115a4565b005b3480156106f257600080fd5b506106fb61165a565b604051610708919061333b565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190612f36565b6116e8565b604051610745919061333b565b60405180910390f35b34801561075a57600080fd5b50610763611792565b604051610770919061349d565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b9190612eed565b611798565b005b3480156107ae57600080fd5b506107c960048036038101906107c49190612ca3565b6117ba565b6040516107d6919061349d565b60405180910390f35b3480156107eb57600080fd5b5061080660048036038101906108019190612cd0565b6117d2565b6040516108139190613320565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e9190612ca3565b611866565b005b34801561085157600080fd5b5061085a6118ea565b604051610867919061349d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094b575061094a826118f0565b5b9050919050565b60606002805461096190613797565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90613797565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b60006109ef8261195a565b610a25576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6b82610d61565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af26119a8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b245750610b2281610b1d6119a8565b6117d2565b155b15610b5b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b668383836119b0565b505050565b6000610b75611a62565b6001546000540303905090565b610b8a611a6b565b80600b60006101000a81548160ff02191690831515021790555050565b610bb2838383611ae9565b505050565b600d5481565b600b60009054906101000a900460ff1681565b610bd8611a6b565b6000610be2610b6b565b905060008211610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e906133bd565b60405180910390fd5b600c548282610c3691906135a2565b1115610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061343d565b60405180910390fd5b610c813383611f9f565b5050565b610c8d611a6b565b6000610c97611151565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cba906132a4565b60006040518083038185875af1925050503d8060008114610cf7576040519150601f19603f3d011682016040523d82523d6000602084013e610cfc565b606091505b5050905080610d0a57600080fd5b50565b610d2883838360405180602001604052806000815250611528565b505050565b610d35611a6b565b8060099080519060200190610d4b929190612a74565b5050565b610d57611a6b565b80600e8190555050565b6000610d6c82611fbd565b600001519050919050565b60098054610d8490613797565b80601f0160208091040260200160405190810160405280929190818152602001828054610db090613797565b8015610dfd5780601f10610dd257610100808354040283529160200191610dfd565b820191906000526020600020905b815481529060010190602001808311610de057829003601f168201915b505050505081565b610e0d611a6b565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e7f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610eef611a6b565b610ef9600061224c565b565b610f03611a6b565b80600f8190555050565b600b60009054906101000a900460ff16610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f539061345d565b60405180910390fd5b6000610f66610b6b565b905060008211610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa2906133bd565b60405180910390fd5b6000600d5411610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe79061347d565b60405180910390fd5b600c548282610fff91906135a2565b1115611040576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110379061343d565b60405180910390fd5b600f5482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108e91906135a2565b11156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c69061339d565b60405180910390fd5b6110d93383611f9f565b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461112891906135a2565b92505081905550600d60008154809291906111429061376d565b91905055505050565b60105481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611183611a6b565b8060108190555050565b60606003805461119c90613797565b80601f01602080910402602001604051908101604052809291908181526020018280546111c890613797565b80156112155780601f106111ea57610100808354040283529160200191611215565b820191906000526020600020905b8154815290600101906020018083116111f857829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1661126e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112659061345d565b60405180910390fd5b6000611278610b6b565b9050600082116112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b4906133bd565b60405180910390fd5b600e54821115611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f99061341d565b60405180910390fd5b600c54828261131191906135a2565b1115611352576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113499061343d565b60405180910390fd5b816010546113609190613629565b3410156113a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113999061335d565b60405180910390fd5b6113ac3383611f9f565b5050565b6113b86119a8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061142a6119a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114d76119a8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161151c9190613320565b60405180910390a35050565b611533848484611ae9565b6115528373ffffffffffffffffffffffffffffffffffffffff16612312565b8015611567575061156584848484612335565b155b1561159e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6115ac611a6b565b60006115b6610b6b565b9050600083116115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f2906133bd565b60405180910390fd5b600c54838261160a91906135a2565b111561164b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116429061343d565b60405180910390fd5b6116558284611f9f565b505050565b600a805461166790613797565b80601f016020809104026020016040519081016040528092919081815260200182805461169390613797565b80156116e05780601f106116b5576101008083540402835291602001916116e0565b820191906000526020600020905b8154815290600101906020018083116116c357829003601f168201915b505050505081565b60606116f38261195a565b611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906133fd565b60405180910390fd5b600061173c612495565b9050600081511161175c576040518060200160405280600081525061178a565b8061176684612527565b600a60405160200161177a93929190613273565b6040516020818303038152906040525b915050919050565b600c5481565b6117a0611a6b565b80600a90805190602001906117b6929190612a74565b5050565b60116020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61186e611a6b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d59061337d565b60405180910390fd5b6118e78161224c565b50565b600e5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611965611a62565b11158015611974575060005482105b80156119a1575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b611a736119a8565b73ffffffffffffffffffffffffffffffffffffffff16611a91611151565b73ffffffffffffffffffffffffffffffffffffffff1614611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade906133dd565b60405180910390fd5b565b6000611af482611fbd565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b5f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b806119a8565b73ffffffffffffffffffffffffffffffffffffffff161480611baf5750611bae85611ba96119a8565b6117d2565b5b80611bf45750611bbd6119a8565b73ffffffffffffffffffffffffffffffffffffffff16611bdc846109e4565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c2d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c94576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ca18585856001612688565b611cad600084876119b0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f2d576000548214611f2c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f98858585600161268e565b5050505050565b611fb9828260405180602001604052806000815250612694565b5050565b611fc5612afa565b600082905080611fd3611a62565b11158015611fe2575060005481105b15612215576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161221357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120f7578092505050612247565b5b60011561221257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461220d578092505050612247565b6120f8565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261235b6119a8565b8786866040518563ffffffff1660e01b815260040161237d94939291906132d4565b602060405180830381600087803b15801561239757600080fd5b505af19250505080156123c857506040513d601f19601f820116820180604052508101906123c59190612ec0565b60015b612442573d80600081146123f8576040519150601f19603f3d011682016040523d82523d6000602084013e6123fd565b606091505b5060008151141561243a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546124a490613797565b80601f01602080910402602001604051908101604052809291908181526020018280546124d090613797565b801561251d5780601f106124f25761010080835404028352916020019161251d565b820191906000526020600020905b81548152906001019060200180831161250057829003601f168201915b5050505050905090565b6060600082141561256f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612683565b600082905060005b600082146125a157808061258a906137fa565b915050600a8261259a91906135f8565b9150612577565b60008167ffffffffffffffff8111156125bd576125bc613930565b5b6040519080825280601f01601f1916602001820160405280156125ef5781602001600182028036833780820191505090505b5090505b6000851461267c576001826126089190613683565b9150600a856126179190613843565b603061262391906135a2565b60f81b81838151811061263957612638613901565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561267591906135f8565b94506125f3565b8093505050505b919050565b50505050565b50505050565b6126a183838360016126a6565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612713576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561274e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61275b6000868387612688565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561292557506129248773ffffffffffffffffffffffffffffffffffffffff16612312565b5b156129eb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461299a6000888480600101955088612335565b6129d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561292b5782600054146129e657600080fd5b612a57565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156129ec575b816000819055505050612a6d600086838761268e565b5050505050565b828054612a8090613797565b90600052602060002090601f016020900481019282612aa25760008555612ae9565b82601f10612abb57805160ff1916838001178555612ae9565b82800160010185558215612ae9579182015b82811115612ae8578251825591602001919060010190612acd565b5b509050612af69190612b3d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b56576000816000905550600101612b3e565b5090565b6000612b6d612b68846134dd565b6134b8565b905082815260208101848484011115612b8957612b88613964565b5b612b9484828561372b565b509392505050565b6000612baf612baa8461350e565b6134b8565b905082815260208101848484011115612bcb57612bca613964565b5b612bd684828561372b565b509392505050565b600081359050612bed81613b93565b92915050565b600081359050612c0281613baa565b92915050565b600081359050612c1781613bc1565b92915050565b600081519050612c2c81613bc1565b92915050565b600082601f830112612c4757612c4661395f565b5b8135612c57848260208601612b5a565b91505092915050565b600082601f830112612c7557612c7461395f565b5b8135612c85848260208601612b9c565b91505092915050565b600081359050612c9d81613bd8565b92915050565b600060208284031215612cb957612cb861396e565b5b6000612cc784828501612bde565b91505092915050565b60008060408385031215612ce757612ce661396e565b5b6000612cf585828601612bde565b9250506020612d0685828601612bde565b9150509250929050565b600080600060608486031215612d2957612d2861396e565b5b6000612d3786828701612bde565b9350506020612d4886828701612bde565b9250506040612d5986828701612c8e565b9150509250925092565b60008060008060808587031215612d7d57612d7c61396e565b5b6000612d8b87828801612bde565b9450506020612d9c87828801612bde565b9350506040612dad87828801612c8e565b925050606085013567ffffffffffffffff811115612dce57612dcd613969565b5b612dda87828801612c32565b91505092959194509250565b60008060408385031215612dfd57612dfc61396e565b5b6000612e0b85828601612bde565b9250506020612e1c85828601612bf3565b9150509250929050565b60008060408385031215612e3d57612e3c61396e565b5b6000612e4b85828601612bde565b9250506020612e5c85828601612c8e565b9150509250929050565b600060208284031215612e7c57612e7b61396e565b5b6000612e8a84828501612bf3565b91505092915050565b600060208284031215612ea957612ea861396e565b5b6000612eb784828501612c08565b91505092915050565b600060208284031215612ed657612ed561396e565b5b6000612ee484828501612c1d565b91505092915050565b600060208284031215612f0357612f0261396e565b5b600082013567ffffffffffffffff811115612f2157612f20613969565b5b612f2d84828501612c60565b91505092915050565b600060208284031215612f4c57612f4b61396e565b5b6000612f5a84828501612c8e565b91505092915050565b60008060408385031215612f7a57612f7961396e565b5b6000612f8885828601612c8e565b9250506020612f9985828601612bde565b9150509250929050565b612fac816136b7565b82525050565b612fbb816136c9565b82525050565b6000612fcc82613554565b612fd6818561356a565b9350612fe681856020860161373a565b612fef81613973565b840191505092915050565b60006130058261355f565b61300f8185613586565b935061301f81856020860161373a565b61302881613973565b840191505092915050565b600061303e8261355f565b6130488185613597565b935061305881856020860161373a565b80840191505092915050565b6000815461307181613797565b61307b8186613597565b9450600182166000811461309657600181146130a7576130da565b60ff198316865281860193506130da565b6130b08561353f565b60005b838110156130d2578154818901526001820191506020810190506130b3565b838801955050505b50505092915050565b60006130f0601183613586565b91506130fb82613984565b602082019050919050565b6000613113602683613586565b915061311e826139ad565b604082019050919050565b6000613136601a83613586565b9150613141826139fc565b602082019050919050565b6000613159602283613586565b915061316482613a25565b604082019050919050565b600061317c602083613586565b915061318782613a74565b602082019050919050565b600061319f602f83613586565b91506131aa82613a9d565b604082019050919050565b60006131c2601a83613586565b91506131cd82613aec565b602082019050919050565b60006131e560008361357b565b91506131f082613b15565b600082019050919050565b6000613208601383613586565b915061321382613b18565b602082019050919050565b600061322b601f83613586565b915061323682613b41565b602082019050919050565b600061324e601483613586565b915061325982613b6a565b602082019050919050565b61326d81613721565b82525050565b600061327f8286613033565b915061328b8285613033565b91506132978284613064565b9150819050949350505050565b60006132af826131d8565b9150819050919050565b60006020820190506132ce6000830184612fa3565b92915050565b60006080820190506132e96000830187612fa3565b6132f66020830186612fa3565b6133036040830185613264565b81810360608301526133158184612fc1565b905095945050505050565b60006020820190506133356000830184612fb2565b92915050565b600060208201905081810360008301526133558184612ffa565b905092915050565b60006020820190508181036000830152613376816130e3565b9050919050565b6000602082019050818103600083015261339681613106565b9050919050565b600060208201905081810360008301526133b681613129565b9050919050565b600060208201905081810360008301526133d68161314c565b9050919050565b600060208201905081810360008301526133f68161316f565b9050919050565b6000602082019050818103600083015261341681613192565b9050919050565b60006020820190508181036000830152613436816131b5565b9050919050565b60006020820190508181036000830152613456816131fb565b9050919050565b600060208201905081810360008301526134768161321e565b9050919050565b6000602082019050818103600083015261349681613241565b9050919050565b60006020820190506134b26000830184613264565b92915050565b60006134c26134d3565b90506134ce82826137c9565b919050565b6000604051905090565b600067ffffffffffffffff8211156134f8576134f7613930565b5b61350182613973565b9050602081019050919050565b600067ffffffffffffffff82111561352957613528613930565b5b61353282613973565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135ad82613721565b91506135b883613721565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135ed576135ec613874565b5b828201905092915050565b600061360382613721565b915061360e83613721565b92508261361e5761361d6138a3565b5b828204905092915050565b600061363482613721565b915061363f83613721565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561367857613677613874565b5b828202905092915050565b600061368e82613721565b915061369983613721565b9250828210156136ac576136ab613874565b5b828203905092915050565b60006136c282613701565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561375857808201518184015260208101905061373d565b83811115613767576000848401525b50505050565b600061377882613721565b9150600082141561378c5761378b613874565b5b600182039050919050565b600060028204905060018216806137af57607f821691505b602082108114156137c3576137c26138d2565b5b50919050565b6137d282613973565b810181811067ffffffffffffffff821117156137f1576137f0613930565b5b80604052505050565b600061380582613721565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561383857613837613874565b5b600182019050919050565b600061384e82613721565b915061385983613721565b925082613869576138686138a3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f75676820657468657221000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e746974792065786365656420746865206c696d697421000000000000600082015250565b7f5175616e74697479206d75737420626520686967686572207468616e207a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e74697479206578636565647320546865204c696d6974000000000000600082015250565b50565b7f4d617820737570706c7920726561636865642100000000000000000000000000600082015250565b7f546865207075626c69632073616c65206973206e6f7420656e61626c65642100600082015250565b7f46726565206d696e742068617320656e64656421000000000000000000000000600082015250565b613b9c816136b7565b8114613ba757600080fd5b50565b613bb3816136c9565b8114613bbe57600080fd5b50565b613bca816136d5565b8114613bd557600080fd5b50565b613be181613721565b8114613bec57600080fd5b5056fea26469706673582212207e66f7553cc72a8a9dafc8f5b352d0966cf89a3f67b21c1e9d71c96a566e1edf64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d586e62376276794e734531535254525737317376414e62324a61366534456b6274535045646f6e4855344e322f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmXnb7bvyNsE1SRTRW71svANb2Ja6e4EkbtSPEdonHU4N2/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d586e62376276794e734531535254525737317376414e62
Arg [3] : 324a61366534456b6274535045646f6e4855344e322f00000000000000000000


Deployed Bytecode Sourcemap

54112:4027:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36307:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39420:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40923:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40486:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35556:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57103:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41788:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54336:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54263:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55814:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57989:147;;;;;;;;;;;;;:::i;:::-;;42029:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57408:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57207:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39228:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54191:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56895:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36676:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13998:103;;;;;;;;;;;;;:::i;:::-;;56997:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55216:588;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54438:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13350:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57301:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39589:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54695:495;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41199:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42285:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57520:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54219:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56243:644;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54299:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57830:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54485:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41557:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14256:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54374:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36307:305;36409:4;36461:25;36446:40;;;:11;:40;;;;:105;;;;36518:33;36503:48;;;:11;:48;;;;36446:105;:158;;;;36568:36;36592:11;36568:23;:36::i;:::-;36446:158;36426:178;;36307:305;;;:::o;39420:100::-;39474:13;39507:5;39500:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39420:100;:::o;40923:204::-;40991:7;41016:16;41024:7;41016;:16::i;:::-;41011:64;;41041:34;;;;;;;;;;;;;;41011:64;41095:15;:24;41111:7;41095:24;;;;;;;;;;;;;;;;;;;;;41088:31;;40923:204;;;:::o;40486:371::-;40559:13;40575:24;40591:7;40575:15;:24::i;:::-;40559:40;;40620:5;40614:11;;:2;:11;;;40610:48;;;40634:24;;;;;;;;;;;;;;40610:48;40691:5;40675:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;40701:37;40718:5;40725:12;:10;:12::i;:::-;40701:16;:37::i;:::-;40700:38;40675:63;40671:138;;;40762:35;;;;;;;;;;;;;;40671:138;40821:28;40830:2;40834:7;40843:5;40821:8;:28::i;:::-;40548:309;40486:371;;:::o;35556:303::-;35600:7;35825:15;:13;:15::i;:::-;35810:12;;35794:13;;:28;:46;35787:53;;35556:303;:::o;57103:96::-;13236:13;:11;:13::i;:::-;57180:11:::1;57167:10;;:24;;;;;;;;;;;;;;;;;;57103:96:::0;:::o;41788:170::-;41922:28;41932:4;41938:2;41942:7;41922:9;:28::i;:::-;41788:170;;;:::o;54336:31::-;;;;:::o;54263:29::-;;;;;;;;;;;;;:::o;55814:288::-;13236:13;:11;:13::i;:::-;55879:14:::1;55896:13;:11;:13::i;:::-;55879:30;;55939:1;55928:8;:12;55920:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;56019:9;;56007:8;55998:6;:17;;;;:::i;:::-;:30;;55990:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;56063:31;56073:10;56085:8;56063:9;:31::i;:::-;55868:234;55814:288:::0;:::o;57989:147::-;13236:13;:11;:13::i;:::-;58038:7:::1;58059;:5;:7::i;:::-;58051:21;;58080;58051:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58037:69;;;58125:2;58117:11;;;::::0;::::1;;58026:110;57989:147::o:0;42029:185::-;42167:39;42184:4;42190:2;42194:7;42167:39;;;;;;;;;;;;:16;:39::i;:::-;42029:185;;;:::o;57408:104::-;13236:13;:11;:13::i;:::-;57493:11:::1;57483:7;:21;;;;;;;;;;;;:::i;:::-;;57408:104:::0;:::o;57207:86::-;13236:13;:11;:13::i;:::-;57278:7:::1;57267:8;:18;;;;57207:86:::0;:::o;39228:125::-;39292:7;39319:21;39332:7;39319:12;:21::i;:::-;:26;;;39312:33;;39228:125;;;:::o;54191:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56895:94::-;13236:13;:11;:13::i;:::-;56974:7:::1;56962:9;:19;;;;56895:94:::0;:::o;36676:206::-;36740:7;36781:1;36764:19;;:5;:19;;;36760:60;;;36792:28;;;;;;;;;;;;;;36760:60;36846:12;:19;36859:5;36846:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;36838:36;;36831:43;;36676:206;;;:::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;56997:98::-;13236:13;:11;:13::i;:::-;57080:7:::1;57066:11;:21;;;;56997:98:::0;:::o;55216:588::-;55288:10;;;;;;;;;;;55280:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;55345:14;55362:13;:11;:13::i;:::-;55345:30;;55405:1;55394:8;:12;55386:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;55477:1;55464:10;;:14;55456:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;55543:9;;55531:8;55522:6;:17;;;;:::i;:::-;:30;;55514:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;55637:11;;55625:8;55595:15;:27;55611:10;55595:27;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:53;;55587:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;55692:31;55702:10;55714:8;55692:9;:31::i;:::-;55765:8;55734:15;:27;55750:10;55734:27;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;55784:10;;:12;;;;;;;;;:::i;:::-;;;;;;55269:535;55216:588;:::o;54438:38::-;;;;:::o;13350:87::-;13396:7;13423:6;;;;;;;;;;;13416:13;;13350:87;:::o;57301:99::-;13236:13;:11;:13::i;:::-;57381:11:::1;57368:10;:24;;;;57301:99:::0;:::o;39589:104::-;39645:13;39678:7;39671:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39589:104;:::o;54695:495::-;54763:10;;;;;;;;;;;54755:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;54820:14;54837:13;:11;:13::i;:::-;54820:30;;54880:1;54869:8;:12;54861:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;54951:8;;54939;:20;;54931:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;55030:9;;55018:8;55009:6;:17;;;;:::i;:::-;:30;;55001:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;55108:8;55095:10;;:21;;;;:::i;:::-;55082:9;:34;;55074:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;55151:31;55161:10;55173:8;55151:9;:31::i;:::-;54744:446;54695:495;:::o;41199:287::-;41310:12;:10;:12::i;:::-;41298:24;;:8;:24;;;41294:54;;;41331:17;;;;;;;;;;;;;;41294:54;41406:8;41361:18;:32;41380:12;:10;:12::i;:::-;41361:32;;;;;;;;;;;;;;;:42;41394:8;41361:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41459:8;41430:48;;41445:12;:10;:12::i;:::-;41430:48;;;41469:8;41430:48;;;;;;:::i;:::-;;;;;;;;41199:287;;:::o;42285:369::-;42452:28;42462:4;42468:2;42472:7;42452:9;:28::i;:::-;42495:15;:2;:13;;;:15::i;:::-;:76;;;;;42515:56;42546:4;42552:2;42556:7;42565:5;42515:30;:56::i;:::-;42514:57;42495:76;42491:156;;;42595:40;;;;;;;;;;;;;;42491:156;42285:369;;;;:::o;57520:302::-;13236:13;:11;:13::i;:::-;57601:14:::1;57618:13;:11;:13::i;:::-;57601:30;;57661:1;57650:8;:12;57642:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;57741:9;;57729:8;57720:6;:17;;;;:::i;:::-;:30;;57712:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;57785:29;57795:8;57805;57785:9;:29::i;:::-;57590:232;57520:302:::0;;:::o;54219:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56243:644::-;56361:13;56414:16;56422:7;56414;:16::i;:::-;56392:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;56518:28;56549:10;:8;:10::i;:::-;56518:41;;56623:1;56598:14;56592:28;:32;:287;;;;;;;;;;;;;;;;;56716:14;56757:18;:7;:16;:18::i;:::-;56802:13;56673:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56592:287;56572:307;;;56243:644;;;:::o;54299:30::-;;;;:::o;57830:151::-;13236:13;:11;:13::i;:::-;57956:17:::1;57940:13;:33;;;;;;;;;;;;:::i;:::-;;57830:151:::0;:::o;54485:50::-;;;;;;;;;;;;;;;;;:::o;41557:164::-;41654:4;41678:18;:25;41697:5;41678:25;;;;;;;;;;;;;;;:35;41704:8;41678:35;;;;;;;;;;;;;;;;;;;;;;;;;41671:42;;41557:164;;;;:::o;14256:201::-;13236:13;:11;:13::i;:::-;14365:1:::1;14345:22;;:8;:22;;;;14337:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14421:28;14440:8;14421:18;:28::i;:::-;14256:201:::0;:::o;54374:27::-;;;;:::o;26204:157::-;26289:4;26328:25;26313:40;;;:11;:40;;;;26306:47;;26204:157;;;:::o;42909:174::-;42966:4;43009:7;42990:15;:13;:15::i;:::-;:26;;:53;;;;;43030:13;;43020:7;:23;42990:53;:85;;;;;43048:11;:20;43060:7;43048:20;;;;;;;;;;;:27;;;;;;;;;;;;43047:28;42990:85;42983:92;;42909:174;;;:::o;11901:98::-;11954:7;11981:10;11974:17;;11901:98;:::o;51066:196::-;51208:2;51181:15;:24;51197:7;51181:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51246:7;51242:2;51226:28;;51235:5;51226:28;;;;;;;;;;;;51066:196;;;:::o;35330:92::-;35386:7;35413:1;35406:8;;35330:92;:::o;13515:132::-;13590:12;:10;:12::i;:::-;13579:23;;:7;:5;:7::i;:::-;:23;;;13571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13515:132::o;46009:2130::-;46124:35;46162:21;46175:7;46162:12;:21::i;:::-;46124:59;;46222:4;46200:26;;:13;:18;;;:26;;;46196:67;;46235:28;;;;;;;;;;;;;;46196:67;46276:22;46318:4;46302:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;46339:36;46356:4;46362:12;:10;:12::i;:::-;46339:16;:36::i;:::-;46302:73;:126;;;;46416:12;:10;:12::i;:::-;46392:36;;:20;46404:7;46392:11;:20::i;:::-;:36;;;46302:126;46276:153;;46447:17;46442:66;;46473:35;;;;;;;;;;;;;;46442:66;46537:1;46523:16;;:2;:16;;;46519:52;;;46548:23;;;;;;;;;;;;;;46519:52;46584:43;46606:4;46612:2;46616:7;46625:1;46584:21;:43::i;:::-;46692:35;46709:1;46713:7;46722:4;46692:8;:35::i;:::-;47053:1;47023:12;:18;47036:4;47023:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47097:1;47069:12;:16;47082:2;47069:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47115:31;47149:11;:20;47161:7;47149:20;;;;;;;;;;;47115:54;;47200:2;47184:8;:13;;;:18;;;;;;;;;;;;;;;;;;47250:15;47217:8;:23;;;:49;;;;;;;;;;;;;;;;;;47518:19;47550:1;47540:7;:11;47518:33;;47566:31;47600:11;:24;47612:11;47600:24;;;;;;;;;;;47566:58;;47668:1;47643:27;;:8;:13;;;;;;;;;;;;:27;;;47639:384;;;47853:13;;47838:11;:28;47834:174;;47907:4;47891:8;:13;;;:20;;;;;;;;;;;;;;;;;;47960:13;:28;;;47934:8;:23;;;:54;;;;;;;;;;;;;;;;;;47834:174;47639:384;46998:1036;;;48070:7;48066:2;48051:27;;48060:4;48051:27;;;;;;;;;;;;48089:42;48110:4;48116:2;48120:7;48129:1;48089:20;:42::i;:::-;46113:2026;;46009:2130;;;:::o;43091:104::-;43160:27;43170:2;43174:8;43160:27;;;;;;;;;;;;:9;:27::i;:::-;43091:104;;:::o;38057:1109::-;38119:21;;:::i;:::-;38153:12;38168:7;38153:22;;38236:4;38217:15;:13;:15::i;:::-;:23;;:47;;;;;38251:13;;38244:4;:20;38217:47;38213:886;;;38285:31;38319:11;:17;38331:4;38319:17;;;;;;;;;;;38285:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38360:9;:16;;;38355:729;;38431:1;38405:28;;:9;:14;;;:28;;;38401:101;;38469:9;38462:16;;;;;;38401:101;38804:261;38811:4;38804:261;;;38844:6;;;;;;;;38889:11;:17;38901:4;38889:17;;;;;;;;;;;38877:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38963:1;38937:28;;:9;:14;;;:28;;;38933:109;;39005:9;38998:16;;;;;;38933:109;38804:261;;;38355:729;38266:833;38213:886;39127:31;;;;;;;;;;;;;;38057:1109;;;;:::o;14617:191::-;14691:16;14710:6;;;;;;;;;;;14691:25;;14736:8;14727:6;;:17;;;;;;;;;;;;;;;;;;14791:8;14760:40;;14781:8;14760:40;;;;;;;;;;;;14680:128;14617:191;:::o;16048:326::-;16108:4;16365:1;16343:7;:19;;;:23;16336:30;;16048:326;;;:::o;51754:667::-;51917:4;51954:2;51938:36;;;51975:12;:10;:12::i;:::-;51989:4;51995:7;52004:5;51938:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51934:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52189:1;52172:6;:13;:18;52168:235;;;52218:40;;;;;;;;;;;;;;52168:235;52361:6;52355:13;52346:6;52342:2;52338:15;52331:38;51934:480;52067:45;;;52057:55;;;:6;:55;;;;52050:62;;;51754:667;;;;;;:::o;56127:108::-;56187:13;56220:7;56213:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56127:108;:::o;9155:723::-;9211:13;9441:1;9432:5;:10;9428:53;;;9459:10;;;;;;;;;;;;;;;;;;;;;9428:53;9491:12;9506:5;9491:20;;9522:14;9547:78;9562:1;9554:4;:9;9547:78;;9580:8;;;;;:::i;:::-;;;;9611:2;9603:10;;;;;:::i;:::-;;;9547:78;;;9635:19;9667:6;9657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:39;;9685:154;9701:1;9692:5;:10;9685:154;;9729:1;9719:11;;;;;:::i;:::-;;;9796:2;9788:5;:10;;;;:::i;:::-;9775:2;:24;;;;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9825:2;9816:11;;;;;:::i;:::-;;;9685:154;;;9863:6;9849:21;;;;;9155:723;;;;:::o;53069:159::-;;;;;:::o;53887:158::-;;;;;:::o;43558:163::-;43681:32;43687:2;43691:8;43701:5;43708:4;43681:5;:32::i;:::-;43558:163;;;:::o;43980:1775::-;44119:20;44142:13;;44119:36;;44184:1;44170:16;;:2;:16;;;44166:48;;;44195:19;;;;;;;;;;;;;;44166:48;44241:1;44229:8;:13;44225:44;;;44251:18;;;;;;;;;;;;;;44225:44;44282:61;44312:1;44316:2;44320:12;44334:8;44282:21;:61::i;:::-;44655:8;44620:12;:16;44633:2;44620:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44719:8;44679:12;:16;44692:2;44679:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44778:2;44745:11;:25;44757:12;44745:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44845:15;44795:11;:25;44807:12;44795:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44878:20;44901:12;44878:35;;44928:11;44957:8;44942:12;:23;44928:37;;44986:4;:23;;;;;44994:15;:2;:13;;;:15::i;:::-;44986:23;44982:641;;;45030:314;45086:12;45082:2;45061:38;;45078:1;45061:38;;;;;;;;;;;;45127:69;45166:1;45170:2;45174:14;;;;;;45190:5;45127:30;:69::i;:::-;45122:174;;45232:40;;;;;;;;;;;;;;45122:174;45339:3;45323:12;:19;;45030:314;;45425:12;45408:13;;:29;45404:43;;45439:8;;;45404:43;44982:641;;;45488:120;45544:14;;;;;;45540:2;45519:40;;45536:1;45519:40;;;;;;;;;;;;45603:3;45587:12;:19;;45488:120;;44982:641;45653:12;45637:13;:28;;;;44595:1082;;45687:60;45716:1;45720:2;45724:12;45738:8;45687:20;:60::i;:::-;44108:1647;43980:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:::-;11830:3;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11927:93;12016:3;11927:93;:::i;:::-;12045:2;12040:3;12036:12;12029:19;;11688:366;;;:::o;12060:::-;12202:3;12223:67;12287:2;12282:3;12223:67;:::i;:::-;12216:74;;12299:93;12388:3;12299:93;:::i;:::-;12417:2;12412:3;12408:12;12401:19;;12060:366;;;:::o;12432:::-;12574:3;12595:67;12659:2;12654:3;12595:67;:::i;:::-;12588:74;;12671:93;12760:3;12671:93;:::i;:::-;12789:2;12784:3;12780:12;12773:19;;12432:366;;;:::o;12804:398::-;12963:3;12984:83;13065:1;13060:3;12984:83;:::i;:::-;12977:90;;13076:93;13165:3;13076:93;:::i;:::-;13194:1;13189:3;13185:11;13178:18;;12804:398;;;:::o;13208:366::-;13350:3;13371:67;13435:2;13430:3;13371:67;:::i;:::-;13364:74;;13447:93;13536:3;13447:93;:::i;:::-;13565:2;13560:3;13556:12;13549:19;;13208:366;;;:::o;13580:::-;13722:3;13743:67;13807:2;13802:3;13743:67;:::i;:::-;13736:74;;13819:93;13908:3;13819:93;:::i;:::-;13937:2;13932:3;13928:12;13921:19;;13580:366;;;:::o;13952:::-;14094:3;14115:67;14179:2;14174:3;14115:67;:::i;:::-;14108:74;;14191:93;14280:3;14191:93;:::i;:::-;14309:2;14304:3;14300:12;14293:19;;13952:366;;;:::o;14324:118::-;14411:24;14429:5;14411:24;:::i;:::-;14406:3;14399:37;14324:118;;:::o;14448:589::-;14673:3;14695:95;14786:3;14777:6;14695:95;:::i;:::-;14688:102;;14807:95;14898:3;14889:6;14807:95;:::i;:::-;14800:102;;14919:92;15007:3;14998:6;14919:92;:::i;:::-;14912:99;;15028:3;15021:10;;14448:589;;;;;;:::o;15043:379::-;15227:3;15249:147;15392:3;15249:147;:::i;:::-;15242:154;;15413:3;15406:10;;15043:379;;;:::o;15428:222::-;15521:4;15559:2;15548:9;15544:18;15536:26;;15572:71;15640:1;15629:9;15625:17;15616:6;15572:71;:::i;:::-;15428:222;;;;:::o;15656:640::-;15851:4;15889:3;15878:9;15874:19;15866:27;;15903:71;15971:1;15960:9;15956:17;15947:6;15903:71;:::i;:::-;15984:72;16052:2;16041:9;16037:18;16028:6;15984:72;:::i;:::-;16066;16134:2;16123:9;16119:18;16110:6;16066:72;:::i;:::-;16185:9;16179:4;16175:20;16170:2;16159:9;16155:18;16148:48;16213:76;16284:4;16275:6;16213:76;:::i;:::-;16205:84;;15656:640;;;;;;;:::o;16302:210::-;16389:4;16427:2;16416:9;16412:18;16404:26;;16440:65;16502:1;16491:9;16487:17;16478:6;16440:65;:::i;:::-;16302:210;;;;:::o;16518:313::-;16631:4;16669:2;16658:9;16654:18;16646:26;;16718:9;16712:4;16708:20;16704:1;16693:9;16689:17;16682:47;16746:78;16819:4;16810:6;16746:78;:::i;:::-;16738:86;;16518:313;;;;:::o;16837:419::-;17003:4;17041:2;17030:9;17026:18;17018:26;;17090:9;17084:4;17080:20;17076:1;17065:9;17061:17;17054:47;17118:131;17244:4;17118:131;:::i;:::-;17110:139;;16837:419;;;:::o;17262:::-;17428:4;17466:2;17455:9;17451:18;17443:26;;17515:9;17509:4;17505:20;17501:1;17490:9;17486:17;17479:47;17543:131;17669:4;17543:131;:::i;:::-;17535:139;;17262:419;;;:::o;17687:::-;17853:4;17891:2;17880:9;17876:18;17868:26;;17940:9;17934:4;17930:20;17926:1;17915:9;17911:17;17904:47;17968:131;18094:4;17968:131;:::i;:::-;17960:139;;17687:419;;;:::o;18112:::-;18278:4;18316:2;18305:9;18301:18;18293:26;;18365:9;18359:4;18355:20;18351:1;18340:9;18336:17;18329:47;18393:131;18519:4;18393:131;:::i;:::-;18385:139;;18112:419;;;:::o;18537:::-;18703:4;18741:2;18730:9;18726:18;18718:26;;18790:9;18784:4;18780:20;18776:1;18765:9;18761:17;18754:47;18818:131;18944:4;18818:131;:::i;:::-;18810:139;;18537:419;;;:::o;18962:::-;19128:4;19166:2;19155:9;19151:18;19143:26;;19215:9;19209:4;19205:20;19201:1;19190:9;19186:17;19179:47;19243:131;19369:4;19243:131;:::i;:::-;19235:139;;18962:419;;;:::o;19387:::-;19553:4;19591:2;19580:9;19576:18;19568:26;;19640:9;19634:4;19630:20;19626:1;19615:9;19611:17;19604:47;19668:131;19794:4;19668:131;:::i;:::-;19660:139;;19387:419;;;:::o;19812:::-;19978:4;20016:2;20005:9;20001:18;19993:26;;20065:9;20059:4;20055:20;20051:1;20040:9;20036:17;20029:47;20093:131;20219:4;20093:131;:::i;:::-;20085:139;;19812:419;;;:::o;20237:::-;20403:4;20441:2;20430:9;20426:18;20418:26;;20490:9;20484:4;20480:20;20476:1;20465:9;20461:17;20454:47;20518:131;20644:4;20518:131;:::i;:::-;20510:139;;20237:419;;;:::o;20662:::-;20828:4;20866:2;20855:9;20851:18;20843:26;;20915:9;20909:4;20905:20;20901:1;20890:9;20886:17;20879:47;20943:131;21069:4;20943:131;:::i;:::-;20935:139;;20662:419;;;:::o;21087:222::-;21180:4;21218:2;21207:9;21203:18;21195:26;;21231:71;21299:1;21288:9;21284:17;21275:6;21231:71;:::i;:::-;21087:222;;;;:::o;21315:129::-;21349:6;21376:20;;:::i;:::-;21366:30;;21405:33;21433:4;21425:6;21405:33;:::i;:::-;21315:129;;;:::o;21450:75::-;21483:6;21516:2;21510:9;21500:19;;21450:75;:::o;21531:307::-;21592:4;21682:18;21674:6;21671:30;21668:56;;;21704:18;;:::i;:::-;21668:56;21742:29;21764:6;21742:29;:::i;:::-;21734:37;;21826:4;21820;21816:15;21808:23;;21531:307;;;:::o;21844:308::-;21906:4;21996:18;21988:6;21985:30;21982:56;;;22018:18;;:::i;:::-;21982:56;22056:29;22078:6;22056:29;:::i;:::-;22048:37;;22140:4;22134;22130:15;22122:23;;21844:308;;;:::o;22158:141::-;22207:4;22230:3;22222:11;;22253:3;22250:1;22243:14;22287:4;22284:1;22274:18;22266:26;;22158:141;;;:::o;22305:98::-;22356:6;22390:5;22384:12;22374:22;;22305:98;;;:::o;22409:99::-;22461:6;22495:5;22489:12;22479:22;;22409:99;;;:::o;22514:168::-;22597:11;22631:6;22626:3;22619:19;22671:4;22666:3;22662:14;22647:29;;22514:168;;;;:::o;22688:147::-;22789:11;22826:3;22811:18;;22688:147;;;;:::o;22841:169::-;22925:11;22959:6;22954:3;22947:19;22999:4;22994:3;22990:14;22975:29;;22841:169;;;;:::o;23016:148::-;23118:11;23155:3;23140:18;;23016:148;;;;:::o;23170:305::-;23210:3;23229:20;23247:1;23229:20;:::i;:::-;23224:25;;23263:20;23281:1;23263:20;:::i;:::-;23258:25;;23417:1;23349:66;23345:74;23342:1;23339:81;23336:107;;;23423:18;;:::i;:::-;23336:107;23467:1;23464;23460:9;23453:16;;23170:305;;;;:::o;23481:185::-;23521:1;23538:20;23556:1;23538:20;:::i;:::-;23533:25;;23572:20;23590:1;23572:20;:::i;:::-;23567:25;;23611:1;23601:35;;23616:18;;:::i;:::-;23601:35;23658:1;23655;23651:9;23646:14;;23481:185;;;;:::o;23672:348::-;23712:7;23735:20;23753:1;23735:20;:::i;:::-;23730:25;;23769:20;23787:1;23769:20;:::i;:::-;23764:25;;23957:1;23889:66;23885:74;23882:1;23879:81;23874:1;23867:9;23860:17;23856:105;23853:131;;;23964:18;;:::i;:::-;23853:131;24012:1;24009;24005:9;23994:20;;23672:348;;;;:::o;24026:191::-;24066:4;24086:20;24104:1;24086:20;:::i;:::-;24081:25;;24120:20;24138:1;24120:20;:::i;:::-;24115:25;;24159:1;24156;24153:8;24150:34;;;24164:18;;:::i;:::-;24150:34;24209:1;24206;24202:9;24194:17;;24026:191;;;;:::o;24223:96::-;24260:7;24289:24;24307:5;24289:24;:::i;:::-;24278:35;;24223:96;;;:::o;24325:90::-;24359:7;24402:5;24395:13;24388:21;24377:32;;24325:90;;;:::o;24421:149::-;24457:7;24497:66;24490:5;24486:78;24475:89;;24421:149;;;:::o;24576:126::-;24613:7;24653:42;24646:5;24642:54;24631:65;;24576:126;;;:::o;24708:77::-;24745:7;24774:5;24763:16;;24708:77;;;:::o;24791:154::-;24875:6;24870:3;24865;24852:30;24937:1;24928:6;24923:3;24919:16;24912:27;24791:154;;;:::o;24951:307::-;25019:1;25029:113;25043:6;25040:1;25037:13;25029:113;;;25128:1;25123:3;25119:11;25113:18;25109:1;25104:3;25100:11;25093:39;25065:2;25062:1;25058:10;25053:15;;25029:113;;;25160:6;25157:1;25154:13;25151:101;;;25240:1;25231:6;25226:3;25222:16;25215:27;25151:101;25000:258;24951:307;;;:::o;25264:171::-;25303:3;25326:24;25344:5;25326:24;:::i;:::-;25317:33;;25372:4;25365:5;25362:15;25359:41;;;25380:18;;:::i;:::-;25359:41;25427:1;25420:5;25416:13;25409:20;;25264:171;;;:::o;25441:320::-;25485:6;25522:1;25516:4;25512:12;25502:22;;25569:1;25563:4;25559:12;25590:18;25580:81;;25646:4;25638:6;25634:17;25624:27;;25580:81;25708:2;25700:6;25697:14;25677:18;25674:38;25671:84;;;25727:18;;:::i;:::-;25671:84;25492:269;25441:320;;;:::o;25767:281::-;25850:27;25872:4;25850:27;:::i;:::-;25842:6;25838:40;25980:6;25968:10;25965:22;25944:18;25932:10;25929:34;25926:62;25923:88;;;25991:18;;:::i;:::-;25923:88;26031:10;26027:2;26020:22;25810:238;25767:281;;:::o;26054:233::-;26093:3;26116:24;26134:5;26116:24;:::i;:::-;26107:33;;26162:66;26155:5;26152:77;26149:103;;;26232:18;;:::i;:::-;26149:103;26279:1;26272:5;26268:13;26261:20;;26054:233;;;:::o;26293:176::-;26325:1;26342:20;26360:1;26342:20;:::i;:::-;26337:25;;26376:20;26394:1;26376:20;:::i;:::-;26371:25;;26415:1;26405:35;;26420:18;;:::i;:::-;26405:35;26461:1;26458;26454:9;26449:14;;26293:176;;;;:::o;26475:180::-;26523:77;26520:1;26513:88;26620:4;26617:1;26610:15;26644:4;26641:1;26634:15;26661:180;26709:77;26706:1;26699:88;26806:4;26803:1;26796:15;26830:4;26827:1;26820:15;26847:180;26895:77;26892:1;26885:88;26992:4;26989:1;26982:15;27016:4;27013:1;27006:15;27033:180;27081:77;27078:1;27071:88;27178:4;27175:1;27168:15;27202:4;27199:1;27192:15;27219:180;27267:77;27264:1;27257:88;27364:4;27361:1;27354:15;27388:4;27385:1;27378:15;27405:117;27514:1;27511;27504:12;27528:117;27637:1;27634;27627:12;27651:117;27760:1;27757;27750:12;27774:117;27883:1;27880;27873:12;27897:102;27938:6;27989:2;27985:7;27980:2;27973:5;27969:14;27965:28;27955:38;;27897:102;;;:::o;28005:167::-;28145:19;28141:1;28133:6;28129:14;28122:43;28005:167;:::o;28178:225::-;28318:34;28314:1;28306:6;28302:14;28295:58;28387:8;28382:2;28374:6;28370:15;28363:33;28178:225;:::o;28409:176::-;28549:28;28545:1;28537:6;28533:14;28526:52;28409:176;:::o;28591:221::-;28731:34;28727:1;28719:6;28715:14;28708:58;28800:4;28795:2;28787:6;28783:15;28776:29;28591:221;:::o;28818:182::-;28958:34;28954:1;28946:6;28942:14;28935:58;28818:182;:::o;29006:234::-;29146:34;29142:1;29134:6;29130:14;29123:58;29215:17;29210:2;29202:6;29198:15;29191:42;29006:234;:::o;29246:176::-;29386:28;29382:1;29374:6;29370:14;29363:52;29246:176;:::o;29428:114::-;;:::o;29548:169::-;29688:21;29684:1;29676:6;29672:14;29665:45;29548:169;:::o;29723:181::-;29863:33;29859:1;29851:6;29847:14;29840:57;29723:181;:::o;29910:170::-;30050:22;30046:1;30038:6;30034:14;30027:46;29910:170;:::o;30086:122::-;30159:24;30177:5;30159:24;:::i;:::-;30152:5;30149:35;30139:63;;30198:1;30195;30188:12;30139:63;30086:122;:::o;30214:116::-;30284:21;30299:5;30284:21;:::i;:::-;30277:5;30274:32;30264:60;;30320:1;30317;30310:12;30264:60;30214:116;:::o;30336:120::-;30408:23;30425:5;30408:23;:::i;:::-;30401:5;30398:34;30388:62;;30446:1;30443;30436:12;30388:62;30336:120;:::o;30462:122::-;30535:24;30553:5;30535:24;:::i;:::-;30528:5;30525:35;30515:63;;30574:1;30571;30564:12;30515:63;30462:122;:::o

Swarm Source

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