Token Phantom Wave

 

Overview ERC-721

Total Supply:
777 PW

Holders:
185 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PW

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// 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/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/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/token/ERC721/extensions/IERC721Metadata.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

// File: @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/ERC721Enumerable.sol

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

pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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


pragma solidity >=0.7.0 <0.9.0;


contract PW is ERC721Enumerable, Ownable {
    using Strings for uint256;

    bool public paused = true;
    bool public privateOnly = true;

    uint8 public maxMintAmountPerTx = 20;
    uint16 public maxPrivateSupply = 268; // 88 reserve + 180 private
    uint16 public maxSupply = 888;
    uint256 public privateCost = 20 ether;
    uint256 public publicCost = 25 ether;

    // multiSig address
    address public multiSig;

    string public uriPrefix = "";
    string public uriSuffix = ".json";

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721(_name, _symbol) {
        setUriPrefix(_initBaseURI);
        setMultiSig(0x91dD0bA75A5A3B423AFa58a674a60C52Ee28083F);
    }

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

    function mintPublic(uint8 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        require(
            !paused && !privateOnly,
            "The contract is paused or set to private only!"
        );
        require(msg.value >= publicCost * _mintAmount, "Insufficient funds!");

        _mintLoop(msg.sender, _mintAmount);
    }

    function mintPrivate() public payable mintCompliance(1) {
        require(this.balanceOf(msg.sender) == 0, "Only 1 Private Mint!");
        require(
            !paused && privateOnly,
            "The contract is paused or not private only!"
        );
        // Check against maxPrivateSupply to enforce no overminting.
        require(totalSupply() + 1 <= maxPrivateSupply, "Max Private Supply!");
        require(msg.value >= privateCost, "Insufficient funds!");

        _mintLoop(msg.sender, 1);
    }

    function mintForAddress(uint8 _mintAmount, address _receiver)
        public
        mintCompliance(_mintAmount)
        onlyOwner
    {
        _mintLoop(_receiver, _mintAmount);
    }

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

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply
        ) {
            address currentTokenOwner = ownerOf(currentTokenId);

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

                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

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

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

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

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

    function setPrivate(bool _private) public onlyOwner {
        privateOnly = _private;
    }

    function setMultiSig(address _multiSig) public onlyOwner {
        multiSig = _multiSig;
    }

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

    function withdrawToMultiSig() public onlyOwner {
        // Withdraw balance to MultiSig Address
        // =============================================================================
        require(multiSig != address(0), "multiSig: multiSig is zero address");
        (bool os, ) = payable(multiSig).call{value: address(this).balance}("");
        require(os);
        // =============================================================================
    }

    function _mintLoop(address _receiver, uint8 _mintAmount) internal {
        for (uint8 i = 0; i < _mintAmount; i++) {
            _safeMint(_receiver, totalSupply() + 1);
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPrivateSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrivate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"multiSig","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_multiSig","type":"address"}],"name":"setMultiSig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_private","type":"bool"}],"name":"setPrivate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawToMultiSig","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff0219169083151502179055506014600a60166101000a81548160ff021916908360ff16021790555061010c600a60176101000a81548161ffff021916908361ffff160217905550610378600a60196101000a81548161ffff021916908361ffff1602179055506801158e460913d00000600b5568015af1d78b58c40000600c5560405180602001604052806000815250600e9080519060200190620000d592919062000462565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f90805190602001906200012392919062000462565b503480156200013157600080fd5b5060405162005799380380620057998339818101604052810190620001579190620006af565b828281600090805190602001906200017192919062000462565b5080600190805190602001906200018a92919062000462565b505050620001ad620001a1620001ec60201b60201c565b620001f460201b60201c565b620001be81620002ba60201b60201c565b620001e37391dd0ba75a5a3b423afa58a674a60c52ee28083f6200036560201b60201c565b50505062000850565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ca620001ec60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002f06200043860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000349576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034090620007c9565b60405180910390fd5b80600e90805190602001906200036192919062000462565b5050565b62000375620001ec60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200039b6200043860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003eb90620007c9565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000470906200081a565b90600052602060002090601f016020900481019282620004945760008555620004e0565b82601f10620004af57805160ff1916838001178555620004e0565b82800160010185558215620004e0579182015b82811115620004df578251825591602001919060010190620004c2565b5b509050620004ef9190620004f3565b5090565b5b808211156200050e576000816000905550600101620004f4565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200057b8262000530565b810181811067ffffffffffffffff821117156200059d576200059c62000541565b5b80604052505050565b6000620005b262000512565b9050620005c0828262000570565b919050565b600067ffffffffffffffff821115620005e357620005e262000541565b5b620005ee8262000530565b9050602081019050919050565b60005b838110156200061b578082015181840152602081019050620005fe565b838111156200062b576000848401525b50505050565b6000620006486200064284620005c5565b620005a6565b9050828152602081018484840111156200066757620006666200052b565b5b62000674848285620005fb565b509392505050565b600082601f83011262000694576200069362000526565b5b8151620006a684826020860162000631565b91505092915050565b600080600060608486031215620006cb57620006ca6200051c565b5b600084015167ffffffffffffffff811115620006ec57620006eb62000521565b5b620006fa868287016200067c565b935050602084015167ffffffffffffffff8111156200071e576200071d62000521565b5b6200072c868287016200067c565b925050604084015167ffffffffffffffff81111562000750576200074f62000521565b5b6200075e868287016200067c565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620007b160208362000768565b9150620007be8262000779565b602082019050919050565b60006020820190508181036000830152620007e481620007a2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200083357607f821691505b602082108114156200084a5762000849620007eb565b5b50919050565b614f3980620008606000396000f3fe6080604052600436106102305760003560e01c80635c975abb1161012e57806394354fd0116100ab578063d3b348e41161006f578063d3b348e4146107fd578063d5abeb0114610828578063e283672d14610853578063e985e9c51461087c578063f2fde38b146108b957610230565b806394354fd01461071857806395d89b4114610743578063a22cb4651461076e578063b88d4fde14610797578063c87b56dd146107c057610230565b806370a08231116100f257806370a0823114610645578063715018a6146106825780637ec4a659146106995780638693da20146106c25780638da5cb5b146106ed57610230565b80635c975abb1461056b57806362b99ad4146105965780636352211e146105c15780636621523b146105fe57806367dce1ed1461062957610230565b8063284d30ef116101bc5780633e28eae1116101805780633e28eae11461049357806342842e0e1461049d578063438b6300146104c65780634f6ccce7146105035780635503a0e81461054057610230565b8063284d30ef146103c25780632f745c59146103eb5780633255064a1461042857806336e0004a146104515780633ccfd60b1461047c57610230565b80631377f9eb116102035780631377f9eb1461030357806316c38b3c1461032e57806318160ddd1461035757806323b872dd1461038257806325cd6921146103ab57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906133ed565b6108e2565b6040516102699190613435565b60405180910390f35b34801561027e57600080fd5b5061028761095c565b60405161029491906134e9565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613541565b6109ee565b6040516102d191906135af565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906135f6565b610a73565b005b34801561030f57600080fd5b50610318610b8b565b6040516103259190613645565b60405180910390f35b34801561033a57600080fd5b506103556004803603810190610350919061368c565b610b91565b005b34801561036357600080fd5b5061036c610c2a565b6040516103799190613645565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906136b9565b610c37565b005b3480156103b757600080fd5b506103c0610c97565b005b3480156103ce57600080fd5b506103e960048036038101906103e4919061370c565b610e40565b005b3480156103f757600080fd5b50610412600480360381019061040d91906135f6565b610f00565b60405161041f9190613645565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190613772565b610fa5565b005b34801561045d57600080fd5b50610466611104565b60405161047391906135af565b60405180910390f35b34801561048857600080fd5b5061049161112a565b005b61049b611226565b005b3480156104a957600080fd5b506104c460048036038101906104bf91906136b9565b6114dc565b005b3480156104d257600080fd5b506104ed60048036038101906104e8919061370c565b6114fc565b6040516104fa9190613870565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190613541565b611619565b6040516105379190613645565b60405180910390f35b34801561054c57600080fd5b5061055561168a565b60405161056291906134e9565b60405180910390f35b34801561057757600080fd5b50610580611718565b60405161058d9190613435565b60405180910390f35b3480156105a257600080fd5b506105ab61172b565b6040516105b891906134e9565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190613541565b6117b9565b6040516105f591906135af565b60405180910390f35b34801561060a57600080fd5b5061061361186b565b60405161062091906138af565b60405180910390f35b610643600480360381019061063e91906138ca565b61187f565b005b34801561065157600080fd5b5061066c6004803603810190610667919061370c565b611a1d565b6040516106799190613645565b60405180910390f35b34801561068e57600080fd5b50610697611ad5565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190613a2c565b611b5d565b005b3480156106ce57600080fd5b506106d7611bf3565b6040516106e49190613645565b60405180910390f35b3480156106f957600080fd5b50610702611bf9565b60405161070f91906135af565b60405180910390f35b34801561072457600080fd5b5061072d611c23565b60405161073a9190613a84565b60405180910390f35b34801561074f57600080fd5b50610758611c36565b60405161076591906134e9565b60405180910390f35b34801561077a57600080fd5b5061079560048036038101906107909190613a9f565b611cc8565b005b3480156107a357600080fd5b506107be60048036038101906107b99190613b80565b611cde565b005b3480156107cc57600080fd5b506107e760048036038101906107e29190613541565b611d40565b6040516107f491906134e9565b60405180910390f35b34801561080957600080fd5b50610812611dea565b60405161081f9190613435565b60405180910390f35b34801561083457600080fd5b5061083d611dfd565b60405161084a91906138af565b60405180910390f35b34801561085f57600080fd5b5061087a6004803603810190610875919061368c565b611e11565b005b34801561088857600080fd5b506108a3600480360381019061089e9190613c03565b611eaa565b6040516108b09190613435565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db919061370c565b611f3e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610955575061095482612036565b5b9050919050565b60606000805461096b90613c72565b80601f016020809104026020016040519081016040528092919081815260200182805461099790613c72565b80156109e45780601f106109b9576101008083540402835291602001916109e4565b820191906000526020600020905b8154815290600101906020018083116109c757829003601f168201915b5050505050905090565b60006109f982612118565b610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f90613d16565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7e826117b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690613da8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0e612184565b73ffffffffffffffffffffffffffffffffffffffff161480610b3d5750610b3c81610b37612184565b611eaa565b5b610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390613e3a565b60405180910390fd5b610b86838361218c565b505050565b600b5481565b610b99612184565b73ffffffffffffffffffffffffffffffffffffffff16610bb7611bf9565b73ffffffffffffffffffffffffffffffffffffffff1614610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0490613ea6565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b6000600880549050905090565b610c48610c42612184565b82612245565b610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e90613f38565b60405180910390fd5b610c92838383612323565b505050565b610c9f612184565b73ffffffffffffffffffffffffffffffffffffffff16610cbd611bf9565b73ffffffffffffffffffffffffffffffffffffffff1614610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90613ea6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90613fca565b60405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610ded9061401b565b60006040518083038185875af1925050503d8060008114610e2a576040519150601f19603f3d011682016040523d82523d6000602084013e610e2f565b606091505b5050905080610e3d57600080fd5b50565b610e48612184565b73ffffffffffffffffffffffffffffffffffffffff16610e66611bf9565b73ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390613ea6565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f0b83611a1d565b8210610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f43906140a2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b8160008160ff16118015610fce5750600a60169054906101000a900460ff1660ff168160ff1611155b61100d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110049061410e565b60405180910390fd5b600a60199054906101000a900461ffff1661ffff168160ff1661102e610c2a565b611038919061415d565b1115611079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611070906141ff565b60405180910390fd5b611081612184565b73ffffffffffffffffffffffffffffffffffffffff1661109f611bf9565b73ffffffffffffffffffffffffffffffffffffffff16146110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90613ea6565b60405180910390fd5b6110ff828461258a565b505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611132612184565b73ffffffffffffffffffffffffffffffffffffffff16611150611bf9565b73ffffffffffffffffffffffffffffffffffffffff16146111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90613ea6565b60405180910390fd5b60006111b0611bf9565b73ffffffffffffffffffffffffffffffffffffffff16476040516111d39061401b565b60006040518083038185875af1925050503d8060008114611210576040519150601f19603f3d011682016040523d82523d6000602084013e611215565b606091505b505090508061122357600080fd5b50565b600160008160ff161180156112505750600a60169054906101000a900460ff1660ff168160ff1611155b61128f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112869061410e565b60405180910390fd5b600a60199054906101000a900461ffff1661ffff168160ff166112b0610c2a565b6112ba919061415d565b11156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f2906141ff565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161133691906135af565b602060405180830381865afa158015611353573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113779190614234565b146113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae906142ad565b60405180910390fd5b600a60149054906101000a900460ff161580156113e05750600a60159054906101000a900460ff165b61141f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114169061433f565b60405180910390fd5b600a60179054906101000a900461ffff1661ffff16600161143e610c2a565b611448919061415d565b1115611489576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611480906143ab565b60405180910390fd5b600b543410156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590614417565b60405180910390fd5b6114d933600161258a565b50565b6114f783838360405180602001604052806000815250611cde565b505050565b6060600061150983611a1d565b905060008167ffffffffffffffff81111561152757611526613901565b5b6040519080825280602002602001820160405280156115555781602001602082028036833780820191505090505b50905060006001905060005b83811080156115845750600a60199054906101000a900461ffff1661ffff168211155b1561160d576000611594836117b9565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f957828483815181106115de576115dd614437565b5b60200260200101818152505081806115f590614466565b9250505b828061160490614466565b93505050611561565b82945050505050919050565b6000611623610c2a565b8210611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b90614521565b60405180910390fd5b6008828154811061167857611677614437565b5b90600052602060002001549050919050565b600f805461169790613c72565b80601f01602080910402602001604051908101604052809291908181526020018280546116c390613c72565b80156117105780601f106116e557610100808354040283529160200191611710565b820191906000526020600020905b8154815290600101906020018083116116f357829003601f168201915b505050505081565b600a60149054906101000a900460ff1681565b600e805461173890613c72565b80601f016020809104026020016040519081016040528092919081815260200182805461176490613c72565b80156117b15780601f10611786576101008083540402835291602001916117b1565b820191906000526020600020905b81548152906001019060200180831161179457829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611862576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611859906145b3565b60405180910390fd5b80915050919050565b600a60179054906101000a900461ffff1681565b8060008160ff161180156118a85750600a60169054906101000a900460ff1660ff168160ff1611155b6118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de9061410e565b60405180910390fd5b600a60199054906101000a900461ffff1661ffff168160ff16611908610c2a565b611912919061415d565b1115611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194a906141ff565b60405180910390fd5b600a60149054906101000a900460ff1615801561197d5750600a60159054906101000a900460ff16155b6119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b390614645565b60405180910390fd5b8160ff16600c546119cd9190614665565b341015611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0690614417565b60405180910390fd5b611a19338361258a565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8590614731565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611add612184565b73ffffffffffffffffffffffffffffffffffffffff16611afb611bf9565b73ffffffffffffffffffffffffffffffffffffffff1614611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4890613ea6565b60405180910390fd5b611b5b60006125d0565b565b611b65612184565b73ffffffffffffffffffffffffffffffffffffffff16611b83611bf9565b73ffffffffffffffffffffffffffffffffffffffff1614611bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd090613ea6565b60405180910390fd5b80600e9080519060200190611bef9291906132de565b5050565b600c5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60169054906101000a900460ff1681565b606060018054611c4590613c72565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7190613c72565b8015611cbe5780601f10611c9357610100808354040283529160200191611cbe565b820191906000526020600020905b815481529060010190602001808311611ca157829003601f168201915b5050505050905090565b611cda611cd3612184565b8383612696565b5050565b611cef611ce9612184565b83612245565b611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2590613f38565b60405180910390fd5b611d3a84848484612803565b50505050565b6060611d4b82612118565b611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906147c3565b60405180910390fd5b6000611d9461285f565b90506000815111611db45760405180602001604052806000815250611de2565b80611dbe846128f1565b600f604051602001611dd2939291906148b3565b6040516020818303038152906040525b915050919050565b600a60159054906101000a900460ff1681565b600a60199054906101000a900461ffff1681565b611e19612184565b73ffffffffffffffffffffffffffffffffffffffff16611e37611bf9565b73ffffffffffffffffffffffffffffffffffffffff1614611e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8490613ea6565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f46612184565b73ffffffffffffffffffffffffffffffffffffffff16611f64611bf9565b73ffffffffffffffffffffffffffffffffffffffff1614611fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb190613ea6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561202a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202190614956565b60405180910390fd5b612033816125d0565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061210157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612111575061211082612a52565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121ff836117b9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061225082612118565b61228f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612286906149e8565b60405180910390fd5b600061229a836117b9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061230957508373ffffffffffffffffffffffffffffffffffffffff166122f1846109ee565b73ffffffffffffffffffffffffffffffffffffffff16145b8061231a57506123198185611eaa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612343826117b9565b73ffffffffffffffffffffffffffffffffffffffff1614612399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239090614a7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090614b0c565b60405180910390fd5b612414838383612abc565b61241f60008261218c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461246f9190614b2c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124c6919061415d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612585838383612bd0565b505050565b60005b8160ff168160ff1610156125cb576125b88360016125a9610c2a565b6125b3919061415d565b612bd5565b80806125c390614b60565b91505061258d565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fc90614bd6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127f69190613435565b60405180910390a3505050565b61280e848484612323565b61281a84848484612bf3565b612859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285090614c68565b60405180910390fd5b50505050565b6060600e805461286e90613c72565b80601f016020809104026020016040519081016040528092919081815260200182805461289a90613c72565b80156128e75780601f106128bc576101008083540402835291602001916128e7565b820191906000526020600020905b8154815290600101906020018083116128ca57829003601f168201915b5050505050905090565b60606000821415612939576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a4d565b600082905060005b6000821461296b57808061295490614466565b915050600a826129649190614cb7565b9150612941565b60008167ffffffffffffffff81111561298757612986613901565b5b6040519080825280601f01601f1916602001820160405280156129b95781602001600182028036833780820191505090505b5090505b60008514612a46576001826129d29190614b2c565b9150600a856129e19190614ce8565b60306129ed919061415d565b60f81b818381518110612a0357612a02614437565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a3f9190614cb7565b94506129bd565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ac7838383612d7b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b0a57612b0581612d80565b612b49565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b4857612b478382612dc9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b8c57612b8781612f36565b612bcb565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bca57612bc98282613007565b5b5b505050565b505050565b612bef828260405180602001604052806000815250613086565b5050565b6000612c148473ffffffffffffffffffffffffffffffffffffffff166130e1565b15612d6e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c3d612184565b8786866040518563ffffffff1660e01b8152600401612c5f9493929190614d6e565b6020604051808303816000875af1925050508015612c9b57506040513d601f19601f82011682018060405250810190612c989190614dcf565b60015b612d1e573d8060008114612ccb576040519150601f19603f3d011682016040523d82523d6000602084013e612cd0565b606091505b50600081511415612d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0d90614c68565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d73565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612dd684611a1d565b612de09190614b2c565b9050600060076000848152602001908152602001600020549050818114612ec5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612f4a9190614b2c565b9050600060096000848152602001908152602001600020549050600060088381548110612f7a57612f79614437565b5b906000526020600020015490508060088381548110612f9c57612f9b614437565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612feb57612fea614dfc565b5b6001900381819060005260206000200160009055905550505050565b600061301283611a1d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6130908383613104565b61309d6000848484612bf3565b6130dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d390614c68565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316b90614e77565b60405180910390fd5b61317d81612118565b156131bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b490614ee3565b60405180910390fd5b6131c960008383612abc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613219919061415d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132da60008383612bd0565b5050565b8280546132ea90613c72565b90600052602060002090601f01602090048101928261330c5760008555613353565b82601f1061332557805160ff1916838001178555613353565b82800160010185558215613353579182015b82811115613352578251825591602001919060010190613337565b5b5090506133609190613364565b5090565b5b8082111561337d576000816000905550600101613365565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133ca81613395565b81146133d557600080fd5b50565b6000813590506133e7816133c1565b92915050565b6000602082840312156134035761340261338b565b5b6000613411848285016133d8565b91505092915050565b60008115159050919050565b61342f8161341a565b82525050565b600060208201905061344a6000830184613426565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561348a57808201518184015260208101905061346f565b83811115613499576000848401525b50505050565b6000601f19601f8301169050919050565b60006134bb82613450565b6134c5818561345b565b93506134d581856020860161346c565b6134de8161349f565b840191505092915050565b6000602082019050818103600083015261350381846134b0565b905092915050565b6000819050919050565b61351e8161350b565b811461352957600080fd5b50565b60008135905061353b81613515565b92915050565b6000602082840312156135575761355661338b565b5b60006135658482850161352c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135998261356e565b9050919050565b6135a98161358e565b82525050565b60006020820190506135c460008301846135a0565b92915050565b6135d38161358e565b81146135de57600080fd5b50565b6000813590506135f0816135ca565b92915050565b6000806040838503121561360d5761360c61338b565b5b600061361b858286016135e1565b925050602061362c8582860161352c565b9150509250929050565b61363f8161350b565b82525050565b600060208201905061365a6000830184613636565b92915050565b6136698161341a565b811461367457600080fd5b50565b60008135905061368681613660565b92915050565b6000602082840312156136a2576136a161338b565b5b60006136b084828501613677565b91505092915050565b6000806000606084860312156136d2576136d161338b565b5b60006136e0868287016135e1565b93505060206136f1868287016135e1565b92505060406137028682870161352c565b9150509250925092565b6000602082840312156137225761372161338b565b5b6000613730848285016135e1565b91505092915050565b600060ff82169050919050565b61374f81613739565b811461375a57600080fd5b50565b60008135905061376c81613746565b92915050565b600080604083850312156137895761378861338b565b5b60006137978582860161375d565b92505060206137a8858286016135e1565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6137e78161350b565b82525050565b60006137f983836137de565b60208301905092915050565b6000602082019050919050565b600061381d826137b2565b61382781856137bd565b9350613832836137ce565b8060005b8381101561386357815161384a88826137ed565b975061385583613805565b925050600181019050613836565b5085935050505092915050565b6000602082019050818103600083015261388a8184613812565b905092915050565b600061ffff82169050919050565b6138a981613892565b82525050565b60006020820190506138c460008301846138a0565b92915050565b6000602082840312156138e0576138df61338b565b5b60006138ee8482850161375d565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139398261349f565b810181811067ffffffffffffffff8211171561395857613957613901565b5b80604052505050565b600061396b613381565b90506139778282613930565b919050565b600067ffffffffffffffff82111561399757613996613901565b5b6139a08261349f565b9050602081019050919050565b82818337600083830152505050565b60006139cf6139ca8461397c565b613961565b9050828152602081018484840111156139eb576139ea6138fc565b5b6139f68482856139ad565b509392505050565b600082601f830112613a1357613a126138f7565b5b8135613a238482602086016139bc565b91505092915050565b600060208284031215613a4257613a4161338b565b5b600082013567ffffffffffffffff811115613a6057613a5f613390565b5b613a6c848285016139fe565b91505092915050565b613a7e81613739565b82525050565b6000602082019050613a996000830184613a75565b92915050565b60008060408385031215613ab657613ab561338b565b5b6000613ac4858286016135e1565b9250506020613ad585828601613677565b9150509250929050565b600067ffffffffffffffff821115613afa57613af9613901565b5b613b038261349f565b9050602081019050919050565b6000613b23613b1e84613adf565b613961565b905082815260208101848484011115613b3f57613b3e6138fc565b5b613b4a8482856139ad565b509392505050565b600082601f830112613b6757613b666138f7565b5b8135613b77848260208601613b10565b91505092915050565b60008060008060808587031215613b9a57613b9961338b565b5b6000613ba8878288016135e1565b9450506020613bb9878288016135e1565b9350506040613bca8782880161352c565b925050606085013567ffffffffffffffff811115613beb57613bea613390565b5b613bf787828801613b52565b91505092959194509250565b60008060408385031215613c1a57613c1961338b565b5b6000613c28858286016135e1565b9250506020613c39858286016135e1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c8a57607f821691505b60208210811415613c9e57613c9d613c43565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613d00602c8361345b565b9150613d0b82613ca4565b604082019050919050565b60006020820190508181036000830152613d2f81613cf3565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d9260218361345b565b9150613d9d82613d36565b604082019050919050565b60006020820190508181036000830152613dc181613d85565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613e2460388361345b565b9150613e2f82613dc8565b604082019050919050565b60006020820190508181036000830152613e5381613e17565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e9060208361345b565b9150613e9b82613e5a565b602082019050919050565b60006020820190508181036000830152613ebf81613e83565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613f2260318361345b565b9150613f2d82613ec6565b604082019050919050565b60006020820190508181036000830152613f5181613f15565b9050919050565b7f6d756c74695369673a206d756c7469536967206973207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fb460228361345b565b9150613fbf82613f58565b604082019050919050565b60006020820190508181036000830152613fe381613fa7565b9050919050565b600081905092915050565b50565b6000614005600083613fea565b915061401082613ff5565b600082019050919050565b600061402682613ff8565b9150819050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061408c602b8361345b565b915061409782614030565b604082019050919050565b600060208201905081810360008301526140bb8161407f565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006140f860148361345b565b9150614103826140c2565b602082019050919050565b60006020820190508181036000830152614127816140eb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141688261350b565b91506141738361350b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141a8576141a761412e565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006141e960148361345b565b91506141f4826141b3565b602082019050919050565b60006020820190508181036000830152614218816141dc565b9050919050565b60008151905061422e81613515565b92915050565b60006020828403121561424a5761424961338b565b5b60006142588482850161421f565b91505092915050565b7f4f6e6c7920312050726976617465204d696e7421000000000000000000000000600082015250565b600061429760148361345b565b91506142a282614261565b602082019050919050565b600060208201905081810360008301526142c68161428a565b9050919050565b7f54686520636f6e747261637420697320706175736564206f72206e6f7420707260008201527f6976617465206f6e6c7921000000000000000000000000000000000000000000602082015250565b6000614329602b8361345b565b9150614334826142cd565b604082019050919050565b600060208201905081810360008301526143588161431c565b9050919050565b7f4d6178205072697661746520537570706c792100000000000000000000000000600082015250565b600061439560138361345b565b91506143a08261435f565b602082019050919050565b600060208201905081810360008301526143c481614388565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061440160138361345b565b915061440c826143cb565b602082019050919050565b60006020820190508181036000830152614430816143f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006144718261350b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144a4576144a361412e565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061450b602c8361345b565b9150614516826144af565b604082019050919050565b6000602082019050818103600083015261453a816144fe565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061459d60298361345b565b91506145a882614541565b604082019050919050565b600060208201905081810360008301526145cc81614590565b9050919050565b7f54686520636f6e747261637420697320706175736564206f722073657420746f60008201527f2070726976617465206f6e6c7921000000000000000000000000000000000000602082015250565b600061462f602e8361345b565b915061463a826145d3565b604082019050919050565b6000602082019050818103600083015261465e81614622565b9050919050565b60006146708261350b565b915061467b8361350b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146b4576146b361412e565b5b828202905092915050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061471b602a8361345b565b9150614726826146bf565b604082019050919050565b6000602082019050818103600083015261474a8161470e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006147ad602f8361345b565b91506147b882614751565b604082019050919050565b600060208201905081810360008301526147dc816147a0565b9050919050565b600081905092915050565b60006147f982613450565b61480381856147e3565b935061481381856020860161346c565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461484181613c72565b61484b81866147e3565b945060018216600081146148665760018114614877576148aa565b60ff198316865281860193506148aa565b6148808561481f565b60005b838110156148a257815481890152600182019150602081019050614883565b838801955050505b50505092915050565b60006148bf82866147ee565b91506148cb82856147ee565b91506148d78284614834565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061494060268361345b565b915061494b826148e4565b604082019050919050565b6000602082019050818103600083015261496f81614933565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006149d2602c8361345b565b91506149dd82614976565b604082019050919050565b60006020820190508181036000830152614a01816149c5565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614a6460258361345b565b9150614a6f82614a08565b604082019050919050565b60006020820190508181036000830152614a9381614a57565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614af660248361345b565b9150614b0182614a9a565b604082019050919050565b60006020820190508181036000830152614b2581614ae9565b9050919050565b6000614b378261350b565b9150614b428361350b565b925082821015614b5557614b5461412e565b5b828203905092915050565b6000614b6b82613739565b915060ff821415614b7f57614b7e61412e565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614bc060198361345b565b9150614bcb82614b8a565b602082019050919050565b60006020820190508181036000830152614bef81614bb3565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614c5260328361345b565b9150614c5d82614bf6565b604082019050919050565b60006020820190508181036000830152614c8181614c45565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614cc28261350b565b9150614ccd8361350b565b925082614cdd57614cdc614c88565b5b828204905092915050565b6000614cf38261350b565b9150614cfe8361350b565b925082614d0e57614d0d614c88565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614d4082614d19565b614d4a8185614d24565b9350614d5a81856020860161346c565b614d638161349f565b840191505092915050565b6000608082019050614d8360008301876135a0565b614d9060208301866135a0565b614d9d6040830185613636565b8181036060830152614daf8184614d35565b905095945050505050565b600081519050614dc9816133c1565b92915050565b600060208284031215614de557614de461338b565b5b6000614df384828501614dba565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614e6160208361345b565b9150614e6c82614e2b565b602082019050919050565b60006020820190508181036000830152614e9081614e54565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614ecd601c8361345b565b9150614ed882614e97565b602082019050919050565b60006020820190508181036000830152614efc81614ec0565b905091905056fea26469706673582212200f2c4ab717a06a320d0f66dd1ce5545ca19255ce1a30fd4a7bdcffa93320867664736f6c634300080c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c5068616e746f6d2057617665000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025057000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f7068616e746f6d776176656d6574612e70696e626173652e6170702f6a736f6e2f0000000000000000000000000000000000000000000000

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c5068616e746f6d2057617665000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025057000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f7068616e746f6d776176656d6574612e70696e626173652e6170702f6a736f6e2f0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Phantom Wave
Arg [1] : _symbol (string): PW
Arg [2] : _initBaseURI (string): https://phantomwavemeta.pinbase.app/json/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 5068616e746f6d20576176650000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 5057000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000029
Arg [8] : 68747470733a2f2f7068616e746f6d776176656d6574612e70696e626173652e
Arg [9] : 6170702f6a736f6e2f0000000000000000000000000000000000000000000000


Deployed ByteCode Sourcemap

45525:5193:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36783:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22531:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24090:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23613:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45828:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49263:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37423:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24840:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49932:467;;;;;;;;;;;;;:::i;:::-;;49455:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37091:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47550:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45942:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49559:365;;;;;;;;;;;;;:::i;:::-;;47023:519;;;:::i;:::-;;25250:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47749:743;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37613:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46009:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45607:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45974:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22225:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45721:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46636:379;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21955:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44640:103;;;;;;;;;;;;;:::i;:::-;;49149:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45872:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43989:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45678:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22700:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24383:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25506:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48500:641;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45639:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45792:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49354:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24609:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44898:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36783:224;36885:4;36924:35;36909:50;;;:11;:50;;;;:90;;;;36963:36;36987:11;36963:23;:36::i;:::-;36909:90;36902:97;;36783:224;;;:::o;22531:100::-;22585:13;22618:5;22611:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22531:100;:::o;24090:221::-;24166:7;24194:16;24202:7;24194;:16::i;:::-;24186:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24279:15;:24;24295:7;24279:24;;;;;;;;;;;;;;;;;;;;;24272:31;;24090:221;;;:::o;23613:411::-;23694:13;23710:23;23725:7;23710:14;:23::i;:::-;23694:39;;23758:5;23752:11;;:2;:11;;;;23744:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23852:5;23836:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23861:37;23878:5;23885:12;:10;:12::i;:::-;23861:16;:37::i;:::-;23836:62;23814:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23995:21;24004:2;24008:7;23995:8;:21::i;:::-;23683:341;23613:411;;:::o;45828:37::-;;;;:::o;49263:83::-;44220:12;:10;:12::i;:::-;44209:23;;:7;:5;:7::i;:::-;:23;;;44201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49332:6:::1;49323;;:15;;;;;;;;;;;;;;;;;;49263:83:::0;:::o;37423:113::-;37484:7;37511:10;:17;;;;37504:24;;37423:113;:::o;24840:339::-;25035:41;25054:12;:10;:12::i;:::-;25068:7;25035:18;:41::i;:::-;25027:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25143:28;25153:4;25159:2;25163:7;25143:9;:28::i;:::-;24840:339;;;:::o;49932:467::-;44220:12;:10;:12::i;:::-;44209:23;;:7;:5;:7::i;:::-;:23;;;44201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50157:1:::1;50137:22;;:8;;;;;;;;;;;:22;;;;50129:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50210:7;50231:8;;;;;;;;;;;50223:22;;50253:21;50223:56;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50209:70;;;50298:2;50290:11;;;::::0;::::1;;49979:420;49932:467::o:0;49455:96::-;44220:12;:10;:12::i;:::-;44209:23;;:7;:5;:7::i;:::-;:23;;;44201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49534:9:::1;49523:8;;:20;;;;;;;;;;;;;;;;;;49455:96:::0;:::o;37091:256::-;37188:7;37224:23;37241:5;37224:16;:23::i;:::-;37216:5;:31;37208:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37313:12;:19;37326:5;37313:19;;;;;;;;;;;;;;;:26;37333:5;37313:26;;;;;;;;;;;;37306:33;;37091:256;;;;:::o;47550:191::-;47652:11;46401:1;46387:11;:15;;;:52;;;;;46421:18;;;;;;;;;;;46406:33;;:11;:33;;;;46387:52;46365:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;46551:9;;;;;;;;;;;46520:40;;46536:11;46520:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;46498:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;44220:12:::1;:10;:12::i;:::-;44209:23;;:7;:5;:7::i;:::-;:23;;;44201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47700:33:::2;47710:9;47721:11;47700:9;:33::i;:::-;47550:191:::0;;;:::o;45942:23::-;;;;;;;;;;;;;:::o;49559:365::-;44220:12;:10;:12::i;:::-;44209:23;;:7;:5;:7::i;:::-;:23;;;44201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49736:7:::1;49757;:5;:7::i;:::-;49749:21;;49778;49749:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49735:69;;;49823:2;49815:11;;;::::0;::::1;;49596:328;49559:365::o:0;47023:519::-;47076:1;46401;46387:11;:15;;;:52;;;;;46421:18;;;;;;;;;;;46406:33;;:11;:33;;;;46387:52;46365:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;46551:9;;;;;;;;;;;46520:40;;46536:11;46520:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;46498:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;47128:1:::1;47098:4;:14;;;47113:10;47098:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:31;47090:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47188:6;;;;;;;;;;;47187:7;:22;;;;;47198:11;;;;;;;;;;;47187:22;47165:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;47390:16;;;;;;;;;;;47369:37;;47385:1;47369:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:37;;47361:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47462:11;;47449:9;:24;;47441:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;47510:24;47520:10;47532:1;47510:9;:24::i;:::-;47023:519:::0;:::o;25250:185::-;25388:39;25405:4;25411:2;25415:7;25388:39;;;;;;;;;;;;:16;:39::i;:::-;25250:185;;;:::o;47749:743::-;47836:16;47870:23;47896:17;47906:6;47896:9;:17::i;:::-;47870:43;;47924:30;47971:15;47957:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47924:63;;47998:22;48023:1;47998:26;;48035:23;48075:377;48114:15;48096;:33;:64;;;;;48151:9;;;;;;;;;;;48133:27;;:14;:27;;48096:64;48075:377;;;48187:25;48215:23;48223:14;48215:7;:23::i;:::-;48187:51;;48280:6;48259:27;;:17;:27;;;48255:153;;;48340:14;48307:13;48321:15;48307:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;48375:17;;;;;:::i;:::-;;;;48255:153;48424:16;;;;;:::i;:::-;;;;48172:280;48075:377;;;48471:13;48464:20;;;;;;47749:743;;;:::o;37613:233::-;37688:7;37724:30;:28;:30::i;:::-;37716:5;:38;37708:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;37821:10;37832:5;37821:17;;;;;;;;:::i;:::-;;;;;;;;;;37814:24;;37613:233;;;:::o;46009:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45607:25::-;;;;;;;;;;;;;:::o;45974:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22225:239::-;22297:7;22317:13;22333:7;:16;22341:7;22333:16;;;;;;;;;;;;;;;;;;;;;22317:32;;22385:1;22368:19;;:5;:19;;;;22360:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22451:5;22444:12;;;22225:239;;;:::o;45721:36::-;;;;;;;;;;;;;:::o;46636:379::-;46732:11;46401:1;46387:11;:15;;;:52;;;;;46421:18;;;;;;;;;;;46406:33;;:11;:33;;;;46387:52;46365:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;46551:9;;;;;;;;;;;46520:40;;46536:11;46520:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;46498:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;46784:6:::1;;;;;;;;;;;46783:7;:23;;;;;46795:11;;;;;;;;;;;46794:12;46783:23;46761:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;46925:11;46912:24;;:10;;:24;;;;:::i;:::-;46899:9;:37;;46891:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;46973:34;46983:10;46995:11;46973:9;:34::i;:::-;46636:379:::0;;:::o;21955:208::-;22027:7;22072:1;22055:19;;:5;:19;;;;22047:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22139:9;:16;22149:5;22139:16;;;;;;;;;;;;;;;;22132:23;;21955:208;;;:::o;44640:103::-;44220:12;:10;:12::i;:::-;44209:23;;:7;:5;:7::i;:::-;:23;;;44201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44705:30:::1;44732:1;44705:18;:30::i;:::-;44640:103::o:0;49149:106::-;44220:12;:10;:12::i;:::-;44209:23;;:7;:5;:7::i;:::-;:23;;;44201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49237:10:::1;49225:9;:22;;;;;;;;;;;;:::i;:::-;;49149:106:::0;:::o;45872:36::-;;;;:::o;43989:87::-;44035:7;44062:6;;;;;;;;;;;44055:13;;43989:87;:::o;45678:36::-;;;;;;;;;;;;;:::o;22700:104::-;22756:13;22789:7;22782:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22700:104;:::o;24383:155::-;24478:52;24497:12;:10;:12::i;:::-;24511:8;24521;24478:18;:52::i;:::-;24383:155;;:::o;25506:328::-;25681:41;25700:12;:10;:12::i;:::-;25714:7;25681:18;:41::i;:::-;25673:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25787:39;25801:4;25807:2;25811:7;25820:5;25787:13;:39::i;:::-;25506:328;;;;:::o;48500:641::-;48619:13;48672:17;48680:8;48672:7;:17::i;:::-;48650:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;48777:28;48808:10;:8;:10::i;:::-;48777:41;;48880:1;48855:14;48849:28;:32;:284;;;;;;;;;;;;;;;;;48973:14;49014:19;:8;:17;:19::i;:::-;49060:9;48930:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48849:284;48829:304;;;48500:641;;;:::o;45639:30::-;;;;;;;;;;;;;:::o;45792:29::-;;;;;;;;;;;;;:::o;49354:93::-;44220:12;:10;:12::i;:::-;44209:23;;:7;:5;:7::i;:::-;:23;;;44201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49431:8:::1;49417:11;;:22;;;;;;;;;;;;;;;;;;49354:93:::0;:::o;24609:164::-;24706:4;24730:18;:25;24749:5;24730:25;;;;;;;;;;;;;;;:35;24756:8;24730:35;;;;;;;;;;;;;;;;;;;;;;;;;24723:42;;24609:164;;;;:::o;44898:201::-;44220:12;:10;:12::i;:::-;44209:23;;:7;:5;:7::i;:::-;:23;;;44201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45007:1:::1;44987:22;;:8;:22;;;;44979:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45063:28;45082:8;45063:18;:28::i;:::-;44898:201:::0;:::o;21586:305::-;21688:4;21740:25;21725:40;;;:11;:40;;;;:105;;;;21797:33;21782:48;;;:11;:48;;;;21725:105;:158;;;;21847:36;21871:11;21847:23;:36::i;:::-;21725:158;21705:178;;21586:305;;;:::o;27344:127::-;27409:4;27461:1;27433:30;;:7;:16;27441:7;27433:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27426:37;;27344:127;;;:::o;16822:98::-;16875:7;16902:10;16895:17;;16822:98;:::o;31490:174::-;31592:2;31565:15;:24;31581:7;31565:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31648:7;31644:2;31610:46;;31619:23;31634:7;31619:14;:23::i;:::-;31610:46;;;;;;;;;;;;31490:174;;:::o;27638:348::-;27731:4;27756:16;27764:7;27756;:16::i;:::-;27748:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27832:13;27848:23;27863:7;27848:14;:23::i;:::-;27832:39;;27901:5;27890:16;;:7;:16;;;:51;;;;27934:7;27910:31;;:20;27922:7;27910:11;:20::i;:::-;:31;;;27890:51;:87;;;;27945:32;27962:5;27969:7;27945:16;:32::i;:::-;27890:87;27882:96;;;27638:348;;;;:::o;30747:625::-;30906:4;30879:31;;:23;30894:7;30879:14;:23::i;:::-;:31;;;30871:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;30985:1;30971:16;;:2;:16;;;;30963:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31041:39;31062:4;31068:2;31072:7;31041:20;:39::i;:::-;31145:29;31162:1;31166:7;31145:8;:29::i;:::-;31206:1;31187:9;:15;31197:4;31187:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31235:1;31218:9;:13;31228:2;31218:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31266:2;31247:7;:16;31255:7;31247:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31305:7;31301:2;31286:27;;31295:4;31286:27;;;;;;;;;;;;31326:38;31346:4;31352:2;31356:7;31326:19;:38::i;:::-;30747:625;;;:::o;50407:190::-;50489:7;50484:106;50506:11;50502:15;;:1;:15;;;50484:106;;;50539:39;50549:9;50576:1;50560:13;:11;:13::i;:::-;:17;;;;:::i;:::-;50539:9;:39::i;:::-;50519:3;;;;;:::i;:::-;;;;50484:106;;;;50407:190;;:::o;45259:191::-;45333:16;45352:6;;;;;;;;;;;45333:25;;45378:8;45369:6;;:17;;;;;;;;;;;;;;;;;;45433:8;45402:40;;45423:8;45402:40;;;;;;;;;;;;45322:128;45259:191;:::o;31806:315::-;31961:8;31952:17;;:5;:17;;;;31944:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;32048:8;32010:18;:25;32029:5;32010:25;;;;;;;;;;;;;;;:35;32036:8;32010:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32094:8;32072:41;;32087:5;32072:41;;;32104:8;32072:41;;;;;;:::i;:::-;;;;;;;;31806:315;;;:::o;26716:::-;26873:28;26883:4;26889:2;26893:7;26873:9;:28::i;:::-;26920:48;26943:4;26949:2;26953:7;26962:5;26920:22;:48::i;:::-;26912:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26716:315;;;;:::o;50605:110::-;50665:13;50698:9;50691:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50605:110;:::o;17399:723::-;17455:13;17685:1;17676:5;:10;17672:53;;;17703:10;;;;;;;;;;;;;;;;;;;;;17672:53;17735:12;17750:5;17735:20;;17766:14;17791:78;17806:1;17798:4;:9;17791:78;;17824:8;;;;;:::i;:::-;;;;17855:2;17847:10;;;;;:::i;:::-;;;17791:78;;;17879:19;17911:6;17901:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17879:39;;17929:154;17945:1;17936:5;:10;17929:154;;17973:1;17963:11;;;;;:::i;:::-;;;18040:2;18032:5;:10;;;;:::i;:::-;18019:2;:24;;;;:::i;:::-;18006:39;;17989:6;17996;17989:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18069:2;18060:11;;;;;:::i;:::-;;;17929:154;;;18107:6;18093:21;;;;;17399:723;;;;:::o;20019:157::-;20104:4;20143:25;20128:40;;;:11;:40;;;;20121:47;;20019:157;;;:::o;38459:589::-;38603:45;38630:4;38636:2;38640:7;38603:26;:45::i;:::-;38681:1;38665:18;;:4;:18;;;38661:187;;;38700:40;38732:7;38700:31;:40::i;:::-;38661:187;;;38770:2;38762:10;;:4;:10;;;38758:90;;38789:47;38822:4;38828:7;38789:32;:47::i;:::-;38758:90;38661:187;38876:1;38862:16;;:2;:16;;;38858:183;;;38895:45;38932:7;38895:36;:45::i;:::-;38858:183;;;38968:4;38962:10;;:2;:10;;;38958:83;;38989:40;39017:2;39021:7;38989:27;:40::i;:::-;38958:83;38858:183;38459:589;;;:::o;34568:125::-;;;;:::o;28328:110::-;28404:26;28414:2;28418:7;28404:26;;;;;;;;;;;;:9;:26::i;:::-;28328:110;;:::o;32686:799::-;32841:4;32862:15;:2;:13;;;:15::i;:::-;32858:620;;;32914:2;32898:36;;;32935:12;:10;:12::i;:::-;32949:4;32955:7;32964:5;32898:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32894:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33157:1;33140:6;:13;:18;33136:272;;;33183:60;;;;;;;;;;:::i;:::-;;;;;;;;33136:272;33358:6;33352:13;33343:6;33339:2;33335:15;33328:38;32894:529;33031:41;;;33021:51;;;:6;:51;;;;33014:58;;;;;32858:620;33462:4;33455:11;;32686:799;;;;;;;:::o;34057:126::-;;;;:::o;39771:164::-;39875:10;:17;;;;39848:15;:24;39864:7;39848:24;;;;;;;;;;;:44;;;;39903:10;39919:7;39903:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39771:164;:::o;40562:988::-;40828:22;40878:1;40853:22;40870:4;40853:16;:22::i;:::-;:26;;;;:::i;:::-;40828:51;;40890:18;40911:17;:26;40929:7;40911:26;;;;;;;;;;;;40890:47;;41058:14;41044:10;:28;41040:328;;41089:19;41111:12;:18;41124:4;41111:18;;;;;;;;;;;;;;;:34;41130:14;41111:34;;;;;;;;;;;;41089:56;;41195:11;41162:12;:18;41175:4;41162:18;;;;;;;;;;;;;;;:30;41181:10;41162:30;;;;;;;;;;;:44;;;;41312:10;41279:17;:30;41297:11;41279:30;;;;;;;;;;;:43;;;;41074:294;41040:328;41464:17;:26;41482:7;41464:26;;;;;;;;;;;41457:33;;;41508:12;:18;41521:4;41508:18;;;;;;;;;;;;;;;:34;41527:14;41508:34;;;;;;;;;;;41501:41;;;40643:907;;40562:988;;:::o;41845:1079::-;42098:22;42143:1;42123:10;:17;;;;:21;;;;:::i;:::-;42098:46;;42155:18;42176:15;:24;42192:7;42176:24;;;;;;;;;;;;42155:45;;42527:19;42549:10;42560:14;42549:26;;;;;;;;:::i;:::-;;;;;;;;;;42527:48;;42613:11;42588:10;42599;42588:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42724:10;42693:15;:28;42709:11;42693:28;;;;;;;;;;;:41;;;;42865:15;:24;42881:7;42865:24;;;;;;;;;;;42858:31;;;42900:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41916:1008;;;41845:1079;:::o;39349:221::-;39434:14;39451:20;39468:2;39451:16;:20::i;:::-;39434:37;;39509:7;39482:12;:16;39495:2;39482:16;;;;;;;;;;;;;;;:24;39499:6;39482:24;;;;;;;;;;;:34;;;;39556:6;39527:17;:26;39545:7;39527:26;;;;;;;;;;;:35;;;;39423:147;39349:221;;:::o;28665:321::-;28795:18;28801:2;28805:7;28795:5;:18::i;:::-;28846:54;28877:1;28881:2;28885:7;28894:5;28846:22;:54::i;:::-;28824:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28665:321;;;:::o;8875:326::-;8935:4;9192:1;9170:7;:19;;;:23;9163:30;;8875:326;;;:::o;29322:439::-;29416:1;29402:16;;:2;:16;;;;29394:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29475:16;29483:7;29475;:16::i;:::-;29474:17;29466:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29537:45;29566:1;29570:2;29574:7;29537:20;:45::i;:::-;29612:1;29595:9;:13;29605:2;29595:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29643:2;29624:7;:16;29632:7;29624:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29688:7;29684:2;29663:33;;29680:1;29663:33;;;;;;;;;;;;29709:44;29737:1;29741:2;29745:7;29709:19;:44::i;:::-;29322:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:116::-;5360:21;5375:5;5360:21;:::i;:::-;5353:5;5350:32;5340:60;;5396:1;5393;5386:12;5340:60;5290:116;:::o;5412:133::-;5455:5;5493:6;5480:20;5471:29;;5509:30;5533:5;5509:30;:::i;:::-;5412:133;;;;:::o;5551:323::-;5607:6;5656:2;5644:9;5635:7;5631:23;5627:32;5624:119;;;5662:79;;:::i;:::-;5624:119;5782:1;5807:50;5849:7;5840:6;5829:9;5825:22;5807:50;:::i;:::-;5797:60;;5753:114;5551:323;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:329::-;6564:6;6613:2;6601:9;6592:7;6588:23;6584:32;6581:119;;;6619:79;;:::i;:::-;6581:119;6739:1;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6710:117;6505:329;;;;:::o;6840:86::-;6875:7;6915:4;6908:5;6904:16;6893:27;;6840:86;;;:::o;6932:118::-;7003:22;7019:5;7003:22;:::i;:::-;6996:5;6993:33;6983:61;;7040:1;7037;7030:12;6983:61;6932:118;:::o;7056:135::-;7100:5;7138:6;7125:20;7116:29;;7154:31;7179:5;7154:31;:::i;:::-;7056:135;;;;:::o;7197:470::-;7263:6;7271;7320:2;7308:9;7299:7;7295:23;7291:32;7288:119;;;7326:79;;:::i;:::-;7288:119;7446:1;7471:51;7514:7;7505:6;7494:9;7490:22;7471:51;:::i;:::-;7461:61;;7417:115;7571:2;7597:53;7642:7;7633:6;7622:9;7618:22;7597:53;:::i;:::-;7587:63;;7542:118;7197:470;;;;;:::o;7673:114::-;7740:6;7774:5;7768:12;7758:22;;7673:114;;;:::o;7793:184::-;7892:11;7926:6;7921:3;7914:19;7966:4;7961:3;7957:14;7942:29;;7793:184;;;;:::o;7983:132::-;8050:4;8073:3;8065:11;;8103:4;8098:3;8094:14;8086:22;;7983:132;;;:::o;8121:108::-;8198:24;8216:5;8198:24;:::i;:::-;8193:3;8186:37;8121:108;;:::o;8235:179::-;8304:10;8325:46;8367:3;8359:6;8325:46;:::i;:::-;8403:4;8398:3;8394:14;8380:28;;8235:179;;;;:::o;8420:113::-;8490:4;8522;8517:3;8513:14;8505:22;;8420:113;;;:::o;8569:732::-;8688:3;8717:54;8765:5;8717:54;:::i;:::-;8787:86;8866:6;8861:3;8787:86;:::i;:::-;8780:93;;8897:56;8947:5;8897:56;:::i;:::-;8976:7;9007:1;8992:284;9017:6;9014:1;9011:13;8992:284;;;9093:6;9087:13;9120:63;9179:3;9164:13;9120:63;:::i;:::-;9113:70;;9206:60;9259:6;9206:60;:::i;:::-;9196:70;;9052:224;9039:1;9036;9032:9;9027:14;;8992:284;;;8996:14;9292:3;9285:10;;8693:608;;;8569:732;;;;:::o;9307:373::-;9450:4;9488:2;9477:9;9473:18;9465:26;;9537:9;9531:4;9527:20;9523:1;9512:9;9508:17;9501:47;9565:108;9668:4;9659:6;9565:108;:::i;:::-;9557:116;;9307:373;;;;:::o;9686:89::-;9722:7;9762:6;9755:5;9751:18;9740:29;;9686:89;;;:::o;9781:115::-;9866:23;9883:5;9866:23;:::i;:::-;9861:3;9854:36;9781:115;;:::o;9902:218::-;9993:4;10031:2;10020:9;10016:18;10008:26;;10044:69;10110:1;10099:9;10095:17;10086:6;10044:69;:::i;:::-;9902:218;;;;:::o;10126:325::-;10183:6;10232:2;10220:9;10211:7;10207:23;10203:32;10200:119;;;10238:79;;:::i;:::-;10200:119;10358:1;10383:51;10426:7;10417:6;10406:9;10402:22;10383:51;:::i;:::-;10373:61;;10329:115;10126:325;;;;:::o;10457:117::-;10566:1;10563;10556:12;10580:117;10689:1;10686;10679:12;10703:180;10751:77;10748:1;10741:88;10848:4;10845:1;10838:15;10872:4;10869:1;10862:15;10889:281;10972:27;10994:4;10972:27;:::i;:::-;10964:6;10960:40;11102:6;11090:10;11087:22;11066:18;11054:10;11051:34;11048:62;11045:88;;;11113:18;;:::i;:::-;11045:88;11153:10;11149:2;11142:22;10932:238;10889:281;;:::o;11176:129::-;11210:6;11237:20;;:::i;:::-;11227:30;;11266:33;11294:4;11286:6;11266:33;:::i;:::-;11176:129;;;:::o;11311:308::-;11373:4;11463:18;11455:6;11452:30;11449:56;;;11485:18;;:::i;:::-;11449:56;11523:29;11545:6;11523:29;:::i;:::-;11515:37;;11607:4;11601;11597:15;11589:23;;11311:308;;;:::o;11625:154::-;11709:6;11704:3;11699;11686:30;11771:1;11762:6;11757:3;11753:16;11746:27;11625:154;;;:::o;11785:412::-;11863:5;11888:66;11904:49;11946:6;11904:49;:::i;:::-;11888:66;:::i;:::-;11879:75;;11977:6;11970:5;11963:21;12015:4;12008:5;12004:16;12053:3;12044:6;12039:3;12035:16;12032:25;12029:112;;;12060:79;;:::i;:::-;12029:112;12150:41;12184:6;12179:3;12174;12150:41;:::i;:::-;11869:328;11785:412;;;;;:::o;12217:340::-;12273:5;12322:3;12315:4;12307:6;12303:17;12299:27;12289:122;;12330:79;;:::i;:::-;12289:122;12447:6;12434:20;12472:79;12547:3;12539:6;12532:4;12524:6;12520:17;12472:79;:::i;:::-;12463:88;;12279:278;12217:340;;;;:::o;12563:509::-;12632:6;12681:2;12669:9;12660:7;12656:23;12652:32;12649:119;;;12687:79;;:::i;:::-;12649:119;12835:1;12824:9;12820:17;12807:31;12865:18;12857:6;12854:30;12851:117;;;12887:79;;:::i;:::-;12851:117;12992:63;13047:7;13038:6;13027:9;13023:22;12992:63;:::i;:::-;12982:73;;12778:287;12563:509;;;;:::o;13078:112::-;13161:22;13177:5;13161:22;:::i;:::-;13156:3;13149:35;13078:112;;:::o;13196:214::-;13285:4;13323:2;13312:9;13308:18;13300:26;;13336:67;13400:1;13389:9;13385:17;13376:6;13336:67;:::i;:::-;13196:214;;;;:::o;13416:468::-;13481:6;13489;13538:2;13526:9;13517:7;13513:23;13509:32;13506:119;;;13544:79;;:::i;:::-;13506:119;13664:1;13689:53;13734:7;13725:6;13714:9;13710:22;13689:53;:::i;:::-;13679:63;;13635:117;13791:2;13817:50;13859:7;13850:6;13839:9;13835:22;13817:50;:::i;:::-;13807:60;;13762:115;13416:468;;;;;:::o;13890:307::-;13951:4;14041:18;14033:6;14030:30;14027:56;;;14063:18;;:::i;:::-;14027:56;14101:29;14123:6;14101:29;:::i;:::-;14093:37;;14185:4;14179;14175:15;14167:23;;13890:307;;;:::o;14203:410::-;14280:5;14305:65;14321:48;14362:6;14321:48;:::i;:::-;14305:65;:::i;:::-;14296:74;;14393:6;14386:5;14379:21;14431:4;14424:5;14420:16;14469:3;14460:6;14455:3;14451:16;14448:25;14445:112;;;14476:79;;:::i;:::-;14445:112;14566:41;14600:6;14595:3;14590;14566:41;:::i;:::-;14286:327;14203:410;;;;;:::o;14632:338::-;14687:5;14736:3;14729:4;14721:6;14717:17;14713:27;14703:122;;14744:79;;:::i;:::-;14703:122;14861:6;14848:20;14886:78;14960:3;14952:6;14945:4;14937:6;14933:17;14886:78;:::i;:::-;14877:87;;14693:277;14632:338;;;;:::o;14976:943::-;15071:6;15079;15087;15095;15144:3;15132:9;15123:7;15119:23;15115:33;15112:120;;;15151:79;;:::i;:::-;15112:120;15271:1;15296:53;15341:7;15332:6;15321:9;15317:22;15296:53;:::i;:::-;15286:63;;15242:117;15398:2;15424:53;15469:7;15460:6;15449:9;15445:22;15424:53;:::i;:::-;15414:63;;15369:118;15526:2;15552:53;15597:7;15588:6;15577:9;15573:22;15552:53;:::i;:::-;15542:63;;15497:118;15682:2;15671:9;15667:18;15654:32;15713:18;15705:6;15702:30;15699:117;;;15735:79;;:::i;:::-;15699:117;15840:62;15894:7;15885:6;15874:9;15870:22;15840:62;:::i;:::-;15830:72;;15625:287;14976:943;;;;;;;:::o;15925:474::-;15993:6;16001;16050:2;16038:9;16029:7;16025:23;16021:32;16018:119;;;16056:79;;:::i;:::-;16018:119;16176:1;16201:53;16246:7;16237:6;16226:9;16222:22;16201:53;:::i;:::-;16191:63;;16147:117;16303:2;16329:53;16374:7;16365:6;16354:9;16350:22;16329:53;:::i;:::-;16319:63;;16274:118;15925:474;;;;;:::o;16405:180::-;16453:77;16450:1;16443:88;16550:4;16547:1;16540:15;16574:4;16571:1;16564:15;16591:320;16635:6;16672:1;16666:4;16662:12;16652:22;;16719:1;16713:4;16709:12;16740:18;16730:81;;16796:4;16788:6;16784:17;16774:27;;16730:81;16858:2;16850:6;16847:14;16827:18;16824:38;16821:84;;;16877:18;;:::i;:::-;16821:84;16642:269;16591:320;;;:::o;16917:231::-;17057:34;17053:1;17045:6;17041:14;17034:58;17126:14;17121:2;17113:6;17109:15;17102:39;16917:231;:::o;17154:366::-;17296:3;17317:67;17381:2;17376:3;17317:67;:::i;:::-;17310:74;;17393:93;17482:3;17393:93;:::i;:::-;17511:2;17506:3;17502:12;17495:19;;17154:366;;;:::o;17526:419::-;17692:4;17730:2;17719:9;17715:18;17707:26;;17779:9;17773:4;17769:20;17765:1;17754:9;17750:17;17743:47;17807:131;17933:4;17807:131;:::i;:::-;17799:139;;17526:419;;;:::o;17951:220::-;18091:34;18087:1;18079:6;18075:14;18068:58;18160:3;18155:2;18147:6;18143:15;18136:28;17951:220;:::o;18177:366::-;18319:3;18340:67;18404:2;18399:3;18340:67;:::i;:::-;18333:74;;18416:93;18505:3;18416:93;:::i;:::-;18534:2;18529:3;18525:12;18518:19;;18177:366;;;:::o;18549:419::-;18715:4;18753:2;18742:9;18738:18;18730:26;;18802:9;18796:4;18792:20;18788:1;18777:9;18773:17;18766:47;18830:131;18956:4;18830:131;:::i;:::-;18822:139;;18549:419;;;:::o;18974:243::-;19114:34;19110:1;19102:6;19098:14;19091:58;19183:26;19178:2;19170:6;19166:15;19159:51;18974:243;:::o;19223:366::-;19365:3;19386:67;19450:2;19445:3;19386:67;:::i;:::-;19379:74;;19462:93;19551:3;19462:93;:::i;:::-;19580:2;19575:3;19571:12;19564:19;;19223:366;;;:::o;19595:419::-;19761:4;19799:2;19788:9;19784:18;19776:26;;19848:9;19842:4;19838:20;19834:1;19823:9;19819:17;19812:47;19876:131;20002:4;19876:131;:::i;:::-;19868:139;;19595:419;;;:::o;20020:182::-;20160:34;20156:1;20148:6;20144:14;20137:58;20020:182;:::o;20208:366::-;20350:3;20371:67;20435:2;20430:3;20371:67;:::i;:::-;20364:74;;20447:93;20536:3;20447:93;:::i;:::-;20565:2;20560:3;20556:12;20549:19;;20208:366;;;:::o;20580:419::-;20746:4;20784:2;20773:9;20769:18;20761:26;;20833:9;20827:4;20823:20;20819:1;20808:9;20804:17;20797:47;20861:131;20987:4;20861:131;:::i;:::-;20853:139;;20580:419;;;:::o;21005:236::-;21145:34;21141:1;21133:6;21129:14;21122:58;21214:19;21209:2;21201:6;21197:15;21190:44;21005:236;:::o;21247:366::-;21389:3;21410:67;21474:2;21469:3;21410:67;:::i;:::-;21403:74;;21486:93;21575:3;21486:93;:::i;:::-;21604:2;21599:3;21595:12;21588:19;;21247:366;;;:::o;21619:419::-;21785:4;21823:2;21812:9;21808:18;21800:26;;21872:9;21866:4;21862:20;21858:1;21847:9;21843:17;21836:47;21900:131;22026:4;21900:131;:::i;:::-;21892:139;;21619:419;;;:::o;22044:221::-;22184:34;22180:1;22172:6;22168:14;22161:58;22253:4;22248:2;22240:6;22236:15;22229:29;22044:221;:::o;22271:366::-;22413:3;22434:67;22498:2;22493:3;22434:67;:::i;:::-;22427:74;;22510:93;22599:3;22510:93;:::i;:::-;22628:2;22623:3;22619:12;22612:19;;22271:366;;;:::o;22643:419::-;22809:4;22847:2;22836:9;22832:18;22824:26;;22896:9;22890:4;22886:20;22882:1;22871:9;22867:17;22860:47;22924:131;23050:4;22924:131;:::i;:::-;22916:139;;22643:419;;;:::o;23068:147::-;23169:11;23206:3;23191:18;;23068:147;;;;:::o;23221:114::-;;:::o;23341:398::-;23500:3;23521:83;23602:1;23597:3;23521:83;:::i;:::-;23514:90;;23613:93;23702:3;23613:93;:::i;:::-;23731:1;23726:3;23722:11;23715:18;;23341:398;;;:::o;23745:379::-;23929:3;23951:147;24094:3;23951:147;:::i;:::-;23944:154;;24115:3;24108:10;;23745:379;;;:::o;24130:230::-;24270:34;24266:1;24258:6;24254:14;24247:58;24339:13;24334:2;24326:6;24322:15;24315:38;24130:230;:::o;24366:366::-;24508:3;24529:67;24593:2;24588:3;24529:67;:::i;:::-;24522:74;;24605:93;24694:3;24605:93;:::i;:::-;24723:2;24718:3;24714:12;24707:19;;24366:366;;;:::o;24738:419::-;24904:4;24942:2;24931:9;24927:18;24919:26;;24991:9;24985:4;24981:20;24977:1;24966:9;24962:17;24955:47;25019:131;25145:4;25019:131;:::i;:::-;25011:139;;24738:419;;;:::o;25163:170::-;25303:22;25299:1;25291:6;25287:14;25280:46;25163:170;:::o;25339:366::-;25481:3;25502:67;25566:2;25561:3;25502:67;:::i;:::-;25495:74;;25578:93;25667:3;25578:93;:::i;:::-;25696:2;25691:3;25687:12;25680:19;;25339:366;;;:::o;25711:419::-;25877:4;25915:2;25904:9;25900:18;25892:26;;25964:9;25958:4;25954:20;25950:1;25939:9;25935:17;25928:47;25992:131;26118:4;25992:131;:::i;:::-;25984:139;;25711:419;;;:::o;26136:180::-;26184:77;26181:1;26174:88;26281:4;26278:1;26271:15;26305:4;26302:1;26295:15;26322:305;26362:3;26381:20;26399:1;26381:20;:::i;:::-;26376:25;;26415:20;26433:1;26415:20;:::i;:::-;26410:25;;26569:1;26501:66;26497:74;26494:1;26491:81;26488:107;;;26575:18;;:::i;:::-;26488:107;26619:1;26616;26612:9;26605:16;;26322:305;;;;:::o;26633:170::-;26773:22;26769:1;26761:6;26757:14;26750:46;26633:170;:::o;26809:366::-;26951:3;26972:67;27036:2;27031:3;26972:67;:::i;:::-;26965:74;;27048:93;27137:3;27048:93;:::i;:::-;27166:2;27161:3;27157:12;27150:19;;26809:366;;;:::o;27181:419::-;27347:4;27385:2;27374:9;27370:18;27362:26;;27434:9;27428:4;27424:20;27420:1;27409:9;27405:17;27398:47;27462:131;27588:4;27462:131;:::i;:::-;27454:139;;27181:419;;;:::o;27606:143::-;27663:5;27694:6;27688:13;27679:22;;27710:33;27737:5;27710:33;:::i;:::-;27606:143;;;;:::o;27755:351::-;27825:6;27874:2;27862:9;27853:7;27849:23;27845:32;27842:119;;;27880:79;;:::i;:::-;27842:119;28000:1;28025:64;28081:7;28072:6;28061:9;28057:22;28025:64;:::i;:::-;28015:74;;27971:128;27755:351;;;;:::o;28112:170::-;28252:22;28248:1;28240:6;28236:14;28229:46;28112:170;:::o;28288:366::-;28430:3;28451:67;28515:2;28510:3;28451:67;:::i;:::-;28444:74;;28527:93;28616:3;28527:93;:::i;:::-;28645:2;28640:3;28636:12;28629:19;;28288:366;;;:::o;28660:419::-;28826:4;28864:2;28853:9;28849:18;28841:26;;28913:9;28907:4;28903:20;28899:1;28888:9;28884:17;28877:47;28941:131;29067:4;28941:131;:::i;:::-;28933:139;;28660:419;;;:::o;29085:230::-;29225:34;29221:1;29213:6;29209:14;29202:58;29294:13;29289:2;29281:6;29277:15;29270:38;29085:230;:::o;29321:366::-;29463:3;29484:67;29548:2;29543:3;29484:67;:::i;:::-;29477:74;;29560:93;29649:3;29560:93;:::i;:::-;29678:2;29673:3;29669:12;29662:19;;29321:366;;;:::o;29693:419::-;29859:4;29897:2;29886:9;29882:18;29874:26;;29946:9;29940:4;29936:20;29932:1;29921:9;29917:17;29910:47;29974:131;30100:4;29974:131;:::i;:::-;29966:139;;29693:419;;;:::o;30118:169::-;30258:21;30254:1;30246:6;30242:14;30235:45;30118:169;:::o;30293:366::-;30435:3;30456:67;30520:2;30515:3;30456:67;:::i;:::-;30449:74;;30532:93;30621:3;30532:93;:::i;:::-;30650:2;30645:3;30641:12;30634:19;;30293:366;;;:::o;30665:419::-;30831:4;30869:2;30858:9;30854:18;30846:26;;30918:9;30912:4;30908:20;30904:1;30893:9;30889:17;30882:47;30946:131;31072:4;30946:131;:::i;:::-;30938:139;;30665:419;;;:::o;31090:169::-;31230:21;31226:1;31218:6;31214:14;31207:45;31090:169;:::o;31265:366::-;31407:3;31428:67;31492:2;31487:3;31428:67;:::i;:::-;31421:74;;31504:93;31593:3;31504:93;:::i;:::-;31622:2;31617:3;31613:12;31606:19;;31265:366;;;:::o;31637:419::-;31803:4;31841:2;31830:9;31826:18;31818:26;;31890:9;31884:4;31880:20;31876:1;31865:9;31861:17;31854:47;31918:131;32044:4;31918:131;:::i;:::-;31910:139;;31637:419;;;:::o;32062:180::-;32110:77;32107:1;32100:88;32207:4;32204:1;32197:15;32231:4;32228:1;32221:15;32248:233;32287:3;32310:24;32328:5;32310:24;:::i;:::-;32301:33;;32356:66;32349:5;32346:77;32343:103;;;32426:18;;:::i;:::-;32343:103;32473:1;32466:5;32462:13;32455:20;;32248:233;;;:::o;32487:231::-;32627:34;32623:1;32615:6;32611:14;32604:58;32696:14;32691:2;32683:6;32679:15;32672:39;32487:231;:::o;32724:366::-;32866:3;32887:67;32951:2;32946:3;32887:67;:::i;:::-;32880:74;;32963:93;33052:3;32963:93;:::i;:::-;33081:2;33076:3;33072:12;33065:19;;32724:366;;;:::o;33096:419::-;33262:4;33300:2;33289:9;33285:18;33277:26;;33349:9;33343:4;33339:20;33335:1;33324:9;33320:17;33313:47;33377:131;33503:4;33377:131;:::i;:::-;33369:139;;33096:419;;;:::o;33521:228::-;33661:34;33657:1;33649:6;33645:14;33638:58;33730:11;33725:2;33717:6;33713:15;33706:36;33521:228;:::o;33755:366::-;33897:3;33918:67;33982:2;33977:3;33918:67;:::i;:::-;33911:74;;33994:93;34083:3;33994:93;:::i;:::-;34112:2;34107:3;34103:12;34096:19;;33755:366;;;:::o;34127:419::-;34293:4;34331:2;34320:9;34316:18;34308:26;;34380:9;34374:4;34370:20;34366:1;34355:9;34351:17;34344:47;34408:131;34534:4;34408:131;:::i;:::-;34400:139;;34127:419;;;:::o;34552:233::-;34692:34;34688:1;34680:6;34676:14;34669:58;34761:16;34756:2;34748:6;34744:15;34737:41;34552:233;:::o;34791:366::-;34933:3;34954:67;35018:2;35013:3;34954:67;:::i;:::-;34947:74;;35030:93;35119:3;35030:93;:::i;:::-;35148:2;35143:3;35139:12;35132:19;;34791:366;;;:::o;35163:419::-;35329:4;35367:2;35356:9;35352:18;35344:26;;35416:9;35410:4;35406:20;35402:1;35391:9;35387:17;35380:47;35444:131;35570:4;35444:131;:::i;:::-;35436:139;;35163:419;;;:::o;35588:348::-;35628:7;35651:20;35669:1;35651:20;:::i;:::-;35646:25;;35685:20;35703:1;35685:20;:::i;:::-;35680:25;;35873:1;35805:66;35801:74;35798:1;35795:81;35790:1;35783:9;35776:17;35772:105;35769:131;;;35880:18;;:::i;:::-;35769:131;35928:1;35925;35921:9;35910:20;;35588:348;;;;:::o;35942:229::-;36082:34;36078:1;36070:6;36066:14;36059:58;36151:12;36146:2;36138:6;36134:15;36127:37;35942:229;:::o;36177:366::-;36319:3;36340:67;36404:2;36399:3;36340:67;:::i;:::-;36333:74;;36416:93;36505:3;36416:93;:::i;:::-;36534:2;36529:3;36525:12;36518:19;;36177:366;;;:::o;36549:419::-;36715:4;36753:2;36742:9;36738:18;36730:26;;36802:9;36796:4;36792:20;36788:1;36777:9;36773:17;36766:47;36830:131;36956:4;36830:131;:::i;:::-;36822:139;;36549:419;;;:::o;36974:234::-;37114:34;37110:1;37102:6;37098:14;37091:58;37183:17;37178:2;37170:6;37166:15;37159:42;36974:234;:::o;37214:366::-;37356:3;37377:67;37441:2;37436:3;37377:67;:::i;:::-;37370:74;;37453:93;37542:3;37453:93;:::i;:::-;37571:2;37566:3;37562:12;37555:19;;37214:366;;;:::o;37586:419::-;37752:4;37790:2;37779:9;37775:18;37767:26;;37839:9;37833:4;37829:20;37825:1;37814:9;37810:17;37803:47;37867:131;37993:4;37867:131;:::i;:::-;37859:139;;37586:419;;;:::o;38011:148::-;38113:11;38150:3;38135:18;;38011:148;;;;:::o;38165:377::-;38271:3;38299:39;38332:5;38299:39;:::i;:::-;38354:89;38436:6;38431:3;38354:89;:::i;:::-;38347:96;;38452:52;38497:6;38492:3;38485:4;38478:5;38474:16;38452:52;:::i;:::-;38529:6;38524:3;38520:16;38513:23;;38275:267;38165:377;;;;:::o;38548:141::-;38597:4;38620:3;38612:11;;38643:3;38640:1;38633:14;38677:4;38674:1;38664:18;38656:26;;38548:141;;;:::o;38719:845::-;38822:3;38859:5;38853:12;38888:36;38914:9;38888:36;:::i;:::-;38940:89;39022:6;39017:3;38940:89;:::i;:::-;38933:96;;39060:1;39049:9;39045:17;39076:1;39071:137;;;;39222:1;39217:341;;;;39038:520;;39071:137;39155:4;39151:9;39140;39136:25;39131:3;39124:38;39191:6;39186:3;39182:16;39175:23;;39071:137;;39217:341;39284:38;39316:5;39284:38;:::i;:::-;39344:1;39358:154;39372:6;39369:1;39366:13;39358:154;;;39446:7;39440:14;39436:1;39431:3;39427:11;39420:35;39496:1;39487:7;39483:15;39472:26;;39394:4;39391:1;39387:12;39382:17;;39358:154;;;39541:6;39536:3;39532:16;39525:23;;39224:334;;39038:520;;38826:738;;38719:845;;;;:::o;39570:589::-;39795:3;39817:95;39908:3;39899:6;39817:95;:::i;:::-;39810:102;;39929:95;40020:3;40011:6;39929:95;:::i;:::-;39922:102;;40041:92;40129:3;40120:6;40041:92;:::i;:::-;40034:99;;40150:3;40143:10;;39570:589;;;;;;:::o;40165:225::-;40305:34;40301:1;40293:6;40289:14;40282:58;40374:8;40369:2;40361:6;40357:15;40350:33;40165:225;:::o;40396:366::-;40538:3;40559:67;40623:2;40618:3;40559:67;:::i;:::-;40552:74;;40635:93;40724:3;40635:93;:::i;:::-;40753:2;40748:3;40744:12;40737:19;;40396:366;;;:::o;40768:419::-;40934:4;40972:2;40961:9;40957:18;40949:26;;41021:9;41015:4;41011:20;41007:1;40996:9;40992:17;40985:47;41049:131;41175:4;41049:131;:::i;:::-;41041:139;;40768:419;;;:::o;41193:231::-;41333:34;41329:1;41321:6;41317:14;41310:58;41402:14;41397:2;41389:6;41385:15;41378:39;41193:231;:::o;41430:366::-;41572:3;41593:67;41657:2;41652:3;41593:67;:::i;:::-;41586:74;;41669:93;41758:3;41669:93;:::i;:::-;41787:2;41782:3;41778:12;41771:19;;41430:366;;;:::o;41802:419::-;41968:4;42006:2;41995:9;41991:18;41983:26;;42055:9;42049:4;42045:20;42041:1;42030:9;42026:17;42019:47;42083:131;42209:4;42083:131;:::i;:::-;42075:139;;41802:419;;;:::o;42227:224::-;42367:34;42363:1;42355:6;42351:14;42344:58;42436:7;42431:2;42423:6;42419:15;42412:32;42227:224;:::o;42457:366::-;42599:3;42620:67;42684:2;42679:3;42620:67;:::i;:::-;42613:74;;42696:93;42785:3;42696:93;:::i;:::-;42814:2;42809:3;42805:12;42798:19;;42457:366;;;:::o;42829:419::-;42995:4;43033:2;43022:9;43018:18;43010:26;;43082:9;43076:4;43072:20;43068:1;43057:9;43053:17;43046:47;43110:131;43236:4;43110:131;:::i;:::-;43102:139;;42829:419;;;:::o;43254:223::-;43394:34;43390:1;43382:6;43378:14;43371:58;43463:6;43458:2;43450:6;43446:15;43439:31;43254:223;:::o;43483:366::-;43625:3;43646:67;43710:2;43705:3;43646:67;:::i;:::-;43639:74;;43722:93;43811:3;43722:93;:::i;:::-;43840:2;43835:3;43831:12;43824:19;;43483:366;;;:::o;43855:419::-;44021:4;44059:2;44048:9;44044:18;44036:26;;44108:9;44102:4;44098:20;44094:1;44083:9;44079:17;44072:47;44136:131;44262:4;44136:131;:::i;:::-;44128:139;;43855:419;;;:::o;44280:191::-;44320:4;44340:20;44358:1;44340:20;:::i;:::-;44335:25;;44374:20;44392:1;44374:20;:::i;:::-;44369:25;;44413:1;44410;44407:8;44404:34;;;44418:18;;:::i;:::-;44404:34;44463:1;44460;44456:9;44448:17;;44280:191;;;;:::o;44477:167::-;44514:3;44537:22;44553:5;44537:22;:::i;:::-;44528:31;;44581:4;44574:5;44571:15;44568:41;;;44589:18;;:::i;:::-;44568:41;44636:1;44629:5;44625:13;44618:20;;44477:167;;;:::o;44650:175::-;44790:27;44786:1;44778:6;44774:14;44767:51;44650:175;:::o;44831:366::-;44973:3;44994:67;45058:2;45053:3;44994:67;:::i;:::-;44987:74;;45070:93;45159:3;45070:93;:::i;:::-;45188:2;45183:3;45179:12;45172:19;;44831:366;;;:::o;45203:419::-;45369:4;45407:2;45396:9;45392:18;45384:26;;45456:9;45450:4;45446:20;45442:1;45431:9;45427:17;45420:47;45484:131;45610:4;45484:131;:::i;:::-;45476:139;;45203:419;;;:::o;45628:237::-;45768:34;45764:1;45756:6;45752:14;45745:58;45837:20;45832:2;45824:6;45820:15;45813:45;45628:237;:::o;45871:366::-;46013:3;46034:67;46098:2;46093:3;46034:67;:::i;:::-;46027:74;;46110:93;46199:3;46110:93;:::i;:::-;46228:2;46223:3;46219:12;46212:19;;45871:366;;;:::o;46243:419::-;46409:4;46447:2;46436:9;46432:18;46424:26;;46496:9;46490:4;46486:20;46482:1;46471:9;46467:17;46460:47;46524:131;46650:4;46524:131;:::i;:::-;46516:139;;46243:419;;;:::o;46668:180::-;46716:77;46713:1;46706:88;46813:4;46810:1;46803:15;46837:4;46834:1;46827:15;46854:185;46894:1;46911:20;46929:1;46911:20;:::i;:::-;46906:25;;46945:20;46963:1;46945:20;:::i;:::-;46940:25;;46984:1;46974:35;;46989:18;;:::i;:::-;46974:35;47031:1;47028;47024:9;47019:14;;46854:185;;;;:::o;47045:176::-;47077:1;47094:20;47112:1;47094:20;:::i;:::-;47089:25;;47128:20;47146:1;47128:20;:::i;:::-;47123:25;;47167:1;47157:35;;47172:18;;:::i;:::-;47157:35;47213:1;47210;47206:9;47201:14;;47045:176;;;;:::o;47227:98::-;47278:6;47312:5;47306:12;47296:22;;47227:98;;;:::o;47331:168::-;47414:11;47448:6;47443:3;47436:19;47488:4;47483:3;47479:14;47464:29;;47331:168;;;;:::o;47505:360::-;47591:3;47619:38;47651:5;47619:38;:::i;:::-;47673:70;47736:6;47731:3;47673:70;:::i;:::-;47666:77;;47752:52;47797:6;47792:3;47785:4;47778:5;47774:16;47752:52;:::i;:::-;47829:29;47851:6;47829:29;:::i;:::-;47824:3;47820:39;47813:46;;47595:270;47505:360;;;;:::o;47871:640::-;48066:4;48104:3;48093:9;48089:19;48081:27;;48118:71;48186:1;48175:9;48171:17;48162:6;48118:71;:::i;:::-;48199:72;48267:2;48256:9;48252:18;48243:6;48199:72;:::i;:::-;48281;48349:2;48338:9;48334:18;48325:6;48281:72;:::i;:::-;48400:9;48394:4;48390:20;48385:2;48374:9;48370:18;48363:48;48428:76;48499:4;48490:6;48428:76;:::i;:::-;48420:84;;47871:640;;;;;;;:::o;48517:141::-;48573:5;48604:6;48598:13;48589:22;;48620:32;48646:5;48620:32;:::i;:::-;48517:141;;;;:::o;48664:349::-;48733:6;48782:2;48770:9;48761:7;48757:23;48753:32;48750:119;;;48788:79;;:::i;:::-;48750:119;48908:1;48933:63;48988:7;48979:6;48968:9;48964:22;48933:63;:::i;:::-;48923:73;;48879:127;48664:349;;;;:::o;49019:180::-;49067:77;49064:1;49057:88;49164:4;49161:1;49154:15;49188:4;49185:1;49178:15;49205:182;49345:34;49341:1;49333:6;49329:14;49322:58;49205:182;:::o;49393:366::-;49535:3;49556:67;49620:2;49615:3;49556:67;:::i;:::-;49549:74;;49632:93;49721:3;49632:93;:::i;:::-;49750:2;49745:3;49741:12;49734:19;;49393:366;;;:::o;49765:419::-;49931:4;49969:2;49958:9;49954:18;49946:26;;50018:9;50012:4;50008:20;50004:1;49993:9;49989:17;49982:47;50046:131;50172:4;50046:131;:::i;:::-;50038:139;;49765:419;;;:::o;50190:178::-;50330:30;50326:1;50318:6;50314:14;50307:54;50190:178;:::o;50374:366::-;50516:3;50537:67;50601:2;50596:3;50537:67;:::i;:::-;50530:74;;50613:93;50702:3;50613:93;:::i;:::-;50731:2;50726:3;50722:12;50715:19;;50374:366;;;:::o;50746:419::-;50912:4;50950:2;50939:9;50935:18;50927:26;;50999:9;50993:4;50989:20;50985:1;50974:9;50970:17;50963:47;51027:131;51153:4;51027:131;:::i;:::-;51019:139;;50746:419;;;:::o

Swarm Source

ipfs://0f2c4ab717a06a320d0f66dd1ce5545ca19255ce1a30fd4a7bdcffa933208676
Loading