ETH Price: $3,405.20 (-1.96%)
Gas: 5 Gwei

Token

NFT Impact - Natural Intelligence (NFTINI)
 

Overview

Max Total Supply

0 NFTINI

Holders

355

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
stheo.eth
Balance
1 NFTINI
0x8332C9c551e658fc172B55fB6093346F157B99b1
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:
NFTImpact2022

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: EIP2981Royalties/IERC2981Royalties.sol


pragma solidity 0.8.7;

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/access/IAccessControl.sol


// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/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/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: EIP2981Royalties/ERC2981Base.sol


pragma solidity ^0.8.0;



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

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


pragma solidity ^0.8.0;



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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: NFTImpact2022.sol


pragma solidity =0.8.7;







contract NFTImpact2022 is ERC721, ERC2981ContractWideRoyalties, AccessControl {
    /*       
    This smart contract has been handcrafted by OpenGem for NFT Factory.
    OpenGem provides security tools to ensure ownership and immutability of digital assets. We also advise leading organizations by performing audits on their NFT products.
    
    https://opengem.com
    */
    using Counters for Counters.Counter;

    mapping(address => bool) public whitelistClaimed;

    string public constant ARTIST_NAME = "Booyasan";
    string public constant ARTIST_WALLET_ENS = "BOOYASAN.eth";
    address public constant ARTIST_WALLET = 0x3f89AaCF9E1120C9a00F6266F841Ce094c11be4f;
    string public constant ARTIST_BIO = "Crypto-geek-artist, Art director, Photographer and TV Motion Designer. Advanced Technician Certificate of Arts Appliqu\xC3\xA9s School, Paris.";
    string public constant ARTWORK_NAME = "Natural Intelligence by Booyasan";
    string public constant COLLECTION_NAME = "NFT Impact - Natural Intelligence";
    string public constant COLLECTION_DESCRIPTION_FR = "\xE2\x80\x9CNatural Intelligence\xE2\x80\x9D en opposition \xC3\xA0 \xE2\x80\x9CArtificial Intelligence\xE2\x80\x9D repr\xC3\xA9sente l'optimisme \xC3\xA9co-technologique. Loin des supers calculateurs, la nature r\xC3\xA9sout \xC3\xA0 sa mani\xC3\xA8re, en temps r\xC3\xA9el, chaque probl\xC3\xA8me. Elle est l'avenir des technologies.";
    string public constant COLLECTION_DESCRIPTION_EN = "\xE2\x80\x9CNatural Intelligence\xE2\x80\x9D, in opposition to \xE2\x80\x9CArtificial Intelligence\xE2\x80\x9D, represents the optimism of eco-technologies. Far from super calculators, Nature solves each problem in a unique way, in real time. Somehow, it is the future of technology.";

    string public constant FOR_FETCHING_ONLY =
        "https://fetch.opengem.com/nftimpact2022/booyasan/metadata.json";
    string public constant PERSISTENT_IPFS_HASH =
        "QmVFkzLAPms71M7XkvxfrF9QWYUy1F2R7w6Vkx7pEY6WWH";
    string public constant PERSISTENT_ARWEAVE_HASH =
        "X_tz-yauSGMNCzxSWzjR0c1ZZZveYONz180o_dRUUa0";
    string public constant PERSISTENT_SHA256_HASH_PROVENANCE =
        "1f88fdbf1757e2cbb272093bb85f89750510bc9366e433fda4c46d7278016fb6";

    string public txHashImgData;
    bool public imgDataLocked = false;

    bool public sales = true;
    bool public salesLocked = false;

    bytes32 public merkleRoot;
    address public royaltyWallet;
    uint96 constant public ROYALTY_PERCENTAGE = 500;

    Counters.Counter private tokenIdCounter;

    event Mint(address minter, uint256 tokenId);
    event Data(string imagedata);
    event PermanentURI(string _value, uint256 indexed _id);

    bytes32 public constant MANAGER_ROLE = keccak256("MANAGER_ROLE");

    constructor(address _royaltyWallet, bytes32 _merkleRoot) ERC721("NFT Impact - Natural Intelligence", "NFTINI") {
        merkleRoot = _merkleRoot;
        royaltyWallet = _royaltyWallet;
        tokenIdCounter.increment();
        _setRoyalties(_royaltyWallet, ROYALTY_PERCENTAGE);
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
    }

    function toggleSales() public {
        require(hasRole(MANAGER_ROLE, msg.sender), "Caller is not a manager");
        require(!salesLocked, "Sales locked.");
        sales = !sales;
    }

    function lockSales() public {
        require(hasRole(MANAGER_ROLE, msg.sender), "Caller is not a manager");
        require(!salesLocked, "Sales locked.");
        sales = false;
        salesLocked = true;
    }

    function updateMerkleRoot(bytes32 root) public {
        require(hasRole(MANAGER_ROLE, msg.sender), "Caller is not a manager");
        merkleRoot = root;
    }

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

    function quantityMinted() public view returns (uint256) {
        return tokenIdCounter.current() - 1;
    }

    function setImgData(string calldata imagedata) public {
        require(hasRole(MANAGER_ROLE, msg.sender), "Caller is not a manager");
        emit Data(imagedata);
    }

    function setTxHashImgData(string memory txHash) public {
        require(hasRole(MANAGER_ROLE, msg.sender), "Caller is not a manager");
        require(!imgDataLocked, "Image data locked");
        txHashImgData = txHash;
        imgDataLocked = true;
    }

    function mint(bytes32[] calldata merkle) public {
        require(tx.origin == msg.sender, "The caller is another contract"); 
        require(sales, "Sales are locked"); 
        require(!whitelistClaimed[msg.sender], "This wallet has already claimed.");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(merkle, merkleRoot, leaf), "Incorrect proof.");
        
        _safeMint(msg.sender, tokenIdCounter.current());

        whitelistClaimed[msg.sender] = true;
        emit Mint(msg.sender, tokenIdCounter.current());
        emit PermanentURI(FOR_FETCHING_ONLY, tokenIdCounter.current());
        tokenIdCounter.increment();
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981Base, AccessControl) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_royaltyWallet","type":"address"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"imagedata","type":"string"}],"name":"Data","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ARTIST_BIO","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ARTIST_NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ARTIST_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ARTIST_WALLET_ENS","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ARTWORK_NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COLLECTION_DESCRIPTION_EN","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COLLECTION_DESCRIPTION_FR","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COLLECTION_NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FOR_FETCHING_ONLY","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERSISTENT_ARWEAVE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERSISTENT_IPFS_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERSISTENT_SHA256_HASH_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_PERCENTAGE","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"imgDataLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkle","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"quantityMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sales","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"salesLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"imagedata","type":"string"}],"name":"setImgData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"txHash","type":"string"}],"name":"setTxHashImgData","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":[],"name":"toggleSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txHashImgData","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055503480156200006257600080fd5b50604051620050b9380380620050b9833981810160405281019062000088919062000506565b60405180606001604052806021815260200162005098602191396040518060400160405280600681526020017f4e4654494e4900000000000000000000000000000000000000000000000000008152508160009080519060200190620000f092919062000428565b5080600190805190602001906200010992919062000428565b50505080600b8190555081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200016b600d620001aa60201b62001ab81760201c565b6200018d826101f46bffffffffffffffffffffffff16620001c060201b60201c565b620001a26000801b33620002ad60201b60201c565b5050620006ac565b6001816000016000828254019250508190555050565b61271081111562000208576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001ff9062000574565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff16815250600660008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff1602179055509050505050565b620002bf8282620002c360201b60201c565b5050565b620002d58282620003b560201b60201c565b620003b15760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003566200042060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b8280546200043690620005e5565b90600052602060002090601f0160209004810192826200045a5760008555620004a6565b82601f106200047557805160ff1916838001178555620004a6565b82800160010185558215620004a6579182015b82811115620004a557825182559160200191906001019062000488565b5b509050620004b59190620004b9565b5090565b5b80821115620004d4576000816000905550600101620004ba565b5090565b600081519050620004e98162000678565b92915050565b600081519050620005008162000692565b92915050565b6000806040838503121562000520576200051f6200064a565b5b60006200053085828601620004d8565b92505060206200054385828601620004ef565b9150509250929050565b60006200055c601a8362000596565b915062000569826200064f565b602082019050919050565b600060208201905081810360008301526200058f816200054d565b9050919050565b600082825260208201905092915050565b6000620005b482620005c5565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620005fe57607f821691505b602082108114156200061557620006146200061b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b6200068381620005a7565b81146200068f57600080fd5b50565b6200069d81620005bb565b8114620006a957600080fd5b50565b6149dc80620006bc6000396000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c806370a0823111610167578063baae28e1116100ce578063dbd30ae011610087578063dbd30ae01461081c578063e2a470aa14610826578063e65b0d4d14610844578063e985e9c514610862578063ec87621c14610892578063fa23023b146108b0576102a0565b8063baae28e114610748578063c5f208d914610764578063c87b56dd14610782578063d3a235e0146107b2578063d547741f146107d0578063db4bec44146107ec576102a0565b8063a217fddf11610120578063a217fddf1461069a578063a22cb465146106b8578063a6f91087146106d4578063aace52fe146106f2578063b77a147b14610710578063b88d4fde1461072c576102a0565b806370a08231146105c2578063764187a0146105f257806391d148541461061057806394225d7a1461064057806395d89b411461065e578063980c08a11461067c576102a0565b806336568abe1161020b5780634783f0ef116101c45780634783f0ef146104fe5780634c23b7fa1461051a578063549bd815146105385780636352211e1461055657806369a3a4d5146105865780636e76bcef146105a4576102a0565b806336568abe1461044e5780633d95b6661461046a5780633f0d2ec11461048857806342842e0e146104a6578063461ec2cd146104c2578063463b08db146104e0576102a0565b806323b872dd1161025d57806323b872dd14610379578063248a9ca3146103955780632a55205a146103c55780632eb4a7ab146103f65780632f2ff15d146104145780633524fb4714610430576102a0565b806301ffc9a7146102a557806306fdde03146102d5578063081812fc146102f3578063095ea7b3146103235780630afce53a1461033f5780631f6af5c21461035b575b600080fd5b6102bf60048036038101906102ba91906131f9565b6108ba565b6040516102cc9190613892565b60405180910390f35b6102dd6108cc565b6040516102ea91906138ec565b60405180910390f35b61030d600480360381019061030891906132e9565b61095e565b60405161031a9190613802565b60405180910390f35b61033d600480360381019061033891906130ff565b6109a4565b005b610359600480360381019061035491906132a0565b610abc565b005b610363610baa565b6040516103709190613892565b60405180910390f35b610393600480360381019061038e9190612fe9565b610bbd565b005b6103af60048036038101906103aa919061318c565b610c1d565b6040516103bc91906138ad565b60405180910390f35b6103df60048036038101906103da9190613316565b610c3d565b6040516103ed929190613869565b60405180910390f35b6103fe610cfd565b60405161040b91906138ad565b60405180910390f35b61042e600480360381019061042991906131b9565b610d03565b005b610438610d24565b60405161044591906138ec565b60405180910390f35b610468600480360381019061046391906131b9565b610d40565b005b610472610dc3565b60405161047f91906138ec565b60405180910390f35b610490610dfc565b60405161049d9190613802565b60405180910390f35b6104c060048036038101906104bb9190612fe9565b610e22565b005b6104ca610e42565b6040516104d791906138ec565b60405180910390f35b6104e8610e7b565b6040516104f59190613bc9565b60405180910390f35b6105186004803603810190610513919061318c565b610e81565b005b610522610ef4565b60405161052f91906138ec565b60405180910390f35b610540610f10565b60405161054d91906138ec565b60405180910390f35b610570600480360381019061056b91906132e9565b610f2c565b60405161057d9190613802565b60405180910390f35b61058e610fde565b60405161059b91906138ec565b60405180910390f35b6105ac61106c565b6040516105b991906138ec565b60405180910390f35b6105dc60048036038101906105d79190612f7c565b611088565b6040516105e99190613bae565b60405180910390f35b6105fa611140565b60405161060791906138ec565b60405180910390f35b61062a600480360381019061062591906131b9565b61115c565b6040516106379190613892565b60405180910390f35b6106486111c7565b60405161065591906138ec565b60405180910390f35b610666611200565b60405161067391906138ec565b60405180910390f35b610684611292565b6040516106919190613802565b60405180910390f35b6106a26112aa565b6040516106af91906138ad565b60405180910390f35b6106d260048036038101906106cd91906130bf565b6112b1565b005b6106dc6112c7565b6040516106e991906138ec565b60405180910390f35b6106fa6112e3565b6040516107079190613892565b60405180910390f35b61072a6004803603810190610725919061313f565b6112f6565b005b6107466004803603810190610741919061303c565b61160d565b005b610762600480360381019061075d9190613253565b61166f565b005b61076c611715565b60405161077991906138ec565b60405180910390f35b61079c600480360381019061079791906132e9565b611732565b6040516107a991906138ec565b60405180910390f35b6107ba61179c565b6040516107c79190613892565b60405180910390f35b6107ea60048036038101906107e591906131b9565b6117af565b005b61080660048036038101906108019190612f7c565b6117d0565b6040516108139190613892565b60405180910390f35b6108246117f0565b005b61082e6118d5565b60405161083b91906138ec565b60405180910390f35b61084c6118f2565b6040516108599190613bae565b60405180910390f35b61087c60048036038101906108779190612fa9565b61190f565b6040516108899190613892565b60405180910390f35b61089a6119a3565b6040516108a791906138ad565b60405180910390f35b6108b86119c7565b005b60006108c582611ace565b9050919050565b6060600080546108db90613ec5565b80601f016020809104026020016040519081016040528092919081815260200182805461090790613ec5565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b5050505050905090565b600061096982611b48565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109af82610f2c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1790613b2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3f611b93565b73ffffffffffffffffffffffffffffffffffffffff161480610a6e5750610a6d81610a68611b93565b61190f565b5b610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490613a8e565b60405180910390fd5b610ab78383611b9b565b505050565b610ae67f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b083361115c565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90613a0e565b60405180910390fd5b600a60009054906101000a900460ff1615610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c9061394e565b60405180910390fd5b8060099080519060200190610b8b929190612ccf565b506001600a60006101000a81548160ff02191690831515021790555050565b600a60009054906101000a900460ff1681565b610bce610bc8611b93565b82611c54565b610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0490613b6e565b60405180910390fd5b610c18838383611ce9565b505050565b600060076000838152602001908152602001600020600101549050919050565b600080600060066040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900462ffffff1662ffffff1662ffffff1681525050905080600001519250612710816020015162ffffff1685610ce99190613d35565b610cf39190613d04565b9150509250929050565b600b5481565b610d0c82610c1d565b610d1581611f50565b610d1f8383611f64565b505050565b6040518060600160405280603e815260200161491a603e913981565b610d48611b93565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac90613b8e565b60405180910390fd5b610dbf8282612045565b5050565b6040518060400160405280600c81526020017f424f4f594153414e2e657468000000000000000000000000000000000000000081525081565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e3d8383836040518060200160405280600081525061160d565b505050565b6040518060400160405280600881526020017f426f6f796173616e00000000000000000000000000000000000000000000000081525081565b6101f481565b610eab7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b083361115c565b610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190613a0e565b60405180910390fd5b80600b8190555050565b6040518060c00160405280608881526020016148276088913981565b6040518060600160405280602e8152602001614958602e913981565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90613b0e565b60405180910390fd5b80915050919050565b60098054610feb90613ec5565b80601f016020809104026020016040519081016040528092919081815260200182805461101790613ec5565b80156110645780601f1061103957610100808354040283529160200191611064565b820191906000526020600020905b81548152906001019060200180831161104757829003601f168201915b505050505081565b6040518060600160405280604081526020016148da6040913981565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090613a6e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6040518060600160405280602b81526020016148af602b913981565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6040518060400160405280602081526020017f4e61747572616c20496e74656c6c6967656e636520627920426f6f796173616e81525081565b60606001805461120f90613ec5565b80601f016020809104026020016040519081016040528092919081815260200182805461123b90613ec5565b80156112885780601f1061125d57610100808354040283529160200191611288565b820191906000526020600020905b81548152906001019060200180831161126b57829003601f168201915b5050505050905090565b733f89aacf9e1120c9a00f6266f841ce094c11be4f81565b6000801b81565b6112c36112bc611b93565b8383612127565b5050565b6040518060600160405280602181526020016149866021913981565b600a60019054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b90613a2e565b60405180910390fd5b600a60019054906101000a900460ff166113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa906139ae565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143790613ace565b60405180910390fd5b60003360405160200161145391906137ad565b6040516020818303038152906040528051906020012090506114b9838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b5483612294565b6114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90613a4e565b60405180910390fd5b61150b33611506600d6122ab565b6122b9565b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853361158f600d6122ab565b60405161159d929190613869565b60405180910390a16115af600d6122ab565b7fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b556572076040518060600160405280603e815260200161491a603e91396040516115f691906138ec565b60405180910390a2611608600d611ab8565b505050565b61161e611618611b93565b83611c54565b61165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490613b6e565b60405180910390fd5b611669848484846122d7565b50505050565b6116997f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b083361115c565b6116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90613a0e565b60405180910390fd5b7fe8e349d9d60379b7e0a717f216d3d9efaf00b5dce8b634a63f24a5d76251059f82826040516117099291906138c8565b60405180910390a15050565b60405180610120016040528060f7815260200161473060f7913981565b606061173d82612333565b61177c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177390613aee565b60405180910390fd5b6040518060600160405280603e815260200161491a603e91399050919050565b600a60029054906101000a900460ff1681565b6117b882610c1d565b6117c181611f50565b6117cb8383612045565b505050565b60086020528060005260406000206000915054906101000a900460ff1681565b61181a7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b083361115c565b611859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185090613a0e565b60405180910390fd5b600a60029054906101000a900460ff16156118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090613b4e565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b60405180610120016040528060fb815260200161463560fb913981565b60006001611900600d6122ab565b61190a9190613d8f565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0881565b6119f17f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b083361115c565b611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2790613a0e565b60405180910390fd5b600a60029054906101000a900460ff1615611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790613b4e565b60405180910390fd5b6000600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6001816000016000828254019250508190555050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b415750611b408261239f565b5b9050919050565b611b5181612333565b611b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8790613b0e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c0e83610f2c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611c6083610f2c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ca25750611ca1818561190f565b5b80611ce057508373ffffffffffffffffffffffffffffffffffffffff16611cc88461095e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d0982610f2c565b73ffffffffffffffffffffffffffffffffffffffff1614611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d569061396e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc6906139ce565b60405180910390fd5b611dda838383612419565b611de5600082611b9b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e359190613d8f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e8c9190613cae565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f4b83838361241e565b505050565b611f6181611f5c611b93565b612423565b50565b611f6e828261115c565b6120415760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611fe6611b93565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61204f828261115c565b156121235760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506120c8611b93565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218d906139ee565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122879190613892565b60405180910390a3505050565b6000826122a185846124c0565b1490509392505050565b600081600001549050919050565b6122d3828260405180602001604052806000815250612516565b5050565b6122e2848484611ce9565b6122ee84848484612571565b61232d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123249061392e565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612412575061241182612708565b5b9050919050565b505050565b505050565b61242d828261115c565b6124bc576124528173ffffffffffffffffffffffffffffffffffffffff1660146127ea565b6124608360001c60206127ea565b6040516020016124719291906137c8565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b391906138ec565b60405180910390fd5b5050565b60008082905060005b845181101561250b576124f6828683815181106124e9576124e8614022565b5b6020026020010151612a26565b9150808061250390613f28565b9150506124c9565b508091505092915050565b6125208383612a51565b61252d6000848484612571565b61256c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125639061392e565b60405180910390fd5b505050565b60006125928473ffffffffffffffffffffffffffffffffffffffff16612c2b565b156126fb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125bb611b93565b8786866040518563ffffffff1660e01b81526004016125dd949392919061381d565b602060405180830381600087803b1580156125f757600080fd5b505af192505050801561262857506040513d601f19601f820116820180604052508101906126259190613226565b60015b6126ab573d8060008114612658576040519150601f19603f3d011682016040523d82523d6000602084013e61265d565b606091505b506000815114156126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a9061392e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612700565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127d357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127e357506127e282612c4e565b5b9050919050565b6060600060028360026127fd9190613d35565b6128079190613cae565b67ffffffffffffffff8111156128205761281f614051565b5b6040519080825280601f01601f1916602001820160405280156128525781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061288a57612889614022565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106128ee576128ed614022565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261292e9190613d35565b6129389190613cae565b90505b60018111156129d8577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061297a57612979614022565b5b1a60f81b82828151811061299157612990614022565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806129d190613e9b565b905061293b565b5060008414612a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a139061390e565b60405180910390fd5b8091505092915050565b6000818310612a3e57612a398284612cb8565b612a49565b612a488383612cb8565b5b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab890613aae565b60405180910390fd5b612aca81612333565b15612b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b019061398e565b60405180910390fd5b612b1660008383612419565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b669190613cae565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c276000838361241e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600082600052816020526040600020905092915050565b828054612cdb90613ec5565b90600052602060002090601f016020900481019282612cfd5760008555612d44565b82601f10612d1657805160ff1916838001178555612d44565b82800160010185558215612d44579182015b82811115612d43578251825591602001919060010190612d28565b5b509050612d519190612d55565b5090565b5b80821115612d6e576000816000905550600101612d56565b5090565b6000612d85612d8084613c09565b613be4565b905082815260208101848484011115612da157612da061408f565b5b612dac848285613e59565b509392505050565b6000612dc7612dc284613c3a565b613be4565b905082815260208101848484011115612de357612de261408f565b5b612dee848285613e59565b509392505050565b600081359050612e05816145c1565b92915050565b60008083601f840112612e2157612e20614085565b5b8235905067ffffffffffffffff811115612e3e57612e3d614080565b5b602083019150836020820283011115612e5a57612e5961408a565b5b9250929050565b600081359050612e70816145d8565b92915050565b600081359050612e85816145ef565b92915050565b600081359050612e9a81614606565b92915050565b600081519050612eaf81614606565b92915050565b600082601f830112612eca57612ec9614085565b5b8135612eda848260208601612d72565b91505092915050565b60008083601f840112612ef957612ef8614085565b5b8235905067ffffffffffffffff811115612f1657612f15614080565b5b602083019150836001820283011115612f3257612f3161408a565b5b9250929050565b600082601f830112612f4e57612f4d614085565b5b8135612f5e848260208601612db4565b91505092915050565b600081359050612f768161461d565b92915050565b600060208284031215612f9257612f91614099565b5b6000612fa084828501612df6565b91505092915050565b60008060408385031215612fc057612fbf614099565b5b6000612fce85828601612df6565b9250506020612fdf85828601612df6565b9150509250929050565b60008060006060848603121561300257613001614099565b5b600061301086828701612df6565b935050602061302186828701612df6565b925050604061303286828701612f67565b9150509250925092565b6000806000806080858703121561305657613055614099565b5b600061306487828801612df6565b945050602061307587828801612df6565b935050604061308687828801612f67565b925050606085013567ffffffffffffffff8111156130a7576130a6614094565b5b6130b387828801612eb5565b91505092959194509250565b600080604083850312156130d6576130d5614099565b5b60006130e485828601612df6565b92505060206130f585828601612e61565b9150509250929050565b6000806040838503121561311657613115614099565b5b600061312485828601612df6565b925050602061313585828601612f67565b9150509250929050565b6000806020838503121561315657613155614099565b5b600083013567ffffffffffffffff81111561317457613173614094565b5b61318085828601612e0b565b92509250509250929050565b6000602082840312156131a2576131a1614099565b5b60006131b084828501612e76565b91505092915050565b600080604083850312156131d0576131cf614099565b5b60006131de85828601612e76565b92505060206131ef85828601612df6565b9150509250929050565b60006020828403121561320f5761320e614099565b5b600061321d84828501612e8b565b91505092915050565b60006020828403121561323c5761323b614099565b5b600061324a84828501612ea0565b91505092915050565b6000806020838503121561326a57613269614099565b5b600083013567ffffffffffffffff81111561328857613287614094565b5b61329485828601612ee3565b92509250509250929050565b6000602082840312156132b6576132b5614099565b5b600082013567ffffffffffffffff8111156132d4576132d3614094565b5b6132e084828501612f39565b91505092915050565b6000602082840312156132ff576132fe614099565b5b600061330d84828501612f67565b91505092915050565b6000806040838503121561332d5761332c614099565b5b600061333b85828601612f67565b925050602061334c85828601612f67565b9150509250929050565b61335f81613dc3565b82525050565b61337661337182613dc3565b613f71565b82525050565b61338581613dd5565b82525050565b61339481613de1565b82525050565b60006133a582613c6b565b6133af8185613c81565b93506133bf818560208601613e68565b6133c88161409e565b840191505092915050565b60006133df8385613c92565b93506133ec838584613e59565b6133f58361409e565b840190509392505050565b600061340b82613c76565b6134158185613c92565b9350613425818560208601613e68565b61342e8161409e565b840191505092915050565b600061344482613c76565b61344e8185613ca3565b935061345e818560208601613e68565b80840191505092915050565b6000613477602083613c92565b9150613482826140bc565b602082019050919050565b600061349a603283613c92565b91506134a5826140e5565b604082019050919050565b60006134bd601183613c92565b91506134c882614134565b602082019050919050565b60006134e0602583613c92565b91506134eb8261415d565b604082019050919050565b6000613503601c83613c92565b915061350e826141ac565b602082019050919050565b6000613526601083613c92565b9150613531826141d5565b602082019050919050565b6000613549602483613c92565b9150613554826141fe565b604082019050919050565b600061356c601983613c92565b91506135778261424d565b602082019050919050565b600061358f601783613c92565b915061359a82614276565b602082019050919050565b60006135b2601e83613c92565b91506135bd8261429f565b602082019050919050565b60006135d5601083613c92565b91506135e0826142c8565b602082019050919050565b60006135f8602983613c92565b9150613603826142f1565b604082019050919050565b600061361b603e83613c92565b915061362682614340565b604082019050919050565b600061363e602083613c92565b91506136498261438f565b602082019050919050565b6000613661602083613c92565b915061366c826143b8565b602082019050919050565b6000613684602f83613c92565b915061368f826143e1565b604082019050919050565b60006136a7601883613c92565b91506136b282614430565b602082019050919050565b60006136ca602183613c92565b91506136d582614459565b604082019050919050565b60006136ed601783613ca3565b91506136f8826144a8565b601782019050919050565b6000613710600d83613c92565b915061371b826144d1565b602082019050919050565b6000613733602e83613c92565b915061373e826144fa565b604082019050919050565b6000613756601183613ca3565b915061376182614549565b601182019050919050565b6000613779602f83613c92565b915061378482614572565b604082019050919050565b61379881613e37565b82525050565b6137a781613e41565b82525050565b60006137b98284613365565b60148201915081905092915050565b60006137d3826136e0565b91506137df8285613439565b91506137ea82613749565b91506137f68284613439565b91508190509392505050565b60006020820190506138176000830184613356565b92915050565b60006080820190506138326000830187613356565b61383f6020830186613356565b61384c604083018561378f565b818103606083015261385e818461339a565b905095945050505050565b600060408201905061387e6000830185613356565b61388b602083018461378f565b9392505050565b60006020820190506138a7600083018461337c565b92915050565b60006020820190506138c2600083018461338b565b92915050565b600060208201905081810360008301526138e38184866133d3565b90509392505050565b600060208201905081810360008301526139068184613400565b905092915050565b600060208201905081810360008301526139278161346a565b9050919050565b600060208201905081810360008301526139478161348d565b9050919050565b60006020820190508181036000830152613967816134b0565b9050919050565b60006020820190508181036000830152613987816134d3565b9050919050565b600060208201905081810360008301526139a7816134f6565b9050919050565b600060208201905081810360008301526139c781613519565b9050919050565b600060208201905081810360008301526139e78161353c565b9050919050565b60006020820190508181036000830152613a078161355f565b9050919050565b60006020820190508181036000830152613a2781613582565b9050919050565b60006020820190508181036000830152613a47816135a5565b9050919050565b60006020820190508181036000830152613a67816135c8565b9050919050565b60006020820190508181036000830152613a87816135eb565b9050919050565b60006020820190508181036000830152613aa78161360e565b9050919050565b60006020820190508181036000830152613ac781613631565b9050919050565b60006020820190508181036000830152613ae781613654565b9050919050565b60006020820190508181036000830152613b0781613677565b9050919050565b60006020820190508181036000830152613b278161369a565b9050919050565b60006020820190508181036000830152613b47816136bd565b9050919050565b60006020820190508181036000830152613b6781613703565b9050919050565b60006020820190508181036000830152613b8781613726565b9050919050565b60006020820190508181036000830152613ba78161376c565b9050919050565b6000602082019050613bc3600083018461378f565b92915050565b6000602082019050613bde600083018461379e565b92915050565b6000613bee613bff565b9050613bfa8282613ef7565b919050565b6000604051905090565b600067ffffffffffffffff821115613c2457613c23614051565b5b613c2d8261409e565b9050602081019050919050565b600067ffffffffffffffff821115613c5557613c54614051565b5b613c5e8261409e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cb982613e37565b9150613cc483613e37565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cf957613cf8613f95565b5b828201905092915050565b6000613d0f82613e37565b9150613d1a83613e37565b925082613d2a57613d29613fc4565b5b828204905092915050565b6000613d4082613e37565b9150613d4b83613e37565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d8457613d83613f95565b5b828202905092915050565b6000613d9a82613e37565b9150613da583613e37565b925082821015613db857613db7613f95565b5b828203905092915050565b6000613dce82613e17565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613e86578082015181840152602081019050613e6b565b83811115613e95576000848401525b50505050565b6000613ea682613e37565b91506000821415613eba57613eb9613f95565b5b600182039050919050565b60006002820490506001821680613edd57607f821691505b60208210811415613ef157613ef0613ff3565b5b50919050565b613f008261409e565b810181811067ffffffffffffffff82111715613f1f57613f1e614051565b5b80604052505050565b6000613f3382613e37565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f6657613f65613f95565b5b600182019050919050565b6000613f7c82613f83565b9050919050565b6000613f8e826140af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f496d6167652064617461206c6f636b6564000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c657320617265206c6f636b656400000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616c6c6572206973206e6f742061206d616e61676572000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f496e636f72726563742070726f6f662e00000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f546869732077616c6c65742068617320616c726561647920636c61696d65642e600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f53616c6573206c6f636b65642e00000000000000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6145ca81613dc3565b81146145d557600080fd5b50565b6145e181613dd5565b81146145ec57600080fd5b50565b6145f881613de1565b811461460357600080fd5b50565b61460f81613deb565b811461461a57600080fd5b50565b61462681613e37565b811461463157600080fd5b5056fee2809c4e61747572616c20496e74656c6c6967656e6365e2809d20656e206f70706f736974696f6e20c3a020e2809c4172746966696369616c20496e74656c6c6967656e6365e2809d2072657072c3a973656e7465206c276f7074696d69736d6520c3a9636f2d746563686e6f6c6f67697175652e204c6f696e20646573207375706572732063616c63756c6174657572732c206c61206e61747572652072c3a9736f757420c3a0207361206d616e69c3a872652c20656e2074656d70732072c3a9656c2c206368617175652070726f626cc3a86d652e20456c6c6520657374206c276176656e69722064657320746563686e6f6c6f676965732ee2809c4e61747572616c20496e74656c6c6967656e6365e2809d2c20696e206f70706f736974696f6e20746f20e2809c4172746966696369616c20496e74656c6c6967656e6365e2809d2c20726570726573656e747320746865206f7074696d69736d206f662065636f2d746563686e6f6c6f676965732e204661722066726f6d2073757065722063616c63756c61746f72732c204e617475726520736f6c76657320656163682070726f626c656d20696e206120756e69717565207761792c20696e207265616c2074696d652e20536f6d65686f772c2069742069732074686520667574757265206f6620746563686e6f6c6f67792e43727970746f2d6765656b2d6172746973742c20417274206469726563746f722c2050686f746f6772617068657220616e64205456204d6f74696f6e2044657369676e65722e20416476616e63656420546563686e696369616e204365727469666963617465206f662041727473204170706c697175c3a973205363686f6f6c2c2050617269732e585f747a2d79617553474d4e437a7853577a6a523063315a5a5a7665594f4e7a3138306f5f6452555561303166383866646266313735376532636262323732303933626238356638393735303531306263393336366534333366646134633436643732373830313666623668747470733a2f2f66657463682e6f70656e67656d2e636f6d2f6e6674696d70616374323032322f626f6f796173616e2f6d657461646174612e6a736f6e516d56466b7a4c41506d7337314d37586b767866724639515759557931463252377736566b7837704559365757484e465420496d70616374202d204e61747572616c20496e74656c6c6967656e6365a2646970667358221220afa04a78c943f0815501b423a9cf74307e9b42987f5a8b0cef53f5f35bfe546f64736f6c634300080700334e465420496d70616374202d204e61747572616c20496e74656c6c6967656e6365000000000000000000000000731af57f392e9b233ee4b3082aaa660aadf529033afc5bd78273a246c33fe7d7116f4a3bfb2111b40efb9f82db13e07ed0b90f2d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102a05760003560e01c806370a0823111610167578063baae28e1116100ce578063dbd30ae011610087578063dbd30ae01461081c578063e2a470aa14610826578063e65b0d4d14610844578063e985e9c514610862578063ec87621c14610892578063fa23023b146108b0576102a0565b8063baae28e114610748578063c5f208d914610764578063c87b56dd14610782578063d3a235e0146107b2578063d547741f146107d0578063db4bec44146107ec576102a0565b8063a217fddf11610120578063a217fddf1461069a578063a22cb465146106b8578063a6f91087146106d4578063aace52fe146106f2578063b77a147b14610710578063b88d4fde1461072c576102a0565b806370a08231146105c2578063764187a0146105f257806391d148541461061057806394225d7a1461064057806395d89b411461065e578063980c08a11461067c576102a0565b806336568abe1161020b5780634783f0ef116101c45780634783f0ef146104fe5780634c23b7fa1461051a578063549bd815146105385780636352211e1461055657806369a3a4d5146105865780636e76bcef146105a4576102a0565b806336568abe1461044e5780633d95b6661461046a5780633f0d2ec11461048857806342842e0e146104a6578063461ec2cd146104c2578063463b08db146104e0576102a0565b806323b872dd1161025d57806323b872dd14610379578063248a9ca3146103955780632a55205a146103c55780632eb4a7ab146103f65780632f2ff15d146104145780633524fb4714610430576102a0565b806301ffc9a7146102a557806306fdde03146102d5578063081812fc146102f3578063095ea7b3146103235780630afce53a1461033f5780631f6af5c21461035b575b600080fd5b6102bf60048036038101906102ba91906131f9565b6108ba565b6040516102cc9190613892565b60405180910390f35b6102dd6108cc565b6040516102ea91906138ec565b60405180910390f35b61030d600480360381019061030891906132e9565b61095e565b60405161031a9190613802565b60405180910390f35b61033d600480360381019061033891906130ff565b6109a4565b005b610359600480360381019061035491906132a0565b610abc565b005b610363610baa565b6040516103709190613892565b60405180910390f35b610393600480360381019061038e9190612fe9565b610bbd565b005b6103af60048036038101906103aa919061318c565b610c1d565b6040516103bc91906138ad565b60405180910390f35b6103df60048036038101906103da9190613316565b610c3d565b6040516103ed929190613869565b60405180910390f35b6103fe610cfd565b60405161040b91906138ad565b60405180910390f35b61042e600480360381019061042991906131b9565b610d03565b005b610438610d24565b60405161044591906138ec565b60405180910390f35b610468600480360381019061046391906131b9565b610d40565b005b610472610dc3565b60405161047f91906138ec565b60405180910390f35b610490610dfc565b60405161049d9190613802565b60405180910390f35b6104c060048036038101906104bb9190612fe9565b610e22565b005b6104ca610e42565b6040516104d791906138ec565b60405180910390f35b6104e8610e7b565b6040516104f59190613bc9565b60405180910390f35b6105186004803603810190610513919061318c565b610e81565b005b610522610ef4565b60405161052f91906138ec565b60405180910390f35b610540610f10565b60405161054d91906138ec565b60405180910390f35b610570600480360381019061056b91906132e9565b610f2c565b60405161057d9190613802565b60405180910390f35b61058e610fde565b60405161059b91906138ec565b60405180910390f35b6105ac61106c565b6040516105b991906138ec565b60405180910390f35b6105dc60048036038101906105d79190612f7c565b611088565b6040516105e99190613bae565b60405180910390f35b6105fa611140565b60405161060791906138ec565b60405180910390f35b61062a600480360381019061062591906131b9565b61115c565b6040516106379190613892565b60405180910390f35b6106486111c7565b60405161065591906138ec565b60405180910390f35b610666611200565b60405161067391906138ec565b60405180910390f35b610684611292565b6040516106919190613802565b60405180910390f35b6106a26112aa565b6040516106af91906138ad565b60405180910390f35b6106d260048036038101906106cd91906130bf565b6112b1565b005b6106dc6112c7565b6040516106e991906138ec565b60405180910390f35b6106fa6112e3565b6040516107079190613892565b60405180910390f35b61072a6004803603810190610725919061313f565b6112f6565b005b6107466004803603810190610741919061303c565b61160d565b005b610762600480360381019061075d9190613253565b61166f565b005b61076c611715565b60405161077991906138ec565b60405180910390f35b61079c600480360381019061079791906132e9565b611732565b6040516107a991906138ec565b60405180910390f35b6107ba61179c565b6040516107c79190613892565b60405180910390f35b6107ea60048036038101906107e591906131b9565b6117af565b005b61080660048036038101906108019190612f7c565b6117d0565b6040516108139190613892565b60405180910390f35b6108246117f0565b005b61082e6118d5565b60405161083b91906138ec565b60405180910390f35b61084c6118f2565b6040516108599190613bae565b60405180910390f35b61087c60048036038101906108779190612fa9565b61190f565b6040516108899190613892565b60405180910390f35b61089a6119a3565b6040516108a791906138ad565b60405180910390f35b6108b86119c7565b005b60006108c582611ace565b9050919050565b6060600080546108db90613ec5565b80601f016020809104026020016040519081016040528092919081815260200182805461090790613ec5565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b5050505050905090565b600061096982611b48565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109af82610f2c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1790613b2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3f611b93565b73ffffffffffffffffffffffffffffffffffffffff161480610a6e5750610a6d81610a68611b93565b61190f565b5b610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490613a8e565b60405180910390fd5b610ab78383611b9b565b505050565b610ae67f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b083361115c565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90613a0e565b60405180910390fd5b600a60009054906101000a900460ff1615610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c9061394e565b60405180910390fd5b8060099080519060200190610b8b929190612ccf565b506001600a60006101000a81548160ff02191690831515021790555050565b600a60009054906101000a900460ff1681565b610bce610bc8611b93565b82611c54565b610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0490613b6e565b60405180910390fd5b610c18838383611ce9565b505050565b600060076000838152602001908152602001600020600101549050919050565b600080600060066040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900462ffffff1662ffffff1662ffffff1681525050905080600001519250612710816020015162ffffff1685610ce99190613d35565b610cf39190613d04565b9150509250929050565b600b5481565b610d0c82610c1d565b610d1581611f50565b610d1f8383611f64565b505050565b6040518060600160405280603e815260200161491a603e913981565b610d48611b93565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac90613b8e565b60405180910390fd5b610dbf8282612045565b5050565b6040518060400160405280600c81526020017f424f4f594153414e2e657468000000000000000000000000000000000000000081525081565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e3d8383836040518060200160405280600081525061160d565b505050565b6040518060400160405280600881526020017f426f6f796173616e00000000000000000000000000000000000000000000000081525081565b6101f481565b610eab7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b083361115c565b610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190613a0e565b60405180910390fd5b80600b8190555050565b6040518060c00160405280608881526020016148276088913981565b6040518060600160405280602e8152602001614958602e913981565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90613b0e565b60405180910390fd5b80915050919050565b60098054610feb90613ec5565b80601f016020809104026020016040519081016040528092919081815260200182805461101790613ec5565b80156110645780601f1061103957610100808354040283529160200191611064565b820191906000526020600020905b81548152906001019060200180831161104757829003601f168201915b505050505081565b6040518060600160405280604081526020016148da6040913981565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090613a6e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6040518060600160405280602b81526020016148af602b913981565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6040518060400160405280602081526020017f4e61747572616c20496e74656c6c6967656e636520627920426f6f796173616e81525081565b60606001805461120f90613ec5565b80601f016020809104026020016040519081016040528092919081815260200182805461123b90613ec5565b80156112885780601f1061125d57610100808354040283529160200191611288565b820191906000526020600020905b81548152906001019060200180831161126b57829003601f168201915b5050505050905090565b733f89aacf9e1120c9a00f6266f841ce094c11be4f81565b6000801b81565b6112c36112bc611b93565b8383612127565b5050565b6040518060600160405280602181526020016149866021913981565b600a60019054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b90613a2e565b60405180910390fd5b600a60019054906101000a900460ff166113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa906139ae565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143790613ace565b60405180910390fd5b60003360405160200161145391906137ad565b6040516020818303038152906040528051906020012090506114b9838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b5483612294565b6114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90613a4e565b60405180910390fd5b61150b33611506600d6122ab565b6122b9565b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853361158f600d6122ab565b60405161159d929190613869565b60405180910390a16115af600d6122ab565b7fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b556572076040518060600160405280603e815260200161491a603e91396040516115f691906138ec565b60405180910390a2611608600d611ab8565b505050565b61161e611618611b93565b83611c54565b61165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490613b6e565b60405180910390fd5b611669848484846122d7565b50505050565b6116997f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b083361115c565b6116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90613a0e565b60405180910390fd5b7fe8e349d9d60379b7e0a717f216d3d9efaf00b5dce8b634a63f24a5d76251059f82826040516117099291906138c8565b60405180910390a15050565b60405180610120016040528060f7815260200161473060f7913981565b606061173d82612333565b61177c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177390613aee565b60405180910390fd5b6040518060600160405280603e815260200161491a603e91399050919050565b600a60029054906101000a900460ff1681565b6117b882610c1d565b6117c181611f50565b6117cb8383612045565b505050565b60086020528060005260406000206000915054906101000a900460ff1681565b61181a7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b083361115c565b611859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185090613a0e565b60405180910390fd5b600a60029054906101000a900460ff16156118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090613b4e565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b60405180610120016040528060fb815260200161463560fb913981565b60006001611900600d6122ab565b61190a9190613d8f565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0881565b6119f17f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b083361115c565b611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2790613a0e565b60405180910390fd5b600a60029054906101000a900460ff1615611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790613b4e565b60405180910390fd5b6000600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6001816000016000828254019250508190555050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b415750611b408261239f565b5b9050919050565b611b5181612333565b611b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8790613b0e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c0e83610f2c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611c6083610f2c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ca25750611ca1818561190f565b5b80611ce057508373ffffffffffffffffffffffffffffffffffffffff16611cc88461095e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d0982610f2c565b73ffffffffffffffffffffffffffffffffffffffff1614611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d569061396e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc6906139ce565b60405180910390fd5b611dda838383612419565b611de5600082611b9b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e359190613d8f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e8c9190613cae565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f4b83838361241e565b505050565b611f6181611f5c611b93565b612423565b50565b611f6e828261115c565b6120415760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611fe6611b93565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61204f828261115c565b156121235760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506120c8611b93565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218d906139ee565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122879190613892565b60405180910390a3505050565b6000826122a185846124c0565b1490509392505050565b600081600001549050919050565b6122d3828260405180602001604052806000815250612516565b5050565b6122e2848484611ce9565b6122ee84848484612571565b61232d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123249061392e565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612412575061241182612708565b5b9050919050565b505050565b505050565b61242d828261115c565b6124bc576124528173ffffffffffffffffffffffffffffffffffffffff1660146127ea565b6124608360001c60206127ea565b6040516020016124719291906137c8565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b391906138ec565b60405180910390fd5b5050565b60008082905060005b845181101561250b576124f6828683815181106124e9576124e8614022565b5b6020026020010151612a26565b9150808061250390613f28565b9150506124c9565b508091505092915050565b6125208383612a51565b61252d6000848484612571565b61256c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125639061392e565b60405180910390fd5b505050565b60006125928473ffffffffffffffffffffffffffffffffffffffff16612c2b565b156126fb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125bb611b93565b8786866040518563ffffffff1660e01b81526004016125dd949392919061381d565b602060405180830381600087803b1580156125f757600080fd5b505af192505050801561262857506040513d601f19601f820116820180604052508101906126259190613226565b60015b6126ab573d8060008114612658576040519150601f19603f3d011682016040523d82523d6000602084013e61265d565b606091505b506000815114156126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a9061392e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612700565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127d357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127e357506127e282612c4e565b5b9050919050565b6060600060028360026127fd9190613d35565b6128079190613cae565b67ffffffffffffffff8111156128205761281f614051565b5b6040519080825280601f01601f1916602001820160405280156128525781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061288a57612889614022565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106128ee576128ed614022565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261292e9190613d35565b6129389190613cae565b90505b60018111156129d8577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061297a57612979614022565b5b1a60f81b82828151811061299157612990614022565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806129d190613e9b565b905061293b565b5060008414612a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a139061390e565b60405180910390fd5b8091505092915050565b6000818310612a3e57612a398284612cb8565b612a49565b612a488383612cb8565b5b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab890613aae565b60405180910390fd5b612aca81612333565b15612b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b019061398e565b60405180910390fd5b612b1660008383612419565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b669190613cae565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c276000838361241e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600082600052816020526040600020905092915050565b828054612cdb90613ec5565b90600052602060002090601f016020900481019282612cfd5760008555612d44565b82601f10612d1657805160ff1916838001178555612d44565b82800160010185558215612d44579182015b82811115612d43578251825591602001919060010190612d28565b5b509050612d519190612d55565b5090565b5b80821115612d6e576000816000905550600101612d56565b5090565b6000612d85612d8084613c09565b613be4565b905082815260208101848484011115612da157612da061408f565b5b612dac848285613e59565b509392505050565b6000612dc7612dc284613c3a565b613be4565b905082815260208101848484011115612de357612de261408f565b5b612dee848285613e59565b509392505050565b600081359050612e05816145c1565b92915050565b60008083601f840112612e2157612e20614085565b5b8235905067ffffffffffffffff811115612e3e57612e3d614080565b5b602083019150836020820283011115612e5a57612e5961408a565b5b9250929050565b600081359050612e70816145d8565b92915050565b600081359050612e85816145ef565b92915050565b600081359050612e9a81614606565b92915050565b600081519050612eaf81614606565b92915050565b600082601f830112612eca57612ec9614085565b5b8135612eda848260208601612d72565b91505092915050565b60008083601f840112612ef957612ef8614085565b5b8235905067ffffffffffffffff811115612f1657612f15614080565b5b602083019150836001820283011115612f3257612f3161408a565b5b9250929050565b600082601f830112612f4e57612f4d614085565b5b8135612f5e848260208601612db4565b91505092915050565b600081359050612f768161461d565b92915050565b600060208284031215612f9257612f91614099565b5b6000612fa084828501612df6565b91505092915050565b60008060408385031215612fc057612fbf614099565b5b6000612fce85828601612df6565b9250506020612fdf85828601612df6565b9150509250929050565b60008060006060848603121561300257613001614099565b5b600061301086828701612df6565b935050602061302186828701612df6565b925050604061303286828701612f67565b9150509250925092565b6000806000806080858703121561305657613055614099565b5b600061306487828801612df6565b945050602061307587828801612df6565b935050604061308687828801612f67565b925050606085013567ffffffffffffffff8111156130a7576130a6614094565b5b6130b387828801612eb5565b91505092959194509250565b600080604083850312156130d6576130d5614099565b5b60006130e485828601612df6565b92505060206130f585828601612e61565b9150509250929050565b6000806040838503121561311657613115614099565b5b600061312485828601612df6565b925050602061313585828601612f67565b9150509250929050565b6000806020838503121561315657613155614099565b5b600083013567ffffffffffffffff81111561317457613173614094565b5b61318085828601612e0b565b92509250509250929050565b6000602082840312156131a2576131a1614099565b5b60006131b084828501612e76565b91505092915050565b600080604083850312156131d0576131cf614099565b5b60006131de85828601612e76565b92505060206131ef85828601612df6565b9150509250929050565b60006020828403121561320f5761320e614099565b5b600061321d84828501612e8b565b91505092915050565b60006020828403121561323c5761323b614099565b5b600061324a84828501612ea0565b91505092915050565b6000806020838503121561326a57613269614099565b5b600083013567ffffffffffffffff81111561328857613287614094565b5b61329485828601612ee3565b92509250509250929050565b6000602082840312156132b6576132b5614099565b5b600082013567ffffffffffffffff8111156132d4576132d3614094565b5b6132e084828501612f39565b91505092915050565b6000602082840312156132ff576132fe614099565b5b600061330d84828501612f67565b91505092915050565b6000806040838503121561332d5761332c614099565b5b600061333b85828601612f67565b925050602061334c85828601612f67565b9150509250929050565b61335f81613dc3565b82525050565b61337661337182613dc3565b613f71565b82525050565b61338581613dd5565b82525050565b61339481613de1565b82525050565b60006133a582613c6b565b6133af8185613c81565b93506133bf818560208601613e68565b6133c88161409e565b840191505092915050565b60006133df8385613c92565b93506133ec838584613e59565b6133f58361409e565b840190509392505050565b600061340b82613c76565b6134158185613c92565b9350613425818560208601613e68565b61342e8161409e565b840191505092915050565b600061344482613c76565b61344e8185613ca3565b935061345e818560208601613e68565b80840191505092915050565b6000613477602083613c92565b9150613482826140bc565b602082019050919050565b600061349a603283613c92565b91506134a5826140e5565b604082019050919050565b60006134bd601183613c92565b91506134c882614134565b602082019050919050565b60006134e0602583613c92565b91506134eb8261415d565b604082019050919050565b6000613503601c83613c92565b915061350e826141ac565b602082019050919050565b6000613526601083613c92565b9150613531826141d5565b602082019050919050565b6000613549602483613c92565b9150613554826141fe565b604082019050919050565b600061356c601983613c92565b91506135778261424d565b602082019050919050565b600061358f601783613c92565b915061359a82614276565b602082019050919050565b60006135b2601e83613c92565b91506135bd8261429f565b602082019050919050565b60006135d5601083613c92565b91506135e0826142c8565b602082019050919050565b60006135f8602983613c92565b9150613603826142f1565b604082019050919050565b600061361b603e83613c92565b915061362682614340565b604082019050919050565b600061363e602083613c92565b91506136498261438f565b602082019050919050565b6000613661602083613c92565b915061366c826143b8565b602082019050919050565b6000613684602f83613c92565b915061368f826143e1565b604082019050919050565b60006136a7601883613c92565b91506136b282614430565b602082019050919050565b60006136ca602183613c92565b91506136d582614459565b604082019050919050565b60006136ed601783613ca3565b91506136f8826144a8565b601782019050919050565b6000613710600d83613c92565b915061371b826144d1565b602082019050919050565b6000613733602e83613c92565b915061373e826144fa565b604082019050919050565b6000613756601183613ca3565b915061376182614549565b601182019050919050565b6000613779602f83613c92565b915061378482614572565b604082019050919050565b61379881613e37565b82525050565b6137a781613e41565b82525050565b60006137b98284613365565b60148201915081905092915050565b60006137d3826136e0565b91506137df8285613439565b91506137ea82613749565b91506137f68284613439565b91508190509392505050565b60006020820190506138176000830184613356565b92915050565b60006080820190506138326000830187613356565b61383f6020830186613356565b61384c604083018561378f565b818103606083015261385e818461339a565b905095945050505050565b600060408201905061387e6000830185613356565b61388b602083018461378f565b9392505050565b60006020820190506138a7600083018461337c565b92915050565b60006020820190506138c2600083018461338b565b92915050565b600060208201905081810360008301526138e38184866133d3565b90509392505050565b600060208201905081810360008301526139068184613400565b905092915050565b600060208201905081810360008301526139278161346a565b9050919050565b600060208201905081810360008301526139478161348d565b9050919050565b60006020820190508181036000830152613967816134b0565b9050919050565b60006020820190508181036000830152613987816134d3565b9050919050565b600060208201905081810360008301526139a7816134f6565b9050919050565b600060208201905081810360008301526139c781613519565b9050919050565b600060208201905081810360008301526139e78161353c565b9050919050565b60006020820190508181036000830152613a078161355f565b9050919050565b60006020820190508181036000830152613a2781613582565b9050919050565b60006020820190508181036000830152613a47816135a5565b9050919050565b60006020820190508181036000830152613a67816135c8565b9050919050565b60006020820190508181036000830152613a87816135eb565b9050919050565b60006020820190508181036000830152613aa78161360e565b9050919050565b60006020820190508181036000830152613ac781613631565b9050919050565b60006020820190508181036000830152613ae781613654565b9050919050565b60006020820190508181036000830152613b0781613677565b9050919050565b60006020820190508181036000830152613b278161369a565b9050919050565b60006020820190508181036000830152613b47816136bd565b9050919050565b60006020820190508181036000830152613b6781613703565b9050919050565b60006020820190508181036000830152613b8781613726565b9050919050565b60006020820190508181036000830152613ba78161376c565b9050919050565b6000602082019050613bc3600083018461378f565b92915050565b6000602082019050613bde600083018461379e565b92915050565b6000613bee613bff565b9050613bfa8282613ef7565b919050565b6000604051905090565b600067ffffffffffffffff821115613c2457613c23614051565b5b613c2d8261409e565b9050602081019050919050565b600067ffffffffffffffff821115613c5557613c54614051565b5b613c5e8261409e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cb982613e37565b9150613cc483613e37565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cf957613cf8613f95565b5b828201905092915050565b6000613d0f82613e37565b9150613d1a83613e37565b925082613d2a57613d29613fc4565b5b828204905092915050565b6000613d4082613e37565b9150613d4b83613e37565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d8457613d83613f95565b5b828202905092915050565b6000613d9a82613e37565b9150613da583613e37565b925082821015613db857613db7613f95565b5b828203905092915050565b6000613dce82613e17565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613e86578082015181840152602081019050613e6b565b83811115613e95576000848401525b50505050565b6000613ea682613e37565b91506000821415613eba57613eb9613f95565b5b600182039050919050565b60006002820490506001821680613edd57607f821691505b60208210811415613ef157613ef0613ff3565b5b50919050565b613f008261409e565b810181811067ffffffffffffffff82111715613f1f57613f1e614051565b5b80604052505050565b6000613f3382613e37565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f6657613f65613f95565b5b600182019050919050565b6000613f7c82613f83565b9050919050565b6000613f8e826140af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f496d6167652064617461206c6f636b6564000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c657320617265206c6f636b656400000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616c6c6572206973206e6f742061206d616e61676572000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f496e636f72726563742070726f6f662e00000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f546869732077616c6c65742068617320616c726561647920636c61696d65642e600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f53616c6573206c6f636b65642e00000000000000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6145ca81613dc3565b81146145d557600080fd5b50565b6145e181613dd5565b81146145ec57600080fd5b50565b6145f881613de1565b811461460357600080fd5b50565b61460f81613deb565b811461461a57600080fd5b50565b61462681613e37565b811461463157600080fd5b5056fee2809c4e61747572616c20496e74656c6c6967656e6365e2809d20656e206f70706f736974696f6e20c3a020e2809c4172746966696369616c20496e74656c6c6967656e6365e2809d2072657072c3a973656e7465206c276f7074696d69736d6520c3a9636f2d746563686e6f6c6f67697175652e204c6f696e20646573207375706572732063616c63756c6174657572732c206c61206e61747572652072c3a9736f757420c3a0207361206d616e69c3a872652c20656e2074656d70732072c3a9656c2c206368617175652070726f626cc3a86d652e20456c6c6520657374206c276176656e69722064657320746563686e6f6c6f676965732ee2809c4e61747572616c20496e74656c6c6967656e6365e2809d2c20696e206f70706f736974696f6e20746f20e2809c4172746966696369616c20496e74656c6c6967656e6365e2809d2c20726570726573656e747320746865206f7074696d69736d206f662065636f2d746563686e6f6c6f676965732e204661722066726f6d2073757065722063616c63756c61746f72732c204e617475726520736f6c76657320656163682070726f626c656d20696e206120756e69717565207761792c20696e207265616c2074696d652e20536f6d65686f772c2069742069732074686520667574757265206f6620746563686e6f6c6f67792e43727970746f2d6765656b2d6172746973742c20417274206469726563746f722c2050686f746f6772617068657220616e64205456204d6f74696f6e2044657369676e65722e20416476616e63656420546563686e696369616e204365727469666963617465206f662041727473204170706c697175c3a973205363686f6f6c2c2050617269732e585f747a2d79617553474d4e437a7853577a6a523063315a5a5a7665594f4e7a3138306f5f6452555561303166383866646266313735376532636262323732303933626238356638393735303531306263393336366534333366646134633436643732373830313666623668747470733a2f2f66657463682e6f70656e67656d2e636f6d2f6e6674696d70616374323032322f626f6f796173616e2f6d657461646174612e6a736f6e516d56466b7a4c41506d7337314d37586b767866724639515759557931463252377736566b7837704559365757484e465420496d70616374202d204e61747572616c20496e74656c6c6967656e6365a2646970667358221220afa04a78c943f0815501b423a9cf74307e9b42987f5a8b0cef53f5f35bfe546f64736f6c63430008070033

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

000000000000000000000000731af57f392e9b233ee4b3082aaa660aadf529033afc5bd78273a246c33fe7d7116f4a3bfb2111b40efb9f82db13e07ed0b90f2d

-----Decoded View---------------
Arg [0] : _royaltyWallet (address): 0x731aF57f392E9B233ee4B3082aaA660AADf52903
Arg [1] : _merkleRoot (bytes32): 0x3afc5bd78273a246c33fe7d7116f4a3bfb2111b40efb9f82db13e07ed0b90f2d

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000731af57f392e9b233ee4b3082aaa660aadf52903
Arg [1] : 3afc5bd78273a246c33fe7d7116f4a3bfb2111b40efb9f82db13e07ed0b90f2d


Deployed Bytecode Sourcemap

60175:5523:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65506:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47849:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49362:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48879:417;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64530:262;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62479:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50062:336;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35982:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31243:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;62592:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36423:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61959:116;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37567:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60717:57;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62624:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50469:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60663:47;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62659;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63763:163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60870:180;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62082:103;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47560:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62445:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62302:134;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47291:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62192:103;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34442:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61057:72;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48018:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60781:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33547:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49605:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61136:76;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62521:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64800:698;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50725:323;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64349:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61614:336;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63934:289;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62552:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36863:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60606:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63337:192;;;:::i;:::-;;61219:388;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64231:110;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49831:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62911:64;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63537:218;;;:::i;:::-;;65506:189;65627:4;65651:36;65675:11;65651:23;:36::i;:::-;65644:43;;65506:189;;;:::o;47849:100::-;47903:13;47936:5;47929:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47849:100;:::o;49362:171::-;49438:7;49458:23;49473:7;49458:14;:23::i;:::-;49501:15;:24;49517:7;49501:24;;;;;;;;;;;;;;;;;;;;;49494:31;;49362:171;;;:::o;48879:417::-;48960:13;48976:23;48991:7;48976:14;:23::i;:::-;48960:39;;49024:5;49018:11;;:2;:11;;;;49010:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49118:5;49102:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;49127:37;49144:5;49151:12;:10;:12::i;:::-;49127:16;:37::i;:::-;49102:62;49080:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;49267:21;49276:2;49280:7;49267:8;:21::i;:::-;48949:347;48879:417;;:::o;64530:262::-;64604:33;62950:25;64626:10;64604:7;:33::i;:::-;64596:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;64685:13;;;;;;;;;;;64684:14;64676:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;64747:6;64731:13;:22;;;;;;;;;;;;:::i;:::-;;64780:4;64764:13;;:20;;;;;;;;;;;;;;;;;;64530:262;:::o;62479:33::-;;;;;;;;;;;;;:::o;50062:336::-;50257:41;50276:12;:10;:12::i;:::-;50290:7;50257:18;:41::i;:::-;50249:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;50362:28;50372:4;50378:2;50382:7;50362:9;:28::i;:::-;50062:336;;;:::o;35982:131::-;36056:7;36083:6;:12;36090:4;36083:12;;;;;;;;;;;:22;;;36076:29;;35982:131;;;:::o;31243:321::-;31356:16;31374:21;31413:28;31444:10;31413:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31476:9;:19;;;31465:30;;31551:5;31531:9;:16;;;31523:24;;:5;:24;;;;:::i;:::-;31522:34;;;;:::i;:::-;31506:50;;31402:162;31243:321;;;;;:::o;62592:25::-;;;;:::o;36423:147::-;36506:18;36519:4;36506:12;:18::i;:::-;34038:16;34049:4;34038:10;:16::i;:::-;36537:25:::1;36548:4;36554:7;36537:10;:25::i;:::-;36423:147:::0;;;:::o;61959:116::-;;;;;;;;;;;;;;;;;;;:::o;37567:218::-;37674:12;:10;:12::i;:::-;37663:23;;:7;:23;;;37655:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;37751:26;37763:4;37769:7;37751:11;:26::i;:::-;37567:218;;:::o;60717:57::-;;;;;;;;;;;;;;;;;;;:::o;62624:28::-;;;;;;;;;;;;;:::o;50469:185::-;50607:39;50624:4;50630:2;50634:7;50607:39;;;;;;;;;;;;:16;:39::i;:::-;50469:185;;;:::o;60663:47::-;;;;;;;;;;;;;;;;;;;:::o;62659:::-;62703:3;62659:47;:::o;63763:163::-;63829:33;62950:25;63851:10;63829:7;:33::i;:::-;63821:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;63914:4;63901:10;:17;;;;63763:163;:::o;60870:180::-;;;;;;;;;;;;;;;;;;;:::o;62082:103::-;;;;;;;;;;;;;;;;;;;:::o;47560:222::-;47632:7;47652:13;47668:7;:16;47676:7;47668:16;;;;;;;;;;;;;;;;;;;;;47652:32;;47720:1;47703:19;;:5;:19;;;;47695:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;47769:5;47762:12;;;47560:222;;;:::o;62445:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62302:134::-;;;;;;;;;;;;;;;;;;;:::o;47291:207::-;47363:7;47408:1;47391:19;;:5;:19;;;;47383:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47474:9;:16;47484:5;47474:16;;;;;;;;;;;;;;;;47467:23;;47291:207;;;:::o;62192:103::-;;;;;;;;;;;;;;;;;;;:::o;34442:147::-;34528:4;34552:6;:12;34559:4;34552:12;;;;;;;;;;;:20;;:29;34573:7;34552:29;;;;;;;;;;;;;;;;;;;;;;;;;34545:36;;34442:147;;;;:::o;61057:72::-;;;;;;;;;;;;;;;;;;;:::o;48018:104::-;48074:13;48107:7;48100:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48018:104;:::o;60781:82::-;60821:42;60781:82;:::o;33547:49::-;33592:4;33547:49;;;:::o;49605:155::-;49700:52;49719:12;:10;:12::i;:::-;49733:8;49743;49700:18;:52::i;:::-;49605:155;;:::o;61136:76::-;;;;;;;;;;;;;;;;;;;:::o;62521:24::-;;;;;;;;;;;;;:::o;64800:698::-;64880:10;64867:23;;:9;:23;;;64859:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;64945:5;;;;;;;;;;;64937:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;64992:16;:28;65009:10;64992:28;;;;;;;;;;;;;;;;;;;;;;;;;64991:29;64983:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;65068:12;65110:10;65093:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;65083:39;;;;;;65068:54;;65141:44;65160:6;;65141:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65168:10;;65180:4;65141:18;:44::i;:::-;65133:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;65227:47;65237:10;65249:24;:14;:22;:24::i;:::-;65227:9;:47::i;:::-;65318:4;65287:16;:28;65304:10;65287:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;65338:42;65343:10;65355:24;:14;:22;:24::i;:::-;65338:42;;;;;;;:::i;:::-;;;;;;;;65428:24;:14;:22;:24::i;:::-;65396:57;65409:17;;;;;;;;;;;;;;;;;65396:57;;;;;;:::i;:::-;;;;;;;;65464:26;:14;:24;:26::i;:::-;64848:650;64800:698;;:::o;50725:323::-;50899:41;50918:12;:10;:12::i;:::-;50932:7;50899:18;:41::i;:::-;50891:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;51002:38;51016:4;51022:2;51026:7;51035:4;51002:13;:38::i;:::-;50725:323;;;;:::o;64349:173::-;64422:33;62950:25;64444:10;64422:7;:33::i;:::-;64414:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;64499:15;64504:9;;64499:15;;;;;;;:::i;:::-;;;;;;;;64349:173;;:::o;61614:336::-;;;;;;;;;;;;;;;;;;;:::o;63934:289::-;64035:13;64089:16;64097:7;64089;:16::i;:::-;64067:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;64198:17;;;;;;;;;;;;;;;;;64191:24;;63934:289;;;:::o;62552:31::-;;;;;;;;;;;;;:::o;36863:149::-;36947:18;36960:4;36947:12;:18::i;:::-;34038:16;34049:4;34038:10;:16::i;:::-;36978:26:::1;36990:4;36996:7;36978:11;:26::i;:::-;36863:149:::0;;;:::o;60606:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;63337:192::-;63386:33;62950:25;63408:10;63386:7;:33::i;:::-;63378:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;63467:11;;;;;;;;;;;63466:12;63458:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;63516:5;;;;;;;;;;;63515:6;63507:5;;:14;;;;;;;;;;;;;;;;;;63337:192::o;61219:388::-;;;;;;;;;;;;;;;;;;;:::o;64231:110::-;64278:7;64332:1;64305:24;:14;:22;:24::i;:::-;:28;;;;:::i;:::-;64298:35;;64231:110;:::o;49831:164::-;49928:4;49952:18;:25;49971:5;49952:25;;;;;;;;;;;;;;;:35;49978:8;49952:35;;;;;;;;;;;;;;;;;;;;;;;;;49945:42;;49831:164;;;;:::o;62911:64::-;62950:25;62911:64;:::o;63537:218::-;63584:33;62950:25;63606:10;63584:7;:33::i;:::-;63576:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;63665:11;;;;;;;;;;;63664:12;63656:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;63713:5;63705;;:13;;;;;;;;;;;;;;;;;;63743:4;63729:11;;:18;;;;;;;;;;;;;;;;;;63537:218::o;10502:127::-;10609:1;10591:7;:14;;;:19;;;;;;;;;;;10502:127;:::o;34146:204::-;34231:4;34270:32;34255:47;;;:11;:47;;;;:87;;;;34306:36;34330:11;34306:23;:36::i;:::-;34255:87;34248:94;;34146:204;;;:::o;57337:135::-;57419:16;57427:7;57419;:16::i;:::-;57411:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;57337:135;:::o;17190:98::-;17243:7;17270:10;17263:17;;17190:98;:::o;56616:174::-;56718:2;56691:15;:24;56707:7;56691:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;56774:7;56770:2;56736:46;;56745:23;56760:7;56745:14;:23::i;:::-;56736:46;;;;;;;;;;;;56616:174;;:::o;52849:264::-;52942:4;52959:13;52975:23;52990:7;52975:14;:23::i;:::-;52959:39;;53028:5;53017:16;;:7;:16;;;:52;;;;53037:32;53054:5;53061:7;53037:16;:32::i;:::-;53017:52;:87;;;;53097:7;53073:31;;:20;53085:7;53073:11;:20::i;:::-;:31;;;53017:87;53009:96;;;52849:264;;;;:::o;55872:625::-;56031:4;56004:31;;:23;56019:7;56004:14;:23::i;:::-;:31;;;55996:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;56110:1;56096:16;;:2;:16;;;;56088:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;56166:39;56187:4;56193:2;56197:7;56166:20;:39::i;:::-;56270:29;56287:1;56291:7;56270:8;:29::i;:::-;56331:1;56312:9;:15;56322:4;56312:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;56360:1;56343:9;:13;56353:2;56343:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;56391:2;56372:7;:16;56380:7;56372:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;56430:7;56426:2;56411:27;;56420:4;56411:27;;;;;;;;;;;;56451:38;56471:4;56477:2;56481:7;56451:19;:38::i;:::-;55872:625;;;:::o;34893:105::-;34960:30;34971:4;34977:12;:10;:12::i;:::-;34960:10;:30::i;:::-;34893:105;:::o;39164:238::-;39248:22;39256:4;39262:7;39248;:22::i;:::-;39243:152;;39319:4;39287:6;:12;39294:4;39287:12;;;;;;;;;;;:20;;:29;39308:7;39287:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;39370:12;:10;:12::i;:::-;39343:40;;39361:7;39343:40;;39355:4;39343:40;;;;;;;;;;39243:152;39164:238;;:::o;39582:239::-;39666:22;39674:4;39680:7;39666;:22::i;:::-;39662:152;;;39737:5;39705:6;:12;39712:4;39705:12;;;;;;;;;;;:20;;:29;39726:7;39705:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;39789:12;:10;:12::i;:::-;39762:40;;39780:7;39762:40;;39774:4;39762:40;;;;;;;;;;39662:152;39582:239;;:::o;56933:315::-;57088:8;57079:17;;:5;:17;;;;57071:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;57175:8;57137:18;:25;57156:5;57137:25;;;;;;;;;;;;;;;:35;57163:8;57137:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;57221:8;57199:41;;57214:5;57199:41;;;57231:8;57199:41;;;;;;:::i;:::-;;;;;;;;56933:315;;;:::o;2002:190::-;2127:4;2180;2151:25;2164:5;2171:4;2151:12;:25::i;:::-;:33;2144:40;;2002:190;;;;;:::o;10380:114::-;10445:7;10472;:14;;;10465:21;;10380:114;;;:::o;53455:110::-;53531:26;53541:2;53545:7;53531:26;;;;;;;;;;;;:9;:26::i;:::-;53455:110;;:::o;51929:313::-;52085:28;52095:4;52101:2;52105:7;52085:9;:28::i;:::-;52132:47;52155:4;52161:2;52165:7;52174:4;52132:22;:47::i;:::-;52124:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;51929:313;;;;:::o;52555:127::-;52620:4;52672:1;52644:30;;:7;:16;52652:7;52644:16;;;;;;;;;;;;;;;;;;;;;:30;;;;52637:37;;52555:127;;;:::o;30190:283::-;30320:4;30377:35;30362:50;;;:11;:50;;;;:103;;;;30429:36;30453:11;30429:23;:36::i;:::-;30362:103;30342:123;;30190:283;;;:::o;59461:126::-;;;;:::o;59972:125::-;;;;:::o;35288:505::-;35377:22;35385:4;35391:7;35377;:22::i;:::-;35372:414;;35565:41;35593:7;35565:41;;35603:2;35565:19;:41::i;:::-;35679:38;35707:4;35699:13;;35714:2;35679:19;:38::i;:::-;35470:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35416:358;;;;;;;;;;;:::i;:::-;;;;;;;;35372:414;35288:505;;:::o;2869:296::-;2952:7;2972:20;2995:4;2972:27;;3015:9;3010:118;3034:5;:12;3030:1;:16;3010:118;;;3083:33;3093:12;3107:5;3113:1;3107:8;;;;;;;;:::i;:::-;;;;;;;;3083:9;:33::i;:::-;3068:48;;3048:3;;;;;:::i;:::-;;;;3010:118;;;;3145:12;3138:19;;;2869:296;;;;:::o;53792:319::-;53921:18;53927:2;53931:7;53921:5;:18::i;:::-;53972:53;54003:1;54007:2;54011:7;54020:4;53972:22;:53::i;:::-;53950:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;53792:319;;;:::o;58036:853::-;58190:4;58211:15;:2;:13;;;:15::i;:::-;58207:675;;;58263:2;58247:36;;;58284:12;:10;:12::i;:::-;58298:4;58304:7;58313:4;58247:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58243:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58505:1;58488:6;:13;:18;58484:328;;;58531:60;;;;;;;;;;:::i;:::-;;;;;;;;58484:328;58762:6;58756:13;58747:6;58743:2;58739:15;58732:38;58243:584;58379:41;;;58369:51;;;:6;:51;;;;58362:58;;;;;58207:675;58866:4;58859:11;;58036:853;;;;;;;:::o;46922:305::-;47024:4;47076:25;47061:40;;;:11;:40;;;;:105;;;;47133:33;47118:48;;;:11;:48;;;;47061:105;:158;;;;47183:36;47207:11;47183:23;:36::i;:::-;47061:158;47041:178;;46922:305;;;:::o;15745:451::-;15820:13;15846:19;15891:1;15882:6;15878:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;15868:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15846:47;;15904:15;:6;15911:1;15904:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;15930;:6;15937:1;15930:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;15961:9;15986:1;15977:6;15973:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;15961:26;;15956:135;15993:1;15989;:5;15956:135;;;16028:12;16049:3;16041:5;:11;16028:25;;;;;;;:::i;:::-;;;;;16016:6;16023:1;16016:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;16078:1;16068:11;;;;;15996:3;;;;:::i;:::-;;;15956:135;;;;16118:1;16109:5;:10;16101:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;16181:6;16167:21;;;15745:451;;;;:::o;9076:149::-;9139:7;9170:1;9166;:5;:51;;9197:20;9212:1;9215;9197:14;:20::i;:::-;9166:51;;;9174:20;9189:1;9192;9174:14;:20::i;:::-;9166:51;9159:58;;9076:149;;;;:::o;54447:439::-;54541:1;54527:16;;:2;:16;;;;54519:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;54600:16;54608:7;54600;:16::i;:::-;54599:17;54591:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;54662:45;54691:1;54695:2;54699:7;54662:20;:45::i;:::-;54737:1;54720:9;:13;54730:2;54720:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;54768:2;54749:7;:16;54757:7;54749:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;54813:7;54809:2;54788:33;;54805:1;54788:33;;;;;;;;;;;;54834:44;54862:1;54866:2;54870:7;54834:19;:44::i;:::-;54447:439;;:::o;18637:326::-;18697:4;18954:1;18932:7;:19;;;:23;18925:30;;18637:326;;;:::o;29691:157::-;29776:4;29815:25;29800:40;;;:11;:40;;;;29793:47;;29691:157;;;:::o;9233:268::-;9301:13;9408:1;9402:4;9395:15;9437:1;9431:4;9424:15;9478:4;9472;9462:21;9453:30;;9233:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:553::-;2580:8;2590:6;2640:3;2633:4;2625:6;2621:17;2617:27;2607:122;;2648:79;;:::i;:::-;2607:122;2761:6;2748:20;2738:30;;2791:18;2783:6;2780:30;2777:117;;;2813:79;;:::i;:::-;2777:117;2927:4;2919:6;2915:17;2903:29;;2981:3;2973:4;2965:6;2961:17;2951:8;2947:32;2944:41;2941:128;;;2988:79;;:::i;:::-;2941:128;2522:553;;;;;:::o;3095:340::-;3151:5;3200:3;3193:4;3185:6;3181:17;3177:27;3167:122;;3208:79;;:::i;:::-;3167:122;3325:6;3312:20;3350:79;3425:3;3417:6;3410:4;3402:6;3398:17;3350:79;:::i;:::-;3341:88;;3157:278;3095:340;;;;:::o;3441:139::-;3487:5;3525:6;3512:20;3503:29;;3541:33;3568:5;3541:33;:::i;:::-;3441:139;;;;:::o;3586:329::-;3645:6;3694:2;3682:9;3673:7;3669:23;3665:32;3662:119;;;3700:79;;:::i;:::-;3662:119;3820:1;3845:53;3890:7;3881:6;3870:9;3866:22;3845:53;:::i;:::-;3835:63;;3791:117;3586:329;;;;:::o;3921:474::-;3989:6;3997;4046:2;4034:9;4025:7;4021:23;4017:32;4014:119;;;4052:79;;:::i;:::-;4014:119;4172:1;4197:53;4242:7;4233:6;4222:9;4218:22;4197:53;:::i;:::-;4187:63;;4143:117;4299:2;4325:53;4370:7;4361:6;4350:9;4346:22;4325:53;:::i;:::-;4315:63;;4270:118;3921:474;;;;;:::o;4401:619::-;4478:6;4486;4494;4543:2;4531:9;4522:7;4518:23;4514:32;4511:119;;;4549:79;;:::i;:::-;4511:119;4669:1;4694:53;4739:7;4730:6;4719:9;4715:22;4694:53;:::i;:::-;4684:63;;4640:117;4796:2;4822:53;4867:7;4858:6;4847:9;4843:22;4822:53;:::i;:::-;4812:63;;4767:118;4924:2;4950:53;4995:7;4986:6;4975:9;4971:22;4950:53;:::i;:::-;4940:63;;4895:118;4401:619;;;;;:::o;5026:943::-;5121:6;5129;5137;5145;5194:3;5182:9;5173:7;5169:23;5165:33;5162:120;;;5201:79;;:::i;:::-;5162:120;5321:1;5346:53;5391:7;5382:6;5371:9;5367:22;5346:53;:::i;:::-;5336:63;;5292:117;5448:2;5474:53;5519:7;5510:6;5499:9;5495:22;5474:53;:::i;:::-;5464:63;;5419:118;5576:2;5602:53;5647:7;5638:6;5627:9;5623:22;5602:53;:::i;:::-;5592:63;;5547:118;5732:2;5721:9;5717:18;5704:32;5763:18;5755:6;5752:30;5749:117;;;5785:79;;:::i;:::-;5749:117;5890:62;5944:7;5935:6;5924:9;5920:22;5890:62;:::i;:::-;5880:72;;5675:287;5026:943;;;;;;;:::o;5975:468::-;6040:6;6048;6097:2;6085:9;6076:7;6072:23;6068:32;6065:119;;;6103:79;;:::i;:::-;6065:119;6223:1;6248:53;6293:7;6284:6;6273:9;6269:22;6248:53;:::i;:::-;6238:63;;6194:117;6350:2;6376:50;6418:7;6409:6;6398:9;6394:22;6376:50;:::i;:::-;6366:60;;6321:115;5975:468;;;;;:::o;6449:474::-;6517:6;6525;6574:2;6562:9;6553:7;6549:23;6545:32;6542:119;;;6580:79;;:::i;:::-;6542:119;6700:1;6725:53;6770:7;6761:6;6750:9;6746:22;6725:53;:::i;:::-;6715:63;;6671:117;6827:2;6853:53;6898:7;6889:6;6878:9;6874:22;6853:53;:::i;:::-;6843:63;;6798:118;6449:474;;;;;:::o;6929:559::-;7015:6;7023;7072:2;7060:9;7051:7;7047:23;7043:32;7040:119;;;7078:79;;:::i;:::-;7040:119;7226:1;7215:9;7211:17;7198:31;7256:18;7248:6;7245:30;7242:117;;;7278:79;;:::i;:::-;7242:117;7391:80;7463:7;7454:6;7443:9;7439:22;7391:80;:::i;:::-;7373:98;;;;7169:312;6929:559;;;;;:::o;7494:329::-;7553:6;7602:2;7590:9;7581:7;7577:23;7573:32;7570:119;;;7608:79;;:::i;:::-;7570:119;7728:1;7753:53;7798:7;7789:6;7778:9;7774:22;7753:53;:::i;:::-;7743:63;;7699:117;7494:329;;;;:::o;7829:474::-;7897:6;7905;7954:2;7942:9;7933:7;7929:23;7925:32;7922:119;;;7960:79;;:::i;:::-;7922:119;8080:1;8105:53;8150:7;8141:6;8130:9;8126:22;8105:53;:::i;:::-;8095:63;;8051:117;8207:2;8233:53;8278:7;8269:6;8258:9;8254:22;8233:53;:::i;:::-;8223:63;;8178:118;7829:474;;;;;:::o;8309:327::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:52;8611:7;8602:6;8591:9;8587:22;8567:52;:::i;:::-;8557:62;;8513:116;8309:327;;;;:::o;8642:349::-;8711:6;8760:2;8748:9;8739:7;8735:23;8731:32;8728:119;;;8766:79;;:::i;:::-;8728:119;8886:1;8911:63;8966:7;8957:6;8946:9;8942:22;8911:63;:::i;:::-;8901:73;;8857:127;8642:349;;;;:::o;8997:529::-;9068:6;9076;9125:2;9113:9;9104:7;9100:23;9096:32;9093:119;;;9131:79;;:::i;:::-;9093:119;9279:1;9268:9;9264:17;9251:31;9309:18;9301:6;9298:30;9295:117;;;9331:79;;:::i;:::-;9295:117;9444:65;9501:7;9492:6;9481:9;9477:22;9444:65;:::i;:::-;9426:83;;;;9222:297;8997:529;;;;;:::o;9532:509::-;9601:6;9650:2;9638:9;9629:7;9625:23;9621:32;9618:119;;;9656:79;;:::i;:::-;9618:119;9804:1;9793:9;9789:17;9776:31;9834:18;9826:6;9823:30;9820:117;;;9856:79;;:::i;:::-;9820:117;9961:63;10016:7;10007:6;9996:9;9992:22;9961:63;:::i;:::-;9951:73;;9747:287;9532:509;;;;:::o;10047:329::-;10106:6;10155:2;10143:9;10134:7;10130:23;10126:32;10123:119;;;10161:79;;:::i;:::-;10123:119;10281:1;10306:53;10351:7;10342:6;10331:9;10327:22;10306:53;:::i;:::-;10296:63;;10252:117;10047:329;;;;:::o;10382:474::-;10450:6;10458;10507:2;10495:9;10486:7;10482:23;10478:32;10475:119;;;10513:79;;:::i;:::-;10475:119;10633:1;10658:53;10703:7;10694:6;10683:9;10679:22;10658:53;:::i;:::-;10648:63;;10604:117;10760:2;10786:53;10831:7;10822:6;10811:9;10807:22;10786:53;:::i;:::-;10776:63;;10731:118;10382:474;;;;;:::o;10862:118::-;10949:24;10967:5;10949:24;:::i;:::-;10944:3;10937:37;10862:118;;:::o;10986:157::-;11091:45;11111:24;11129:5;11111:24;:::i;:::-;11091:45;:::i;:::-;11086:3;11079:58;10986:157;;:::o;11149:109::-;11230:21;11245:5;11230:21;:::i;:::-;11225:3;11218:34;11149:109;;:::o;11264:118::-;11351:24;11369:5;11351:24;:::i;:::-;11346:3;11339:37;11264:118;;:::o;11388:360::-;11474:3;11502:38;11534:5;11502:38;:::i;:::-;11556:70;11619:6;11614:3;11556:70;:::i;:::-;11549:77;;11635:52;11680:6;11675:3;11668:4;11661:5;11657:16;11635:52;:::i;:::-;11712:29;11734:6;11712:29;:::i;:::-;11707:3;11703:39;11696:46;;11478:270;11388:360;;;;:::o;11778:304::-;11876:3;11897:71;11961:6;11956:3;11897:71;:::i;:::-;11890:78;;11978:43;12014:6;12009:3;12002:5;11978:43;:::i;:::-;12046:29;12068:6;12046:29;:::i;:::-;12041:3;12037:39;12030:46;;11778:304;;;;;:::o;12088:364::-;12176:3;12204:39;12237:5;12204:39;:::i;:::-;12259:71;12323:6;12318:3;12259:71;:::i;:::-;12252:78;;12339:52;12384:6;12379:3;12372:4;12365:5;12361:16;12339:52;:::i;:::-;12416:29;12438:6;12416:29;:::i;:::-;12411:3;12407:39;12400:46;;12180:272;12088:364;;;;:::o;12458:377::-;12564:3;12592:39;12625:5;12592:39;:::i;:::-;12647:89;12729:6;12724:3;12647:89;:::i;:::-;12640:96;;12745:52;12790:6;12785:3;12778:4;12771:5;12767:16;12745:52;:::i;:::-;12822:6;12817:3;12813:16;12806:23;;12568:267;12458:377;;;;:::o;12841:366::-;12983:3;13004:67;13068:2;13063:3;13004:67;:::i;:::-;12997:74;;13080:93;13169:3;13080:93;:::i;:::-;13198:2;13193:3;13189:12;13182:19;;12841:366;;;:::o;13213:::-;13355:3;13376:67;13440:2;13435:3;13376:67;:::i;:::-;13369:74;;13452:93;13541:3;13452:93;:::i;:::-;13570:2;13565:3;13561:12;13554:19;;13213:366;;;:::o;13585:::-;13727:3;13748:67;13812:2;13807:3;13748:67;:::i;:::-;13741:74;;13824:93;13913:3;13824:93;:::i;:::-;13942:2;13937:3;13933:12;13926:19;;13585:366;;;:::o;13957:::-;14099:3;14120:67;14184:2;14179:3;14120:67;:::i;:::-;14113:74;;14196:93;14285:3;14196:93;:::i;:::-;14314:2;14309:3;14305:12;14298:19;;13957:366;;;:::o;14329:::-;14471:3;14492:67;14556:2;14551:3;14492:67;:::i;:::-;14485:74;;14568:93;14657:3;14568:93;:::i;:::-;14686:2;14681:3;14677:12;14670:19;;14329:366;;;:::o;14701:::-;14843:3;14864:67;14928:2;14923:3;14864:67;:::i;:::-;14857:74;;14940:93;15029:3;14940:93;:::i;:::-;15058:2;15053:3;15049:12;15042:19;;14701:366;;;:::o;15073:::-;15215:3;15236:67;15300:2;15295:3;15236:67;:::i;:::-;15229:74;;15312:93;15401:3;15312:93;:::i;:::-;15430:2;15425:3;15421:12;15414:19;;15073:366;;;:::o;15445:::-;15587:3;15608:67;15672:2;15667:3;15608:67;:::i;:::-;15601:74;;15684:93;15773:3;15684:93;:::i;:::-;15802:2;15797:3;15793:12;15786:19;;15445:366;;;:::o;15817:::-;15959:3;15980:67;16044:2;16039:3;15980:67;:::i;:::-;15973:74;;16056:93;16145:3;16056:93;:::i;:::-;16174:2;16169:3;16165:12;16158:19;;15817:366;;;:::o;16189:::-;16331:3;16352:67;16416:2;16411:3;16352:67;:::i;:::-;16345:74;;16428:93;16517:3;16428:93;:::i;:::-;16546:2;16541:3;16537:12;16530:19;;16189:366;;;:::o;16561:::-;16703:3;16724:67;16788:2;16783:3;16724:67;:::i;:::-;16717:74;;16800:93;16889:3;16800:93;:::i;:::-;16918:2;16913:3;16909:12;16902:19;;16561:366;;;:::o;16933:::-;17075:3;17096:67;17160:2;17155:3;17096:67;:::i;:::-;17089:74;;17172:93;17261:3;17172:93;:::i;:::-;17290:2;17285:3;17281:12;17274:19;;16933:366;;;:::o;17305:::-;17447:3;17468:67;17532:2;17527:3;17468:67;:::i;:::-;17461:74;;17544:93;17633:3;17544:93;:::i;:::-;17662:2;17657:3;17653:12;17646:19;;17305:366;;;:::o;17677:::-;17819:3;17840:67;17904:2;17899:3;17840:67;:::i;:::-;17833:74;;17916:93;18005:3;17916:93;:::i;:::-;18034:2;18029:3;18025:12;18018:19;;17677:366;;;:::o;18049:::-;18191:3;18212:67;18276:2;18271:3;18212:67;:::i;:::-;18205:74;;18288:93;18377:3;18288:93;:::i;:::-;18406:2;18401:3;18397:12;18390:19;;18049:366;;;:::o;18421:::-;18563:3;18584:67;18648:2;18643:3;18584:67;:::i;:::-;18577:74;;18660:93;18749:3;18660:93;:::i;:::-;18778:2;18773:3;18769:12;18762:19;;18421:366;;;:::o;18793:::-;18935:3;18956:67;19020:2;19015:3;18956:67;:::i;:::-;18949:74;;19032:93;19121:3;19032:93;:::i;:::-;19150:2;19145:3;19141:12;19134:19;;18793:366;;;:::o;19165:::-;19307:3;19328:67;19392:2;19387:3;19328:67;:::i;:::-;19321:74;;19404:93;19493:3;19404:93;:::i;:::-;19522:2;19517:3;19513:12;19506:19;;19165:366;;;:::o;19537:402::-;19697:3;19718:85;19800:2;19795:3;19718:85;:::i;:::-;19711:92;;19812:93;19901:3;19812:93;:::i;:::-;19930:2;19925:3;19921:12;19914:19;;19537:402;;;:::o;19945:366::-;20087:3;20108:67;20172:2;20167:3;20108:67;:::i;:::-;20101:74;;20184:93;20273:3;20184:93;:::i;:::-;20302:2;20297:3;20293:12;20286:19;;19945:366;;;:::o;20317:::-;20459:3;20480:67;20544:2;20539:3;20480:67;:::i;:::-;20473:74;;20556:93;20645:3;20556:93;:::i;:::-;20674:2;20669:3;20665:12;20658:19;;20317:366;;;:::o;20689:402::-;20849:3;20870:85;20952:2;20947:3;20870:85;:::i;:::-;20863:92;;20964:93;21053:3;20964:93;:::i;:::-;21082:2;21077:3;21073:12;21066:19;;20689:402;;;:::o;21097:366::-;21239:3;21260:67;21324:2;21319:3;21260:67;:::i;:::-;21253:74;;21336:93;21425:3;21336:93;:::i;:::-;21454:2;21449:3;21445:12;21438:19;;21097:366;;;:::o;21469:118::-;21556:24;21574:5;21556:24;:::i;:::-;21551:3;21544:37;21469:118;;:::o;21593:115::-;21678:23;21695:5;21678:23;:::i;:::-;21673:3;21666:36;21593:115;;:::o;21714:256::-;21826:3;21841:75;21912:3;21903:6;21841:75;:::i;:::-;21941:2;21936:3;21932:12;21925:19;;21961:3;21954:10;;21714:256;;;;:::o;21976:967::-;22358:3;22380:148;22524:3;22380:148;:::i;:::-;22373:155;;22545:95;22636:3;22627:6;22545:95;:::i;:::-;22538:102;;22657:148;22801:3;22657:148;:::i;:::-;22650:155;;22822:95;22913:3;22904:6;22822:95;:::i;:::-;22815:102;;22934:3;22927:10;;21976:967;;;;;:::o;22949:222::-;23042:4;23080:2;23069:9;23065:18;23057:26;;23093:71;23161:1;23150:9;23146:17;23137:6;23093:71;:::i;:::-;22949:222;;;;:::o;23177:640::-;23372:4;23410:3;23399:9;23395:19;23387:27;;23424:71;23492:1;23481:9;23477:17;23468:6;23424:71;:::i;:::-;23505:72;23573:2;23562:9;23558:18;23549:6;23505:72;:::i;:::-;23587;23655:2;23644:9;23640:18;23631:6;23587:72;:::i;:::-;23706:9;23700:4;23696:20;23691:2;23680:9;23676:18;23669:48;23734:76;23805:4;23796:6;23734:76;:::i;:::-;23726:84;;23177:640;;;;;;;:::o;23823:332::-;23944:4;23982:2;23971:9;23967:18;23959:26;;23995:71;24063:1;24052:9;24048:17;24039:6;23995:71;:::i;:::-;24076:72;24144:2;24133:9;24129:18;24120:6;24076:72;:::i;:::-;23823:332;;;;;:::o;24161:210::-;24248:4;24286:2;24275:9;24271:18;24263:26;;24299:65;24361:1;24350:9;24346:17;24337:6;24299:65;:::i;:::-;24161:210;;;;:::o;24377:222::-;24470:4;24508:2;24497:9;24493:18;24485:26;;24521:71;24589:1;24578:9;24574:17;24565:6;24521:71;:::i;:::-;24377:222;;;;:::o;24605:333::-;24728:4;24766:2;24755:9;24751:18;24743:26;;24815:9;24809:4;24805:20;24801:1;24790:9;24786:17;24779:47;24843:88;24926:4;24917:6;24909;24843:88;:::i;:::-;24835:96;;24605:333;;;;;:::o;24944:313::-;25057:4;25095:2;25084:9;25080:18;25072:26;;25144:9;25138:4;25134:20;25130:1;25119:9;25115:17;25108:47;25172:78;25245:4;25236:6;25172:78;:::i;:::-;25164:86;;24944:313;;;;:::o;25263:419::-;25429:4;25467:2;25456:9;25452:18;25444:26;;25516:9;25510:4;25506:20;25502:1;25491:9;25487:17;25480:47;25544:131;25670:4;25544:131;:::i;:::-;25536:139;;25263:419;;;:::o;25688:::-;25854:4;25892:2;25881:9;25877:18;25869:26;;25941:9;25935:4;25931:20;25927:1;25916:9;25912:17;25905:47;25969:131;26095:4;25969:131;:::i;:::-;25961:139;;25688:419;;;:::o;26113:::-;26279:4;26317:2;26306:9;26302:18;26294:26;;26366:9;26360:4;26356:20;26352:1;26341:9;26337:17;26330:47;26394:131;26520:4;26394:131;:::i;:::-;26386:139;;26113:419;;;:::o;26538:::-;26704:4;26742:2;26731:9;26727:18;26719:26;;26791:9;26785:4;26781:20;26777:1;26766:9;26762:17;26755:47;26819:131;26945:4;26819:131;:::i;:::-;26811:139;;26538:419;;;:::o;26963:::-;27129:4;27167:2;27156:9;27152:18;27144:26;;27216:9;27210:4;27206:20;27202:1;27191:9;27187:17;27180:47;27244:131;27370:4;27244:131;:::i;:::-;27236:139;;26963:419;;;:::o;27388:::-;27554:4;27592:2;27581:9;27577:18;27569:26;;27641:9;27635:4;27631:20;27627:1;27616:9;27612:17;27605:47;27669:131;27795:4;27669:131;:::i;:::-;27661:139;;27388:419;;;:::o;27813:::-;27979:4;28017:2;28006:9;28002:18;27994:26;;28066:9;28060:4;28056:20;28052:1;28041:9;28037:17;28030:47;28094:131;28220:4;28094:131;:::i;:::-;28086:139;;27813:419;;;:::o;28238:::-;28404:4;28442:2;28431:9;28427:18;28419:26;;28491:9;28485:4;28481:20;28477:1;28466:9;28462:17;28455:47;28519:131;28645:4;28519:131;:::i;:::-;28511:139;;28238:419;;;:::o;28663:::-;28829:4;28867:2;28856:9;28852:18;28844:26;;28916:9;28910:4;28906:20;28902:1;28891:9;28887:17;28880:47;28944:131;29070:4;28944:131;:::i;:::-;28936:139;;28663:419;;;:::o;29088:::-;29254:4;29292:2;29281:9;29277:18;29269:26;;29341:9;29335:4;29331:20;29327:1;29316:9;29312:17;29305:47;29369:131;29495:4;29369:131;:::i;:::-;29361:139;;29088:419;;;:::o;29513:::-;29679:4;29717:2;29706:9;29702:18;29694:26;;29766:9;29760:4;29756:20;29752:1;29741:9;29737:17;29730:47;29794:131;29920:4;29794:131;:::i;:::-;29786:139;;29513:419;;;:::o;29938:::-;30104:4;30142:2;30131:9;30127:18;30119:26;;30191:9;30185:4;30181:20;30177:1;30166:9;30162:17;30155:47;30219:131;30345:4;30219:131;:::i;:::-;30211:139;;29938:419;;;:::o;30363:::-;30529:4;30567:2;30556:9;30552:18;30544:26;;30616:9;30610:4;30606:20;30602:1;30591:9;30587:17;30580:47;30644:131;30770:4;30644:131;:::i;:::-;30636:139;;30363:419;;;:::o;30788:::-;30954:4;30992:2;30981:9;30977:18;30969:26;;31041:9;31035:4;31031:20;31027:1;31016:9;31012:17;31005:47;31069:131;31195:4;31069:131;:::i;:::-;31061:139;;30788:419;;;:::o;31213:::-;31379:4;31417:2;31406:9;31402:18;31394:26;;31466:9;31460:4;31456:20;31452:1;31441:9;31437:17;31430:47;31494:131;31620:4;31494:131;:::i;:::-;31486:139;;31213:419;;;:::o;31638:::-;31804:4;31842:2;31831:9;31827:18;31819:26;;31891:9;31885:4;31881:20;31877:1;31866:9;31862:17;31855:47;31919:131;32045:4;31919:131;:::i;:::-;31911:139;;31638:419;;;:::o;32063:::-;32229:4;32267:2;32256:9;32252:18;32244:26;;32316:9;32310:4;32306:20;32302:1;32291:9;32287:17;32280:47;32344:131;32470:4;32344:131;:::i;:::-;32336:139;;32063:419;;;:::o;32488:::-;32654:4;32692:2;32681:9;32677:18;32669:26;;32741:9;32735:4;32731:20;32727:1;32716:9;32712:17;32705:47;32769:131;32895:4;32769:131;:::i;:::-;32761:139;;32488:419;;;:::o;32913:::-;33079:4;33117:2;33106:9;33102:18;33094:26;;33166:9;33160:4;33156:20;33152:1;33141:9;33137:17;33130:47;33194:131;33320:4;33194:131;:::i;:::-;33186:139;;32913:419;;;:::o;33338:::-;33504:4;33542:2;33531:9;33527:18;33519:26;;33591:9;33585:4;33581:20;33577:1;33566:9;33562:17;33555:47;33619:131;33745:4;33619:131;:::i;:::-;33611:139;;33338:419;;;:::o;33763:::-;33929:4;33967:2;33956:9;33952:18;33944:26;;34016:9;34010:4;34006:20;34002:1;33991:9;33987:17;33980:47;34044:131;34170:4;34044:131;:::i;:::-;34036:139;;33763:419;;;:::o;34188:222::-;34281:4;34319:2;34308:9;34304:18;34296:26;;34332:71;34400:1;34389:9;34385:17;34376:6;34332:71;:::i;:::-;34188:222;;;;:::o;34416:218::-;34507:4;34545:2;34534:9;34530:18;34522:26;;34558:69;34624:1;34613:9;34609:17;34600:6;34558:69;:::i;:::-;34416:218;;;;:::o;34640:129::-;34674:6;34701:20;;:::i;:::-;34691:30;;34730:33;34758:4;34750:6;34730:33;:::i;:::-;34640:129;;;:::o;34775:75::-;34808:6;34841:2;34835:9;34825:19;;34775:75;:::o;34856:307::-;34917:4;35007:18;34999:6;34996:30;34993:56;;;35029:18;;:::i;:::-;34993:56;35067:29;35089:6;35067:29;:::i;:::-;35059:37;;35151:4;35145;35141:15;35133:23;;34856:307;;;:::o;35169:308::-;35231:4;35321:18;35313:6;35310:30;35307:56;;;35343:18;;:::i;:::-;35307:56;35381:29;35403:6;35381:29;:::i;:::-;35373:37;;35465:4;35459;35455:15;35447:23;;35169:308;;;:::o;35483:98::-;35534:6;35568:5;35562:12;35552:22;;35483:98;;;:::o;35587:99::-;35639:6;35673:5;35667:12;35657:22;;35587:99;;;:::o;35692:168::-;35775:11;35809:6;35804:3;35797:19;35849:4;35844:3;35840:14;35825:29;;35692:168;;;;:::o;35866:169::-;35950:11;35984:6;35979:3;35972:19;36024:4;36019:3;36015:14;36000:29;;35866:169;;;;:::o;36041:148::-;36143:11;36180:3;36165:18;;36041:148;;;;:::o;36195:305::-;36235:3;36254:20;36272:1;36254:20;:::i;:::-;36249:25;;36288:20;36306:1;36288:20;:::i;:::-;36283:25;;36442:1;36374:66;36370:74;36367:1;36364:81;36361:107;;;36448:18;;:::i;:::-;36361:107;36492:1;36489;36485:9;36478:16;;36195:305;;;;:::o;36506:185::-;36546:1;36563:20;36581:1;36563:20;:::i;:::-;36558:25;;36597:20;36615:1;36597:20;:::i;:::-;36592:25;;36636:1;36626:35;;36641:18;;:::i;:::-;36626:35;36683:1;36680;36676:9;36671:14;;36506:185;;;;:::o;36697:348::-;36737:7;36760:20;36778:1;36760:20;:::i;:::-;36755:25;;36794:20;36812:1;36794:20;:::i;:::-;36789:25;;36982:1;36914:66;36910:74;36907:1;36904:81;36899:1;36892:9;36885:17;36881:105;36878:131;;;36989:18;;:::i;:::-;36878:131;37037:1;37034;37030:9;37019:20;;36697:348;;;;:::o;37051:191::-;37091:4;37111:20;37129:1;37111:20;:::i;:::-;37106:25;;37145:20;37163:1;37145:20;:::i;:::-;37140:25;;37184:1;37181;37178:8;37175:34;;;37189:18;;:::i;:::-;37175:34;37234:1;37231;37227:9;37219:17;;37051:191;;;;:::o;37248:96::-;37285:7;37314:24;37332:5;37314:24;:::i;:::-;37303:35;;37248:96;;;:::o;37350:90::-;37384:7;37427:5;37420:13;37413:21;37402:32;;37350:90;;;:::o;37446:77::-;37483:7;37512:5;37501:16;;37446:77;;;:::o;37529:149::-;37565:7;37605:66;37598:5;37594:78;37583:89;;37529:149;;;:::o;37684:126::-;37721:7;37761:42;37754:5;37750:54;37739:65;;37684:126;;;:::o;37816:77::-;37853:7;37882:5;37871:16;;37816:77;;;:::o;37899:109::-;37935:7;37975:26;37968:5;37964:38;37953:49;;37899:109;;;:::o;38014:154::-;38098:6;38093:3;38088;38075:30;38160:1;38151:6;38146:3;38142:16;38135:27;38014:154;;;:::o;38174:307::-;38242:1;38252:113;38266:6;38263:1;38260:13;38252:113;;;38351:1;38346:3;38342:11;38336:18;38332:1;38327:3;38323:11;38316:39;38288:2;38285:1;38281:10;38276:15;;38252:113;;;38383:6;38380:1;38377:13;38374:101;;;38463:1;38454:6;38449:3;38445:16;38438:27;38374:101;38223:258;38174:307;;;:::o;38487:171::-;38526:3;38549:24;38567:5;38549:24;:::i;:::-;38540:33;;38595:4;38588:5;38585:15;38582:41;;;38603:18;;:::i;:::-;38582:41;38650:1;38643:5;38639:13;38632:20;;38487:171;;;:::o;38664:320::-;38708:6;38745:1;38739:4;38735:12;38725:22;;38792:1;38786:4;38782:12;38813:18;38803:81;;38869:4;38861:6;38857:17;38847:27;;38803:81;38931:2;38923:6;38920:14;38900:18;38897:38;38894:84;;;38950:18;;:::i;:::-;38894:84;38715:269;38664:320;;;:::o;38990:281::-;39073:27;39095:4;39073:27;:::i;:::-;39065:6;39061:40;39203:6;39191:10;39188:22;39167:18;39155:10;39152:34;39149:62;39146:88;;;39214:18;;:::i;:::-;39146:88;39254:10;39250:2;39243:22;39033:238;38990:281;;:::o;39277:233::-;39316:3;39339:24;39357:5;39339:24;:::i;:::-;39330:33;;39385:66;39378:5;39375:77;39372:103;;;39455:18;;:::i;:::-;39372:103;39502:1;39495:5;39491:13;39484:20;;39277:233;;;:::o;39516:100::-;39555:7;39584:26;39604:5;39584:26;:::i;:::-;39573:37;;39516:100;;;:::o;39622:94::-;39661:7;39690:20;39704:5;39690:20;:::i;:::-;39679:31;;39622:94;;;:::o;39722:180::-;39770:77;39767:1;39760:88;39867:4;39864:1;39857:15;39891:4;39888:1;39881:15;39908:180;39956:77;39953:1;39946:88;40053:4;40050:1;40043:15;40077:4;40074:1;40067:15;40094:180;40142:77;40139:1;40132:88;40239:4;40236:1;40229:15;40263:4;40260:1;40253:15;40280:180;40328:77;40325:1;40318:88;40425:4;40422:1;40415:15;40449:4;40446:1;40439:15;40466:180;40514:77;40511:1;40504:88;40611:4;40608:1;40601:15;40635:4;40632:1;40625:15;40652:117;40761:1;40758;40751:12;40775:117;40884:1;40881;40874:12;40898:117;41007:1;41004;40997:12;41021:117;41130:1;41127;41120:12;41144:117;41253:1;41250;41243:12;41267:117;41376:1;41373;41366:12;41390:102;41431:6;41482:2;41478:7;41473:2;41466:5;41462:14;41458:28;41448:38;;41390:102;;;:::o;41498:94::-;41531:8;41579:5;41575:2;41571:14;41550:35;;41498:94;;;:::o;41598:182::-;41738:34;41734:1;41726:6;41722:14;41715:58;41598:182;:::o;41786:237::-;41926:34;41922:1;41914:6;41910:14;41903:58;41995:20;41990:2;41982:6;41978:15;41971:45;41786:237;:::o;42029:167::-;42169:19;42165:1;42157:6;42153:14;42146:43;42029:167;:::o;42202:224::-;42342:34;42338:1;42330:6;42326:14;42319:58;42411:7;42406:2;42398:6;42394:15;42387:32;42202:224;:::o;42432:178::-;42572:30;42568:1;42560:6;42556:14;42549:54;42432:178;:::o;42616:166::-;42756:18;42752:1;42744:6;42740:14;42733:42;42616:166;:::o;42788:223::-;42928:34;42924:1;42916:6;42912:14;42905:58;42997:6;42992:2;42984:6;42980:15;42973:31;42788:223;:::o;43017:175::-;43157:27;43153:1;43145:6;43141:14;43134:51;43017:175;:::o;43198:173::-;43338:25;43334:1;43326:6;43322:14;43315:49;43198:173;:::o;43377:180::-;43517:32;43513:1;43505:6;43501:14;43494:56;43377:180;:::o;43563:166::-;43703:18;43699:1;43691:6;43687:14;43680:42;43563:166;:::o;43735:228::-;43875:34;43871:1;43863:6;43859:14;43852:58;43944:11;43939:2;43931:6;43927:15;43920:36;43735:228;:::o;43969:249::-;44109:34;44105:1;44097:6;44093:14;44086:58;44178:32;44173:2;44165:6;44161:15;44154:57;43969:249;:::o;44224:182::-;44364:34;44360:1;44352:6;44348:14;44341:58;44224:182;:::o;44412:::-;44552:34;44548:1;44540:6;44536:14;44529:58;44412:182;:::o;44600:234::-;44740:34;44736:1;44728:6;44724:14;44717:58;44809:17;44804:2;44796:6;44792:15;44785:42;44600:234;:::o;44840:174::-;44980:26;44976:1;44968:6;44964:14;44957:50;44840:174;:::o;45020:220::-;45160:34;45156:1;45148:6;45144:14;45137:58;45229:3;45224:2;45216:6;45212:15;45205:28;45020:220;:::o;45246:173::-;45386:25;45382:1;45374:6;45370:14;45363:49;45246:173;:::o;45425:163::-;45565:15;45561:1;45553:6;45549:14;45542:39;45425:163;:::o;45594:233::-;45734:34;45730:1;45722:6;45718:14;45711:58;45803:16;45798:2;45790:6;45786:15;45779:41;45594:233;:::o;45833:167::-;45973:19;45969:1;45961:6;45957:14;45950:43;45833:167;:::o;46006:234::-;46146:34;46142:1;46134:6;46130:14;46123:58;46215:17;46210:2;46202:6;46198:15;46191:42;46006:234;:::o;46246:122::-;46319:24;46337:5;46319:24;:::i;:::-;46312:5;46309:35;46299:63;;46358:1;46355;46348:12;46299:63;46246:122;:::o;46374:116::-;46444:21;46459:5;46444:21;:::i;:::-;46437:5;46434:32;46424:60;;46480:1;46477;46470:12;46424:60;46374:116;:::o;46496:122::-;46569:24;46587:5;46569:24;:::i;:::-;46562:5;46559:35;46549:63;;46608:1;46605;46598:12;46549:63;46496:122;:::o;46624:120::-;46696:23;46713:5;46696:23;:::i;:::-;46689:5;46686:34;46676:62;;46734:1;46731;46724:12;46676:62;46624:120;:::o;46750:122::-;46823:24;46841:5;46823:24;:::i;:::-;46816:5;46813:35;46803:63;;46862:1;46859;46852:12;46803:63;46750:122;:::o

Swarm Source

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