ETH Price: $3,159.17 (-2.94%)

Token

OCTOLITEv2 (OCTOII)
 

Overview

Max Total Supply

333 OCTOII

Holders

106

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 OCTOII
0x06da141942beadc75485d4fa24e265062de1656d
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:
OCTOLITEv2

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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



/*
   ___     ___   _______   ___   .     _  _______ .____ 
 .'   `. .'   \ '   /    .'   `. /     | '   /    /     
 |     | |          |    |     | |     |     |    |__.  
 |     | |          |    |     | |     |     |    |     
  `.__.'  `.__,     /     `.__.' /---/ /     /    /----/

  
                                                        
*/

pragma solidity ^0.8.4;





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

    uint256 public promoMaxMint = 300;
    uint256 public MAX_MINTS = 6;
    uint256 public MAX_SUPPLY = 3333;
    uint256 public price = 0.07 ether;
    string baseURI;
    string public baseExtension = ".json";
    string public notRevealedURI;
    bool private revealed = false;

    constructor(
        string memory _initBaseURI,
        string memory _initHiddenURI
    )
    ERC721A("OCTOLITEv2", "OCTOII") {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initHiddenURI);
    }
    
    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }  
    
    function _baseURI() internal view virtual override returns (string memory) {
      return baseURI;
    }
    
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
      notRevealedURI = _notRevealedURI;
    }

   function reveal() public onlyOwner {
      revealed = true;
    }

    function promoMint(uint256 quantity)external payable onlyOwner{
      require(totalSupply() + quantity <= MAX_SUPPLY, "There's none left to mint");
      require(quantity + _numberMinted(msg.sender) <=  promoMaxMint, "You minted 300 already dummy.");

      _safeMint(msg.sender, quantity);
    }
 
    function mint(uint256 quantity) external payable whenNotPaused {
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit");
        require(totalSupply() + quantity <= MAX_SUPPLY, "You're too late. How did you miss this?");
        require(msg.value >= (price * quantity), "Not enough ether sent");

        _safeMint(msg.sender, quantity);
    }

    function compWallet() external payable onlyOwner nonReentrant{
        payable(owner()).transfer(address(this).balance);
    }
    
    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
   {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedURI;
    }
    
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
   }

   function distributeShares() public onlyOwner nonReentrant {
     (bool payee, ) = payable(0x6Bd886501a119f2ccFE5a249E12F5CB3e0e95204).call{value: address(this).balance * 13 / 100}("");
     require(payee);

     (bool push, ) = payable(owner()).call{value: address(this).balance}("");
     require(push);
   }  
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initHiddenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"compWallet","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"distributeShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"promoMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"promoMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261012c600a556006600b55610d05600c5566f8b0a10e470000600d556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f90805190602001906200006d92919062000417565b506000601160006101000a81548160ff0219169083151502179055503480156200009657600080fd5b5060405162004c6038038062004c608339818101604052810190620000bc919062000539565b6040518060400160405280600a81526020017f4f43544f4c4954457632000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4f43544f4949000000000000000000000000000000000000000000000000000081525081600190805190602001906200014092919062000417565b5080600290805190602001906200015992919062000417565b5050506200017c62000170620001c960201b60201c565b620001d160201b60201c565b60016008819055506000600960006101000a81548160ff021916908315150217905550620001b0826200029760201b60201c565b620001c1816200034260201b60201c565b50506200079f565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a7620001c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002cd620003ed60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000326576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031d90620005d3565b60405180910390fd5b80600e90805190602001906200033e92919062000417565b5050565b62000352620001c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000378620003ed60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c890620005d3565b60405180910390fd5b8060109080519060200190620003e992919062000417565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000425906200069b565b90600052602060002090601f01602090048101928262000449576000855562000495565b82601f106200046457805160ff191683800117855562000495565b8280016001018555821562000495579182015b828111156200049457825182559160200191906001019062000477565b5b509050620004a49190620004a8565b5090565b5b80821115620004c3576000816000905550600101620004a9565b5090565b6000620004de620004d8846200061e565b620005f5565b905082815260208101848484011115620004f757600080fd5b6200050484828562000665565b509392505050565b600082601f8301126200051e57600080fd5b815162000530848260208601620004c7565b91505092915050565b600080604083850312156200054d57600080fd5b600083015167ffffffffffffffff8111156200056857600080fd5b62000576858286016200050c565b925050602083015167ffffffffffffffff8111156200059457600080fd5b620005a2858286016200050c565b9150509250929050565b6000620005bb60208362000654565b9150620005c88262000776565b602082019050919050565b60006020820190508181036000830152620005ee81620005ac565b9050919050565b60006200060162000614565b90506200060f8282620006d1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200063c576200063b62000736565b5b620006478262000765565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200068557808201518184015260208101905062000668565b8381111562000695576000848401525b50505050565b60006002820490506001821680620006b457607f821691505b60208210811415620006cb57620006ca62000707565b5b50919050565b620006dc8262000765565b810181811067ffffffffffffffff82111715620006fe57620006fd62000736565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6144b180620007af6000396000f3fe6080604052600436106102045760003560e01c80637225038011610118578063b88d4fde116100a0578063cce132d11161006f578063cce132d114610703578063e660dd541461072e578063e985e9c514610738578063f2c4ce1e14610775578063f2fde38b1461079e57610204565b8063b88d4fde14610656578063c66828621461067f578063c87b56dd146106aa578063cbfbb288146106e757610204565b806395d89b41116100e757806395d89b41146105a4578063a035b1fe146105cf578063a0712d68146105fa578063a22cb46514610616578063a475b5dd1461063f57610204565b8063722503801461050c5780638456cb59146105375780638da5cb5b1461054e5780638e1981931461057957610204565b80633f4ba83a1161019b57806355f804b31161016a57806355f804b3146104275780635c975abb146104505780636352211e1461047b57806370a08231146104b8578063715018a6146104f557610204565b80633f4ba83a1461039357806342842e0e146103aa578063429e3846146103d35780634f6ccce7146103ea57610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b57806332cb6b0c1461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613774565b6107c7565b60405161023d9190613bd0565b60405180910390f35b34801561025257600080fd5b5061025b610911565b6040516102689190613beb565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613807565b6109a3565b6040516102a59190613b69565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613738565b610a1f565b005b3480156102e357600080fd5b506102ec610b2a565b6040516102f99190613d6d565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613632565b610b7f565b005b34801561033757600080fd5b50610352600480360381019061034d9190613738565b610b8f565b60405161035f9190613d6d565b60405180910390f35b34801561037457600080fd5b5061037d610d96565b60405161038a9190613d6d565b60405180910390f35b34801561039f57600080fd5b506103a8610d9c565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613632565b610e22565b005b3480156103df57600080fd5b506103e8610e42565b005b3480156103f657600080fd5b50610411600480360381019061040c9190613807565b611037565b60405161041e9190613d6d565b60405180910390f35b34801561043357600080fd5b5061044e600480360381019061044991906137c6565b6111a8565b005b34801561045c57600080fd5b5061046561123e565b6040516104729190613bd0565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190613807565b611255565b6040516104af9190613b69565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906135cd565b61126b565b6040516104ec9190613d6d565b60405180910390f35b34801561050157600080fd5b5061050a61133b565b005b34801561051857600080fd5b506105216113c3565b60405161052e9190613beb565b60405180910390f35b34801561054357600080fd5b5061054c611451565b005b34801561055a57600080fd5b506105636114d7565b6040516105709190613b69565b60405180910390f35b34801561058557600080fd5b5061058e611501565b60405161059b9190613d6d565b60405180910390f35b3480156105b057600080fd5b506105b9611507565b6040516105c69190613beb565b60405180910390f35b3480156105db57600080fd5b506105e4611599565b6040516105f19190613d6d565b60405180910390f35b610614600480360381019061060f9190613807565b61159f565b005b34801561062257600080fd5b5061063d600480360381019061063891906136fc565b6116f3565b005b34801561064b57600080fd5b5061065461186b565b005b34801561066257600080fd5b5061067d60048036038101906106789190613681565b611904565b005b34801561068b57600080fd5b50610694611957565b6040516106a19190613beb565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190613807565b6119e5565b6040516106de9190613beb565b60405180910390f35b61070160048036038101906106fc9190613807565b611b3e565b005b34801561070f57600080fd5b50610718611c76565b6040516107259190613d6d565b60405180910390f35b610736611c7c565b005b34801561074457600080fd5b5061075f600480360381019061075a91906135f6565b611d9e565b60405161076c9190613bd0565b60405180910390f35b34801561078157600080fd5b5061079c600480360381019061079791906137c6565b611e32565b005b3480156107aa57600080fd5b506107c560048036038101906107c091906135cd565b611ec8565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108fa57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090a575061090982611fc0565b5b9050919050565b6060600180546109209061403d565b80601f016020809104026020016040519081016040528092919081815260200182805461094c9061403d565b80156109995780601f1061096e57610100808354040283529160200191610999565b820191906000526020600020905b81548152906001019060200180831161097c57829003601f168201915b5050505050905090565b60006109ae8261202a565b6109e4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2a82611255565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a92576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab1612092565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ae35750610ae181610adc612092565b611d9e565b155b15610b1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2583838361209a565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610b8a83838361214c565b505050565b6000610b9a8361126b565b8210610bd2576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610d8a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610ce95750610d7d565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d2957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d7b5786841415610d72578195505050505050610d90565b83806001019450505b505b8080600101915050610c0c565b50600080fd5b92915050565b600c5481565b610da4612092565b73ffffffffffffffffffffffffffffffffffffffff16610dc26114d7565b73ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90613ccd565b60405180910390fd5b610e20612669565b565b610e3d83838360405180602001604052806000815250611904565b505050565b610e4a612092565b73ffffffffffffffffffffffffffffffffffffffff16610e686114d7565b73ffffffffffffffffffffffffffffffffffffffff1614610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590613ccd565b60405180910390fd5b60026008541415610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90613d4d565b60405180910390fd5b60026008819055506000736bd886501a119f2ccfe5a249e12f5cb3e0e9520473ffffffffffffffffffffffffffffffffffffffff166064600d47610f489190613ef9565b610f529190613ec8565b604051610f5e90613b54565b60006040518083038185875af1925050503d8060008114610f9b576040519150601f19603f3d011682016040523d82523d6000602084013e610fa0565b606091505b5050905080610fae57600080fd5b6000610fb86114d7565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fdb90613b54565b60006040518083038185875af1925050503d8060008114611018576040519150601f19603f3d011682016040523d82523d6000602084013e61101d565b606091505b505090508061102b57600080fd5b50506001600881905550565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015611170576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611162578583141561115957819450505050506111a3565b82806001019350505b50808060010191505061106f565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6111b0612092565b73ffffffffffffffffffffffffffffffffffffffff166111ce6114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90613ccd565b60405180910390fd5b80600e908051906020019061123a9291906133ae565b5050565b6000600960009054906101000a900460ff16905090565b60006112608261270b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611343612092565b73ffffffffffffffffffffffffffffffffffffffff166113616114d7565b73ffffffffffffffffffffffffffffffffffffffff16146113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90613ccd565b60405180910390fd5b6113c160006129b3565b565b601080546113d09061403d565b80601f01602080910402602001604051908101604052809291908181526020018280546113fc9061403d565b80156114495780601f1061141e57610100808354040283529160200191611449565b820191906000526020600020905b81548152906001019060200180831161142c57829003601f168201915b505050505081565b611459612092565b73ffffffffffffffffffffffffffffffffffffffff166114776114d7565b73ffffffffffffffffffffffffffffffffffffffff16146114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490613ccd565b60405180910390fd5b6114d5612a79565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b6060600280546115169061403d565b80601f01602080910402602001604051908101604052809291908181526020018280546115429061403d565b801561158f5780601f106115645761010080835404028352916020019161158f565b820191906000526020600020905b81548152906001019060200180831161157257829003601f168201915b5050505050905090565b600d5481565b6115a761123e565b156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613c8d565b60405180910390fd5b600b546115f333612b1c565b826115fe9190613e72565b111561163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690613c6d565b60405180910390fd5b600c548161164b610b2a565b6116559190613e72565b1115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90613c0d565b60405180910390fd5b80600d546116a49190613ef9565b3410156116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd90613d2d565b60405180910390fd5b6116f03382612bec565b50565b6116fb612092565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611760576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061176d612092565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661181a612092565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161185f9190613bd0565b60405180910390a35050565b611873612092565b73ffffffffffffffffffffffffffffffffffffffff166118916114d7565b73ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613ccd565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b61190f84848461214c565b61191b84848484612c0a565b611951576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600f80546119649061403d565b80601f01602080910402602001604051908101604052809291908181526020018280546119909061403d565b80156119dd5780601f106119b2576101008083540402835291602001916119dd565b820191906000526020600020905b8154815290600101906020018083116119c057829003601f168201915b505050505081565b60606119f08261202a565b611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690613ced565b60405180910390fd5b60001515601160009054906101000a900460ff1615151415611add5760108054611a589061403d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a849061403d565b8015611ad15780601f10611aa657610100808354040283529160200191611ad1565b820191906000526020600020905b815481529060010190602001808311611ab457829003601f168201915b50505050509050611b39565b6000611ae7612d98565b90506000815111611b075760405180602001604052806000815250611b35565b80611b1184612e2a565b600f604051602001611b2593929190613b23565b6040516020818303038152906040525b9150505b919050565b611b46612092565b73ffffffffffffffffffffffffffffffffffffffff16611b646114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb190613ccd565b60405180910390fd5b600c5481611bc6610b2a565b611bd09190613e72565b1115611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0890613d0d565b60405180910390fd5b600a54611c1d33612b1c565b82611c289190613e72565b1115611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613cad565b60405180910390fd5b611c733382612bec565b50565b600b5481565b611c84612092565b73ffffffffffffffffffffffffffffffffffffffff16611ca26114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cef90613ccd565b60405180910390fd5b60026008541415611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3590613d4d565b60405180910390fd5b6002600881905550611d4e6114d7565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611d93573d6000803e3d6000fd5b506001600881905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e3a612092565b73ffffffffffffffffffffffffffffffffffffffff16611e586114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea590613ccd565b60405180910390fd5b8060109080519060200190611ec49291906133ae565b5050565b611ed0612092565b73ffffffffffffffffffffffffffffffffffffffff16611eee6114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90613ccd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab90613c4d565b60405180910390fd5b611fbd816129b3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168210801561208b575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121578261270b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661217e612092565b73ffffffffffffffffffffffffffffffffffffffff1614806121b157506121b082600001516121ab612092565b611d9e565b5b806121f657506121bf612092565b73ffffffffffffffffffffffffffffffffffffffff166121de846109a3565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061222f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612298576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122ff576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61230c8585856001612fd7565b61231c600084846000015161209a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125f95760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156125f85782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126628585856001612fdd565b5050505050565b61267161123e565b6126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790613c2d565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126f4612092565b6040516127019190613b69565b60405180910390a1565b612713613434565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561297c576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161297a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461285e5780925050506129ae565b5b60011561297957818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129745780925050506129ae565b61285f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a8161123e565b15612ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab890613c8d565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612b05612092565b604051612b129190613b69565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b84576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b612c06828260405180602001604052806000815250612fe3565b5050565b6000612c2b8473ffffffffffffffffffffffffffffffffffffffff16612ff5565b15612d8b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c54612092565b8786866040518563ffffffff1660e01b8152600401612c769493929190613b84565b602060405180830381600087803b158015612c9057600080fd5b505af1925050508015612cc157506040513d601f19601f82011682018060405250810190612cbe919061379d565b60015b612d3b573d8060008114612cf1576040519150601f19603f3d011682016040523d82523d6000602084013e612cf6565b606091505b50600081511415612d33576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d90565b600190505b949350505050565b6060600e8054612da79061403d565b80601f0160208091040260200160405190810160405280929190818152602001828054612dd39061403d565b8015612e205780601f10612df557610100808354040283529160200191612e20565b820191906000526020600020905b815481529060010190602001808311612e0357829003601f168201915b5050505050905090565b60606000821415612e72576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fd2565b600082905060005b60008214612ea4578080612e8d906140a0565b915050600a82612e9d9190613ec8565b9150612e7a565b60008167ffffffffffffffff811115612ee6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f185781602001600182028036833780820191505090505b5090505b60008514612fcb57600182612f319190613f53565b9150600a85612f4091906140e9565b6030612f4c9190613e72565b60f81b818381518110612f88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fc49190613ec8565b9450612f1c565b8093505050505b919050565b50505050565b50505050565b612ff08383836001613018565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156130b3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156130ee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130fb6000868387612fd7565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561336057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561331457506133126000888488612c0a565b155b1561334b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613299565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506133a76000868387612fdd565b5050505050565b8280546133ba9061403d565b90600052602060002090601f0160209004810192826133dc5760008555613423565b82601f106133f557805160ff1916838001178555613423565b82800160010185558215613423579182015b82811115613422578251825591602001919060010190613407565b5b5090506134309190613477565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613490576000816000905550600101613478565b5090565b60006134a76134a284613dad565b613d88565b9050828152602081018484840111156134bf57600080fd5b6134ca848285613ffb565b509392505050565b60006134e56134e084613dde565b613d88565b9050828152602081018484840111156134fd57600080fd5b613508848285613ffb565b509392505050565b60008135905061351f8161441f565b92915050565b60008135905061353481614436565b92915050565b6000813590506135498161444d565b92915050565b60008151905061355e8161444d565b92915050565b600082601f83011261357557600080fd5b8135613585848260208601613494565b91505092915050565b600082601f83011261359f57600080fd5b81356135af8482602086016134d2565b91505092915050565b6000813590506135c781614464565b92915050565b6000602082840312156135df57600080fd5b60006135ed84828501613510565b91505092915050565b6000806040838503121561360957600080fd5b600061361785828601613510565b925050602061362885828601613510565b9150509250929050565b60008060006060848603121561364757600080fd5b600061365586828701613510565b935050602061366686828701613510565b9250506040613677868287016135b8565b9150509250925092565b6000806000806080858703121561369757600080fd5b60006136a587828801613510565b94505060206136b687828801613510565b93505060406136c7878288016135b8565b925050606085013567ffffffffffffffff8111156136e457600080fd5b6136f087828801613564565b91505092959194509250565b6000806040838503121561370f57600080fd5b600061371d85828601613510565b925050602061372e85828601613525565b9150509250929050565b6000806040838503121561374b57600080fd5b600061375985828601613510565b925050602061376a858286016135b8565b9150509250929050565b60006020828403121561378657600080fd5b60006137948482850161353a565b91505092915050565b6000602082840312156137af57600080fd5b60006137bd8482850161354f565b91505092915050565b6000602082840312156137d857600080fd5b600082013567ffffffffffffffff8111156137f257600080fd5b6137fe8482850161358e565b91505092915050565b60006020828403121561381957600080fd5b6000613827848285016135b8565b91505092915050565b61383981613f87565b82525050565b61384881613f99565b82525050565b600061385982613e24565b6138638185613e3a565b935061387381856020860161400a565b61387c816141d6565b840191505092915050565b600061389282613e2f565b61389c8185613e56565b93506138ac81856020860161400a565b6138b5816141d6565b840191505092915050565b60006138cb82613e2f565b6138d58185613e67565b93506138e581856020860161400a565b80840191505092915050565b600081546138fe8161403d565b6139088186613e67565b94506001821660008114613923576001811461393457613967565b60ff19831686528186019350613967565b61393d85613e0f565b60005b8381101561395f57815481890152600182019150602081019050613940565b838801955050505b50505092915050565b600061397d602783613e56565b9150613988826141e7565b604082019050919050565b60006139a0601483613e56565b91506139ab82614236565b602082019050919050565b60006139c3602683613e56565b91506139ce8261425f565b604082019050919050565b60006139e6601283613e56565b91506139f1826142ae565b602082019050919050565b6000613a09601083613e56565b9150613a14826142d7565b602082019050919050565b6000613a2c601d83613e56565b9150613a3782614300565b602082019050919050565b6000613a4f602083613e56565b9150613a5a82614329565b602082019050919050565b6000613a72602f83613e56565b9150613a7d82614352565b604082019050919050565b6000613a95601983613e56565b9150613aa0826143a1565b602082019050919050565b6000613ab8600083613e4b565b9150613ac3826143ca565b600082019050919050565b6000613adb601583613e56565b9150613ae6826143cd565b602082019050919050565b6000613afe601f83613e56565b9150613b09826143f6565b602082019050919050565b613b1d81613ff1565b82525050565b6000613b2f82866138c0565b9150613b3b82856138c0565b9150613b4782846138f1565b9150819050949350505050565b6000613b5f82613aab565b9150819050919050565b6000602082019050613b7e6000830184613830565b92915050565b6000608082019050613b996000830187613830565b613ba66020830186613830565b613bb36040830185613b14565b8181036060830152613bc5818461384e565b905095945050505050565b6000602082019050613be5600083018461383f565b92915050565b60006020820190508181036000830152613c058184613887565b905092915050565b60006020820190508181036000830152613c2681613970565b9050919050565b60006020820190508181036000830152613c4681613993565b9050919050565b60006020820190508181036000830152613c66816139b6565b9050919050565b60006020820190508181036000830152613c86816139d9565b9050919050565b60006020820190508181036000830152613ca6816139fc565b9050919050565b60006020820190508181036000830152613cc681613a1f565b9050919050565b60006020820190508181036000830152613ce681613a42565b9050919050565b60006020820190508181036000830152613d0681613a65565b9050919050565b60006020820190508181036000830152613d2681613a88565b9050919050565b60006020820190508181036000830152613d4681613ace565b9050919050565b60006020820190508181036000830152613d6681613af1565b9050919050565b6000602082019050613d826000830184613b14565b92915050565b6000613d92613da3565b9050613d9e828261406f565b919050565b6000604051905090565b600067ffffffffffffffff821115613dc857613dc76141a7565b5b613dd1826141d6565b9050602081019050919050565b600067ffffffffffffffff821115613df957613df86141a7565b5b613e02826141d6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e7d82613ff1565b9150613e8883613ff1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ebd57613ebc61411a565b5b828201905092915050565b6000613ed382613ff1565b9150613ede83613ff1565b925082613eee57613eed614149565b5b828204905092915050565b6000613f0482613ff1565b9150613f0f83613ff1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f4857613f4761411a565b5b828202905092915050565b6000613f5e82613ff1565b9150613f6983613ff1565b925082821015613f7c57613f7b61411a565b5b828203905092915050565b6000613f9282613fd1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561402857808201518184015260208101905061400d565b83811115614037576000848401525b50505050565b6000600282049050600182168061405557607f821691505b6020821081141561406957614068614178565b5b50919050565b614078826141d6565b810181811067ffffffffffffffff82111715614097576140966141a7565b5b80604052505050565b60006140ab82613ff1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140de576140dd61411a565b5b600182019050919050565b60006140f482613ff1565b91506140ff83613ff1565b92508261410f5761410e614149565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f7527726520746f6f206c6174652e20486f772064696420796f75206d697360008201527f7320746869733f00000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f596f75206d696e7465642033303020616c72656164792064756d6d792e000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f54686572652773206e6f6e65206c65667420746f206d696e7400000000000000600082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61442881613f87565b811461443357600080fd5b50565b61443f81613f99565b811461444a57600080fd5b50565b61445681613fa5565b811461446157600080fd5b50565b61446d81613ff1565b811461447857600080fd5b5056fea2646970667358221220b74276f74721d12ec1580991dada0711b4fcfe74a54a604795a34773aa40902064736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5675725845514d45724e454c69354546684e754b5469356e476d7347556a444e477a636f67656e6f467534762f000000000000000000000000000000000000000000000000000000000000000000000000000000000049697066733a2f2f516d5251366354336f70686d5a395669615265344542324e784e43374245716e553737374c43395a73353636584c2f68696464656e4d6574614f43544f2e6a736f6e0000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80637225038011610118578063b88d4fde116100a0578063cce132d11161006f578063cce132d114610703578063e660dd541461072e578063e985e9c514610738578063f2c4ce1e14610775578063f2fde38b1461079e57610204565b8063b88d4fde14610656578063c66828621461067f578063c87b56dd146106aa578063cbfbb288146106e757610204565b806395d89b41116100e757806395d89b41146105a4578063a035b1fe146105cf578063a0712d68146105fa578063a22cb46514610616578063a475b5dd1461063f57610204565b8063722503801461050c5780638456cb59146105375780638da5cb5b1461054e5780638e1981931461057957610204565b80633f4ba83a1161019b57806355f804b31161016a57806355f804b3146104275780635c975abb146104505780636352211e1461047b57806370a08231146104b8578063715018a6146104f557610204565b80633f4ba83a1461039357806342842e0e146103aa578063429e3846146103d35780634f6ccce7146103ea57610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b57806332cb6b0c1461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613774565b6107c7565b60405161023d9190613bd0565b60405180910390f35b34801561025257600080fd5b5061025b610911565b6040516102689190613beb565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613807565b6109a3565b6040516102a59190613b69565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613738565b610a1f565b005b3480156102e357600080fd5b506102ec610b2a565b6040516102f99190613d6d565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613632565b610b7f565b005b34801561033757600080fd5b50610352600480360381019061034d9190613738565b610b8f565b60405161035f9190613d6d565b60405180910390f35b34801561037457600080fd5b5061037d610d96565b60405161038a9190613d6d565b60405180910390f35b34801561039f57600080fd5b506103a8610d9c565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613632565b610e22565b005b3480156103df57600080fd5b506103e8610e42565b005b3480156103f657600080fd5b50610411600480360381019061040c9190613807565b611037565b60405161041e9190613d6d565b60405180910390f35b34801561043357600080fd5b5061044e600480360381019061044991906137c6565b6111a8565b005b34801561045c57600080fd5b5061046561123e565b6040516104729190613bd0565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190613807565b611255565b6040516104af9190613b69565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906135cd565b61126b565b6040516104ec9190613d6d565b60405180910390f35b34801561050157600080fd5b5061050a61133b565b005b34801561051857600080fd5b506105216113c3565b60405161052e9190613beb565b60405180910390f35b34801561054357600080fd5b5061054c611451565b005b34801561055a57600080fd5b506105636114d7565b6040516105709190613b69565b60405180910390f35b34801561058557600080fd5b5061058e611501565b60405161059b9190613d6d565b60405180910390f35b3480156105b057600080fd5b506105b9611507565b6040516105c69190613beb565b60405180910390f35b3480156105db57600080fd5b506105e4611599565b6040516105f19190613d6d565b60405180910390f35b610614600480360381019061060f9190613807565b61159f565b005b34801561062257600080fd5b5061063d600480360381019061063891906136fc565b6116f3565b005b34801561064b57600080fd5b5061065461186b565b005b34801561066257600080fd5b5061067d60048036038101906106789190613681565b611904565b005b34801561068b57600080fd5b50610694611957565b6040516106a19190613beb565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190613807565b6119e5565b6040516106de9190613beb565b60405180910390f35b61070160048036038101906106fc9190613807565b611b3e565b005b34801561070f57600080fd5b50610718611c76565b6040516107259190613d6d565b60405180910390f35b610736611c7c565b005b34801561074457600080fd5b5061075f600480360381019061075a91906135f6565b611d9e565b60405161076c9190613bd0565b60405180910390f35b34801561078157600080fd5b5061079c600480360381019061079791906137c6565b611e32565b005b3480156107aa57600080fd5b506107c560048036038101906107c091906135cd565b611ec8565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108fa57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090a575061090982611fc0565b5b9050919050565b6060600180546109209061403d565b80601f016020809104026020016040519081016040528092919081815260200182805461094c9061403d565b80156109995780601f1061096e57610100808354040283529160200191610999565b820191906000526020600020905b81548152906001019060200180831161097c57829003601f168201915b5050505050905090565b60006109ae8261202a565b6109e4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2a82611255565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a92576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab1612092565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ae35750610ae181610adc612092565b611d9e565b155b15610b1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2583838361209a565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610b8a83838361214c565b505050565b6000610b9a8361126b565b8210610bd2576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610d8a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610ce95750610d7d565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d2957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d7b5786841415610d72578195505050505050610d90565b83806001019450505b505b8080600101915050610c0c565b50600080fd5b92915050565b600c5481565b610da4612092565b73ffffffffffffffffffffffffffffffffffffffff16610dc26114d7565b73ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90613ccd565b60405180910390fd5b610e20612669565b565b610e3d83838360405180602001604052806000815250611904565b505050565b610e4a612092565b73ffffffffffffffffffffffffffffffffffffffff16610e686114d7565b73ffffffffffffffffffffffffffffffffffffffff1614610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590613ccd565b60405180910390fd5b60026008541415610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90613d4d565b60405180910390fd5b60026008819055506000736bd886501a119f2ccfe5a249e12f5cb3e0e9520473ffffffffffffffffffffffffffffffffffffffff166064600d47610f489190613ef9565b610f529190613ec8565b604051610f5e90613b54565b60006040518083038185875af1925050503d8060008114610f9b576040519150601f19603f3d011682016040523d82523d6000602084013e610fa0565b606091505b5050905080610fae57600080fd5b6000610fb86114d7565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fdb90613b54565b60006040518083038185875af1925050503d8060008114611018576040519150601f19603f3d011682016040523d82523d6000602084013e61101d565b606091505b505090508061102b57600080fd5b50506001600881905550565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015611170576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611162578583141561115957819450505050506111a3565b82806001019350505b50808060010191505061106f565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6111b0612092565b73ffffffffffffffffffffffffffffffffffffffff166111ce6114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90613ccd565b60405180910390fd5b80600e908051906020019061123a9291906133ae565b5050565b6000600960009054906101000a900460ff16905090565b60006112608261270b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611343612092565b73ffffffffffffffffffffffffffffffffffffffff166113616114d7565b73ffffffffffffffffffffffffffffffffffffffff16146113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90613ccd565b60405180910390fd5b6113c160006129b3565b565b601080546113d09061403d565b80601f01602080910402602001604051908101604052809291908181526020018280546113fc9061403d565b80156114495780601f1061141e57610100808354040283529160200191611449565b820191906000526020600020905b81548152906001019060200180831161142c57829003601f168201915b505050505081565b611459612092565b73ffffffffffffffffffffffffffffffffffffffff166114776114d7565b73ffffffffffffffffffffffffffffffffffffffff16146114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490613ccd565b60405180910390fd5b6114d5612a79565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b6060600280546115169061403d565b80601f01602080910402602001604051908101604052809291908181526020018280546115429061403d565b801561158f5780601f106115645761010080835404028352916020019161158f565b820191906000526020600020905b81548152906001019060200180831161157257829003601f168201915b5050505050905090565b600d5481565b6115a761123e565b156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613c8d565b60405180910390fd5b600b546115f333612b1c565b826115fe9190613e72565b111561163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690613c6d565b60405180910390fd5b600c548161164b610b2a565b6116559190613e72565b1115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90613c0d565b60405180910390fd5b80600d546116a49190613ef9565b3410156116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd90613d2d565b60405180910390fd5b6116f03382612bec565b50565b6116fb612092565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611760576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061176d612092565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661181a612092565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161185f9190613bd0565b60405180910390a35050565b611873612092565b73ffffffffffffffffffffffffffffffffffffffff166118916114d7565b73ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613ccd565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b61190f84848461214c565b61191b84848484612c0a565b611951576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600f80546119649061403d565b80601f01602080910402602001604051908101604052809291908181526020018280546119909061403d565b80156119dd5780601f106119b2576101008083540402835291602001916119dd565b820191906000526020600020905b8154815290600101906020018083116119c057829003601f168201915b505050505081565b60606119f08261202a565b611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690613ced565b60405180910390fd5b60001515601160009054906101000a900460ff1615151415611add5760108054611a589061403d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a849061403d565b8015611ad15780601f10611aa657610100808354040283529160200191611ad1565b820191906000526020600020905b815481529060010190602001808311611ab457829003601f168201915b50505050509050611b39565b6000611ae7612d98565b90506000815111611b075760405180602001604052806000815250611b35565b80611b1184612e2a565b600f604051602001611b2593929190613b23565b6040516020818303038152906040525b9150505b919050565b611b46612092565b73ffffffffffffffffffffffffffffffffffffffff16611b646114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb190613ccd565b60405180910390fd5b600c5481611bc6610b2a565b611bd09190613e72565b1115611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0890613d0d565b60405180910390fd5b600a54611c1d33612b1c565b82611c289190613e72565b1115611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613cad565b60405180910390fd5b611c733382612bec565b50565b600b5481565b611c84612092565b73ffffffffffffffffffffffffffffffffffffffff16611ca26114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cef90613ccd565b60405180910390fd5b60026008541415611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3590613d4d565b60405180910390fd5b6002600881905550611d4e6114d7565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611d93573d6000803e3d6000fd5b506001600881905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e3a612092565b73ffffffffffffffffffffffffffffffffffffffff16611e586114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea590613ccd565b60405180910390fd5b8060109080519060200190611ec49291906133ae565b5050565b611ed0612092565b73ffffffffffffffffffffffffffffffffffffffff16611eee6114d7565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90613ccd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab90613c4d565b60405180910390fd5b611fbd816129b3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168210801561208b575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121578261270b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661217e612092565b73ffffffffffffffffffffffffffffffffffffffff1614806121b157506121b082600001516121ab612092565b611d9e565b5b806121f657506121bf612092565b73ffffffffffffffffffffffffffffffffffffffff166121de846109a3565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061222f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612298576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122ff576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61230c8585856001612fd7565b61231c600084846000015161209a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125f95760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156125f85782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126628585856001612fdd565b5050505050565b61267161123e565b6126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790613c2d565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126f4612092565b6040516127019190613b69565b60405180910390a1565b612713613434565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561297c576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161297a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461285e5780925050506129ae565b5b60011561297957818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129745780925050506129ae565b61285f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a8161123e565b15612ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab890613c8d565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612b05612092565b604051612b129190613b69565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b84576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b612c06828260405180602001604052806000815250612fe3565b5050565b6000612c2b8473ffffffffffffffffffffffffffffffffffffffff16612ff5565b15612d8b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c54612092565b8786866040518563ffffffff1660e01b8152600401612c769493929190613b84565b602060405180830381600087803b158015612c9057600080fd5b505af1925050508015612cc157506040513d601f19601f82011682018060405250810190612cbe919061379d565b60015b612d3b573d8060008114612cf1576040519150601f19603f3d011682016040523d82523d6000602084013e612cf6565b606091505b50600081511415612d33576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d90565b600190505b949350505050565b6060600e8054612da79061403d565b80601f0160208091040260200160405190810160405280929190818152602001828054612dd39061403d565b8015612e205780601f10612df557610100808354040283529160200191612e20565b820191906000526020600020905b815481529060010190602001808311612e0357829003601f168201915b5050505050905090565b60606000821415612e72576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fd2565b600082905060005b60008214612ea4578080612e8d906140a0565b915050600a82612e9d9190613ec8565b9150612e7a565b60008167ffffffffffffffff811115612ee6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f185781602001600182028036833780820191505090505b5090505b60008514612fcb57600182612f319190613f53565b9150600a85612f4091906140e9565b6030612f4c9190613e72565b60f81b818381518110612f88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fc49190613ec8565b9450612f1c565b8093505050505b919050565b50505050565b50505050565b612ff08383836001613018565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156130b3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156130ee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130fb6000868387612fd7565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561336057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561331457506133126000888488612c0a565b155b1561334b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613299565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506133a76000868387612fdd565b5050505050565b8280546133ba9061403d565b90600052602060002090601f0160209004810192826133dc5760008555613423565b82601f106133f557805160ff1916838001178555613423565b82800160010185558215613423579182015b82811115613422578251825591602001919060010190613407565b5b5090506134309190613477565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613490576000816000905550600101613478565b5090565b60006134a76134a284613dad565b613d88565b9050828152602081018484840111156134bf57600080fd5b6134ca848285613ffb565b509392505050565b60006134e56134e084613dde565b613d88565b9050828152602081018484840111156134fd57600080fd5b613508848285613ffb565b509392505050565b60008135905061351f8161441f565b92915050565b60008135905061353481614436565b92915050565b6000813590506135498161444d565b92915050565b60008151905061355e8161444d565b92915050565b600082601f83011261357557600080fd5b8135613585848260208601613494565b91505092915050565b600082601f83011261359f57600080fd5b81356135af8482602086016134d2565b91505092915050565b6000813590506135c781614464565b92915050565b6000602082840312156135df57600080fd5b60006135ed84828501613510565b91505092915050565b6000806040838503121561360957600080fd5b600061361785828601613510565b925050602061362885828601613510565b9150509250929050565b60008060006060848603121561364757600080fd5b600061365586828701613510565b935050602061366686828701613510565b9250506040613677868287016135b8565b9150509250925092565b6000806000806080858703121561369757600080fd5b60006136a587828801613510565b94505060206136b687828801613510565b93505060406136c7878288016135b8565b925050606085013567ffffffffffffffff8111156136e457600080fd5b6136f087828801613564565b91505092959194509250565b6000806040838503121561370f57600080fd5b600061371d85828601613510565b925050602061372e85828601613525565b9150509250929050565b6000806040838503121561374b57600080fd5b600061375985828601613510565b925050602061376a858286016135b8565b9150509250929050565b60006020828403121561378657600080fd5b60006137948482850161353a565b91505092915050565b6000602082840312156137af57600080fd5b60006137bd8482850161354f565b91505092915050565b6000602082840312156137d857600080fd5b600082013567ffffffffffffffff8111156137f257600080fd5b6137fe8482850161358e565b91505092915050565b60006020828403121561381957600080fd5b6000613827848285016135b8565b91505092915050565b61383981613f87565b82525050565b61384881613f99565b82525050565b600061385982613e24565b6138638185613e3a565b935061387381856020860161400a565b61387c816141d6565b840191505092915050565b600061389282613e2f565b61389c8185613e56565b93506138ac81856020860161400a565b6138b5816141d6565b840191505092915050565b60006138cb82613e2f565b6138d58185613e67565b93506138e581856020860161400a565b80840191505092915050565b600081546138fe8161403d565b6139088186613e67565b94506001821660008114613923576001811461393457613967565b60ff19831686528186019350613967565b61393d85613e0f565b60005b8381101561395f57815481890152600182019150602081019050613940565b838801955050505b50505092915050565b600061397d602783613e56565b9150613988826141e7565b604082019050919050565b60006139a0601483613e56565b91506139ab82614236565b602082019050919050565b60006139c3602683613e56565b91506139ce8261425f565b604082019050919050565b60006139e6601283613e56565b91506139f1826142ae565b602082019050919050565b6000613a09601083613e56565b9150613a14826142d7565b602082019050919050565b6000613a2c601d83613e56565b9150613a3782614300565b602082019050919050565b6000613a4f602083613e56565b9150613a5a82614329565b602082019050919050565b6000613a72602f83613e56565b9150613a7d82614352565b604082019050919050565b6000613a95601983613e56565b9150613aa0826143a1565b602082019050919050565b6000613ab8600083613e4b565b9150613ac3826143ca565b600082019050919050565b6000613adb601583613e56565b9150613ae6826143cd565b602082019050919050565b6000613afe601f83613e56565b9150613b09826143f6565b602082019050919050565b613b1d81613ff1565b82525050565b6000613b2f82866138c0565b9150613b3b82856138c0565b9150613b4782846138f1565b9150819050949350505050565b6000613b5f82613aab565b9150819050919050565b6000602082019050613b7e6000830184613830565b92915050565b6000608082019050613b996000830187613830565b613ba66020830186613830565b613bb36040830185613b14565b8181036060830152613bc5818461384e565b905095945050505050565b6000602082019050613be5600083018461383f565b92915050565b60006020820190508181036000830152613c058184613887565b905092915050565b60006020820190508181036000830152613c2681613970565b9050919050565b60006020820190508181036000830152613c4681613993565b9050919050565b60006020820190508181036000830152613c66816139b6565b9050919050565b60006020820190508181036000830152613c86816139d9565b9050919050565b60006020820190508181036000830152613ca6816139fc565b9050919050565b60006020820190508181036000830152613cc681613a1f565b9050919050565b60006020820190508181036000830152613ce681613a42565b9050919050565b60006020820190508181036000830152613d0681613a65565b9050919050565b60006020820190508181036000830152613d2681613a88565b9050919050565b60006020820190508181036000830152613d4681613ace565b9050919050565b60006020820190508181036000830152613d6681613af1565b9050919050565b6000602082019050613d826000830184613b14565b92915050565b6000613d92613da3565b9050613d9e828261406f565b919050565b6000604051905090565b600067ffffffffffffffff821115613dc857613dc76141a7565b5b613dd1826141d6565b9050602081019050919050565b600067ffffffffffffffff821115613df957613df86141a7565b5b613e02826141d6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e7d82613ff1565b9150613e8883613ff1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ebd57613ebc61411a565b5b828201905092915050565b6000613ed382613ff1565b9150613ede83613ff1565b925082613eee57613eed614149565b5b828204905092915050565b6000613f0482613ff1565b9150613f0f83613ff1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f4857613f4761411a565b5b828202905092915050565b6000613f5e82613ff1565b9150613f6983613ff1565b925082821015613f7c57613f7b61411a565b5b828203905092915050565b6000613f9282613fd1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561402857808201518184015260208101905061400d565b83811115614037576000848401525b50505050565b6000600282049050600182168061405557607f821691505b6020821081141561406957614068614178565b5b50919050565b614078826141d6565b810181811067ffffffffffffffff82111715614097576140966141a7565b5b80604052505050565b60006140ab82613ff1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140de576140dd61411a565b5b600182019050919050565b60006140f482613ff1565b91506140ff83613ff1565b92508261410f5761410e614149565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f7527726520746f6f206c6174652e20486f772064696420796f75206d697360008201527f7320746869733f00000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f596f75206d696e7465642033303020616c72656164792064756d6d792e000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f54686572652773206e6f6e65206c65667420746f206d696e7400000000000000600082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61442881613f87565b811461443357600080fd5b50565b61443f81613f99565b811461444a57600080fd5b50565b61445681613fa5565b811461446157600080fd5b50565b61446d81613ff1565b811461447857600080fd5b5056fea2646970667358221220b74276f74721d12ec1580991dada0711b4fcfe74a54a604795a34773aa40902064736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5675725845514d45724e454c69354546684e754b5469356e476d7347556a444e477a636f67656e6f467534762f000000000000000000000000000000000000000000000000000000000000000000000000000000000049697066733a2f2f516d5251366354336f70686d5a395669615265344542324e784e43374245716e553737374c43395a73353636584c2f68696464656e4d6574614f43544f2e6a736f6e0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmVurXEQMErNELi5EFhNuKTi5nGmsGUjDNGzcogenoFu4v/
Arg [1] : _initHiddenURI (string): ipfs://QmRQ6cT3ophmZ9ViaRe4EB2NxNC7BEqnU777LC9Zs566XL/hiddenMetaOCTO.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5675725845514d45724e454c69354546684e754b546935
Arg [4] : 6e476d7347556a444e477a636f67656e6f467534762f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000049
Arg [6] : 697066733a2f2f516d5251366354336f70686d5a395669615265344542324e78
Arg [7] : 4e43374245716e553737374c43395a73353636584c2f68696464656e4d657461
Arg [8] : 4f43544f2e6a736f6e0000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51787:2886:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34886:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37496:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38999:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38562:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32123:280;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39856:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33709:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51970:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52487:65;;;;;;;;;;;;;:::i;:::-;;40097:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54353:315;;;;;;;;;;;;;:::i;:::-;;32696:713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52560:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6908:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37305:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35322:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9807:103;;;;;;;;;;;;;:::i;:::-;;52114:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52418:61;;;;;;;;;;;;;:::i;:::-;;9156:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51895:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37665:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52009:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53312:383;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39275:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52927:67;;;;;;;;;;;;;:::i;:::-;;40353:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52070:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53843:503;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53002:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51935:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53703:128;;;:::i;:::-;;39625:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52796:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10065:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34886:372;34988:4;35040:25;35025:40;;;:11;:40;;;;:105;;;;35097:33;35082:48;;;:11;:48;;;;35025:105;:172;;;;35162:35;35147:50;;;:11;:50;;;;35025:172;:225;;;;35214:36;35238:11;35214:23;:36::i;:::-;35025:225;35005:245;;34886:372;;;:::o;37496:100::-;37550:13;37583:5;37576:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37496:100;:::o;38999:204::-;39067:7;39092:16;39100:7;39092;:16::i;:::-;39087:64;;39117:34;;;;;;;;;;;;;;39087:64;39171:15;:24;39187:7;39171:24;;;;;;;;;;;;;;;;;;;;;39164:31;;38999:204;;;:::o;38562:371::-;38635:13;38651:24;38667:7;38651:15;:24::i;:::-;38635:40;;38696:5;38690:11;;:2;:11;;;38686:48;;;38710:24;;;;;;;;;;;;;;38686:48;38767:5;38751:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;38777:37;38794:5;38801:12;:10;:12::i;:::-;38777:16;:37::i;:::-;38776:38;38751:63;38747:138;;;38838:35;;;;;;;;;;;;;;38747:138;38897:28;38906:2;38910:7;38919:5;38897:8;:28::i;:::-;38562:371;;;:::o;32123:280::-;32176:7;32368:12;;;;;;;;;;;32352:13;;;;;;;;;;:28;32345:35;;;;32123:280;:::o;39856:170::-;39990:28;40000:4;40006:2;40010:7;39990:9;:28::i;:::-;39856:170;;;:::o;33709:1105::-;33798:7;33831:16;33841:5;33831:9;:16::i;:::-;33822:5;:25;33818:61;;33856:23;;;;;;;;;;;;;;33818:61;33890:22;33915:13;;;;;;;;;;;33890:38;;;;33939:19;33969:25;34170:9;34165:557;34185:14;34181:1;:18;34165:557;;;34225:31;34259:11;:14;34271:1;34259:14;;;;;;;;;;;34225:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34296:9;:16;;;34292:73;;;34337:8;;;34292:73;34413:1;34387:28;;:9;:14;;;:28;;;34383:111;;34460:9;:14;;;34440:34;;34383:111;34537:5;34516:26;;:17;:26;;;34512:195;;;34586:5;34571:11;:20;34567:85;;;34627:1;34620:8;;;;;;;;;34567:85;34674:13;;;;;;;34512:195;34165:557;;34201:3;;;;;;;34165:557;;;;34798:8;;;33709:1105;;;;;:::o;51970:32::-;;;;:::o;52487:65::-;9387:12;:10;:12::i;:::-;9376:23;;:7;:5;:7::i;:::-;:23;;;9368:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52534:10:::1;:8;:10::i;:::-;52487:65::o:0;40097:185::-;40235:39;40252:4;40258:2;40262:7;40235:39;;;;;;;;;;;;:16;:39::i;:::-;40097:185;;;:::o;54353:315::-;9387:12;:10;:12::i;:::-;9376:23;;:7;:5;:7::i;:::-;:23;;;9368:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;54420:10:::2;54444:42;54436:56;;54529:3;54524:2;54500:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;54436:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54419:118;;;54553:5;54545:14;;;::::0;::::2;;54570:9;54593:7;:5;:7::i;:::-;54585:21;;54614;54585:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54569:71;;;54656:4;54648:13;;;::::0;::::2;;2574:1;;1768::::1;2722:7;:22;;;;54353:315::o:0;32696:713::-;32763:7;32783:22;32808:13;;;;;;;;;;32783:38;;;;32832:19;33027:9;33022:328;33042:14;33038:1;:18;33022:328;;;33082:31;33116:11;:14;33128:1;33116:14;;;;;;;;;;;33082:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33154:9;:16;;;33149:186;;33214:5;33199:11;:20;33195:85;;;33255:1;33248:8;;;;;;;;33195:85;33302:13;;;;;;;33149:186;33022:328;33058:3;;;;;;;33022:328;;;;33378:23;;;;;;;;;;;;;;32696:713;;;;:::o;52560:104::-;9387:12;:10;:12::i;:::-;9376:23;;:7;:5;:7::i;:::-;:23;;;9368:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52645:11:::1;52635:7;:21;;;;;;;;;;;;:::i;:::-;;52560:104:::0;:::o;6908:86::-;6955:4;6979:7;;;;;;;;;;;6972:14;;6908:86;:::o;37305:124::-;37369:7;37396:20;37408:7;37396:11;:20::i;:::-;:25;;;37389:32;;37305:124;;;:::o;35322:206::-;35386:7;35427:1;35410:19;;:5;:19;;;35406:60;;;35438:28;;;;;;;;;;;;;;35406:60;35492:12;:19;35505:5;35492:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;35484:36;;35477:43;;35322:206;;;:::o;9807:103::-;9387:12;:10;:12::i;:::-;9376:23;;:7;:5;:7::i;:::-;:23;;;9368:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9872:30:::1;9899:1;9872:18;:30::i;:::-;9807:103::o:0;52114:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52418:61::-;9387:12;:10;:12::i;:::-;9376:23;;:7;:5;:7::i;:::-;:23;;;9368:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52463:8:::1;:6;:8::i;:::-;52418:61::o:0;9156:87::-;9202:7;9229:6;;;;;;;;;;;9222:13;;9156:87;:::o;51895:33::-;;;;:::o;37665:104::-;37721:13;37754:7;37747:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37665:104;:::o;52009:33::-;;;;:::o;53312:383::-;7234:8;:6;:8::i;:::-;7233:9;7225:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;53434:9:::1;;53405:25;53419:10;53405:13;:25::i;:::-;53394:8;:36;;;;:::i;:::-;:49;;53386:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;53513:10;;53501:8;53485:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;53477:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;53608:8;53600:5;;:16;;;;:::i;:::-;53586:9;:31;;53578:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53656:31;53666:10;53678:8;53656:9;:31::i;:::-;53312:383:::0;:::o;39275:279::-;39378:12;:10;:12::i;:::-;39366:24;;:8;:24;;;39362:54;;;39399:17;;;;;;;;;;;;;;39362:54;39474:8;39429:18;:32;39448:12;:10;:12::i;:::-;39429:32;;;;;;;;;;;;;;;:42;39462:8;39429:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;39527:8;39498:48;;39513:12;:10;:12::i;:::-;39498:48;;;39537:8;39498:48;;;;;;:::i;:::-;;;;;;;;39275:279;;:::o;52927:67::-;9387:12;:10;:12::i;:::-;9376:23;;:7;:5;:7::i;:::-;:23;;;9368:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52982:4:::1;52971:8;;:15;;;;;;;;;;;;;;;;;;52927:67::o:0;40353:342::-;40520:28;40530:4;40536:2;40540:7;40520:9;:28::i;:::-;40564:48;40587:4;40593:2;40597:7;40606:5;40564:22;:48::i;:::-;40559:129;;40636:40;;;;;;;;;;;;;;40559:129;40353:342;;;;:::o;52070:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53843:503::-;53941:13;53983:16;53991:7;53983;:16::i;:::-;53967:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;54092:5;54080:17;;:8;;;;;;;;;;;:17;;;54077:62;;;54117:14;54110:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54077:62;54151:28;54182:10;:8;:10::i;:::-;54151:41;;54237:1;54212:14;54206:28;:32;:133;;;;;;;;;;;;;;;;;54274:14;54290:18;:7;:16;:18::i;:::-;54310:13;54257:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54206:133;54199:140;;;53843:503;;;;:::o;53002:301::-;9387:12;:10;:12::i;:::-;9376:23;;:7;:5;:7::i;:::-;:23;;;9368:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53109:10:::1;;53097:8;53081:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;53073:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;53207:12;;53177:25;53191:10;53177:13;:25::i;:::-;53166:8;:36;;;;:::i;:::-;:53;;53158:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;53264:31;53274:10;53286:8;53264:9;:31::i;:::-;53002:301:::0;:::o;51935:28::-;;;;:::o;53703:128::-;9387:12;:10;:12::i;:::-;9376:23;;:7;:5;:7::i;:::-;:23;;;9368:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;53783:7:::2;:5;:7::i;:::-;53775:25;;:48;53801:21;53775:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;1768:1:::1;2722:7;:22;;;;53703:128::o:0;39625:164::-;39722:4;39746:18;:25;39765:5;39746:25;;;;;;;;;;;;;;;:35;39772:8;39746:35;;;;;;;;;;;;;;;;;;;;;;;;;39739:42;;39625:164;;;;:::o;52796:124::-;9387:12;:10;:12::i;:::-;9376:23;;:7;:5;:7::i;:::-;:23;;;9368:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52897:15:::1;52880:14;:32;;;;;;;;;;;;:::i;:::-;;52796:124:::0;:::o;10065:201::-;9387:12;:10;:12::i;:::-;9376:23;;:7;:5;:7::i;:::-;:23;;;9368:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10174:1:::1;10154:22;;:8;:22;;;;10146:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10230:28;10249:8;10230:18;:28::i;:::-;10065:201:::0;:::o;21940:157::-;22025:4;22064:25;22049:40;;;:11;:40;;;;22042:47;;21940:157;;;:::o;40950:144::-;41007:4;41041:13;;;;;;;;;;;41031:23;;:7;:23;:55;;;;;41059:11;:20;41071:7;41059:20;;;;;;;;;;;:27;;;;;;;;;;;;41058:28;41031:55;41024:62;;40950:144;;;:::o;5562:98::-;5615:7;5642:10;5635:17;;5562:98;:::o;48166:196::-;48308:2;48281:15;:24;48297:7;48281:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;48346:7;48342:2;48326:28;;48335:5;48326:28;;;;;;;;;;;;48166:196;;;:::o;43667:2112::-;43782:35;43820:20;43832:7;43820:11;:20::i;:::-;43782:58;;43853:22;43895:13;:18;;;43879:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;43930:50;43947:13;:18;;;43967:12;:10;:12::i;:::-;43930:16;:50::i;:::-;43879:101;:154;;;;44021:12;:10;:12::i;:::-;43997:36;;:20;44009:7;43997:11;:20::i;:::-;:36;;;43879:154;43853:181;;44052:17;44047:66;;44078:35;;;;;;;;;;;;;;44047:66;44150:4;44128:26;;:13;:18;;;:26;;;44124:67;;44163:28;;;;;;;;;;;;;;44124:67;44220:1;44206:16;;:2;:16;;;44202:52;;;44231:23;;;;;;;;;;;;;;44202:52;44267:43;44289:4;44295:2;44299:7;44308:1;44267:21;:43::i;:::-;44375:49;44392:1;44396:7;44405:13;:18;;;44375:8;:49::i;:::-;44750:1;44720:12;:18;44733:4;44720:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44794:1;44766:12;:16;44779:2;44766:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44840:2;44812:11;:20;44824:7;44812:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;44902:15;44857:11;:20;44869:7;44857:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;45170:19;45202:1;45192:7;:11;45170:33;;45263:1;45222:43;;:11;:24;45234:11;45222:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;45218:445;;;45447:13;;;;;;;;;;45433:27;;:11;:27;45429:219;;;45517:13;:18;;;45485:11;:24;45497:11;45485:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;45600:13;:28;;;45558:11;:24;45570:11;45558:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;45429:219;45218:445;43667:2112;45710:7;45706:2;45691:27;;45700:4;45691:27;;;;;;;;;;;;45729:42;45750:4;45756:2;45760:7;45769:1;45729:20;:42::i;:::-;43667:2112;;;;;:::o;7967:120::-;7511:8;:6;:8::i;:::-;7503:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;8036:5:::1;8026:7;;:15;;;;;;;;;;;;;;;;;;8057:22;8066:12;:10;:12::i;:::-;8057:22;;;;;;:::i;:::-;;;;;;;;7967:120::o:0;36160:1083::-;36221:21;;:::i;:::-;36255:12;36270:7;36255:22;;36326:13;;;;;;;;;;36319:20;;:4;:20;36315:861;;;36360:31;36394:11;:17;36406:4;36394:17;;;;;;;;;;;36360:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36435:9;:16;;;36430:731;;36506:1;36480:28;;:9;:14;;;:28;;;36476:101;;36544:9;36537:16;;;;;;36476:101;36881:261;36888:4;36881:261;;;36921:6;;;;;;;;36966:11;:17;36978:4;36966:17;;;;;;;;;;;36954:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37040:1;37014:28;;:9;:14;;;:28;;;37010:109;;37082:9;37075:16;;;;;;37010:109;36881:261;;;36430:731;36315:861;;37204:31;;;;;;;;;;;;;;36160:1083;;;;:::o;10426:191::-;10500:16;10519:6;;;;;;;;;;;10500:25;;10545:8;10536:6;;:17;;;;;;;;;;;;;;;;;;10600:8;10569:40;;10590:8;10569:40;;;;;;;;;;;;10426:191;;:::o;7708:118::-;7234:8;:6;:8::i;:::-;7233:9;7225:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;7778:4:::1;7768:7;;:14;;;;;;;;;;;;;;;;;;7798:20;7805:12;:10;:12::i;:::-;7798:20;;;;;;:::i;:::-;;;;;;;;7708:118::o:0;35536:207::-;35597:7;35638:1;35621:19;;:5;:19;;;35617:59;;;35649:27;;;;;;;;;;;;;;35617:59;35702:12;:19;35715:5;35702:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;35694:41;;35687:48;;35536:207;;;:::o;41102:104::-;41171:27;41181:2;41185:8;41171:27;;;;;;;;;;;;:9;:27::i;:::-;41102:104;;:::o;48927:790::-;49082:4;49103:15;:2;:13;;;:15::i;:::-;49099:611;;;49155:2;49139:36;;;49176:12;:10;:12::i;:::-;49190:4;49196:7;49205:5;49139:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49135:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49402:1;49385:6;:13;:18;49381:259;;;49435:40;;;;;;;;;;;;;;49381:259;49590:6;49584:13;49575:6;49571:2;49567:15;49560:38;49135:520;49272:45;;;49262:55;;;:6;:55;;;;49255:62;;;;;49099:611;49694:4;49687:11;;48927:790;;;;;;;:::o;52678:106::-;52738:13;52769:7;52762:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52678:106;:::o;3124:723::-;3180:13;3410:1;3401:5;:10;3397:53;;;3428:10;;;;;;;;;;;;;;;;;;;;;3397:53;3460:12;3475:5;3460:20;;3491:14;3516:78;3531:1;3523:4;:9;3516:78;;3549:8;;;;;:::i;:::-;;;;3580:2;3572:10;;;;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3604:39;;3654:154;3670:1;3661:5;:10;3654:154;;3698:1;3688:11;;;;;:::i;:::-;;;3765:2;3757:5;:10;;;;:::i;:::-;3744:2;:24;;;;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;3794:2;3785:11;;;;;:::i;:::-;;;3654:154;;;3832:6;3818:21;;;;;3124:723;;;;:::o;50365:159::-;;;;;:::o;51183:158::-;;;;;:::o;41569:163::-;41692:32;41698:2;41702:8;41712:5;41719:4;41692:5;:32::i;:::-;41569:163;;;:::o;11857:326::-;11917:4;12174:1;12152:7;:19;;;:23;12145:30;;11857:326;;;:::o;41991:1422::-;42130:20;42153:13;;;;;;;;;;;42130:36;;;;42195:1;42181:16;;:2;:16;;;42177:48;;;42206:19;;;;;;;;;;;;;;42177:48;42252:1;42240:8;:13;42236:44;;;42262:18;;;;;;;;;;;;;;42236:44;42293:61;42323:1;42327:2;42331:12;42345:8;42293:21;:61::i;:::-;42667:8;42632:12;:16;42645:2;42632:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42731:8;42691:12;:16;42704:2;42691:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42790:2;42757:11;:25;42769:12;42757:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;42857:15;42807:11;:25;42819:12;42807:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;42890:20;42913:12;42890:35;;42947:9;42942:328;42962:8;42958:1;:12;42942:328;;;43026:12;43022:2;43001:38;;43018:1;43001:38;;;;;;;;;;;;43062:4;:68;;;;;43071:59;43102:1;43106:2;43110:12;43124:5;43071:22;:59::i;:::-;43070:60;43062:68;43058:164;;;43162:40;;;;;;;;;;;;;;43058:164;43240:14;;;;;;;42972:3;;;;;;;42942:328;;;;43310:12;43286:13;;:37;;;;;;;;;;;;;;;;;;41991:1422;43345:60;43374:1;43378:2;43382:12;43396:8;43345:20;:60::i;:::-;41991:1422;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;6411:3;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;6779:3;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;7167:3;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7468:845::-;7571:3;7608:5;7602:12;7637:36;7663:9;7637:36;:::i;:::-;7689:89;7771:6;7766:3;7689:89;:::i;:::-;7682:96;;7809:1;7798:9;7794:17;7825:1;7820:137;;;;7971:1;7966:341;;;;7787:520;;7820:137;7904:4;7900:9;7889;7885:25;7880:3;7873:38;7940:6;7935:3;7931:16;7924:23;;7820:137;;7966:341;8033:38;8065:5;8033:38;:::i;:::-;8093:1;8107:154;8121:6;8118:1;8115:13;8107:154;;;8195:7;8189:14;8185:1;8180:3;8176:11;8169:35;8245:1;8236:7;8232:15;8221:26;;8143:4;8140:1;8136:12;8131:17;;8107:154;;;8290:6;8285:3;8281:16;8274:23;;7973:334;;7787:520;;7575:738;;;;;;:::o;8319:366::-;8461:3;8482:67;8546:2;8541:3;8482:67;:::i;:::-;8475:74;;8558:93;8647:3;8558:93;:::i;:::-;8676:2;8671:3;8667:12;8660:19;;8465:220;;;:::o;8691:366::-;8833:3;8854:67;8918:2;8913:3;8854:67;:::i;:::-;8847:74;;8930:93;9019:3;8930:93;:::i;:::-;9048:2;9043:3;9039:12;9032:19;;8837:220;;;:::o;9063:366::-;9205:3;9226:67;9290:2;9285:3;9226:67;:::i;:::-;9219:74;;9302:93;9391:3;9302:93;:::i;:::-;9420:2;9415:3;9411:12;9404:19;;9209:220;;;:::o;9435:366::-;9577:3;9598:67;9662:2;9657:3;9598:67;:::i;:::-;9591:74;;9674:93;9763:3;9674:93;:::i;:::-;9792:2;9787:3;9783:12;9776:19;;9581:220;;;:::o;9807:366::-;9949:3;9970:67;10034:2;10029:3;9970:67;:::i;:::-;9963:74;;10046:93;10135:3;10046:93;:::i;:::-;10164:2;10159:3;10155:12;10148:19;;9953:220;;;:::o;10179:366::-;10321:3;10342:67;10406:2;10401:3;10342:67;:::i;:::-;10335:74;;10418:93;10507:3;10418:93;:::i;:::-;10536:2;10531:3;10527:12;10520:19;;10325:220;;;:::o;10551:366::-;10693:3;10714:67;10778:2;10773:3;10714:67;:::i;:::-;10707:74;;10790:93;10879:3;10790:93;:::i;:::-;10908:2;10903:3;10899:12;10892:19;;10697:220;;;:::o;10923:366::-;11065:3;11086:67;11150:2;11145:3;11086:67;:::i;:::-;11079:74;;11162:93;11251:3;11162:93;:::i;:::-;11280:2;11275:3;11271:12;11264:19;;11069:220;;;:::o;11295:366::-;11437:3;11458:67;11522:2;11517:3;11458:67;:::i;:::-;11451:74;;11534:93;11623:3;11534:93;:::i;:::-;11652:2;11647:3;11643:12;11636:19;;11441:220;;;:::o;11667:398::-;11826:3;11847:83;11928:1;11923:3;11847:83;:::i;:::-;11840:90;;11939:93;12028:3;11939:93;:::i;:::-;12057:1;12052:3;12048:11;12041:18;;11830:235;;;:::o;12071:366::-;12213:3;12234:67;12298:2;12293:3;12234:67;:::i;:::-;12227:74;;12310:93;12399:3;12310:93;:::i;:::-;12428:2;12423:3;12419:12;12412:19;;12217:220;;;:::o;12443:366::-;12585:3;12606:67;12670:2;12665:3;12606:67;:::i;:::-;12599:74;;12682:93;12771:3;12682:93;:::i;:::-;12800:2;12795:3;12791:12;12784:19;;12589:220;;;:::o;12815:118::-;12902:24;12920:5;12902:24;:::i;:::-;12897:3;12890:37;12880:53;;:::o;12939:589::-;13164:3;13186:95;13277:3;13268:6;13186:95;:::i;:::-;13179:102;;13298:95;13389:3;13380:6;13298:95;:::i;:::-;13291:102;;13410:92;13498:3;13489:6;13410:92;:::i;:::-;13403:99;;13519:3;13512:10;;13168:360;;;;;;:::o;13534:379::-;13718:3;13740:147;13883:3;13740:147;:::i;:::-;13733:154;;13904:3;13897:10;;13722:191;;;:::o;13919:222::-;14012:4;14050:2;14039:9;14035:18;14027:26;;14063:71;14131:1;14120:9;14116:17;14107:6;14063:71;:::i;:::-;14017:124;;;;:::o;14147:640::-;14342:4;14380:3;14369:9;14365:19;14357:27;;14394:71;14462:1;14451:9;14447:17;14438:6;14394:71;:::i;:::-;14475:72;14543:2;14532:9;14528:18;14519:6;14475:72;:::i;:::-;14557;14625:2;14614:9;14610:18;14601:6;14557:72;:::i;:::-;14676:9;14670:4;14666:20;14661:2;14650:9;14646:18;14639:48;14704:76;14775:4;14766:6;14704:76;:::i;:::-;14696:84;;14347:440;;;;;;;:::o;14793:210::-;14880:4;14918:2;14907:9;14903:18;14895:26;;14931:65;14993:1;14982:9;14978:17;14969:6;14931:65;:::i;:::-;14885:118;;;;:::o;15009:313::-;15122:4;15160:2;15149:9;15145:18;15137:26;;15209:9;15203:4;15199:20;15195:1;15184:9;15180:17;15173:47;15237:78;15310:4;15301:6;15237:78;:::i;:::-;15229:86;;15127:195;;;;:::o;15328:419::-;15494:4;15532:2;15521:9;15517:18;15509:26;;15581:9;15575:4;15571:20;15567:1;15556:9;15552:17;15545:47;15609:131;15735:4;15609:131;:::i;:::-;15601:139;;15499:248;;;:::o;15753:419::-;15919:4;15957:2;15946:9;15942:18;15934:26;;16006:9;16000:4;15996:20;15992:1;15981:9;15977:17;15970:47;16034:131;16160:4;16034:131;:::i;:::-;16026:139;;15924:248;;;:::o;16178:419::-;16344:4;16382:2;16371:9;16367:18;16359:26;;16431:9;16425:4;16421:20;16417:1;16406:9;16402:17;16395:47;16459:131;16585:4;16459:131;:::i;:::-;16451:139;;16349:248;;;:::o;16603:419::-;16769:4;16807:2;16796:9;16792:18;16784:26;;16856:9;16850:4;16846:20;16842:1;16831:9;16827:17;16820:47;16884:131;17010:4;16884:131;:::i;:::-;16876:139;;16774:248;;;:::o;17028:419::-;17194:4;17232:2;17221:9;17217:18;17209:26;;17281:9;17275:4;17271:20;17267:1;17256:9;17252:17;17245:47;17309:131;17435:4;17309:131;:::i;:::-;17301:139;;17199:248;;;:::o;17453:419::-;17619:4;17657:2;17646:9;17642:18;17634:26;;17706:9;17700:4;17696:20;17692:1;17681:9;17677:17;17670:47;17734:131;17860:4;17734:131;:::i;:::-;17726:139;;17624:248;;;:::o;17878:419::-;18044:4;18082:2;18071:9;18067:18;18059:26;;18131:9;18125:4;18121:20;18117:1;18106:9;18102:17;18095:47;18159:131;18285:4;18159:131;:::i;:::-;18151:139;;18049:248;;;:::o;18303:419::-;18469:4;18507:2;18496:9;18492:18;18484:26;;18556:9;18550:4;18546:20;18542:1;18531:9;18527:17;18520:47;18584:131;18710:4;18584:131;:::i;:::-;18576:139;;18474:248;;;:::o;18728:419::-;18894:4;18932:2;18921:9;18917:18;18909:26;;18981:9;18975:4;18971:20;18967:1;18956:9;18952:17;18945:47;19009:131;19135:4;19009:131;:::i;:::-;19001:139;;18899:248;;;:::o;19153:419::-;19319:4;19357:2;19346:9;19342:18;19334:26;;19406:9;19400:4;19396:20;19392:1;19381:9;19377:17;19370:47;19434:131;19560:4;19434:131;:::i;:::-;19426:139;;19324:248;;;:::o;19578:419::-;19744:4;19782:2;19771:9;19767:18;19759:26;;19831:9;19825:4;19821:20;19817:1;19806:9;19802:17;19795:47;19859:131;19985:4;19859:131;:::i;:::-;19851:139;;19749:248;;;:::o;20003:222::-;20096:4;20134:2;20123:9;20119:18;20111:26;;20147:71;20215:1;20204:9;20200:17;20191:6;20147:71;:::i;:::-;20101:124;;;;:::o;20231:129::-;20265:6;20292:20;;:::i;:::-;20282:30;;20321:33;20349:4;20341:6;20321:33;:::i;:::-;20272:88;;;:::o;20366:75::-;20399:6;20432:2;20426:9;20416:19;;20406:35;:::o;20447:307::-;20508:4;20598:18;20590:6;20587:30;20584:2;;;20620:18;;:::i;:::-;20584:2;20658:29;20680:6;20658:29;:::i;:::-;20650:37;;20742:4;20736;20732:15;20724:23;;20513:241;;;:::o;20760:308::-;20822:4;20912:18;20904:6;20901:30;20898:2;;;20934:18;;:::i;:::-;20898:2;20972:29;20994:6;20972:29;:::i;:::-;20964:37;;21056:4;21050;21046:15;21038:23;;20827:241;;;:::o;21074:141::-;21123:4;21146:3;21138:11;;21169:3;21166:1;21159:14;21203:4;21200:1;21190:18;21182:26;;21128:87;;;:::o;21221:98::-;21272:6;21306:5;21300:12;21290:22;;21279:40;;;:::o;21325:99::-;21377:6;21411:5;21405:12;21395:22;;21384:40;;;:::o;21430:168::-;21513:11;21547:6;21542:3;21535:19;21587:4;21582:3;21578:14;21563:29;;21525:73;;;;:::o;21604:147::-;21705:11;21742:3;21727:18;;21717:34;;;;:::o;21757:169::-;21841:11;21875:6;21870:3;21863:19;21915:4;21910:3;21906:14;21891:29;;21853:73;;;;:::o;21932:148::-;22034:11;22071:3;22056:18;;22046:34;;;;:::o;22086:305::-;22126:3;22145:20;22163:1;22145:20;:::i;:::-;22140:25;;22179:20;22197:1;22179:20;:::i;:::-;22174:25;;22333:1;22265:66;22261:74;22258:1;22255:81;22252:2;;;22339:18;;:::i;:::-;22252:2;22383:1;22380;22376:9;22369:16;;22130:261;;;;:::o;22397:185::-;22437:1;22454:20;22472:1;22454:20;:::i;:::-;22449:25;;22488:20;22506:1;22488:20;:::i;:::-;22483:25;;22527:1;22517:2;;22532:18;;:::i;:::-;22517:2;22574:1;22571;22567:9;22562:14;;22439:143;;;;:::o;22588:348::-;22628:7;22651:20;22669:1;22651:20;:::i;:::-;22646:25;;22685:20;22703:1;22685:20;:::i;:::-;22680:25;;22873:1;22805:66;22801:74;22798:1;22795:81;22790:1;22783:9;22776:17;22772:105;22769:2;;;22880:18;;:::i;:::-;22769:2;22928:1;22925;22921:9;22910:20;;22636:300;;;;:::o;22942:191::-;22982:4;23002:20;23020:1;23002:20;:::i;:::-;22997:25;;23036:20;23054:1;23036:20;:::i;:::-;23031:25;;23075:1;23072;23069:8;23066:2;;;23080:18;;:::i;:::-;23066:2;23125:1;23122;23118:9;23110:17;;22987:146;;;;:::o;23139:96::-;23176:7;23205:24;23223:5;23205:24;:::i;:::-;23194:35;;23184:51;;;:::o;23241:90::-;23275:7;23318:5;23311:13;23304:21;23293:32;;23283:48;;;:::o;23337:149::-;23373:7;23413:66;23406:5;23402:78;23391:89;;23381:105;;;:::o;23492:126::-;23529:7;23569:42;23562:5;23558:54;23547:65;;23537:81;;;:::o;23624:77::-;23661:7;23690:5;23679:16;;23669:32;;;:::o;23707:154::-;23791:6;23786:3;23781;23768:30;23853:1;23844:6;23839:3;23835:16;23828:27;23758:103;;;:::o;23867:307::-;23935:1;23945:113;23959:6;23956:1;23953:13;23945:113;;;24044:1;24039:3;24035:11;24029:18;24025:1;24020:3;24016:11;24009:39;23981:2;23978:1;23974:10;23969:15;;23945:113;;;24076:6;24073:1;24070:13;24067:2;;;24156:1;24147:6;24142:3;24138:16;24131:27;24067:2;23916:258;;;;:::o;24180:320::-;24224:6;24261:1;24255:4;24251:12;24241:22;;24308:1;24302:4;24298:12;24329:18;24319:2;;24385:4;24377:6;24373:17;24363:27;;24319:2;24447;24439:6;24436:14;24416:18;24413:38;24410:2;;;24466:18;;:::i;:::-;24410:2;24231:269;;;;:::o;24506:281::-;24589:27;24611:4;24589:27;:::i;:::-;24581:6;24577:40;24719:6;24707:10;24704:22;24683:18;24671:10;24668:34;24665:62;24662:2;;;24730:18;;:::i;:::-;24662:2;24770:10;24766:2;24759:22;24549:238;;;:::o;24793:233::-;24832:3;24855:24;24873:5;24855:24;:::i;:::-;24846:33;;24901:66;24894:5;24891:77;24888:2;;;24971:18;;:::i;:::-;24888:2;25018:1;25011:5;25007:13;25000:20;;24836:190;;;:::o;25032:176::-;25064:1;25081:20;25099:1;25081:20;:::i;:::-;25076:25;;25115:20;25133:1;25115:20;:::i;:::-;25110:25;;25154:1;25144:2;;25159:18;;:::i;:::-;25144:2;25200:1;25197;25193:9;25188:14;;25066:142;;;;:::o;25214:180::-;25262:77;25259:1;25252:88;25359:4;25356:1;25349:15;25383:4;25380:1;25373:15;25400:180;25448:77;25445:1;25438:88;25545:4;25542:1;25535:15;25569:4;25566:1;25559:15;25586:180;25634:77;25631:1;25624:88;25731:4;25728:1;25721:15;25755:4;25752:1;25745:15;25772:180;25820:77;25817:1;25810:88;25917:4;25914:1;25907:15;25941:4;25938:1;25931:15;25958:102;25999:6;26050:2;26046:7;26041:2;26034:5;26030:14;26026:28;26016:38;;26006:54;;;:::o;26066:226::-;26206:34;26202:1;26194:6;26190:14;26183:58;26275:9;26270:2;26262:6;26258:15;26251:34;26172:120;:::o;26298:170::-;26438:22;26434:1;26426:6;26422:14;26415:46;26404:64;:::o;26474:225::-;26614:34;26610:1;26602:6;26598:14;26591:58;26683:8;26678:2;26670:6;26666:15;26659:33;26580:119;:::o;26705:168::-;26845:20;26841:1;26833:6;26829:14;26822:44;26811:62;:::o;26879:166::-;27019:18;27015:1;27007:6;27003:14;26996:42;26985:60;:::o;27051:179::-;27191:31;27187:1;27179:6;27175:14;27168:55;27157:73;:::o;27236:182::-;27376:34;27372:1;27364:6;27360:14;27353:58;27342:76;:::o;27424:234::-;27564:34;27560:1;27552:6;27548:14;27541:58;27633:17;27628:2;27620:6;27616:15;27609:42;27530:128;:::o;27664:175::-;27804:27;27800:1;27792:6;27788:14;27781:51;27770:69;:::o;27845:114::-;27951:8;:::o;27965:171::-;28105:23;28101:1;28093:6;28089:14;28082:47;28071:65;:::o;28142:181::-;28282:33;28278:1;28270:6;28266:14;28259:57;28248:75;:::o;28329:122::-;28402:24;28420:5;28402:24;:::i;:::-;28395:5;28392:35;28382:2;;28441:1;28438;28431:12;28382:2;28372:79;:::o;28457:116::-;28527:21;28542:5;28527:21;:::i;:::-;28520:5;28517:32;28507:2;;28563:1;28560;28553:12;28507:2;28497:76;:::o;28579:120::-;28651:23;28668:5;28651:23;:::i;:::-;28644:5;28641:34;28631:2;;28689:1;28686;28679:12;28631:2;28621:78;:::o;28705:122::-;28778:24;28796:5;28778:24;:::i;:::-;28771:5;28768:35;28758:2;;28817:1;28814;28807:12;28758:2;28748:79;:::o

Swarm Source

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