ETH Price: $2,626.09 (+0.97%)
Gas: 1 Gwei

Token

Nymphéas 1907 Original (Nymphéas 1907 Original)
 

Overview

Max Total Supply

520 Nymphéas 1907 Original

Holders

322

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Nymphéas 1907 Original
0xab8d748947c2aabcf5896b27d8e0cd653a4f1f2a
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:
Nympheas_1907_Original

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-25
*/

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds 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 from 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) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds 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 from 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) {
            unchecked {
                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/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// 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/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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



pragma solidity ^0.8.0;







/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}


/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe) internal virtual {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))
            // prettier-ignore
            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            pop(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x00))
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if `from` is a blocked operator.
    /// Can be turned on / off via `enabled`.
    /// For gas efficiency, you can use tight variable packing to efficiently read / write
    /// the boolean value for `enabled`.
    modifier onlyAllowedOperator(address from, bool enabled) virtual {
        /// @solidity memory-safe-assembly
        assembly {
            // This code prioritizes runtime gas costs on a chain with the registry.
            // As such, we will not use `extcodesize`, but rather abuse the behavior
            // of `staticcall` returning 1 when called on an empty / missing contract,
            // to avoid reverting when a chain does not have the registry.

            if enabled {
                // Check if `from` is not equal to `msg.sender`,
                // discarding the upper 96 bits of `from` in case they are dirty.
                if iszero(eq(shr(96, shl(96, from)), caller())) {
                    // Store the function selector of `isOperatorAllowed(address,address)`,
                    // shifted left by 6 bytes, which is enough for 8tb of memory.
                    // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
                    mstore(0x00, 0xc6171134001122334455)
                    // Store the `address(this)`.
                    mstore(0x1a, address())
                    // Store the `msg.sender`.
                    mstore(0x3a, caller())

                    // `isOperatorAllowed` always returns true if it does not revert.
                    if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                        // Bubble up the revert if the staticcall reverts.
                        returndatacopy(0x00, 0x00, returndatasize())
                        revert(0x00, returndatasize())
                    }

                    // We'll skip checking if `from` is inside the blacklist.
                    // Even though that can block transferring out of wrapper contracts,
                    // we don't want tokens to be stuck.

                    // Restore the part of the free memory pointer that was overwritten,
                    // which is guaranteed to be zero, if less than 8tb of memory is used.
                    mstore(0x3a, 0)
                }
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator.
    /// Can be turned on / off via `enabled`.
    /// For efficiency, you can use tight variable packing to efficiently read / write
    /// the boolean value for `enabled`.
    modifier onlyAllowedOperatorApproval(address operator, bool enabled) virtual {
        /// @solidity memory-safe-assembly
        assembly {
            // For more information on the optimization techniques used,
            // see the comments in `onlyAllowedOperator`.

            if enabled {
                // Store the function selector of `isOperatorAllowed(address,address)`,
                mstore(0x00, 0xc6171134001122334455)
                // Store the `address(this)`.
                mstore(0x1a, address())
                // Store the `operator`, discarding the upper 96 bits in case they are dirty.
                mstore(0x3a, shr(96, shl(96, operator)))

                // `isOperatorAllowed` always returns true if it does not revert.
                if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                    // Bubble up the revert if the staticcall reverts.
                    returndatacopy(0x00, 0x00, returndatasize())
                    revert(0x00, returndatasize())
                }

                // Restore the part of the free memory pointer that was overwritten.
                mstore(0x3a, 0)
            }
        }
        _;
    }
}

error AlreadyReservedTokens();
error CallerNotOffsetter();
error FunctionLocked();
error InsufficientValue();
error InsufficientMints();
error InsufficientSupply();
error InvalidSignature();
error NoContractMinting();
error ProvenanceHashAlreadySet();
error ProvenanceHashNotSet();
error TokenOffsetAlreadySet();
error TokenOffsetNotSet();
error WithdrawFailed();

interface Offsetable { function setOffset(uint256 randomness) external; }


contract Nympheas_1907_Original is ERC721A, ERC2981, OperatorFilterer, Ownable {
    using ECDSA for bytes32;

    string private _baseTokenURI;    
    bytes32 public merkleRoot;
    string public baseExtension = ".json";
    uint256 public constant RESERVED = 55;
    uint256 public secReserved = 0;
    uint256 public constant MAX_SUPPLY = 693;
    uint256 public claimSupply = 600;
    string public provenanceHash;
    bool public operatorFilteringEnabled;
    mapping(bytes4 => bool) public functionLocked;
    mapping(address => bool) public Claimed;
    uint256 public totalClaimed = 0;

    constructor(
        address _royaltyReceiver,
        uint96 _royaltyFraction
    )
        ERC721A(unicode"Nymphéas 1907 Original", unicode"Nymphéas 1907 Original")
    {

        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;

        _setDefaultRoyalty(_royaltyReceiver, _royaltyFraction);
    }

    /**
     * @notice Modifier applied to functions that will be disabled when they're no longer needed
     */
    modifier lockable() {
        if (functionLocked[msg.sig]) revert FunctionLocked();
        _;
    }

    /**
     * @inheritdoc ERC721A
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId)
            || ERC2981.supportsInterface(interfaceId);
    }

    /**
     * @notice Override ERC721A _baseURI function to use base URI pattern
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

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

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

    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, Strings.toString(tokenId), baseExtension))
        : "";
    } 


    /**
     * @notice Return the number of tokens an address has minted
     * @param account Address to return the number of tokens minted for
     */
    function numberMinted(address account) external view returns (uint256) {
        return _numberMinted(account);
    }

    /**
     * @notice Lock a function so that it can no longer be called
     * @dev WARNING: THIS CANNOT BE UNDONE
     * @param id Function signature
     */
    function lockFunction(bytes4 id) external onlyOwner {
        functionLocked[id] = true;
    }

    /**
     * @notice Set the state of the OpenSea operator filter
     * @param value Flag indicating if the operator filter should be applied to transfers and approvals
     */
    function setOperatorFilteringEnabled(bool value) external lockable onlyOwner {
        operatorFilteringEnabled = value;
    }

    /**
     * @notice Set new royalties settings for the collection
     * @param receiver Address to receive royalties
     * @param royaltyFraction Royalty fee respective to fee denominator (10_000)
     */
    function setRoyalties(address receiver, uint96 royaltyFraction) external onlyOwner {
        _setDefaultRoyalty(receiver, royaltyFraction);
    }


    /**
     * @notice Set token metadata base URI
     * @param _newBaseURI New base URI
     */
    function setBaseURI(string calldata _newBaseURI) external lockable onlyOwner {
        _baseTokenURI = _newBaseURI;
    }

    /**
     * @notice Set provenance hash for the collection
     * @param _provenanceHash New hash of the metadata
     */
    function setProvenanceHash(string calldata _provenanceHash) external lockable onlyOwner {
        if (bytes(provenanceHash).length != 0) revert ProvenanceHashAlreadySet();

        provenanceHash = _provenanceHash;
    }

    /**
     * @notice Mint `RESERVED` amount of tokens to an address
     * @param to Address to send the reserved tokens
     */
    function reserve(address to) external lockable onlyOwner {
        if (_totalMinted() >= RESERVED) revert AlreadyReservedTokens();
        _mint(to, RESERVED);
    }

    function secondaryReserve(address to )  external lockable onlyOwner {
        //if (_totalMinted() >= secReserved) revert AlreadyReservedTokens();        
        require(_totalMinted() + secReserved  <= MAX_SUPPLY , "Exceeds Maximum Supply.");
        _mint(to, secReserved);
    }

    function updateSecondaryReserveAmt(uint256 amt) external onlyOwner {
        secReserved = amt;
    }

    function updateClaimSupply(uint256 _claimSupply) external onlyOwner {
        claimSupply = _claimSupply;
    } 

    function claim(uint256 amount, bytes32[] calldata merkleProof) external {
        require(Claimed[msg.sender] == false, "Already Claimed the NFT");
        require(totalClaimed + amount <= claimSupply,"All NFTs Claimed.");
        require(_totalMinted() + amount <= MAX_SUPPLY , "Exceeds Maximum Supply");
        bytes32 node = keccak256(abi.encodePacked(msg.sender, amount));
        require(MerkleProof.verify(merkleProof, merkleRoot, node), "Invalid Whitelist Proof.");
        _mint(msg.sender, amount);
        totalClaimed += amount;
        Claimed[msg.sender] = true;
    }
    
     function updateUserClaimStatus(address[] memory users, bool _hasClaimed) external onlyOwner {
        require(users.length < 501,"You can update claim for only 500 users in one transaction.");
        for(uint i=0; i<users.length; i++){
            Claimed[users[i]] = _hasClaimed;
        }

    }
      
    /**
     * @notice Withdraw all ETH sent to the contract
     */
    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        if (!success) revert WithdrawFailed();
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
        onlyAllowedOperatorApproval(operator, operatorFilteringEnabled)
    {
        super.setApprovalForAll(operator, approved);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function approve(address operator, uint256 tokenId)
        public
        payable
        override
        onlyAllowedOperatorApproval(operator, operatorFilteringEnabled)
    {
        super.approve(operator, tokenId);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) {
        super.transferFrom(from, to, tokenId);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) {
        super.safeTransferFrom(from, to, tokenId);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFraction","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyReservedTokens","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"FunctionLocked","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"ProvenanceHashAlreadySet","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WithdrawFailed","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"functionLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bytes4","name":"id","type":"bytes4"}],"name":"lockFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[],"name":"secReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"secondaryReserve","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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setRoyalties","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":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimSupply","type":"uint256"}],"name":"updateClaimSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"updateSecondaryReserveAmt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"bool","name":"_hasClaimed","type":"bool"}],"name":"updateUserClaimStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90816200004a919062000724565b506000600e55610258600f5560006014553480156200006857600080fd5b50604051620053c2380380620053c283398181016040528101906200008e9190620008be565b6040518060400160405280601881526020017f4e796d706865cc8161732031393037204f726967696e616c00000000000000008152506040518060400160405280601881526020017f4e796d706865cc8161732031393037204f726967696e616c000000000000000081525081600290816200010b919062000724565b5080600390816200011d919062000724565b506200012e6200019b60201b60201c565b6000819055505050620001566200014a620001a460201b60201c565b620001ac60201b60201c565b620001666200027260201b60201c565b6001601160006101000a81548160ff0219169083151502179055506200019382826200029b60201b60201c565b505062000a20565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000299733cc6cdda760b79bafa08df41ecfa224f810dceb660016200043e60201b60201c565b565b620002ab620004a060201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200030c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000303906200098c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200037e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037590620009fe565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b637d3e3dbe8260601b60601c9250816200046d57826200046557634420e48690506200046d565b63a0af290390505b8060e01b600052306004528260245260008060446000806daaeb6d7670e522a718067333cd4e5af1506000602452505050565b6000612710905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052c57607f821691505b602082108103620005425762000541620004e4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005ac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200056d565b620005b886836200056d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000605620005ff620005f984620005d0565b620005da565b620005d0565b9050919050565b6000819050919050565b6200062183620005e4565b6200063962000630826200060c565b8484546200057a565b825550505050565b600090565b6200065062000641565b6200065d81848462000616565b505050565b5b8181101562000685576200067960008262000646565b60018101905062000663565b5050565b601f821115620006d4576200069e8162000548565b620006a9846200055d565b81016020851015620006b9578190505b620006d1620006c8856200055d565b83018262000662565b50505b505050565b600082821c905092915050565b6000620006f960001984600802620006d9565b1980831691505092915050565b6000620007148383620006e6565b9150826002028217905092915050565b6200072f82620004aa565b67ffffffffffffffff8111156200074b576200074a620004b5565b5b62000757825462000513565b6200076482828562000689565b600060209050601f8311600181146200079c576000841562000787578287015190505b62000793858262000706565b86555062000803565b601f198416620007ac8662000548565b60005b82811015620007d657848901518255600182019150602085019450602081019050620007af565b86831015620007f65784890151620007f2601f891682620006e6565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200083d8262000810565b9050919050565b6200084f8162000830565b81146200085b57600080fd5b50565b6000815190506200086f8162000844565b92915050565b60006bffffffffffffffffffffffff82169050919050565b620008988162000875565b8114620008a457600080fd5b50565b600081519050620008b8816200088d565b92915050565b60008060408385031215620008d857620008d76200080b565b5b6000620008e8858286016200085e565b9250506020620008fb85828601620008a7565b9150509250929050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000974602a8362000905565b9150620009818262000916565b604082019050919050565b60006020820190508181036000830152620009a78162000965565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000620009e660198362000905565b9150620009f382620009ae565b602082019050919050565b6000602082019050818103600083015262000a1981620009d7565b9050919050565b6149928062000a306000396000f3fe6080604052600436106102675760003560e01c806395d89b4111610144578063c6ab67a3116100b6578063dc33e6811161007a578063dc33e681146108e3578063e75179a414610920578063e985e9c514610949578063ecde215a14610986578063f2fde38b146109af578063fb796e6c146109d857610267565b8063c6ab67a3146107fe578063c87b56dd14610829578063cb3f47d914610866578063d54ad2a11461088f578063da3ef23f146108ba57610267565b8063b449c24d11610108578063b449c24d146106eb578063b7c0b8e814610728578063b88d4fde14610751578063bbadfe761461076d578063c21b471b146107aa578063c6682862146107d357610267565b806395d89b411461061a578063a22cb46514610645578063a810e6ff1461066e578063aa592f2514610697578063ae3729ed146106c257610267565b806332cb6b0c116101dd5780636352211e116101a15780636352211e1461050a578063701434651461054757806370a0823114610572578063715018a6146105af5780637cb64759146105c65780638da5cb5b146105ef57610267565b806332cb6b0c1461045a57806334531828146104855780633ccfd60b146104ae57806342842e0e146104c557806355f804b3146104e157610267565b8063109695231161022f578063109695231461035857806318160ddd1461038157806323b872dd146103ac5780632a55205a146103c85780632eb4a7ab146104065780632f52ebb71461043157610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630ad29ec31461032d575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613177565b610a03565b6040516102a091906131bf565b60405180910390f35b3480156102b557600080fd5b506102be610a25565b6040516102cb919061326a565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906132c2565b610ab7565b6040516103089190613330565b60405180910390f35b61032b60048036038101906103269190613377565b610b36565b005b34801561033957600080fd5b50610342610ba5565b60405161034f91906133c6565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613446565b610bab565b005b34801561038d57600080fd5b50610396610cca565b6040516103a391906133c6565b60405180910390f35b6103c660048036038101906103c19190613493565b610ce1565b005b3480156103d457600080fd5b506103ef60048036038101906103ea91906134e6565b610d5a565b6040516103fd929190613526565b60405180910390f35b34801561041257600080fd5b5061041b610f44565b6040516104289190613568565b60405180910390f35b34801561043d57600080fd5b50610458600480360381019061045391906135d9565b610f4a565b005b34801561046657600080fd5b5061046f6111c1565b60405161047c91906133c6565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190613177565b6111c7565b005b3480156104ba57600080fd5b506104c361123c565b005b6104df60048036038101906104da9190613493565b6112ea565b005b3480156104ed57600080fd5b5061050860048036038101906105039190613446565b611363565b005b34801561051657600080fd5b50610531600480360381019061052c91906132c2565b61143a565b60405161053e9190613330565b60405180910390f35b34801561055357600080fd5b5061055c61144c565b60405161056991906133c6565b60405180910390f35b34801561057e57600080fd5b5061059960048036038101906105949190613639565b611452565b6040516105a691906133c6565b60405180910390f35b3480156105bb57600080fd5b506105c461150a565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190613692565b61151e565b005b3480156105fb57600080fd5b50610604611530565b6040516106119190613330565b60405180910390f35b34801561062657600080fd5b5061062f61155a565b60405161063c919061326a565b60405180910390f35b34801561065157600080fd5b5061066c600480360381019061066791906136eb565b6115ec565b005b34801561067a57600080fd5b5061069560048036038101906106909190613639565b61165b565b005b3480156106a357600080fd5b506106ac611784565b6040516106b991906133c6565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e491906132c2565b611789565b005b3480156106f757600080fd5b50610712600480360381019061070d9190613639565b61179b565b60405161071f91906131bf565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a919061372b565b6117bb565b005b61076b60048036038101906107669190613888565b611899565b005b34801561077957600080fd5b50610794600480360381019061078f9190613177565b611914565b6040516107a191906131bf565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc919061394f565b611934565b005b3480156107df57600080fd5b506107e861194a565b6040516107f5919061326a565b60405180910390f35b34801561080a57600080fd5b506108136119d8565b604051610820919061326a565b60405180910390f35b34801561083557600080fd5b50610850600480360381019061084b91906132c2565b611a66565b60405161085d919061326a565b60405180910390f35b34801561087257600080fd5b5061088d60048036038101906108889190613a52565b611b10565b005b34801561089b57600080fd5b506108a4611bf2565b6040516108b191906133c6565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613b4f565b611bf8565b005b3480156108ef57600080fd5b5061090a60048036038101906109059190613639565b611c13565b60405161091791906133c6565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190613639565b611c25565b005b34801561095557600080fd5b50610970600480360381019061096b9190613b98565b611d35565b60405161097d91906131bf565b60405180910390f35b34801561099257600080fd5b506109ad60048036038101906109a891906132c2565b611dc9565b005b3480156109bb57600080fd5b506109d660048036038101906109d19190613639565b611ddb565b005b3480156109e457600080fd5b506109ed611e5e565b6040516109fa91906131bf565b60405180910390f35b6000610a0e82611e71565b80610a1e5750610a1d82611f03565b5b9050919050565b606060028054610a3490613c07565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090613c07565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610ac282611f7d565b610af8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601160009054906101000a900460ff168015610b955769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610b8f573d6000803e3d6000fd5b6000603a525b610b9f8484611fdc565b50505050565b600f5481565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610c64576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c6c612120565b600060108054610c7b90613c07565b905014610cb4576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160109182610cc5929190613def565b505050565b6000610cd461219e565b6001546000540303905090565b82601160009054906101000a900460ff168015610d4857338260601b60601c14610d475769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610d41573d6000803e3d6000fd5b6000603a525b5b610d538585856121a7565b5050505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610eef5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610ef96124c9565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610f259190613eee565b610f2f9190613f5f565b90508160000151819350935050509250929050565b600c5481565b60001515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490613fdc565b60405180910390fd5b600f5483601454610fee9190613ffc565b111561102f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110269061407c565b60405180910390fd5b6102b58361103b6124d3565b6110459190613ffc565b1115611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d906140e8565b60405180910390fd5b6000338460405160200161109b929190614171565b604051602081830303815290604052805190602001209050611101838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54836124e6565b611140576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611137906141e9565b60405180910390fd5b61114a33856124fd565b836014600082825461115c9190613ffc565b925050819055506001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6102b581565b6111cf612120565b600160126000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611244612120565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161126a9061423a565b60006040518083038185875af1925050503d80600081146112a7576040519150601f19603f3d011682016040523d82523d6000602084013e6112ac565b606091505b50509050806112e7576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b82601160009054906101000a900460ff16801561135157338260601b60601c146113505769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61134a573d6000803e3d6000fd5b6000603a525b5b61135c8585856126b8565b5050505050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff161561141c576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611424612120565b8181600b9182611435929190613def565b505050565b6000611445826126d8565b9050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114b9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611512612120565b61151c60006127a4565b565b611526612120565b80600c8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461156990613c07565b80601f016020809104026020016040519081016040528092919081815260200182805461159590613c07565b80156115e25780601f106115b7576101008083540402835291602001916115e2565b820191906000526020600020905b8154815290600101906020018083116115c557829003601f168201915b5050505050905090565b81601160009054906101000a900460ff16801561164b5769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611645573d6000803e3d6000fd5b6000603a525b611655848461286a565b50505050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611714576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61171c612120565b6102b5600e5461172a6124d3565b6117349190613ffc565b1115611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c9061429b565b60405180910390fd5b61178181600e546124fd565b50565b603781565b611791612120565b80600e8190555050565b60136020528060005260406000206000915054906101000a900460ff1681565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611874576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61187c612120565b80601160006101000a81548160ff02191690831515021790555050565b83601160009054906101000a900460ff16801561190057338260601b60601c146118ff5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6118f9573d6000803e3d6000fd5b6000603a525b5b61190c86868686612975565b505050505050565b60126020528060005260406000206000915054906101000a900460ff1681565b61193c612120565b61194682826129e8565b5050565b600d805461195790613c07565b80601f016020809104026020016040519081016040528092919081815260200182805461198390613c07565b80156119d05780601f106119a5576101008083540402835291602001916119d0565b820191906000526020600020905b8154815290600101906020018083116119b357829003601f168201915b505050505081565b601080546119e590613c07565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1190613c07565b8015611a5e5780601f10611a3357610100808354040283529160200191611a5e565b820191906000526020600020905b815481529060010190602001808311611a4157829003601f168201915b505050505081565b6060611a7182611f7d565b611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa79061432d565b60405180910390fd5b6000611aba612b7d565b90506000815111611ada5760405180602001604052806000815250611b08565b80611ae484612c0f565b600d604051602001611af89392919061440c565b6040516020818303038152906040525b915050919050565b611b18612120565b6101f5825110611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b54906144af565b60405180910390fd5b60005b8251811015611bed578160136000858481518110611b8157611b806144cf565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611be5906144fe565b915050611b60565b505050565b60145481565b611c00612120565b80600d9081611c0f9190614546565b5050565b6000611c1e82612d6f565b9050919050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611cde576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce6612120565b6037611cf06124d3565b10611d27576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d328160376124fd565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dd1612120565b80600f8190555050565b611de3612120565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e499061468a565b60405180910390fd5b611e5b816127a4565b50565b601160009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ecc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611efc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f765750611f7582612dc6565b5b9050919050565b600081611f8861219e565b11158015611f97575060005482105b8015611fd5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000611fe78261143a565b90508073ffffffffffffffffffffffffffffffffffffffff16612008612e30565b73ffffffffffffffffffffffffffffffffffffffff161461206b576120348161202f612e30565b611d35565b61206a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612128612e38565b73ffffffffffffffffffffffffffffffffffffffff16612146611530565b73ffffffffffffffffffffffffffffffffffffffff161461219c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612193906146f6565b60405180910390fd5b565b60006001905090565b60006121b2826126d8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612219576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061222584612e40565b9150915061223b8187612236612e30565b612e67565b612287576122508661224b612e30565b611d35565b612286576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036122ed576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122fa8686866001612eab565b801561230557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506123d3856123af888887612eb1565b7c020000000000000000000000000000000000000000000000000000000017612ed9565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036124595760006001850190506000600460008381526020019081526020016000205403612457576000548114612456578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124c18686866001612f04565b505050505050565b6000612710905090565b60006124dd61219e565b60005403905090565b6000826124f38584612f0a565b1490509392505050565b6000805490506000820361253d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61254a6000848385612eab565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125c1836125b26000866000612eb1565b6125bb85612f60565b17612ed9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461266257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612627565b506000820361269d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126b36000848385612f04565b505050565b6126d383838360405180602001604052806000815250611899565b505050565b600080829050806126e761219e565b1161276d5760005481101561276c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361276a575b60008103612760576004600083600190039350838152602001908152602001600020549050612736565b809250505061279f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000612877612e30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612924612e30565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161296991906131bf565b60405180910390a35050565b612980848484610ce1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146129e2576129ab84848484612f70565b6129e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6129f06124c9565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4590614788565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab4906147f4565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b8054612b8c90613c07565b80601f0160208091040260200160405190810160405280929190818152602001828054612bb890613c07565b8015612c055780601f10612bda57610100808354040283529160200191612c05565b820191906000526020600020905b815481529060010190602001808311612be857829003601f168201915b5050505050905090565b606060008203612c56576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d6a565b600082905060005b60008214612c88578080612c71906144fe565b915050600a82612c819190613f5f565b9150612c5e565b60008167ffffffffffffffff811115612ca457612ca361375d565b5b6040519080825280601f01601f191660200182016040528015612cd65781602001600182028036833780820191505090505b5090505b60008514612d6357600182612cef9190614814565b9150600a85612cfe9190614848565b6030612d0a9190613ffc565b60f81b818381518110612d2057612d1f6144cf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d5c9190613f5f565b9450612cda565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612ec88686846130c0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008082905060005b8451811015612f5557612f4082868381518110612f3357612f326144cf565b5b60200260200101516130c9565b91508080612f4d906144fe565b915050612f13565b508091505092915050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f96612e30565b8786866040518563ffffffff1660e01b8152600401612fb894939291906148ce565b6020604051808303816000875af1925050508015612ff457506040513d601f19601f82011682018060405250810190612ff1919061492f565b60015b61306d573d8060008114613024576040519150601f19603f3d011682016040523d82523d6000602084013e613029565b606091505b506000815103613065576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008183106130e1576130dc82846130f4565b6130ec565b6130eb83836130f4565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131548161311f565b811461315f57600080fd5b50565b6000813590506131718161314b565b92915050565b60006020828403121561318d5761318c613115565b5b600061319b84828501613162565b91505092915050565b60008115159050919050565b6131b9816131a4565b82525050565b60006020820190506131d460008301846131b0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132145780820151818401526020810190506131f9565b60008484015250505050565b6000601f19601f8301169050919050565b600061323c826131da565b61324681856131e5565b93506132568185602086016131f6565b61325f81613220565b840191505092915050565b600060208201905081810360008301526132848184613231565b905092915050565b6000819050919050565b61329f8161328c565b81146132aa57600080fd5b50565b6000813590506132bc81613296565b92915050565b6000602082840312156132d8576132d7613115565b5b60006132e6848285016132ad565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061331a826132ef565b9050919050565b61332a8161330f565b82525050565b60006020820190506133456000830184613321565b92915050565b6133548161330f565b811461335f57600080fd5b50565b6000813590506133718161334b565b92915050565b6000806040838503121561338e5761338d613115565b5b600061339c85828601613362565b92505060206133ad858286016132ad565b9150509250929050565b6133c08161328c565b82525050565b60006020820190506133db60008301846133b7565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613406576134056133e1565b5b8235905067ffffffffffffffff811115613423576134226133e6565b5b60208301915083600182028301111561343f5761343e6133eb565b5b9250929050565b6000806020838503121561345d5761345c613115565b5b600083013567ffffffffffffffff81111561347b5761347a61311a565b5b613487858286016133f0565b92509250509250929050565b6000806000606084860312156134ac576134ab613115565b5b60006134ba86828701613362565b93505060206134cb86828701613362565b92505060406134dc868287016132ad565b9150509250925092565b600080604083850312156134fd576134fc613115565b5b600061350b858286016132ad565b925050602061351c858286016132ad565b9150509250929050565b600060408201905061353b6000830185613321565b61354860208301846133b7565b9392505050565b6000819050919050565b6135628161354f565b82525050565b600060208201905061357d6000830184613559565b92915050565b60008083601f840112613599576135986133e1565b5b8235905067ffffffffffffffff8111156135b6576135b56133e6565b5b6020830191508360208202830111156135d2576135d16133eb565b5b9250929050565b6000806000604084860312156135f2576135f1613115565b5b6000613600868287016132ad565b935050602084013567ffffffffffffffff8111156136215761362061311a565b5b61362d86828701613583565b92509250509250925092565b60006020828403121561364f5761364e613115565b5b600061365d84828501613362565b91505092915050565b61366f8161354f565b811461367a57600080fd5b50565b60008135905061368c81613666565b92915050565b6000602082840312156136a8576136a7613115565b5b60006136b68482850161367d565b91505092915050565b6136c8816131a4565b81146136d357600080fd5b50565b6000813590506136e5816136bf565b92915050565b6000806040838503121561370257613701613115565b5b600061371085828601613362565b9250506020613721858286016136d6565b9150509250929050565b60006020828403121561374157613740613115565b5b600061374f848285016136d6565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61379582613220565b810181811067ffffffffffffffff821117156137b4576137b361375d565b5b80604052505050565b60006137c761310b565b90506137d3828261378c565b919050565b600067ffffffffffffffff8211156137f3576137f261375d565b5b6137fc82613220565b9050602081019050919050565b82818337600083830152505050565b600061382b613826846137d8565b6137bd565b90508281526020810184848401111561384757613846613758565b5b613852848285613809565b509392505050565b600082601f83011261386f5761386e6133e1565b5b813561387f848260208601613818565b91505092915050565b600080600080608085870312156138a2576138a1613115565b5b60006138b087828801613362565b94505060206138c187828801613362565b93505060406138d2878288016132ad565b925050606085013567ffffffffffffffff8111156138f3576138f261311a565b5b6138ff8782880161385a565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b61392c8161390b565b811461393757600080fd5b50565b60008135905061394981613923565b92915050565b6000806040838503121561396657613965613115565b5b600061397485828601613362565b92505060206139858582860161393a565b9150509250929050565b600067ffffffffffffffff8211156139aa576139a961375d565b5b602082029050602081019050919050565b60006139ce6139c98461398f565b6137bd565b905080838252602082019050602084028301858111156139f1576139f06133eb565b5b835b81811015613a1a5780613a068882613362565b8452602084019350506020810190506139f3565b5050509392505050565b600082601f830112613a3957613a386133e1565b5b8135613a498482602086016139bb565b91505092915050565b60008060408385031215613a6957613a68613115565b5b600083013567ffffffffffffffff811115613a8757613a8661311a565b5b613a9385828601613a24565b9250506020613aa4858286016136d6565b9150509250929050565b600067ffffffffffffffff821115613ac957613ac861375d565b5b613ad282613220565b9050602081019050919050565b6000613af2613aed84613aae565b6137bd565b905082815260208101848484011115613b0e57613b0d613758565b5b613b19848285613809565b509392505050565b600082601f830112613b3657613b356133e1565b5b8135613b46848260208601613adf565b91505092915050565b600060208284031215613b6557613b64613115565b5b600082013567ffffffffffffffff811115613b8357613b8261311a565b5b613b8f84828501613b21565b91505092915050565b60008060408385031215613baf57613bae613115565b5b6000613bbd85828601613362565b9250506020613bce85828601613362565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c1f57607f821691505b602082108103613c3257613c31613bd8565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613ca57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c68565b613caf8683613c68565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613cec613ce7613ce28461328c565b613cc7565b61328c565b9050919050565b6000819050919050565b613d0683613cd1565b613d1a613d1282613cf3565b848454613c75565b825550505050565b600090565b613d2f613d22565b613d3a818484613cfd565b505050565b5b81811015613d5e57613d53600082613d27565b600181019050613d40565b5050565b601f821115613da357613d7481613c43565b613d7d84613c58565b81016020851015613d8c578190505b613da0613d9885613c58565b830182613d3f565b50505b505050565b600082821c905092915050565b6000613dc660001984600802613da8565b1980831691505092915050565b6000613ddf8383613db5565b9150826002028217905092915050565b613df98383613c38565b67ffffffffffffffff811115613e1257613e1161375d565b5b613e1c8254613c07565b613e27828285613d62565b6000601f831160018114613e565760008415613e44578287013590505b613e4e8582613dd3565b865550613eb6565b601f198416613e6486613c43565b60005b82811015613e8c57848901358255600182019150602085019450602081019050613e67565b86831015613ea95784890135613ea5601f891682613db5565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ef98261328c565b9150613f048361328c565b9250828202613f128161328c565b91508282048414831517613f2957613f28613ebf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f6a8261328c565b9150613f758361328c565b925082613f8557613f84613f30565b5b828204905092915050565b7f416c726561647920436c61696d656420746865204e4654000000000000000000600082015250565b6000613fc66017836131e5565b9150613fd182613f90565b602082019050919050565b60006020820190508181036000830152613ff581613fb9565b9050919050565b60006140078261328c565b91506140128361328c565b925082820190508082111561402a57614029613ebf565b5b92915050565b7f416c6c204e46547320436c61696d65642e000000000000000000000000000000600082015250565b60006140666011836131e5565b915061407182614030565b602082019050919050565b6000602082019050818103600083015261409581614059565b9050919050565b7f45786365656473204d6178696d756d20537570706c7900000000000000000000600082015250565b60006140d26016836131e5565b91506140dd8261409c565b602082019050919050565b60006020820190508181036000830152614101816140c5565b9050919050565b60008160601b9050919050565b600061412082614108565b9050919050565b600061413282614115565b9050919050565b61414a6141458261330f565b614127565b82525050565b6000819050919050565b61416b6141668261328c565b614150565b82525050565b600061417d8285614139565b60148201915061418d828461415a565b6020820191508190509392505050565b7f496e76616c69642057686974656c6973742050726f6f662e0000000000000000600082015250565b60006141d36018836131e5565b91506141de8261419d565b602082019050919050565b60006020820190508181036000830152614202816141c6565b9050919050565b600081905092915050565b50565b6000614224600083614209565b915061422f82614214565b600082019050919050565b600061424582614217565b9150819050919050565b7f45786365656473204d6178696d756d20537570706c792e000000000000000000600082015250565b60006142856017836131e5565b91506142908261424f565b602082019050919050565b600060208201905081810360008301526142b481614278565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614317602f836131e5565b9150614322826142bb565b604082019050919050565b600060208201905081810360008301526143468161430a565b9050919050565b600081905092915050565b6000614363826131da565b61436d818561434d565b935061437d8185602086016131f6565b80840191505092915050565b6000815461439681613c07565b6143a0818661434d565b945060018216600081146143bb57600181146143d057614403565b60ff1983168652811515820286019350614403565b6143d985613c43565b60005b838110156143fb578154818901526001820191506020810190506143dc565b838801955050505b50505092915050565b60006144188286614358565b91506144248285614358565b91506144308284614389565b9150819050949350505050565b7f596f752063616e2075706461746520636c61696d20666f72206f6e6c7920353060008201527f3020757365727320696e206f6e65207472616e73616374696f6e2e0000000000602082015250565b6000614499603b836131e5565b91506144a48261443d565b604082019050919050565b600060208201905081810360008301526144c88161448c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006145098261328c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361453b5761453a613ebf565b5b600182019050919050565b61454f826131da565b67ffffffffffffffff8111156145685761456761375d565b5b6145728254613c07565b61457d828285613d62565b600060209050601f8311600181146145b0576000841561459e578287015190505b6145a88582613dd3565b865550614610565b601f1984166145be86613c43565b60005b828110156145e6578489015182556001820191506020850194506020810190506145c1565b8683101561460357848901516145ff601f891682613db5565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146746026836131e5565b915061467f82614618565b604082019050919050565b600060208201905081810360008301526146a381614667565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146e06020836131e5565b91506146eb826146aa565b602082019050919050565b6000602082019050818103600083015261470f816146d3565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614772602a836131e5565b915061477d82614716565b604082019050919050565b600060208201905081810360008301526147a181614765565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006147de6019836131e5565b91506147e9826147a8565b602082019050919050565b6000602082019050818103600083015261480d816147d1565b9050919050565b600061481f8261328c565b915061482a8361328c565b925082820390508181111561484257614841613ebf565b5b92915050565b60006148538261328c565b915061485e8361328c565b92508261486e5761486d613f30565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006148a082614879565b6148aa8185614884565b93506148ba8185602086016131f6565b6148c381613220565b840191505092915050565b60006080820190506148e36000830187613321565b6148f06020830186613321565b6148fd60408301856133b7565b818103606083015261490f8184614895565b905095945050505050565b6000815190506149298161314b565b92915050565b60006020828403121561494557614944613115565b5b60006149538482850161491a565b9150509291505056fea26469706673582212202cd5a32dd68bfeb9d356f03b27a473693a926c080e46d358db8d920ffab5ece264736f6c63430008130033000000000000000000000000e94c601776df07134ad2aaec2f5f257749eb9df300000000000000000000000000000000000000000000000000000000000003e8

Deployed Bytecode

0x6080604052600436106102675760003560e01c806395d89b4111610144578063c6ab67a3116100b6578063dc33e6811161007a578063dc33e681146108e3578063e75179a414610920578063e985e9c514610949578063ecde215a14610986578063f2fde38b146109af578063fb796e6c146109d857610267565b8063c6ab67a3146107fe578063c87b56dd14610829578063cb3f47d914610866578063d54ad2a11461088f578063da3ef23f146108ba57610267565b8063b449c24d11610108578063b449c24d146106eb578063b7c0b8e814610728578063b88d4fde14610751578063bbadfe761461076d578063c21b471b146107aa578063c6682862146107d357610267565b806395d89b411461061a578063a22cb46514610645578063a810e6ff1461066e578063aa592f2514610697578063ae3729ed146106c257610267565b806332cb6b0c116101dd5780636352211e116101a15780636352211e1461050a578063701434651461054757806370a0823114610572578063715018a6146105af5780637cb64759146105c65780638da5cb5b146105ef57610267565b806332cb6b0c1461045a57806334531828146104855780633ccfd60b146104ae57806342842e0e146104c557806355f804b3146104e157610267565b8063109695231161022f578063109695231461035857806318160ddd1461038157806323b872dd146103ac5780632a55205a146103c85780632eb4a7ab146104065780632f52ebb71461043157610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630ad29ec31461032d575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613177565b610a03565b6040516102a091906131bf565b60405180910390f35b3480156102b557600080fd5b506102be610a25565b6040516102cb919061326a565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906132c2565b610ab7565b6040516103089190613330565b60405180910390f35b61032b60048036038101906103269190613377565b610b36565b005b34801561033957600080fd5b50610342610ba5565b60405161034f91906133c6565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613446565b610bab565b005b34801561038d57600080fd5b50610396610cca565b6040516103a391906133c6565b60405180910390f35b6103c660048036038101906103c19190613493565b610ce1565b005b3480156103d457600080fd5b506103ef60048036038101906103ea91906134e6565b610d5a565b6040516103fd929190613526565b60405180910390f35b34801561041257600080fd5b5061041b610f44565b6040516104289190613568565b60405180910390f35b34801561043d57600080fd5b50610458600480360381019061045391906135d9565b610f4a565b005b34801561046657600080fd5b5061046f6111c1565b60405161047c91906133c6565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190613177565b6111c7565b005b3480156104ba57600080fd5b506104c361123c565b005b6104df60048036038101906104da9190613493565b6112ea565b005b3480156104ed57600080fd5b5061050860048036038101906105039190613446565b611363565b005b34801561051657600080fd5b50610531600480360381019061052c91906132c2565b61143a565b60405161053e9190613330565b60405180910390f35b34801561055357600080fd5b5061055c61144c565b60405161056991906133c6565b60405180910390f35b34801561057e57600080fd5b5061059960048036038101906105949190613639565b611452565b6040516105a691906133c6565b60405180910390f35b3480156105bb57600080fd5b506105c461150a565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190613692565b61151e565b005b3480156105fb57600080fd5b50610604611530565b6040516106119190613330565b60405180910390f35b34801561062657600080fd5b5061062f61155a565b60405161063c919061326a565b60405180910390f35b34801561065157600080fd5b5061066c600480360381019061066791906136eb565b6115ec565b005b34801561067a57600080fd5b5061069560048036038101906106909190613639565b61165b565b005b3480156106a357600080fd5b506106ac611784565b6040516106b991906133c6565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e491906132c2565b611789565b005b3480156106f757600080fd5b50610712600480360381019061070d9190613639565b61179b565b60405161071f91906131bf565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a919061372b565b6117bb565b005b61076b60048036038101906107669190613888565b611899565b005b34801561077957600080fd5b50610794600480360381019061078f9190613177565b611914565b6040516107a191906131bf565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc919061394f565b611934565b005b3480156107df57600080fd5b506107e861194a565b6040516107f5919061326a565b60405180910390f35b34801561080a57600080fd5b506108136119d8565b604051610820919061326a565b60405180910390f35b34801561083557600080fd5b50610850600480360381019061084b91906132c2565b611a66565b60405161085d919061326a565b60405180910390f35b34801561087257600080fd5b5061088d60048036038101906108889190613a52565b611b10565b005b34801561089b57600080fd5b506108a4611bf2565b6040516108b191906133c6565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613b4f565b611bf8565b005b3480156108ef57600080fd5b5061090a60048036038101906109059190613639565b611c13565b60405161091791906133c6565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190613639565b611c25565b005b34801561095557600080fd5b50610970600480360381019061096b9190613b98565b611d35565b60405161097d91906131bf565b60405180910390f35b34801561099257600080fd5b506109ad60048036038101906109a891906132c2565b611dc9565b005b3480156109bb57600080fd5b506109d660048036038101906109d19190613639565b611ddb565b005b3480156109e457600080fd5b506109ed611e5e565b6040516109fa91906131bf565b60405180910390f35b6000610a0e82611e71565b80610a1e5750610a1d82611f03565b5b9050919050565b606060028054610a3490613c07565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090613c07565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610ac282611f7d565b610af8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601160009054906101000a900460ff168015610b955769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610b8f573d6000803e3d6000fd5b6000603a525b610b9f8484611fdc565b50505050565b600f5481565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610c64576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c6c612120565b600060108054610c7b90613c07565b905014610cb4576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160109182610cc5929190613def565b505050565b6000610cd461219e565b6001546000540303905090565b82601160009054906101000a900460ff168015610d4857338260601b60601c14610d475769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610d41573d6000803e3d6000fd5b6000603a525b5b610d538585856121a7565b5050505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610eef5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610ef96124c9565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610f259190613eee565b610f2f9190613f5f565b90508160000151819350935050509250929050565b600c5481565b60001515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490613fdc565b60405180910390fd5b600f5483601454610fee9190613ffc565b111561102f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110269061407c565b60405180910390fd5b6102b58361103b6124d3565b6110459190613ffc565b1115611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d906140e8565b60405180910390fd5b6000338460405160200161109b929190614171565b604051602081830303815290604052805190602001209050611101838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54836124e6565b611140576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611137906141e9565b60405180910390fd5b61114a33856124fd565b836014600082825461115c9190613ffc565b925050819055506001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6102b581565b6111cf612120565b600160126000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611244612120565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161126a9061423a565b60006040518083038185875af1925050503d80600081146112a7576040519150601f19603f3d011682016040523d82523d6000602084013e6112ac565b606091505b50509050806112e7576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b82601160009054906101000a900460ff16801561135157338260601b60601c146113505769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61134a573d6000803e3d6000fd5b6000603a525b5b61135c8585856126b8565b5050505050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff161561141c576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611424612120565b8181600b9182611435929190613def565b505050565b6000611445826126d8565b9050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114b9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611512612120565b61151c60006127a4565b565b611526612120565b80600c8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461156990613c07565b80601f016020809104026020016040519081016040528092919081815260200182805461159590613c07565b80156115e25780601f106115b7576101008083540402835291602001916115e2565b820191906000526020600020905b8154815290600101906020018083116115c557829003601f168201915b5050505050905090565b81601160009054906101000a900460ff16801561164b5769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611645573d6000803e3d6000fd5b6000603a525b611655848461286a565b50505050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611714576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61171c612120565b6102b5600e5461172a6124d3565b6117349190613ffc565b1115611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c9061429b565b60405180910390fd5b61178181600e546124fd565b50565b603781565b611791612120565b80600e8190555050565b60136020528060005260406000206000915054906101000a900460ff1681565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611874576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61187c612120565b80601160006101000a81548160ff02191690831515021790555050565b83601160009054906101000a900460ff16801561190057338260601b60601c146118ff5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6118f9573d6000803e3d6000fd5b6000603a525b5b61190c86868686612975565b505050505050565b60126020528060005260406000206000915054906101000a900460ff1681565b61193c612120565b61194682826129e8565b5050565b600d805461195790613c07565b80601f016020809104026020016040519081016040528092919081815260200182805461198390613c07565b80156119d05780601f106119a5576101008083540402835291602001916119d0565b820191906000526020600020905b8154815290600101906020018083116119b357829003601f168201915b505050505081565b601080546119e590613c07565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1190613c07565b8015611a5e5780601f10611a3357610100808354040283529160200191611a5e565b820191906000526020600020905b815481529060010190602001808311611a4157829003601f168201915b505050505081565b6060611a7182611f7d565b611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa79061432d565b60405180910390fd5b6000611aba612b7d565b90506000815111611ada5760405180602001604052806000815250611b08565b80611ae484612c0f565b600d604051602001611af89392919061440c565b6040516020818303038152906040525b915050919050565b611b18612120565b6101f5825110611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b54906144af565b60405180910390fd5b60005b8251811015611bed578160136000858481518110611b8157611b806144cf565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611be5906144fe565b915050611b60565b505050565b60145481565b611c00612120565b80600d9081611c0f9190614546565b5050565b6000611c1e82612d6f565b9050919050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611cde576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce6612120565b6037611cf06124d3565b10611d27576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d328160376124fd565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dd1612120565b80600f8190555050565b611de3612120565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e499061468a565b60405180910390fd5b611e5b816127a4565b50565b601160009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ecc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611efc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f765750611f7582612dc6565b5b9050919050565b600081611f8861219e565b11158015611f97575060005482105b8015611fd5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000611fe78261143a565b90508073ffffffffffffffffffffffffffffffffffffffff16612008612e30565b73ffffffffffffffffffffffffffffffffffffffff161461206b576120348161202f612e30565b611d35565b61206a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612128612e38565b73ffffffffffffffffffffffffffffffffffffffff16612146611530565b73ffffffffffffffffffffffffffffffffffffffff161461219c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612193906146f6565b60405180910390fd5b565b60006001905090565b60006121b2826126d8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612219576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061222584612e40565b9150915061223b8187612236612e30565b612e67565b612287576122508661224b612e30565b611d35565b612286576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036122ed576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122fa8686866001612eab565b801561230557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506123d3856123af888887612eb1565b7c020000000000000000000000000000000000000000000000000000000017612ed9565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036124595760006001850190506000600460008381526020019081526020016000205403612457576000548114612456578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124c18686866001612f04565b505050505050565b6000612710905090565b60006124dd61219e565b60005403905090565b6000826124f38584612f0a565b1490509392505050565b6000805490506000820361253d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61254a6000848385612eab565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125c1836125b26000866000612eb1565b6125bb85612f60565b17612ed9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461266257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612627565b506000820361269d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126b36000848385612f04565b505050565b6126d383838360405180602001604052806000815250611899565b505050565b600080829050806126e761219e565b1161276d5760005481101561276c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361276a575b60008103612760576004600083600190039350838152602001908152602001600020549050612736565b809250505061279f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000612877612e30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612924612e30565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161296991906131bf565b60405180910390a35050565b612980848484610ce1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146129e2576129ab84848484612f70565b6129e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6129f06124c9565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4590614788565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab4906147f4565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b8054612b8c90613c07565b80601f0160208091040260200160405190810160405280929190818152602001828054612bb890613c07565b8015612c055780601f10612bda57610100808354040283529160200191612c05565b820191906000526020600020905b815481529060010190602001808311612be857829003601f168201915b5050505050905090565b606060008203612c56576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d6a565b600082905060005b60008214612c88578080612c71906144fe565b915050600a82612c819190613f5f565b9150612c5e565b60008167ffffffffffffffff811115612ca457612ca361375d565b5b6040519080825280601f01601f191660200182016040528015612cd65781602001600182028036833780820191505090505b5090505b60008514612d6357600182612cef9190614814565b9150600a85612cfe9190614848565b6030612d0a9190613ffc565b60f81b818381518110612d2057612d1f6144cf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d5c9190613f5f565b9450612cda565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612ec88686846130c0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008082905060005b8451811015612f5557612f4082868381518110612f3357612f326144cf565b5b60200260200101516130c9565b91508080612f4d906144fe565b915050612f13565b508091505092915050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f96612e30565b8786866040518563ffffffff1660e01b8152600401612fb894939291906148ce565b6020604051808303816000875af1925050508015612ff457506040513d601f19601f82011682018060405250810190612ff1919061492f565b60015b61306d573d8060008114613024576040519150601f19603f3d011682016040523d82523d6000602084013e613029565b606091505b506000815103613065576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008183106130e1576130dc82846130f4565b6130ec565b6130eb83836130f4565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131548161311f565b811461315f57600080fd5b50565b6000813590506131718161314b565b92915050565b60006020828403121561318d5761318c613115565b5b600061319b84828501613162565b91505092915050565b60008115159050919050565b6131b9816131a4565b82525050565b60006020820190506131d460008301846131b0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132145780820151818401526020810190506131f9565b60008484015250505050565b6000601f19601f8301169050919050565b600061323c826131da565b61324681856131e5565b93506132568185602086016131f6565b61325f81613220565b840191505092915050565b600060208201905081810360008301526132848184613231565b905092915050565b6000819050919050565b61329f8161328c565b81146132aa57600080fd5b50565b6000813590506132bc81613296565b92915050565b6000602082840312156132d8576132d7613115565b5b60006132e6848285016132ad565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061331a826132ef565b9050919050565b61332a8161330f565b82525050565b60006020820190506133456000830184613321565b92915050565b6133548161330f565b811461335f57600080fd5b50565b6000813590506133718161334b565b92915050565b6000806040838503121561338e5761338d613115565b5b600061339c85828601613362565b92505060206133ad858286016132ad565b9150509250929050565b6133c08161328c565b82525050565b60006020820190506133db60008301846133b7565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613406576134056133e1565b5b8235905067ffffffffffffffff811115613423576134226133e6565b5b60208301915083600182028301111561343f5761343e6133eb565b5b9250929050565b6000806020838503121561345d5761345c613115565b5b600083013567ffffffffffffffff81111561347b5761347a61311a565b5b613487858286016133f0565b92509250509250929050565b6000806000606084860312156134ac576134ab613115565b5b60006134ba86828701613362565b93505060206134cb86828701613362565b92505060406134dc868287016132ad565b9150509250925092565b600080604083850312156134fd576134fc613115565b5b600061350b858286016132ad565b925050602061351c858286016132ad565b9150509250929050565b600060408201905061353b6000830185613321565b61354860208301846133b7565b9392505050565b6000819050919050565b6135628161354f565b82525050565b600060208201905061357d6000830184613559565b92915050565b60008083601f840112613599576135986133e1565b5b8235905067ffffffffffffffff8111156135b6576135b56133e6565b5b6020830191508360208202830111156135d2576135d16133eb565b5b9250929050565b6000806000604084860312156135f2576135f1613115565b5b6000613600868287016132ad565b935050602084013567ffffffffffffffff8111156136215761362061311a565b5b61362d86828701613583565b92509250509250925092565b60006020828403121561364f5761364e613115565b5b600061365d84828501613362565b91505092915050565b61366f8161354f565b811461367a57600080fd5b50565b60008135905061368c81613666565b92915050565b6000602082840312156136a8576136a7613115565b5b60006136b68482850161367d565b91505092915050565b6136c8816131a4565b81146136d357600080fd5b50565b6000813590506136e5816136bf565b92915050565b6000806040838503121561370257613701613115565b5b600061371085828601613362565b9250506020613721858286016136d6565b9150509250929050565b60006020828403121561374157613740613115565b5b600061374f848285016136d6565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61379582613220565b810181811067ffffffffffffffff821117156137b4576137b361375d565b5b80604052505050565b60006137c761310b565b90506137d3828261378c565b919050565b600067ffffffffffffffff8211156137f3576137f261375d565b5b6137fc82613220565b9050602081019050919050565b82818337600083830152505050565b600061382b613826846137d8565b6137bd565b90508281526020810184848401111561384757613846613758565b5b613852848285613809565b509392505050565b600082601f83011261386f5761386e6133e1565b5b813561387f848260208601613818565b91505092915050565b600080600080608085870312156138a2576138a1613115565b5b60006138b087828801613362565b94505060206138c187828801613362565b93505060406138d2878288016132ad565b925050606085013567ffffffffffffffff8111156138f3576138f261311a565b5b6138ff8782880161385a565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b61392c8161390b565b811461393757600080fd5b50565b60008135905061394981613923565b92915050565b6000806040838503121561396657613965613115565b5b600061397485828601613362565b92505060206139858582860161393a565b9150509250929050565b600067ffffffffffffffff8211156139aa576139a961375d565b5b602082029050602081019050919050565b60006139ce6139c98461398f565b6137bd565b905080838252602082019050602084028301858111156139f1576139f06133eb565b5b835b81811015613a1a5780613a068882613362565b8452602084019350506020810190506139f3565b5050509392505050565b600082601f830112613a3957613a386133e1565b5b8135613a498482602086016139bb565b91505092915050565b60008060408385031215613a6957613a68613115565b5b600083013567ffffffffffffffff811115613a8757613a8661311a565b5b613a9385828601613a24565b9250506020613aa4858286016136d6565b9150509250929050565b600067ffffffffffffffff821115613ac957613ac861375d565b5b613ad282613220565b9050602081019050919050565b6000613af2613aed84613aae565b6137bd565b905082815260208101848484011115613b0e57613b0d613758565b5b613b19848285613809565b509392505050565b600082601f830112613b3657613b356133e1565b5b8135613b46848260208601613adf565b91505092915050565b600060208284031215613b6557613b64613115565b5b600082013567ffffffffffffffff811115613b8357613b8261311a565b5b613b8f84828501613b21565b91505092915050565b60008060408385031215613baf57613bae613115565b5b6000613bbd85828601613362565b9250506020613bce85828601613362565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c1f57607f821691505b602082108103613c3257613c31613bd8565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613ca57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c68565b613caf8683613c68565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613cec613ce7613ce28461328c565b613cc7565b61328c565b9050919050565b6000819050919050565b613d0683613cd1565b613d1a613d1282613cf3565b848454613c75565b825550505050565b600090565b613d2f613d22565b613d3a818484613cfd565b505050565b5b81811015613d5e57613d53600082613d27565b600181019050613d40565b5050565b601f821115613da357613d7481613c43565b613d7d84613c58565b81016020851015613d8c578190505b613da0613d9885613c58565b830182613d3f565b50505b505050565b600082821c905092915050565b6000613dc660001984600802613da8565b1980831691505092915050565b6000613ddf8383613db5565b9150826002028217905092915050565b613df98383613c38565b67ffffffffffffffff811115613e1257613e1161375d565b5b613e1c8254613c07565b613e27828285613d62565b6000601f831160018114613e565760008415613e44578287013590505b613e4e8582613dd3565b865550613eb6565b601f198416613e6486613c43565b60005b82811015613e8c57848901358255600182019150602085019450602081019050613e67565b86831015613ea95784890135613ea5601f891682613db5565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ef98261328c565b9150613f048361328c565b9250828202613f128161328c565b91508282048414831517613f2957613f28613ebf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f6a8261328c565b9150613f758361328c565b925082613f8557613f84613f30565b5b828204905092915050565b7f416c726561647920436c61696d656420746865204e4654000000000000000000600082015250565b6000613fc66017836131e5565b9150613fd182613f90565b602082019050919050565b60006020820190508181036000830152613ff581613fb9565b9050919050565b60006140078261328c565b91506140128361328c565b925082820190508082111561402a57614029613ebf565b5b92915050565b7f416c6c204e46547320436c61696d65642e000000000000000000000000000000600082015250565b60006140666011836131e5565b915061407182614030565b602082019050919050565b6000602082019050818103600083015261409581614059565b9050919050565b7f45786365656473204d6178696d756d20537570706c7900000000000000000000600082015250565b60006140d26016836131e5565b91506140dd8261409c565b602082019050919050565b60006020820190508181036000830152614101816140c5565b9050919050565b60008160601b9050919050565b600061412082614108565b9050919050565b600061413282614115565b9050919050565b61414a6141458261330f565b614127565b82525050565b6000819050919050565b61416b6141668261328c565b614150565b82525050565b600061417d8285614139565b60148201915061418d828461415a565b6020820191508190509392505050565b7f496e76616c69642057686974656c6973742050726f6f662e0000000000000000600082015250565b60006141d36018836131e5565b91506141de8261419d565b602082019050919050565b60006020820190508181036000830152614202816141c6565b9050919050565b600081905092915050565b50565b6000614224600083614209565b915061422f82614214565b600082019050919050565b600061424582614217565b9150819050919050565b7f45786365656473204d6178696d756d20537570706c792e000000000000000000600082015250565b60006142856017836131e5565b91506142908261424f565b602082019050919050565b600060208201905081810360008301526142b481614278565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614317602f836131e5565b9150614322826142bb565b604082019050919050565b600060208201905081810360008301526143468161430a565b9050919050565b600081905092915050565b6000614363826131da565b61436d818561434d565b935061437d8185602086016131f6565b80840191505092915050565b6000815461439681613c07565b6143a0818661434d565b945060018216600081146143bb57600181146143d057614403565b60ff1983168652811515820286019350614403565b6143d985613c43565b60005b838110156143fb578154818901526001820191506020810190506143dc565b838801955050505b50505092915050565b60006144188286614358565b91506144248285614358565b91506144308284614389565b9150819050949350505050565b7f596f752063616e2075706461746520636c61696d20666f72206f6e6c7920353060008201527f3020757365727320696e206f6e65207472616e73616374696f6e2e0000000000602082015250565b6000614499603b836131e5565b91506144a48261443d565b604082019050919050565b600060208201905081810360008301526144c88161448c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006145098261328c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361453b5761453a613ebf565b5b600182019050919050565b61454f826131da565b67ffffffffffffffff8111156145685761456761375d565b5b6145728254613c07565b61457d828285613d62565b600060209050601f8311600181146145b0576000841561459e578287015190505b6145a88582613dd3565b865550614610565b601f1984166145be86613c43565b60005b828110156145e6578489015182556001820191506020850194506020810190506145c1565b8683101561460357848901516145ff601f891682613db5565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146746026836131e5565b915061467f82614618565b604082019050919050565b600060208201905081810360008301526146a381614667565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146e06020836131e5565b91506146eb826146aa565b602082019050919050565b6000602082019050818103600083015261470f816146d3565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614772602a836131e5565b915061477d82614716565b604082019050919050565b600060208201905081810360008301526147a181614765565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006147de6019836131e5565b91506147e9826147a8565b602082019050919050565b6000602082019050818103600083015261480d816147d1565b9050919050565b600061481f8261328c565b915061482a8361328c565b925082820390508181111561484257614841613ebf565b5b92915050565b60006148538261328c565b915061485e8361328c565b92508261486e5761486d613f30565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006148a082614879565b6148aa8185614884565b93506148ba8185602086016131f6565b6148c381613220565b840191505092915050565b60006080820190506148e36000830187613321565b6148f06020830186613321565b6148fd60408301856133b7565b818103606083015261490f8184614895565b905095945050505050565b6000815190506149298161314b565b92915050565b60006020828403121561494557614944613115565b5b60006149538482850161491a565b9150509291505056fea26469706673582212202cd5a32dd68bfeb9d356f03b27a473693a926c080e46d358db8d920ffab5ece264736f6c63430008130033

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

000000000000000000000000e94c601776df07134ad2aaec2f5f257749eb9df300000000000000000000000000000000000000000000000000000000000003e8

-----Decoded View---------------
Arg [0] : _royaltyReceiver (address): 0xE94C601776Df07134ad2aAEC2f5F257749Eb9dF3
Arg [1] : _royaltyFraction (uint96): 1000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000e94c601776df07134ad2aaec2f5f257749eb9df3
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8


Deployed Bytecode Sourcemap

89835:8309:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91073:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50621:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57112:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96686:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90196:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93885:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46372:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97078:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25415:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;89992:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94955:591;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90149:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92727:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95949:183;;;;;;;;;;;;;:::i;:::-;;97469:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93625:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52014:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90112:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47556:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30688:103;;;;;;;;;;;;;:::i;:::-;;91570:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30040:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50797:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96292:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94428:286;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90068:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94722:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90365:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93015:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97868:273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90313:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93366:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90024:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90235:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91820:446;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95559:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90411:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91684:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92434:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94252:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58061:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94833:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30946:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90270:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91073:274;91204:4;91246:38;91272:11;91246:25;:38::i;:::-;:93;;;;91301:38;91327:11;91301:25;:38::i;:::-;91246:93;91226:113;;91073:274;;;:::o;50621:100::-;50675:13;50708:5;50701:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50621:100;:::o;57112:218::-;57188:7;57213:16;57221:7;57213;:16::i;:::-;57208:64;;57238:34;;;;;;;;;;;;;;57208:64;57292:15;:24;57308:7;57292:24;;;;;;;;;;;:30;;;;;;;;;;;;57285:37;;57112:218;;;:::o;96686:232::-;96826:8;96836:24;;;;;;;;;;;88418:7;88415:925;;;88547:22;88541:4;88534:36;88648:9;88642:4;88635:23;88800:8;88796:2;88792:17;88788:2;88784:26;88778:4;88771:40;88987:4;88981;88975;88969;88942:25;88935:5;88924:68;88914:290;;89116:16;89110:4;89104;89089:44;89168:16;89162:4;89155:30;88914:290;89323:1;89317:4;89310:15;88415:925;96878:32:::1;96892:8;96902:7;96878:13;:32::i;:::-;96686:232:::0;;;;:::o;90196:32::-;;;;:::o;93885:224::-;90951:14;:23;90966:7;;;;90951:23;;;;;;;;;;;;;;;;;;;;;;;;;;;90947:52;;;90983:16;;;;;;;;;;;;;;90947:52;29926:13:::1;:11;:13::i;:::-;94020:1:::2;93994:14;93988:28;;;;;:::i;:::-;;;:33;93984:72;;94030:26;;;;;;;;;;;;;;93984:72;94086:15;;94069:14;:32;;;;;;;:::i;:::-;;93885:224:::0;;:::o;46372:323::-;46433:7;46661:15;:13;:15::i;:::-;46646:12;;46630:13;;:28;:46;46623:53;;46372:323;:::o;97078:231::-;97221:4;97227:24;;;;;;;;;;;86191:7;86188:1643;;;86404:8;86396:4;86392:2;86388:13;86384:2;86380:22;86377:36;86367:1449;;86719:22;86713:4;86706:36;86828:9;86822:4;86815:23;86921:8;86915:4;86908:22;87114:4;87108;87102;87096;87069:25;87062:5;87051:68;87041:306;;87251:16;87245:4;87239;87224:44;87307:16;87301:4;87294:30;87041:306;87795:1;87789:4;87782:15;86367:1449;86188:1643;97264:37:::1;97283:4;97289:2;97293:7;97264:18;:37::i;:::-;97078:231:::0;;;;;:::o;25415:442::-;25512:7;25521;25541:26;25570:17;:27;25588:8;25570:27;;;;;;;;;;;25541:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25642:1;25614:30;;:7;:16;;;:30;;;25610:92;;25671:19;25661:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25610:92;25714:21;25779:17;:15;:17::i;:::-;25738:58;;25752:7;:23;;;25739:36;;:10;:36;;;;:::i;:::-;25738:58;;;;:::i;:::-;25714:82;;25817:7;:16;;;25835:13;25809:40;;;;;;25415:442;;;;;:::o;89992:25::-;;;;:::o;94955:591::-;95069:5;95046:28;;:7;:19;95054:10;95046:19;;;;;;;;;;;;;;;;;;;;;;;;;:28;;;95038:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;95146:11;;95136:6;95121:12;;:21;;;;:::i;:::-;:36;;95113:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;90186:3;95214:6;95197:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;95189:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;95273:12;95315:10;95327:6;95298:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;95288:47;;;;;;95273:62;;95354:49;95373:11;;95354:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95386:10;;95398:4;95354:18;:49::i;:::-;95346:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;95443:25;95449:10;95461:6;95443:5;:25::i;:::-;95495:6;95479:12;;:22;;;;;;;:::i;:::-;;;;;;;;95534:4;95512:7;:19;95520:10;95512:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;95027:519;94955:591;;;:::o;90149:40::-;90186:3;90149:40;:::o;92727:96::-;29926:13;:11;:13::i;:::-;92811:4:::1;92790:14;:18;92805:2;92790:18;;;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;92727:96:::0;:::o;95949:183::-;29926:13;:11;:13::i;:::-;96000:12:::1;96026:10;96018:24;;96050:21;96018:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95999:77;;;96092:7;96087:37;;96108:16;;;;;;;;;;;;;;96087:37;95988:144;95949:183::o:0;97469:239::-;97616:4;97622:24;;;;;;;;;;;86191:7;86188:1643;;;86404:8;86396:4;86392:2;86388:13;86384:2;86380:22;86377:36;86367:1449;;86719:22;86713:4;86706:36;86828:9;86822:4;86815:23;86921:8;86915:4;86908:22;87114:4;87108;87102;87096;87069:25;87062:5;87051:68;87041:306;;87251:16;87245:4;87239;87224:44;87307:16;87301:4;87294:30;87041:306;87795:1;87789:4;87782:15;86367:1449;86188:1643;97659:41:::1;97682:4;97688:2;97692:7;97659:22;:41::i;:::-;97469:239:::0;;;;;:::o;93625:123::-;90951:14;:23;90966:7;;;;90951:23;;;;;;;;;;;;;;;;;;;;;;;;;;;90947:52;;;90983:16;;;;;;;;;;;;;;90947:52;29926:13:::1;:11;:13::i;:::-;93729:11:::2;;93713:13;:27;;;;;;;:::i;:::-;;93625:123:::0;;:::o;52014:152::-;52086:7;52129:27;52148:7;52129:18;:27::i;:::-;52106:52;;52014:152;;;:::o;90112:30::-;;;;:::o;47556:233::-;47628:7;47669:1;47652:19;;:5;:19;;;47648:60;;47680:28;;;;;;;;;;;;;;47648:60;41715:13;47726:18;:25;47745:5;47726:25;;;;;;;;;;;;;;;;:55;47719:62;;47556:233;;;:::o;30688:103::-;29926:13;:11;:13::i;:::-;30753:30:::1;30780:1;30753:18;:30::i;:::-;30688:103::o:0;91570:106::-;29926:13;:11;:13::i;:::-;91657:11:::1;91644:10;:24;;;;91570:106:::0;:::o;30040:87::-;30086:7;30113:6;;;;;;;;;;;30106:13;;30040:87;:::o;50797:104::-;50853:13;50886:7;50879:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50797:104;:::o;96292:234::-;96423:8;96433:24;;;;;;;;;;;88418:7;88415:925;;;88547:22;88541:4;88534:36;88648:9;88642:4;88635:23;88800:8;88796:2;88792:17;88788:2;88784:26;88778:4;88771:40;88987:4;88981;88975;88969;88942:25;88935:5;88924:68;88914:290;;89116:16;89110:4;89104;89089:44;89168:16;89162:4;89155:30;88914:290;89323:1;89317:4;89310:15;88415:925;96475:43:::1;96499:8;96509;96475:23;:43::i;:::-;96292:234:::0;;;;:::o;94428:286::-;90951:14;:23;90966:7;;;;90951:23;;;;;;;;;;;;;;;;;;;;;;;;;;;90947:52;;;90983:16;;;;;;;;;;;;;;90947:52;29926:13:::1;:11;:13::i;:::-;90186:3:::2;94618:11;;94601:14;:12;:14::i;:::-;:28;;;;:::i;:::-;:43;;94593:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;94684:22;94690:2;94694:11;;94684:5;:22::i;:::-;94428:286:::0;:::o;90068:37::-;90103:2;90068:37;:::o;94722:103::-;29926:13;:11;:13::i;:::-;94814:3:::1;94800:11;:17;;;;94722:103:::0;:::o;90365:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;93015:128::-;90951:14;:23;90966:7;;;;90951:23;;;;;;;;;;;;;;;;;;;;;;;;;;;90947:52;;;90983:16;;;;;;;;;;;;;;90947:52;29926:13:::1;:11;:13::i;:::-;93130:5:::2;93103:24;;:32;;;;;;;;;;;;;;;;;;93015:128:::0;:::o;97868:273::-;98043:4;98049:24;;;;;;;;;;;86191:7;86188:1643;;;86404:8;86396:4;86392:2;86388:13;86384:2;86380:22;86377:36;86367:1449;;86719:22;86713:4;86706:36;86828:9;86822:4;86815:23;86921:8;86915:4;86908:22;87114:4;87108;87102;87096;87069:25;87062:5;87051:68;87041:306;;87251:16;87245:4;87239;87224:44;87307:16;87301:4;87294:30;87041:306;87795:1;87789:4;87782:15;86367:1449;86188:1643;98086:47:::1;98109:4;98115:2;98119:7;98128:4;98086:22;:47::i;:::-;97868:273:::0;;;;;;:::o;90313:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;93366:147::-;29926:13;:11;:13::i;:::-;93460:45:::1;93479:8;93489:15;93460:18;:45::i;:::-;93366:147:::0;;:::o;90024:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;90235:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;91820:446::-;91918:13;91961:16;91969:7;91961;:16::i;:::-;91945:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;92063:28;92094:10;:8;:10::i;:::-;92063:41;;92149:1;92124:14;92118:28;:32;:140;;;;;;;;;;;;;;;;;92186:14;92202:25;92219:7;92202:16;:25::i;:::-;92229:13;92169:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;92118:140;92111:147;;;91820:446;;;:::o;95559:304::-;29926:13;:11;:13::i;:::-;95685:3:::1;95670:5;:12;:18;95662:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;95766:6;95762:92;95778:5;:12;95776:1;:14;95762:92;;;95831:11;95811:7;:17;95819:5;95825:1;95819:8;;;;;;;;:::i;:::-;;;;;;;;95811:17;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;95792:3;;;;;:::i;:::-;;;;95762:92;;;;95559:304:::0;;:::o;90411:31::-;;;;:::o;91684:128::-;29926:13;:11;:13::i;:::-;91787:17:::1;91771:13;:33;;;;;;:::i;:::-;;91684:128:::0;:::o;92434:119::-;92496:7;92523:22;92537:7;92523:13;:22::i;:::-;92516:29;;92434:119;;;:::o;94252:168::-;90951:14;:23;90966:7;;;;90951:23;;;;;;;;;;;;;;;;;;;;;;;;;;;90947:52;;;90983:16;;;;;;;;;;;;;;90947:52;29926:13:::1;:11;:13::i;:::-;90103:2:::2;94324:14;:12;:14::i;:::-;:26;94320:62;;94359:23;;;;;;;;;;;;;;94320:62;94393:19;94399:2;90103;94393:5;:19::i;:::-;94252:168:::0;:::o;58061:164::-;58158:4;58182:18;:25;58201:5;58182:25;;;;;;;;;;;;;;;:35;58208:8;58182:35;;;;;;;;;;;;;;;;;;;;;;;;;58175:42;;58061:164;;;;:::o;94833:113::-;29926:13;:11;:13::i;:::-;94926:12:::1;94912:11;:26;;;;94833:113:::0;:::o;30946:201::-;29926:13;:11;:13::i;:::-;31055:1:::1;31035:22;;:8;:22;;::::0;31027:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;31111:28;31130:8;31111:18;:28::i;:::-;30946:201:::0;:::o;90270:36::-;;;;;;;;;;;;;:::o;49719:639::-;49804:4;50143:10;50128:25;;:11;:25;;;;:102;;;;50220:10;50205:25;;:11;:25;;;;50128:102;:179;;;;50297:10;50282:25;;:11;:25;;;;50128:179;50108:199;;49719:639;;;:::o;25145:215::-;25247:4;25286:26;25271:41;;;:11;:41;;;;:81;;;;25316:36;25340:11;25316:23;:36::i;:::-;25271:81;25264:88;;25145:215;;;:::o;58483:282::-;58548:4;58604:7;58585:15;:13;:15::i;:::-;:26;;:66;;;;;58638:13;;58628:7;:23;58585:66;:153;;;;;58737:1;42491:8;58689:17;:26;58707:7;58689:26;;;;;;;;;;;;:44;:49;58585:153;58565:173;;58483:282;;;:::o;56545:408::-;56634:13;56650:16;56658:7;56650;:16::i;:::-;56634:32;;56706:5;56683:28;;:19;:17;:19::i;:::-;:28;;;56679:175;;56731:44;56748:5;56755:19;:17;:19::i;:::-;56731:16;:44::i;:::-;56726:128;;56803:35;;;;;;;;;;;;;;56726:128;56679:175;56899:2;56866:15;:24;56882:7;56866:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;56937:7;56933:2;56917:28;;56926:5;56917:28;;;;;;;;;;;;56623:330;56545:408;;:::o;30205:132::-;30280:12;:10;:12::i;:::-;30269:23;;:7;:5;:7::i;:::-;:23;;;30261:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30205:132::o;45888:92::-;45944:7;45971:1;45964:8;;45888:92;:::o;60751:2825::-;60893:27;60923;60942:7;60923:18;:27::i;:::-;60893:57;;61008:4;60967:45;;60983:19;60967:45;;;60963:86;;61021:28;;;;;;;;;;;;;;60963:86;61063:27;61092:23;61119:35;61146:7;61119:26;:35::i;:::-;61062:92;;;;61254:68;61279:15;61296:4;61302:19;:17;:19::i;:::-;61254:24;:68::i;:::-;61249:180;;61342:43;61359:4;61365:19;:17;:19::i;:::-;61342:16;:43::i;:::-;61337:92;;61394:35;;;;;;;;;;;;;;61337:92;61249:180;61460:1;61446:16;;:2;:16;;;61442:52;;61471:23;;;;;;;;;;;;;;61442:52;61507:43;61529:4;61535:2;61539:7;61548:1;61507:21;:43::i;:::-;61643:15;61640:160;;;61783:1;61762:19;61755:30;61640:160;62180:18;:24;62199:4;62180:24;;;;;;;;;;;;;;;;62178:26;;;;;;;;;;;;62249:18;:22;62268:2;62249:22;;;;;;;;;;;;;;;;62247:24;;;;;;;;;;;62571:146;62608:2;62657:45;62672:4;62678:2;62682:19;62657:14;:45::i;:::-;42771:8;62629:73;62571:18;:146::i;:::-;62542:17;:26;62560:7;62542:26;;;;;;;;;;;:175;;;;62888:1;42771:8;62837:19;:47;:52;62833:627;;62910:19;62942:1;62932:7;:11;62910:33;;63099:1;63065:17;:30;63083:11;63065:30;;;;;;;;;;;;:35;63061:384;;63203:13;;63188:11;:28;63184:242;;63383:19;63350:17;:30;63368:11;63350:30;;;;;;;;;;;:52;;;;63184:242;63061:384;62891:569;62833:627;63507:7;63503:2;63488:27;;63497:4;63488:27;;;;;;;;;;;;63526:42;63547:4;63553:2;63557:7;63566:1;63526:20;:42::i;:::-;60882:2694;;;60751:2825;;;:::o;26139:97::-;26197:6;26223:5;26216:12;;26139:97;:::o;46793:296::-;46848:7;47055:15;:13;:15::i;:::-;47039:13;;:31;47032:38;;46793:296;:::o;1222:156::-;1313:4;1366;1337:25;1350:5;1357:4;1337:12;:25::i;:::-;:33;1330:40;;1222:156;;;;;:::o;68132:2966::-;68205:20;68228:13;;68205:36;;68268:1;68256:8;:13;68252:44;;68278:18;;;;;;;;;;;;;;68252:44;68309:61;68339:1;68343:2;68347:12;68361:8;68309:21;:61::i;:::-;68853:1;41853:2;68823:1;:26;;68822:32;68810:8;:45;68784:18;:22;68803:2;68784:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;69132:139;69169:2;69223:33;69246:1;69250:2;69254:1;69223:14;:33::i;:::-;69190:30;69211:8;69190:20;:30::i;:::-;:66;69132:18;:139::i;:::-;69098:17;:31;69116:12;69098:31;;;;;;;;;;;:173;;;;69288:16;69319:11;69348:8;69333:12;:23;69319:37;;69869:16;69865:2;69861:25;69849:37;;70241:12;70201:8;70160:1;70098:25;70039:1;69978;69951:335;70612:1;70598:12;70594:20;70552:346;70653:3;70644:7;70641:16;70552:346;;70871:7;70861:8;70858:1;70831:25;70828:1;70825;70820:59;70706:1;70697:7;70693:15;70682:26;;70552:346;;;70556:77;70943:1;70931:8;:13;70927:45;;70953:19;;;;;;;;;;;;;;70927:45;71005:3;70989:13;:19;;;;68558:2462;;71030:60;71059:1;71063:2;71067:12;71081:8;71030:20;:60::i;:::-;68194:2904;68132:2966;;:::o;63672:193::-;63818:39;63835:4;63841:2;63845:7;63818:39;;;;;;;;;;;;:16;:39::i;:::-;63672:193;;;:::o;53169:1275::-;53236:7;53256:12;53271:7;53256:22;;53339:4;53320:15;:13;:15::i;:::-;:23;53316:1061;;53373:13;;53366:4;:20;53362:1015;;;53411:14;53428:17;:23;53446:4;53428:23;;;;;;;;;;;;53411:40;;53545:1;42491:8;53517:6;:24;:29;53513:845;;54182:113;54199:1;54189:6;:11;54182:113;;54242:17;:25;54260:6;;;;;;;54242:25;;;;;;;;;;;;54233:34;;54182:113;;;54328:6;54321:13;;;;;;53513:845;53388:989;53362:1015;53316:1061;54405:31;;;;;;;;;;;;;;53169:1275;;;;:::o;31307:191::-;31381:16;31400:6;;;;;;;;;;;31381:25;;31426:8;31417:6;;:17;;;;;;;;;;;;;;;;;;31481:8;31450:40;;31471:8;31450:40;;;;;;;;;;;;31370:128;31307:191;:::o;57670:234::-;57817:8;57765:18;:39;57784:19;:17;:19::i;:::-;57765:39;;;;;;;;;;;;;;;:49;57805:8;57765:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;57877:8;57841:55;;57856:19;:17;:19::i;:::-;57841:55;;;57887:8;57841:55;;;;;;:::i;:::-;;;;;;;;57670:234;;:::o;64463:407::-;64638:31;64651:4;64657:2;64661:7;64638:12;:31::i;:::-;64702:1;64684:2;:14;;;:19;64680:183;;64723:56;64754:4;64760:2;64764:7;64773:5;64723:30;:56::i;:::-;64718:145;;64807:40;;;;;;;;;;;;;;64718:145;64680:183;64463:407;;;;:::o;26507:332::-;26626:17;:15;:17::i;:::-;26610:33;;:12;:33;;;;26602:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;26729:1;26709:22;;:8;:22;;;26701:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;26796:35;;;;;;;;26808:8;26796:35;;;;;;26818:12;26796:35;;;;;26774:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26507:332;;:::o;91448:114::-;91508:13;91541;91534:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91448:114;:::o;10087:723::-;10143:13;10373:1;10364:5;:10;10360:53;;10391:10;;;;;;;;;;;;;;;;;;;;;10360:53;10423:12;10438:5;10423:20;;10454:14;10479:78;10494:1;10486:4;:9;10479:78;;10512:8;;;;;:::i;:::-;;;;10543:2;10535:10;;;;;:::i;:::-;;;10479:78;;;10567:19;10599:6;10589:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10567:39;;10617:154;10633:1;10624:5;:10;10617:154;;10661:1;10651:11;;;;;:::i;:::-;;;10728:2;10720:5;:10;;;;:::i;:::-;10707:2;:24;;;;:::i;:::-;10694:39;;10677:6;10684;10677:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;10757:2;10748:11;;;;;:::i;:::-;;;10617:154;;;10795:6;10781:21;;;;;10087:723;;;;:::o;47871:178::-;47932:7;41715:13;41853:2;47960:18;:25;47979:5;47960:25;;;;;;;;;;;;;;;;:50;;47959:82;47952:89;;47871:178;;;:::o;22697:157::-;22782:4;22821:25;22806:40;;;:11;:40;;;;22799:47;;22697:157;;;:::o;80791:105::-;80851:7;80878:10;80871:17;;80791:105;:::o;28591:98::-;28644:7;28671:10;28664:17;;28591:98;:::o;59646:485::-;59748:27;59777:23;59818:38;59859:15;:24;59875:7;59859:24;;;;;;;;;;;59818:65;;60036:18;60013:41;;60093:19;60087:26;60068:45;;59998:126;59646:485;;;:::o;58874:659::-;59023:11;59188:16;59181:5;59177:28;59168:37;;59348:16;59337:9;59333:32;59320:45;;59498:15;59487:9;59484:30;59476:5;59465:9;59462:20;59459:56;59449:66;;58874:659;;;;;:::o;65532:159::-;;;;;:::o;80100:311::-;80235:7;80255:16;42895:3;80281:19;:41;;80255:68;;42895:3;80349:31;80360:4;80366:2;80370:9;80349:10;:31::i;:::-;80341:40;;:62;;80334:69;;;80100:311;;;;;:::o;54992:450::-;55072:14;55240:16;55233:5;55229:28;55220:37;;55417:5;55403:11;55378:23;55374:41;55371:52;55364:5;55361:63;55351:73;;54992:450;;;;:::o;66356:158::-;;;;;:::o;2021:296::-;2104:7;2124:20;2147:4;2124:27;;2167:9;2162:118;2186:5;:12;2182:1;:16;2162:118;;;2235:33;2245:12;2259:5;2265:1;2259:8;;;;;;;;:::i;:::-;;;;;;;;2235:9;:33::i;:::-;2220:48;;2200:3;;;;;:::i;:::-;;;;2162:118;;;;2297:12;2290:19;;;2021:296;;;;:::o;55544:324::-;55614:14;55847:1;55837:8;55834:15;55808:24;55804:46;55794:56;;55544:324;;;:::o;66954:716::-;67117:4;67163:2;67138:45;;;67184:19;:17;:19::i;:::-;67205:4;67211:7;67220:5;67138:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;67134:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67438:1;67421:6;:13;:18;67417:235;;67467:40;;;;;;;;;;;;;;67417:235;67610:6;67604:13;67595:6;67591:2;67587:15;67580:38;67134:529;67307:54;;;67297:64;;;:6;:64;;;;67290:71;;;66954:716;;;;;;:::o;79801:147::-;79938:6;79801:147;;;;;:::o;9225:149::-;9288:7;9319:1;9315;:5;:51;;9346:20;9361:1;9364;9346:14;:20::i;:::-;9315:51;;;9323:20;9338:1;9341;9323:14;:20::i;:::-;9315:51;9308:58;;9225:149;;;;:::o;9382:268::-;9450:13;9557:1;9551:4;9544:15;9586:1;9580:4;9573:15;9627:4;9621;9611:21;9602:30;;9382:268;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:117::-;5351:1;5348;5341:12;5365:117;5474:1;5471;5464:12;5488:117;5597:1;5594;5587:12;5625:553;5683:8;5693:6;5743:3;5736:4;5728:6;5724:17;5720:27;5710:122;;5751:79;;:::i;:::-;5710:122;5864:6;5851:20;5841:30;;5894:18;5886:6;5883:30;5880:117;;;5916:79;;:::i;:::-;5880:117;6030:4;6022:6;6018:17;6006:29;;6084:3;6076:4;6068:6;6064:17;6054:8;6050:32;6047:41;6044:128;;;6091:79;;:::i;:::-;6044:128;5625:553;;;;;:::o;6184:529::-;6255:6;6263;6312:2;6300:9;6291:7;6287:23;6283:32;6280:119;;;6318:79;;:::i;:::-;6280:119;6466:1;6455:9;6451:17;6438:31;6496:18;6488:6;6485:30;6482:117;;;6518:79;;:::i;:::-;6482:117;6631:65;6688:7;6679:6;6668:9;6664:22;6631:65;:::i;:::-;6613:83;;;;6409:297;6184:529;;;;;:::o;6719:619::-;6796:6;6804;6812;6861:2;6849:9;6840:7;6836:23;6832:32;6829:119;;;6867:79;;:::i;:::-;6829:119;6987:1;7012:53;7057:7;7048:6;7037:9;7033:22;7012:53;:::i;:::-;7002:63;;6958:117;7114:2;7140:53;7185:7;7176:6;7165:9;7161:22;7140:53;:::i;:::-;7130:63;;7085:118;7242:2;7268:53;7313:7;7304:6;7293:9;7289:22;7268:53;:::i;:::-;7258:63;;7213:118;6719:619;;;;;:::o;7344:474::-;7412:6;7420;7469:2;7457:9;7448:7;7444:23;7440:32;7437:119;;;7475:79;;:::i;:::-;7437:119;7595:1;7620:53;7665:7;7656:6;7645:9;7641:22;7620:53;:::i;:::-;7610:63;;7566:117;7722:2;7748:53;7793:7;7784:6;7773:9;7769:22;7748:53;:::i;:::-;7738:63;;7693:118;7344:474;;;;;:::o;7824:332::-;7945:4;7983:2;7972:9;7968:18;7960:26;;7996:71;8064:1;8053:9;8049:17;8040:6;7996:71;:::i;:::-;8077:72;8145:2;8134:9;8130:18;8121:6;8077:72;:::i;:::-;7824:332;;;;;:::o;8162:77::-;8199:7;8228:5;8217:16;;8162:77;;;:::o;8245:118::-;8332:24;8350:5;8332:24;:::i;:::-;8327:3;8320:37;8245:118;;:::o;8369:222::-;8462:4;8500:2;8489:9;8485:18;8477:26;;8513:71;8581:1;8570:9;8566:17;8557:6;8513:71;:::i;:::-;8369:222;;;;:::o;8614:568::-;8687:8;8697:6;8747:3;8740:4;8732:6;8728:17;8724:27;8714:122;;8755:79;;:::i;:::-;8714:122;8868:6;8855:20;8845:30;;8898:18;8890:6;8887:30;8884:117;;;8920:79;;:::i;:::-;8884:117;9034:4;9026:6;9022:17;9010:29;;9088:3;9080:4;9072:6;9068:17;9058:8;9054:32;9051:41;9048:128;;;9095:79;;:::i;:::-;9048:128;8614:568;;;;;:::o;9188:704::-;9283:6;9291;9299;9348:2;9336:9;9327:7;9323:23;9319:32;9316:119;;;9354:79;;:::i;:::-;9316:119;9474:1;9499:53;9544:7;9535:6;9524:9;9520:22;9499:53;:::i;:::-;9489:63;;9445:117;9629:2;9618:9;9614:18;9601:32;9660:18;9652:6;9649:30;9646:117;;;9682:79;;:::i;:::-;9646:117;9795:80;9867:7;9858:6;9847:9;9843:22;9795:80;:::i;:::-;9777:98;;;;9572:313;9188:704;;;;;:::o;9898:329::-;9957:6;10006:2;9994:9;9985:7;9981:23;9977:32;9974:119;;;10012:79;;:::i;:::-;9974:119;10132:1;10157:53;10202:7;10193:6;10182:9;10178:22;10157:53;:::i;:::-;10147:63;;10103:117;9898:329;;;;:::o;10233:122::-;10306:24;10324:5;10306:24;:::i;:::-;10299:5;10296:35;10286:63;;10345:1;10342;10335:12;10286:63;10233:122;:::o;10361:139::-;10407:5;10445:6;10432:20;10423:29;;10461:33;10488:5;10461:33;:::i;:::-;10361:139;;;;:::o;10506:329::-;10565:6;10614:2;10602:9;10593:7;10589:23;10585:32;10582:119;;;10620:79;;:::i;:::-;10582:119;10740:1;10765:53;10810:7;10801:6;10790:9;10786:22;10765:53;:::i;:::-;10755:63;;10711:117;10506:329;;;;:::o;10841:116::-;10911:21;10926:5;10911:21;:::i;:::-;10904:5;10901:32;10891:60;;10947:1;10944;10937:12;10891:60;10841:116;:::o;10963:133::-;11006:5;11044:6;11031:20;11022:29;;11060:30;11084:5;11060:30;:::i;:::-;10963:133;;;;:::o;11102:468::-;11167:6;11175;11224:2;11212:9;11203:7;11199:23;11195:32;11192:119;;;11230:79;;:::i;:::-;11192:119;11350:1;11375:53;11420:7;11411:6;11400:9;11396:22;11375:53;:::i;:::-;11365:63;;11321:117;11477:2;11503:50;11545:7;11536:6;11525:9;11521:22;11503:50;:::i;:::-;11493:60;;11448:115;11102:468;;;;;:::o;11576:323::-;11632:6;11681:2;11669:9;11660:7;11656:23;11652:32;11649:119;;;11687:79;;:::i;:::-;11649:119;11807:1;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11778:114;11576:323;;;;:::o;11905:117::-;12014:1;12011;12004:12;12028:180;12076:77;12073:1;12066:88;12173:4;12170:1;12163:15;12197:4;12194:1;12187:15;12214:281;12297:27;12319:4;12297:27;:::i;:::-;12289:6;12285:40;12427:6;12415:10;12412:22;12391:18;12379:10;12376:34;12373:62;12370:88;;;12438:18;;:::i;:::-;12370:88;12478:10;12474:2;12467:22;12257:238;12214:281;;:::o;12501:129::-;12535:6;12562:20;;:::i;:::-;12552:30;;12591:33;12619:4;12611:6;12591:33;:::i;:::-;12501:129;;;:::o;12636:307::-;12697:4;12787:18;12779:6;12776:30;12773:56;;;12809:18;;:::i;:::-;12773:56;12847:29;12869:6;12847:29;:::i;:::-;12839:37;;12931:4;12925;12921:15;12913:23;;12636:307;;;:::o;12949:146::-;13046:6;13041:3;13036;13023:30;13087:1;13078:6;13073:3;13069:16;13062:27;12949:146;;;:::o;13101:423::-;13178:5;13203:65;13219:48;13260:6;13219:48;:::i;:::-;13203:65;:::i;:::-;13194:74;;13291:6;13284:5;13277:21;13329:4;13322:5;13318:16;13367:3;13358:6;13353:3;13349:16;13346:25;13343:112;;;13374:79;;:::i;:::-;13343:112;13464:54;13511:6;13506:3;13501;13464:54;:::i;:::-;13184:340;13101:423;;;;;:::o;13543:338::-;13598:5;13647:3;13640:4;13632:6;13628:17;13624:27;13614:122;;13655:79;;:::i;:::-;13614:122;13772:6;13759:20;13797:78;13871:3;13863:6;13856:4;13848:6;13844:17;13797:78;:::i;:::-;13788:87;;13604:277;13543:338;;;;:::o;13887:943::-;13982:6;13990;13998;14006;14055:3;14043:9;14034:7;14030:23;14026:33;14023:120;;;14062:79;;:::i;:::-;14023:120;14182:1;14207:53;14252:7;14243:6;14232:9;14228:22;14207:53;:::i;:::-;14197:63;;14153:117;14309:2;14335:53;14380:7;14371:6;14360:9;14356:22;14335:53;:::i;:::-;14325:63;;14280:118;14437:2;14463:53;14508:7;14499:6;14488:9;14484:22;14463:53;:::i;:::-;14453:63;;14408:118;14593:2;14582:9;14578:18;14565:32;14624:18;14616:6;14613:30;14610:117;;;14646:79;;:::i;:::-;14610:117;14751:62;14805:7;14796:6;14785:9;14781:22;14751:62;:::i;:::-;14741:72;;14536:287;13887:943;;;;;;;:::o;14836:109::-;14872:7;14912:26;14905:5;14901:38;14890:49;;14836:109;;;:::o;14951:120::-;15023:23;15040:5;15023:23;:::i;:::-;15016:5;15013:34;15003:62;;15061:1;15058;15051:12;15003:62;14951:120;:::o;15077:137::-;15122:5;15160:6;15147:20;15138:29;;15176:32;15202:5;15176:32;:::i;:::-;15077:137;;;;:::o;15220:472::-;15287:6;15295;15344:2;15332:9;15323:7;15319:23;15315:32;15312:119;;;15350:79;;:::i;:::-;15312:119;15470:1;15495:53;15540:7;15531:6;15520:9;15516:22;15495:53;:::i;:::-;15485:63;;15441:117;15597:2;15623:52;15667:7;15658:6;15647:9;15643:22;15623:52;:::i;:::-;15613:62;;15568:117;15220:472;;;;;:::o;15698:311::-;15775:4;15865:18;15857:6;15854:30;15851:56;;;15887:18;;:::i;:::-;15851:56;15937:4;15929:6;15925:17;15917:25;;15997:4;15991;15987:15;15979:23;;15698:311;;;:::o;16032:710::-;16128:5;16153:81;16169:64;16226:6;16169:64;:::i;:::-;16153:81;:::i;:::-;16144:90;;16254:5;16283:6;16276:5;16269:21;16317:4;16310:5;16306:16;16299:23;;16370:4;16362:6;16358:17;16350:6;16346:30;16399:3;16391:6;16388:15;16385:122;;;16418:79;;:::i;:::-;16385:122;16533:6;16516:220;16550:6;16545:3;16542:15;16516:220;;;16625:3;16654:37;16687:3;16675:10;16654:37;:::i;:::-;16649:3;16642:50;16721:4;16716:3;16712:14;16705:21;;16592:144;16576:4;16571:3;16567:14;16560:21;;16516:220;;;16520:21;16134:608;;16032:710;;;;;:::o;16765:370::-;16836:5;16885:3;16878:4;16870:6;16866:17;16862:27;16852:122;;16893:79;;:::i;:::-;16852:122;17010:6;16997:20;17035:94;17125:3;17117:6;17110:4;17102:6;17098:17;17035:94;:::i;:::-;17026:103;;16842:293;16765:370;;;;:::o;17141:678::-;17231:6;17239;17288:2;17276:9;17267:7;17263:23;17259:32;17256:119;;;17294:79;;:::i;:::-;17256:119;17442:1;17431:9;17427:17;17414:31;17472:18;17464:6;17461:30;17458:117;;;17494:79;;:::i;:::-;17458:117;17599:78;17669:7;17660:6;17649:9;17645:22;17599:78;:::i;:::-;17589:88;;17385:302;17726:2;17752:50;17794:7;17785:6;17774:9;17770:22;17752:50;:::i;:::-;17742:60;;17697:115;17141:678;;;;;:::o;17825:308::-;17887:4;17977:18;17969:6;17966:30;17963:56;;;17999:18;;:::i;:::-;17963:56;18037:29;18059:6;18037:29;:::i;:::-;18029:37;;18121:4;18115;18111:15;18103:23;;17825:308;;;:::o;18139:425::-;18217:5;18242:66;18258:49;18300:6;18258:49;:::i;:::-;18242:66;:::i;:::-;18233:75;;18331:6;18324:5;18317:21;18369:4;18362:5;18358:16;18407:3;18398:6;18393:3;18389:16;18386:25;18383:112;;;18414:79;;:::i;:::-;18383:112;18504:54;18551:6;18546:3;18541;18504:54;:::i;:::-;18223:341;18139:425;;;;;:::o;18584:340::-;18640:5;18689:3;18682:4;18674:6;18670:17;18666:27;18656:122;;18697:79;;:::i;:::-;18656:122;18814:6;18801:20;18839:79;18914:3;18906:6;18899:4;18891:6;18887:17;18839:79;:::i;:::-;18830:88;;18646:278;18584:340;;;;:::o;18930:509::-;18999:6;19048:2;19036:9;19027:7;19023:23;19019:32;19016:119;;;19054:79;;:::i;:::-;19016:119;19202:1;19191:9;19187:17;19174:31;19232:18;19224:6;19221:30;19218:117;;;19254:79;;:::i;:::-;19218:117;19359:63;19414:7;19405:6;19394:9;19390:22;19359:63;:::i;:::-;19349:73;;19145:287;18930:509;;;;:::o;19445:474::-;19513:6;19521;19570:2;19558:9;19549:7;19545:23;19541:32;19538:119;;;19576:79;;:::i;:::-;19538:119;19696:1;19721:53;19766:7;19757:6;19746:9;19742:22;19721:53;:::i;:::-;19711:63;;19667:117;19823:2;19849:53;19894:7;19885:6;19874:9;19870:22;19849:53;:::i;:::-;19839:63;;19794:118;19445:474;;;;;:::o;19925:180::-;19973:77;19970:1;19963:88;20070:4;20067:1;20060:15;20094:4;20091:1;20084:15;20111:320;20155:6;20192:1;20186:4;20182:12;20172:22;;20239:1;20233:4;20229:12;20260:18;20250:81;;20316:4;20308:6;20304:17;20294:27;;20250:81;20378:2;20370:6;20367:14;20347:18;20344:38;20341:84;;20397:18;;:::i;:::-;20341:84;20162:269;20111:320;;;:::o;20437:97::-;20496:6;20524:3;20514:13;;20437:97;;;;:::o;20540:141::-;20589:4;20612:3;20604:11;;20635:3;20632:1;20625:14;20669:4;20666:1;20656:18;20648:26;;20540:141;;;:::o;20687:93::-;20724:6;20771:2;20766;20759:5;20755:14;20751:23;20741:33;;20687:93;;;:::o;20786:107::-;20830:8;20880:5;20874:4;20870:16;20849:37;;20786:107;;;;:::o;20899:393::-;20968:6;21018:1;21006:10;21002:18;21041:97;21071:66;21060:9;21041:97;:::i;:::-;21159:39;21189:8;21178:9;21159:39;:::i;:::-;21147:51;;21231:4;21227:9;21220:5;21216:21;21207:30;;21280:4;21270:8;21266:19;21259:5;21256:30;21246:40;;20975:317;;20899:393;;;;;:::o;21298:60::-;21326:3;21347:5;21340:12;;21298:60;;;:::o;21364:142::-;21414:9;21447:53;21465:34;21474:24;21492:5;21474:24;:::i;:::-;21465:34;:::i;:::-;21447:53;:::i;:::-;21434:66;;21364:142;;;:::o;21512:75::-;21555:3;21576:5;21569:12;;21512:75;;;:::o;21593:269::-;21703:39;21734:7;21703:39;:::i;:::-;21764:91;21813:41;21837:16;21813:41;:::i;:::-;21805:6;21798:4;21792:11;21764:91;:::i;:::-;21758:4;21751:105;21669:193;21593:269;;;:::o;21868:73::-;21913:3;21868:73;:::o;21947:189::-;22024:32;;:::i;:::-;22065:65;22123:6;22115;22109:4;22065:65;:::i;:::-;22000:136;21947:189;;:::o;22142:186::-;22202:120;22219:3;22212:5;22209:14;22202:120;;;22273:39;22310:1;22303:5;22273:39;:::i;:::-;22246:1;22239:5;22235:13;22226:22;;22202:120;;;22142:186;;:::o;22334:543::-;22435:2;22430:3;22427:11;22424:446;;;22469:38;22501:5;22469:38;:::i;:::-;22553:29;22571:10;22553:29;:::i;:::-;22543:8;22539:44;22736:2;22724:10;22721:18;22718:49;;;22757:8;22742:23;;22718:49;22780:80;22836:22;22854:3;22836:22;:::i;:::-;22826:8;22822:37;22809:11;22780:80;:::i;:::-;22439:431;;22424:446;22334:543;;;:::o;22883:117::-;22937:8;22987:5;22981:4;22977:16;22956:37;;22883:117;;;;:::o;23006:169::-;23050:6;23083:51;23131:1;23127:6;23119:5;23116:1;23112:13;23083:51;:::i;:::-;23079:56;23164:4;23158;23154:15;23144:25;;23057:118;23006:169;;;;:::o;23180:295::-;23256:4;23402:29;23427:3;23421:4;23402:29;:::i;:::-;23394:37;;23464:3;23461:1;23457:11;23451:4;23448:21;23440:29;;23180:295;;;;:::o;23480:1403::-;23604:44;23644:3;23639;23604:44;:::i;:::-;23713:18;23705:6;23702:30;23699:56;;;23735:18;;:::i;:::-;23699:56;23779:38;23811:4;23805:11;23779:38;:::i;:::-;23864:67;23924:6;23916;23910:4;23864:67;:::i;:::-;23958:1;23987:2;23979:6;23976:14;24004:1;23999:632;;;;24675:1;24692:6;24689:84;;;24748:9;24743:3;24739:19;24726:33;24717:42;;24689:84;24799:67;24859:6;24852:5;24799:67;:::i;:::-;24793:4;24786:81;24648:229;23969:908;;23999:632;24051:4;24047:9;24039:6;24035:22;24085:37;24117:4;24085:37;:::i;:::-;24144:1;24158:215;24172:7;24169:1;24166:14;24158:215;;;24258:9;24253:3;24249:19;24236:33;24228:6;24221:49;24309:1;24301:6;24297:14;24287:24;;24356:2;24345:9;24341:18;24328:31;;24195:4;24192:1;24188:12;24183:17;;24158:215;;;24401:6;24392:7;24389:19;24386:186;;;24466:9;24461:3;24457:19;24444:33;24509:48;24551:4;24543:6;24539:17;24528:9;24509:48;:::i;:::-;24501:6;24494:64;24409:163;24386:186;24618:1;24614;24606:6;24602:14;24598:22;24592:4;24585:36;24006:625;;;23969:908;;23579:1304;;;23480:1403;;;:::o;24889:180::-;24937:77;24934:1;24927:88;25034:4;25031:1;25024:15;25058:4;25055:1;25048:15;25075:410;25115:7;25138:20;25156:1;25138:20;:::i;:::-;25133:25;;25172:20;25190:1;25172:20;:::i;:::-;25167:25;;25227:1;25224;25220:9;25249:30;25267:11;25249:30;:::i;:::-;25238:41;;25428:1;25419:7;25415:15;25412:1;25409:22;25389:1;25382:9;25362:83;25339:139;;25458:18;;:::i;:::-;25339:139;25123:362;25075:410;;;;:::o;25491:180::-;25539:77;25536:1;25529:88;25636:4;25633:1;25626:15;25660:4;25657:1;25650:15;25677:185;25717:1;25734:20;25752:1;25734:20;:::i;:::-;25729:25;;25768:20;25786:1;25768:20;:::i;:::-;25763:25;;25807:1;25797:35;;25812:18;;:::i;:::-;25797:35;25854:1;25851;25847:9;25842:14;;25677:185;;;;:::o;25868:173::-;26008:25;26004:1;25996:6;25992:14;25985:49;25868:173;:::o;26047:366::-;26189:3;26210:67;26274:2;26269:3;26210:67;:::i;:::-;26203:74;;26286:93;26375:3;26286:93;:::i;:::-;26404:2;26399:3;26395:12;26388:19;;26047:366;;;:::o;26419:419::-;26585:4;26623:2;26612:9;26608:18;26600:26;;26672:9;26666:4;26662:20;26658:1;26647:9;26643:17;26636:47;26700:131;26826:4;26700:131;:::i;:::-;26692:139;;26419:419;;;:::o;26844:191::-;26884:3;26903:20;26921:1;26903:20;:::i;:::-;26898:25;;26937:20;26955:1;26937:20;:::i;:::-;26932:25;;26980:1;26977;26973:9;26966:16;;27001:3;26998:1;26995:10;26992:36;;;27008:18;;:::i;:::-;26992:36;26844:191;;;;:::o;27041:167::-;27181:19;27177:1;27169:6;27165:14;27158:43;27041:167;:::o;27214:366::-;27356:3;27377:67;27441:2;27436:3;27377:67;:::i;:::-;27370:74;;27453:93;27542:3;27453:93;:::i;:::-;27571:2;27566:3;27562:12;27555:19;;27214:366;;;:::o;27586:419::-;27752:4;27790:2;27779:9;27775:18;27767:26;;27839:9;27833:4;27829:20;27825:1;27814:9;27810:17;27803:47;27867:131;27993:4;27867:131;:::i;:::-;27859:139;;27586:419;;;:::o;28011:172::-;28151:24;28147:1;28139:6;28135:14;28128:48;28011:172;:::o;28189:366::-;28331:3;28352:67;28416:2;28411:3;28352:67;:::i;:::-;28345:74;;28428:93;28517:3;28428:93;:::i;:::-;28546:2;28541:3;28537:12;28530:19;;28189:366;;;:::o;28561:419::-;28727:4;28765:2;28754:9;28750:18;28742:26;;28814:9;28808:4;28804:20;28800:1;28789:9;28785:17;28778:47;28842:131;28968:4;28842:131;:::i;:::-;28834:139;;28561:419;;;:::o;28986:94::-;29019:8;29067:5;29063:2;29059:14;29038:35;;28986:94;;;:::o;29086:::-;29125:7;29154:20;29168:5;29154:20;:::i;:::-;29143:31;;29086:94;;;:::o;29186:100::-;29225:7;29254:26;29274:5;29254:26;:::i;:::-;29243:37;;29186:100;;;:::o;29292:157::-;29397:45;29417:24;29435:5;29417:24;:::i;:::-;29397:45;:::i;:::-;29392:3;29385:58;29292:157;;:::o;29455:79::-;29494:7;29523:5;29512:16;;29455:79;;;:::o;29540:157::-;29645:45;29665:24;29683:5;29665:24;:::i;:::-;29645:45;:::i;:::-;29640:3;29633:58;29540:157;;:::o;29703:397::-;29843:3;29858:75;29929:3;29920:6;29858:75;:::i;:::-;29958:2;29953:3;29949:12;29942:19;;29971:75;30042:3;30033:6;29971:75;:::i;:::-;30071:2;30066:3;30062:12;30055:19;;30091:3;30084:10;;29703:397;;;;;:::o;30106:174::-;30246:26;30242:1;30234:6;30230:14;30223:50;30106:174;:::o;30286:366::-;30428:3;30449:67;30513:2;30508:3;30449:67;:::i;:::-;30442:74;;30525:93;30614:3;30525:93;:::i;:::-;30643:2;30638:3;30634:12;30627:19;;30286:366;;;:::o;30658:419::-;30824:4;30862:2;30851:9;30847:18;30839:26;;30911:9;30905:4;30901:20;30897:1;30886:9;30882:17;30875:47;30939:131;31065:4;30939:131;:::i;:::-;30931:139;;30658:419;;;:::o;31083:147::-;31184:11;31221:3;31206:18;;31083:147;;;;:::o;31236:114::-;;:::o;31356:398::-;31515:3;31536:83;31617:1;31612:3;31536:83;:::i;:::-;31529:90;;31628:93;31717:3;31628:93;:::i;:::-;31746:1;31741:3;31737:11;31730:18;;31356:398;;;:::o;31760:379::-;31944:3;31966:147;32109:3;31966:147;:::i;:::-;31959:154;;32130:3;32123:10;;31760:379;;;:::o;32145:173::-;32285:25;32281:1;32273:6;32269:14;32262:49;32145:173;:::o;32324:366::-;32466:3;32487:67;32551:2;32546:3;32487:67;:::i;:::-;32480:74;;32563:93;32652:3;32563:93;:::i;:::-;32681:2;32676:3;32672:12;32665:19;;32324:366;;;:::o;32696:419::-;32862:4;32900:2;32889:9;32885:18;32877:26;;32949:9;32943:4;32939:20;32935:1;32924:9;32920:17;32913:47;32977:131;33103:4;32977:131;:::i;:::-;32969:139;;32696:419;;;:::o;33121:234::-;33261:34;33257:1;33249:6;33245:14;33238:58;33330:17;33325:2;33317:6;33313:15;33306:42;33121:234;:::o;33361:366::-;33503:3;33524:67;33588:2;33583:3;33524:67;:::i;:::-;33517:74;;33600:93;33689:3;33600:93;:::i;:::-;33718:2;33713:3;33709:12;33702:19;;33361:366;;;:::o;33733:419::-;33899:4;33937:2;33926:9;33922:18;33914:26;;33986:9;33980:4;33976:20;33972:1;33961:9;33957:17;33950:47;34014:131;34140:4;34014:131;:::i;:::-;34006:139;;33733:419;;;:::o;34158:148::-;34260:11;34297:3;34282:18;;34158:148;;;;:::o;34312:390::-;34418:3;34446:39;34479:5;34446:39;:::i;:::-;34501:89;34583:6;34578:3;34501:89;:::i;:::-;34494:96;;34599:65;34657:6;34652:3;34645:4;34638:5;34634:16;34599:65;:::i;:::-;34689:6;34684:3;34680:16;34673:23;;34422:280;34312:390;;;;:::o;34732:874::-;34835:3;34872:5;34866:12;34901:36;34927:9;34901:36;:::i;:::-;34953:89;35035:6;35030:3;34953:89;:::i;:::-;34946:96;;35073:1;35062:9;35058:17;35089:1;35084:166;;;;35264:1;35259:341;;;;35051:549;;35084:166;35168:4;35164:9;35153;35149:25;35144:3;35137:38;35230:6;35223:14;35216:22;35208:6;35204:35;35199:3;35195:45;35188:52;;35084:166;;35259:341;35326:38;35358:5;35326:38;:::i;:::-;35386:1;35400:154;35414:6;35411:1;35408:13;35400:154;;;35488:7;35482:14;35478:1;35473:3;35469:11;35462:35;35538:1;35529:7;35525:15;35514:26;;35436:4;35433:1;35429:12;35424:17;;35400:154;;;35583:6;35578:3;35574:16;35567:23;;35266:334;;35051:549;;34839:767;;34732:874;;;;:::o;35612:589::-;35837:3;35859:95;35950:3;35941:6;35859:95;:::i;:::-;35852:102;;35971:95;36062:3;36053:6;35971:95;:::i;:::-;35964:102;;36083:92;36171:3;36162:6;36083:92;:::i;:::-;36076:99;;36192:3;36185:10;;35612:589;;;;;;:::o;36207:246::-;36347:34;36343:1;36335:6;36331:14;36324:58;36416:29;36411:2;36403:6;36399:15;36392:54;36207:246;:::o;36459:366::-;36601:3;36622:67;36686:2;36681:3;36622:67;:::i;:::-;36615:74;;36698:93;36787:3;36698:93;:::i;:::-;36816:2;36811:3;36807:12;36800:19;;36459:366;;;:::o;36831:419::-;36997:4;37035:2;37024:9;37020:18;37012:26;;37084:9;37078:4;37074:20;37070:1;37059:9;37055:17;37048:47;37112:131;37238:4;37112:131;:::i;:::-;37104:139;;36831:419;;;:::o;37256:180::-;37304:77;37301:1;37294:88;37401:4;37398:1;37391:15;37425:4;37422:1;37415:15;37442:233;37481:3;37504:24;37522:5;37504:24;:::i;:::-;37495:33;;37550:66;37543:5;37540:77;37537:103;;37620:18;;:::i;:::-;37537:103;37667:1;37660:5;37656:13;37649:20;;37442:233;;;:::o;37681:1395::-;37798:37;37831:3;37798:37;:::i;:::-;37900:18;37892:6;37889:30;37886:56;;;37922:18;;:::i;:::-;37886:56;37966:38;37998:4;37992:11;37966:38;:::i;:::-;38051:67;38111:6;38103;38097:4;38051:67;:::i;:::-;38145:1;38169:4;38156:17;;38201:2;38193:6;38190:14;38218:1;38213:618;;;;38875:1;38892:6;38889:77;;;38941:9;38936:3;38932:19;38926:26;38917:35;;38889:77;38992:67;39052:6;39045:5;38992:67;:::i;:::-;38986:4;38979:81;38848:222;38183:887;;38213:618;38265:4;38261:9;38253:6;38249:22;38299:37;38331:4;38299:37;:::i;:::-;38358:1;38372:208;38386:7;38383:1;38380:14;38372:208;;;38465:9;38460:3;38456:19;38450:26;38442:6;38435:42;38516:1;38508:6;38504:14;38494:24;;38563:2;38552:9;38548:18;38535:31;;38409:4;38406:1;38402:12;38397:17;;38372:208;;;38608:6;38599:7;38596:19;38593:179;;;38666:9;38661:3;38657:19;38651:26;38709:48;38751:4;38743:6;38739:17;38728:9;38709:48;:::i;:::-;38701:6;38694:64;38616:156;38593:179;38818:1;38814;38806:6;38802:14;38798:22;38792:4;38785:36;38220:611;;;38183:887;;37773:1303;;;37681:1395;;:::o;39082:225::-;39222:34;39218:1;39210:6;39206:14;39199:58;39291:8;39286:2;39278:6;39274:15;39267:33;39082:225;:::o;39313:366::-;39455:3;39476:67;39540:2;39535:3;39476:67;:::i;:::-;39469:74;;39552:93;39641:3;39552:93;:::i;:::-;39670:2;39665:3;39661:12;39654:19;;39313:366;;;:::o;39685:419::-;39851:4;39889:2;39878:9;39874:18;39866:26;;39938:9;39932:4;39928:20;39924:1;39913:9;39909:17;39902:47;39966:131;40092:4;39966:131;:::i;:::-;39958:139;;39685:419;;;:::o;40110:182::-;40250:34;40246:1;40238:6;40234:14;40227:58;40110:182;:::o;40298:366::-;40440:3;40461:67;40525:2;40520:3;40461:67;:::i;:::-;40454:74;;40537:93;40626:3;40537:93;:::i;:::-;40655:2;40650:3;40646:12;40639:19;;40298:366;;;:::o;40670:419::-;40836:4;40874:2;40863:9;40859:18;40851:26;;40923:9;40917:4;40913:20;40909:1;40898:9;40894:17;40887:47;40951:131;41077:4;40951:131;:::i;:::-;40943:139;;40670:419;;;:::o;41095:229::-;41235:34;41231:1;41223:6;41219:14;41212:58;41304:12;41299:2;41291:6;41287:15;41280:37;41095:229;:::o;41330:366::-;41472:3;41493:67;41557:2;41552:3;41493:67;:::i;:::-;41486:74;;41569:93;41658:3;41569:93;:::i;:::-;41687:2;41682:3;41678:12;41671:19;;41330:366;;;:::o;41702:419::-;41868:4;41906:2;41895:9;41891:18;41883:26;;41955:9;41949:4;41945:20;41941:1;41930:9;41926:17;41919:47;41983:131;42109:4;41983:131;:::i;:::-;41975:139;;41702:419;;;:::o;42127:175::-;42267:27;42263:1;42255:6;42251:14;42244:51;42127:175;:::o;42308:366::-;42450:3;42471:67;42535:2;42530:3;42471:67;:::i;:::-;42464:74;;42547:93;42636:3;42547:93;:::i;:::-;42665:2;42660:3;42656:12;42649:19;;42308:366;;;:::o;42680:419::-;42846:4;42884:2;42873:9;42869:18;42861:26;;42933:9;42927:4;42923:20;42919:1;42908:9;42904:17;42897:47;42961:131;43087:4;42961:131;:::i;:::-;42953:139;;42680:419;;;:::o;43105:194::-;43145:4;43165:20;43183:1;43165:20;:::i;:::-;43160:25;;43199:20;43217:1;43199:20;:::i;:::-;43194:25;;43243:1;43240;43236:9;43228:17;;43267:1;43261:4;43258:11;43255:37;;;43272:18;;:::i;:::-;43255:37;43105:194;;;;:::o;43305:176::-;43337:1;43354:20;43372:1;43354:20;:::i;:::-;43349:25;;43388:20;43406:1;43388:20;:::i;:::-;43383:25;;43427:1;43417:35;;43432:18;;:::i;:::-;43417:35;43473:1;43470;43466:9;43461:14;;43305:176;;;;:::o;43487:98::-;43538:6;43572:5;43566:12;43556:22;;43487:98;;;:::o;43591:168::-;43674:11;43708:6;43703:3;43696:19;43748:4;43743:3;43739:14;43724:29;;43591:168;;;;:::o;43765:373::-;43851:3;43879:38;43911:5;43879:38;:::i;:::-;43933:70;43996:6;43991:3;43933:70;:::i;:::-;43926:77;;44012:65;44070:6;44065:3;44058:4;44051:5;44047:16;44012:65;:::i;:::-;44102:29;44124:6;44102:29;:::i;:::-;44097:3;44093:39;44086:46;;43855:283;43765:373;;;;:::o;44144:640::-;44339:4;44377:3;44366:9;44362:19;44354:27;;44391:71;44459:1;44448:9;44444:17;44435:6;44391:71;:::i;:::-;44472:72;44540:2;44529:9;44525:18;44516:6;44472:72;:::i;:::-;44554;44622:2;44611:9;44607:18;44598:6;44554:72;:::i;:::-;44673:9;44667:4;44663:20;44658:2;44647:9;44643:18;44636:48;44701:76;44772:4;44763:6;44701:76;:::i;:::-;44693:84;;44144:640;;;;;;;:::o;44790:141::-;44846:5;44877:6;44871:13;44862:22;;44893:32;44919:5;44893:32;:::i;:::-;44790:141;;;;:::o;44937:349::-;45006:6;45055:2;45043:9;45034:7;45030:23;45026:32;45023:119;;;45061:79;;:::i;:::-;45023:119;45181:1;45206:63;45261:7;45252:6;45241:9;45237:22;45206:63;:::i;:::-;45196:73;;45152:127;44937:349;;;;:::o

Swarm Source

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