ETH Price: $3,269.73 (+0.29%)
Gas: 2 Gwei

Token

8PES (8PES)
 

Overview

Max Total Supply

888 8PES

Holders

562

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 8PES
0x90171e11b1d6f8e06f13b127d4691f55ef0ab895
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

8PES is a collection of 888 anime inspired apes. Every 8PE is a unique 1/1 piece of art with a slightly different anime style to it. Created by dvnci.eth

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
$8PES

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT 
// 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/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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/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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity >=0.8.0 <0.9.0;

contract $8PES is ERC721A, Ownable { 

  using Strings for uint256;

  string public uriPrefix = "ipfs://QmdbAtHeviDaLKMD5Dv8em2dSg2vgsvSpdFkhHCZjQopp3/";
  string public uriSuffix = ".json"; 
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.008 ether; 

  uint256 public maxSupply = 888; 
  uint256 public maxMintAmountPerTx = 2; 
  uint256 public totalMaxMintAmount = 2; 

  uint256 public freeMaxMintAmount = 0; 

  bool public paused = false;
  bool public publicSale = true;
  bool public revealed = true;

  mapping(address => uint256) public addressMintedBalance; 

  constructor() ERC721A("8PES", "8PES") { 
         setHiddenMetadataUri("ipfs://QmNVc9PA21f5GBtjzP5YQ26yE1zyeLMdt5dsox7pvcgZ3A/hidden.json"); 
            ownerMint(25); 
    } 

  // MODIFIERS 
  
  modifier mintCompliance(uint256 _mintAmount) {
    if (msg.sender != owner()) { 
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    }
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  } 

  modifier mintPriceCompliance(uint256 _mintAmount) {
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
   if (ownerMintedCount >= freeMaxMintAmount) {
        require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
   }
        _;
  }

  // MINTS 

   function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!'); 
    require(publicSale, "Not open to public yet!");
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];

    if (ownerMintedCount < freeMaxMintAmount) {  
            require(ownerMintedCount + _mintAmount <= freeMaxMintAmount, "Exceeded Free Mint Limit");
        } else if (ownerMintedCount >= freeMaxMintAmount) { 
            require(ownerMintedCount + _mintAmount <= totalMaxMintAmount, "Exceeded Mint Limit");
        }

    _safeMint(_msgSender(), _mintAmount);
    for (uint256 i = 1; i <=_mintAmount; i++){
        addressMintedBalance[msg.sender]++;
    }
  }

  function ownerMint(uint256 _mintAmount) public payable onlyOwner {
     require(_mintAmount > 0, 'Invalid mint amount!');
     require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _safeMint(_msgSender(), _mintAmount);
  }

function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }
  
  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned && ownership.addr != address(0)) {
        latestOwnerAddress = ownership.addr;
      }

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost; 
  }

   function setFreeMaxMintAmount(uint256 _freeMaxMintAmount) public onlyOwner {
    freeMaxMintAmount = _freeMaxMintAmount; 
  }

  function setTotalMaxMintAmount(uint _amount) public onlyOwner {
      require(_amount <= maxSupply, "Exceed total amount");
      totalMaxMintAmount = _amount;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

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

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function setPublicSale(bool _state) public onlyOwner {
    publicSale = _state;
  }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxMintAmount","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","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":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMaxMintAmount","type":"uint256"}],"name":"setFreeMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTotalMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"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":"payable","type":"function"}]

60806040526040518060600160405280603681526020016200596960369139600990805190602001906200003592919062000b20565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200008392919062000b20565b50661c6bf526340000600c55610378600d556002600e556002600f5560006010556000601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055503480156200010257600080fd5b506040518060400160405280600481526020017f38504553000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f385045530000000000000000000000000000000000000000000000000000000081525081600290805190602001906200018792919062000b20565b508060039080519060200190620001a092919062000b20565b50620001b16200021b60201b60201c565b6000819055505050620001d9620001cd6200022460201b60201c565b6200022c60201b60201c565b620002036040518060800160405280604181526020016200599f60419139620002f260201b60201c565b6200021560196200039d60201b60201c565b62001014565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003026200022460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000328620004fa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000381576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003789062000c31565b60405180910390fd5b80600b90805190602001906200039992919062000b20565b5050565b620003ad6200022460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003d3620004fa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200042c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004239062000c31565b60405180910390fd5b6000811162000472576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004699062000ca3565b60405180910390fd5b600d5481620004866200052460201b60201c565b62000492919062000cfe565b1115620004d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004cd9062000dab565b60405180910390fd5b620004f7620004ea6200022460201b60201c565b826200054360201b60201c565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000620005366200021b60201b60201c565b6001546000540303905090565b620005658282604051806020016040528060008152506200056960201b60201c565b5050565b6200057e83838360016200058360201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620005f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156200062d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200064260008683876200097f60201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156200081a5750620008198773ffffffffffffffffffffffffffffffffffffffff166200098560201b620025921760201c565b5b15620008ed575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620008986000888480600101955088620009a860201b60201c565b620008cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141562000821578260005414620008e757600080fd5b6200095a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415620008ee575b81600081905550505062000978600086838762000b1a60201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620009d66200022460201b60201c565b8786866040518563ffffffff1660e01b8152600401620009fa949392919062000ec7565b602060405180830381600087803b15801562000a1557600080fd5b505af192505050801562000a4957506040513d601f19601f8201168201806040525081019062000a46919062000f7d565b60015b62000ac7573d806000811462000a7c576040519150601f19603f3d011682016040523d82523d6000602084013e62000a81565b606091505b5060008151141562000abf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b82805462000b2e9062000fde565b90600052602060002090601f01602090048101928262000b52576000855562000b9e565b82601f1062000b6d57805160ff191683800117855562000b9e565b8280016001018555821562000b9e579182015b8281111562000b9d57825182559160200191906001019062000b80565b5b50905062000bad919062000bb1565b5090565b5b8082111562000bcc57600081600090555060010162000bb2565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c1960208362000bd0565b915062000c268262000be1565b602082019050919050565b6000602082019050818103600083015262000c4c8162000c0a565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600062000c8b60148362000bd0565b915062000c988262000c53565b602082019050919050565b6000602082019050818103600083015262000cbe8162000c7c565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d0b8262000cc5565b915062000d188362000cc5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d505762000d4f62000ccf565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600062000d9360148362000bd0565b915062000da08262000d5b565b602082019050919050565b6000602082019050818103600083015262000dc68162000d84565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000dfa8262000dcd565b9050919050565b62000e0c8162000ded565b82525050565b62000e1d8162000cc5565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000e5f57808201518184015260208101905062000e42565b8381111562000e6f576000848401525b50505050565b6000601f19601f8301169050919050565b600062000e938262000e23565b62000e9f818562000e2e565b935062000eb181856020860162000e3f565b62000ebc8162000e75565b840191505092915050565b600060808201905062000ede600083018762000e01565b62000eed602083018662000e01565b62000efc604083018562000e12565b818103606083015262000f10818462000e86565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000f578162000f20565b811462000f6357600080fd5b50565b60008151905062000f778162000f4c565b92915050565b60006020828403121562000f965762000f9562000f1b565b5b600062000fa68482850162000f66565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ff757607f821691505b602082108114156200100e576200100d62000faf565b5b50919050565b61494580620010246000396000f3fe6080604052600436106102675760003560e01c806362b99ad411610144578063b071401b116100b6578063e0a808531161007a578063e0a80853146108ec578063e4386d2614610915578063e985e9c514610940578063efbd73f41461097d578063f19e75d4146109a6578063f2fde38b146109c257610267565b8063b071401b14610809578063b88d4fde14610832578063c87b56dd1461085b578063d4fcb2ae14610898578063d5abeb01146108c157610267565b80638da5cb5b116101085780638da5cb5b1461071857806394354fd01461074357806395d89b411461076e578063a0712d6814610799578063a22cb465146107b5578063a45ba8e7146107de57610267565b806362b99ad4146106335780636352211e1461065e57806370a082311461069b578063715018a6146106d85780637ec4a659146106ef57610267565b806323b872dd116101dd57806344a0d68a116101a157806344a0d68a146105375780634fdd43cb1461056057806351830227146105895780635503a0e8146105b45780635aca1bb6146105df5780635c975abb1461060857610267565b806323b872dd1461047357806333bc1c5c1461049c5780633ccfd60b146104c757806342842e0e146104d1578063438b6300146104fa57610267565b80631159aca41161022f5780631159aca41461036357806313faede61461038e57806316ba10e0146103b957806316c38b3c146103e257806318160ddd1461040b57806318cae2691461043657610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780631042779c1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906137ea565b6109eb565b6040516102a09190613832565b60405180910390f35b3480156102b557600080fd5b506102be610acd565b6040516102cb91906138e6565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f6919061393e565b610b5f565b60405161030891906139ac565b60405180910390f35b34801561031d57600080fd5b50610338600480360381019061033391906139f3565b610bdb565b005b34801561034657600080fd5b50610361600480360381019061035c919061393e565b610ce6565b005b34801561036f57600080fd5b50610378610db1565b6040516103859190613a42565b60405180910390f35b34801561039a57600080fd5b506103a3610db7565b6040516103b09190613a42565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613b92565b610dbd565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613c07565b610e53565b005b34801561041757600080fd5b50610420610eec565b60405161042d9190613a42565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190613c34565b610f03565b60405161046a9190613a42565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190613c61565b610f1b565b005b3480156104a857600080fd5b506104b1610f2b565b6040516104be9190613832565b60405180910390f35b6104cf610f3e565b005b3480156104dd57600080fd5b506104f860048036038101906104f39190613c61565b61103a565b005b34801561050657600080fd5b50610521600480360381019061051c9190613c34565b61105a565b60405161052e9190613d72565b60405180910390f35b34801561054357600080fd5b5061055e6004803603810190610559919061393e565b611275565b005b34801561056c57600080fd5b5061058760048036038101906105829190613b92565b6112fb565b005b34801561059557600080fd5b5061059e611391565b6040516105ab9190613832565b60405180910390f35b3480156105c057600080fd5b506105c96113a4565b6040516105d691906138e6565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190613c07565b611432565b005b34801561061457600080fd5b5061061d6114cb565b60405161062a9190613832565b60405180910390f35b34801561063f57600080fd5b506106486114de565b60405161065591906138e6565b60405180910390f35b34801561066a57600080fd5b506106856004803603810190610680919061393e565b61156c565b60405161069291906139ac565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190613c34565b611582565b6040516106cf9190613a42565b60405180910390f35b3480156106e457600080fd5b506106ed611652565b005b3480156106fb57600080fd5b5061071660048036038101906107119190613b92565b6116da565b005b34801561072457600080fd5b5061072d611770565b60405161073a91906139ac565b60405180910390f35b34801561074f57600080fd5b5061075861179a565b6040516107659190613a42565b60405180910390f35b34801561077a57600080fd5b506107836117a0565b60405161079091906138e6565b60405180910390f35b6107b360048036038101906107ae919061393e565b611832565b005b3480156107c157600080fd5b506107dc60048036038101906107d79190613d94565b611be1565b005b3480156107ea57600080fd5b506107f3611d59565b60405161080091906138e6565b60405180910390f35b34801561081557600080fd5b50610830600480360381019061082b919061393e565b611de7565b005b34801561083e57600080fd5b5061085960048036038101906108549190613e75565b611e6d565b005b34801561086757600080fd5b50610882600480360381019061087d919061393e565b611ee9565b60405161088f91906138e6565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba919061393e565b612042565b005b3480156108cd57600080fd5b506108d66120c8565b6040516108e39190613a42565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613c07565b6120ce565b005b34801561092157600080fd5b5061092a612167565b6040516109379190613a42565b60405180910390f35b34801561094c57600080fd5b5061096760048036038101906109629190613ef8565b61216d565b6040516109749190613832565b60405180910390f35b34801561098957600080fd5b506109a4600480360381019061099f9190613f38565b612201565b005b6109c060048036038101906109bb919061393e565b612370565b005b3480156109ce57600080fd5b506109e960048036038101906109e49190613c34565b61249a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac65750610ac5826125b5565b5b9050919050565b606060028054610adc90613fa7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0890613fa7565b8015610b555780601f10610b2a57610100808354040283529160200191610b55565b820191906000526020600020905b815481529060010190602001808311610b3857829003601f168201915b5050505050905090565b6000610b6a8261261f565b610ba0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be68261156c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c4e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c6d61266d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c9f5750610c9d81610c9861266d565b61216d565b155b15610cd6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce1838383612675565b505050565b610cee61266d565b73ffffffffffffffffffffffffffffffffffffffff16610d0c611770565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990614025565b60405180910390fd5b600d54811115610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90614091565b60405180910390fd5b80600f8190555050565b60105481565b600c5481565b610dc561266d565b73ffffffffffffffffffffffffffffffffffffffff16610de3611770565b73ffffffffffffffffffffffffffffffffffffffff1614610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090614025565b60405180910390fd5b80600a9080519060200190610e4f929190613698565b5050565b610e5b61266d565b73ffffffffffffffffffffffffffffffffffffffff16610e79611770565b73ffffffffffffffffffffffffffffffffffffffff1614610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690614025565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610ef6612727565b6001546000540303905090565b60126020528060005260406000206000915090505481565b610f26838383612730565b505050565b601160019054906101000a900460ff1681565b610f4661266d565b73ffffffffffffffffffffffffffffffffffffffff16610f64611770565b73ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190614025565b60405180910390fd5b6000610fc4611770565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fe7906140e2565b60006040518083038185875af1925050503d8060008114611024576040519150601f19603f3d011682016040523d82523d6000602084013e611029565b606091505b505090508061103757600080fd5b50565b61105583838360405180602001604052806000815250611e6d565b505050565b6060600061106783611582565b905060008167ffffffffffffffff81111561108557611084613a67565b5b6040519080825280602002602001820160405280156110b35781602001602082028036833780820191505090505b50905060006110c0612727565b90506000805b84821080156110d75750600d548311155b15611268576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156111e45750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b156111f157806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112545783858481518110611239576112386140f7565b5b602002602001018181525050828061125090614155565b9350505b838061125f90614155565b945050506110c6565b8395505050505050919050565b61127d61266d565b73ffffffffffffffffffffffffffffffffffffffff1661129b611770565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890614025565b60405180910390fd5b80600c8190555050565b61130361266d565b73ffffffffffffffffffffffffffffffffffffffff16611321611770565b73ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90614025565b60405180910390fd5b80600b908051906020019061138d929190613698565b5050565b601160029054906101000a900460ff1681565b600a80546113b190613fa7565b80601f01602080910402602001604051908101604052809291908181526020018280546113dd90613fa7565b801561142a5780601f106113ff5761010080835404028352916020019161142a565b820191906000526020600020905b81548152906001019060200180831161140d57829003601f168201915b505050505081565b61143a61266d565b73ffffffffffffffffffffffffffffffffffffffff16611458611770565b73ffffffffffffffffffffffffffffffffffffffff16146114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590614025565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b600980546114eb90613fa7565b80601f016020809104026020016040519081016040528092919081815260200182805461151790613fa7565b80156115645780601f1061153957610100808354040283529160200191611564565b820191906000526020600020905b81548152906001019060200180831161154757829003601f168201915b505050505081565b600061157782612be6565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ea576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61165a61266d565b73ffffffffffffffffffffffffffffffffffffffff16611678611770565b73ffffffffffffffffffffffffffffffffffffffff16146116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590614025565b60405180910390fd5b6116d86000612e75565b565b6116e261266d565b73ffffffffffffffffffffffffffffffffffffffff16611700611770565b73ffffffffffffffffffffffffffffffffffffffff1614611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90614025565b60405180910390fd5b806009908051906020019061176c929190613698565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600380546117af90613fa7565b80601f01602080910402602001604051908101604052809291908181526020018280546117db90613fa7565b80156118285780601f106117fd57610100808354040283529160200191611828565b820191906000526020600020905b81548152906001019060200180831161180b57829003601f168201915b5050505050905090565b8061183b611770565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118bf5760008111801561187f5750600e548111155b6118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906141ea565b60405180910390fd5b5b600d54816118cb610eec565b6118d5919061420a565b1115611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d906142ac565b60405180910390fd5b816000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060105481106119b55781600c5461197291906142cc565b3410156119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90614372565b60405180910390fd5b5b601160009054906101000a900460ff1615611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc906143de565b60405180910390fd5b601160019054906101000a900460ff16611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b9061444a565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601054811015611af7576010548582611ab1919061420a565b1115611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae9906144b6565b60405180910390fd5b611b52565b6010548110611b5157600f548582611b0f919061420a565b1115611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4790614522565b60405180910390fd5b5b5b611b63611b5d61266d565b86612f3b565b6000600190505b858111611bd957601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611bc190614155565b91905055508080611bd190614155565b915050611b6a565b505050505050565b611be961266d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c4e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c5b61266d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d0861266d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d4d9190613832565b60405180910390a35050565b600b8054611d6690613fa7565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9290613fa7565b8015611ddf5780601f10611db457610100808354040283529160200191611ddf565b820191906000526020600020905b815481529060010190602001808311611dc257829003601f168201915b505050505081565b611def61266d565b73ffffffffffffffffffffffffffffffffffffffff16611e0d611770565b73ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90614025565b60405180910390fd5b80600e8190555050565b611e78848484612730565b611e978373ffffffffffffffffffffffffffffffffffffffff16612592565b8015611eac5750611eaa84848484612f59565b155b15611ee3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611ef48261261f565b611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a906145b4565b60405180910390fd5b60001515601160029054906101000a900460ff1615151415611fe157600b8054611f5c90613fa7565b80601f0160208091040260200160405190810160405280929190818152602001828054611f8890613fa7565b8015611fd55780601f10611faa57610100808354040283529160200191611fd5565b820191906000526020600020905b815481529060010190602001808311611fb857829003601f168201915b5050505050905061203d565b6000611feb6130b9565b9050600081511161200b5760405180602001604052806000815250612039565b806120158461314b565b600a604051602001612029939291906146a4565b6040516020818303038152906040525b9150505b919050565b61204a61266d565b73ffffffffffffffffffffffffffffffffffffffff16612068611770565b73ffffffffffffffffffffffffffffffffffffffff16146120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b590614025565b60405180910390fd5b8060108190555050565b600d5481565b6120d661266d565b73ffffffffffffffffffffffffffffffffffffffff166120f4611770565b73ffffffffffffffffffffffffffffffffffffffff161461214a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214190614025565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8161220a611770565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461228e5760008111801561224e5750600e548111155b61228d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612284906141ea565b60405180910390fd5b5b600d548161229a610eec565b6122a4919061420a565b11156122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc906142ac565b60405180910390fd5b6122ed61266d565b73ffffffffffffffffffffffffffffffffffffffff1661230b611770565b73ffffffffffffffffffffffffffffffffffffffff1614612361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235890614025565b60405180910390fd5b61236b8284612f3b565b505050565b61237861266d565b73ffffffffffffffffffffffffffffffffffffffff16612396611770565b73ffffffffffffffffffffffffffffffffffffffff16146123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e390614025565b60405180910390fd5b6000811161242f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612426906141ea565b60405180910390fd5b600d548161243b610eec565b612445919061420a565b1115612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d906142ac565b60405180910390fd5b61249761249161266d565b82612f3b565b50565b6124a261266d565b73ffffffffffffffffffffffffffffffffffffffff166124c0611770565b73ffffffffffffffffffffffffffffffffffffffff1614612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d90614025565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257d90614747565b60405180910390fd5b61258f81612e75565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161262a612727565b11158015612639575060005482105b8015612666575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061273b82612be6565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127a6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127c761266d565b73ffffffffffffffffffffffffffffffffffffffff1614806127f657506127f5856127f061266d565b61216d565b5b8061283b575061280461266d565b73ffffffffffffffffffffffffffffffffffffffff1661282384610b5f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612874576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128db576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128e885858560016132ac565b6128f460008487612675565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b74576000548214612b7357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bdf85858560016132b2565b5050505050565b612bee61371e565b600082905080612bfc612727565b11158015612c0b575060005481105b15612e3e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e3c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d20578092505050612e70565b5b600115612e3b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e36578092505050612e70565b612d21565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f558282604051806020016040528060008152506132b8565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f7f61266d565b8786866040518563ffffffff1660e01b8152600401612fa194939291906147bc565b602060405180830381600087803b158015612fbb57600080fd5b505af1925050508015612fec57506040513d601f19601f82011682018060405250810190612fe9919061481d565b60015b613066573d806000811461301c576040519150601f19603f3d011682016040523d82523d6000602084013e613021565b606091505b5060008151141561305e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546130c890613fa7565b80601f01602080910402602001604051908101604052809291908181526020018280546130f490613fa7565b80156131415780601f1061311657610100808354040283529160200191613141565b820191906000526020600020905b81548152906001019060200180831161312457829003601f168201915b5050505050905090565b60606000821415613193576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132a7565b600082905060005b600082146131c55780806131ae90614155565b915050600a826131be9190614879565b915061319b565b60008167ffffffffffffffff8111156131e1576131e0613a67565b5b6040519080825280601f01601f1916602001820160405280156132135781602001600182028036833780820191505090505b5090505b600085146132a05760018261322c91906148aa565b9150600a8561323b91906148de565b6030613247919061420a565b60f81b81838151811061325d5761325c6140f7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132999190614879565b9450613217565b8093505050505b919050565b50505050565b50505050565b6132c583838360016132ca565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613337576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613372576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61337f60008683876132ac565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561354957506135488773ffffffffffffffffffffffffffffffffffffffff16612592565b5b1561360f575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135be6000888480600101955088612f59565b6135f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561354f57826000541461360a57600080fd5b61367b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613610575b81600081905550505061369160008683876132b2565b5050505050565b8280546136a490613fa7565b90600052602060002090601f0160209004810192826136c6576000855561370d565b82601f106136df57805160ff191683800117855561370d565b8280016001018555821561370d579182015b8281111561370c5782518255916020019190600101906136f1565b5b50905061371a9190613761565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561377a576000816000905550600101613762565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137c781613792565b81146137d257600080fd5b50565b6000813590506137e4816137be565b92915050565b600060208284031215613800576137ff613788565b5b600061380e848285016137d5565b91505092915050565b60008115159050919050565b61382c81613817565b82525050565b60006020820190506138476000830184613823565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561388757808201518184015260208101905061386c565b83811115613896576000848401525b50505050565b6000601f19601f8301169050919050565b60006138b88261384d565b6138c28185613858565b93506138d2818560208601613869565b6138db8161389c565b840191505092915050565b6000602082019050818103600083015261390081846138ad565b905092915050565b6000819050919050565b61391b81613908565b811461392657600080fd5b50565b60008135905061393881613912565b92915050565b60006020828403121561395457613953613788565b5b600061396284828501613929565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139968261396b565b9050919050565b6139a68161398b565b82525050565b60006020820190506139c1600083018461399d565b92915050565b6139d08161398b565b81146139db57600080fd5b50565b6000813590506139ed816139c7565b92915050565b60008060408385031215613a0a57613a09613788565b5b6000613a18858286016139de565b9250506020613a2985828601613929565b9150509250929050565b613a3c81613908565b82525050565b6000602082019050613a576000830184613a33565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a9f8261389c565b810181811067ffffffffffffffff82111715613abe57613abd613a67565b5b80604052505050565b6000613ad161377e565b9050613add8282613a96565b919050565b600067ffffffffffffffff821115613afd57613afc613a67565b5b613b068261389c565b9050602081019050919050565b82818337600083830152505050565b6000613b35613b3084613ae2565b613ac7565b905082815260208101848484011115613b5157613b50613a62565b5b613b5c848285613b13565b509392505050565b600082601f830112613b7957613b78613a5d565b5b8135613b89848260208601613b22565b91505092915050565b600060208284031215613ba857613ba7613788565b5b600082013567ffffffffffffffff811115613bc657613bc561378d565b5b613bd284828501613b64565b91505092915050565b613be481613817565b8114613bef57600080fd5b50565b600081359050613c0181613bdb565b92915050565b600060208284031215613c1d57613c1c613788565b5b6000613c2b84828501613bf2565b91505092915050565b600060208284031215613c4a57613c49613788565b5b6000613c58848285016139de565b91505092915050565b600080600060608486031215613c7a57613c79613788565b5b6000613c88868287016139de565b9350506020613c99868287016139de565b9250506040613caa86828701613929565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ce981613908565b82525050565b6000613cfb8383613ce0565b60208301905092915050565b6000602082019050919050565b6000613d1f82613cb4565b613d298185613cbf565b9350613d3483613cd0565b8060005b83811015613d65578151613d4c8882613cef565b9750613d5783613d07565b925050600181019050613d38565b5085935050505092915050565b60006020820190508181036000830152613d8c8184613d14565b905092915050565b60008060408385031215613dab57613daa613788565b5b6000613db9858286016139de565b9250506020613dca85828601613bf2565b9150509250929050565b600067ffffffffffffffff821115613def57613dee613a67565b5b613df88261389c565b9050602081019050919050565b6000613e18613e1384613dd4565b613ac7565b905082815260208101848484011115613e3457613e33613a62565b5b613e3f848285613b13565b509392505050565b600082601f830112613e5c57613e5b613a5d565b5b8135613e6c848260208601613e05565b91505092915050565b60008060008060808587031215613e8f57613e8e613788565b5b6000613e9d878288016139de565b9450506020613eae878288016139de565b9350506040613ebf87828801613929565b925050606085013567ffffffffffffffff811115613ee057613edf61378d565b5b613eec87828801613e47565b91505092959194509250565b60008060408385031215613f0f57613f0e613788565b5b6000613f1d858286016139de565b9250506020613f2e858286016139de565b9150509250929050565b60008060408385031215613f4f57613f4e613788565b5b6000613f5d85828601613929565b9250506020613f6e858286016139de565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fbf57607f821691505b60208210811415613fd357613fd2613f78565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061400f602083613858565b915061401a82613fd9565b602082019050919050565b6000602082019050818103600083015261403e81614002565b9050919050565b7f45786365656420746f74616c20616d6f756e7400000000000000000000000000600082015250565b600061407b601383613858565b915061408682614045565b602082019050919050565b600060208201905081810360008301526140aa8161406e565b9050919050565b600081905092915050565b50565b60006140cc6000836140b1565b91506140d7826140bc565b600082019050919050565b60006140ed826140bf565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061416082613908565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561419357614192614126565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006141d4601483613858565b91506141df8261419e565b602082019050919050565b60006020820190508181036000830152614203816141c7565b9050919050565b600061421582613908565b915061422083613908565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561425557614254614126565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000614296601483613858565b91506142a182614260565b602082019050919050565b600060208201905081810360008301526142c581614289565b9050919050565b60006142d782613908565b91506142e283613908565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561431b5761431a614126565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061435c601383613858565b915061436782614326565b602082019050919050565b6000602082019050818103600083015261438b8161434f565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006143c8601783613858565b91506143d382614392565b602082019050919050565b600060208201905081810360008301526143f7816143bb565b9050919050565b7f4e6f74206f70656e20746f207075626c69632079657421000000000000000000600082015250565b6000614434601783613858565b915061443f826143fe565b602082019050919050565b6000602082019050818103600083015261446381614427565b9050919050565b7f45786365656465642046726565204d696e74204c696d69740000000000000000600082015250565b60006144a0601883613858565b91506144ab8261446a565b602082019050919050565b600060208201905081810360008301526144cf81614493565b9050919050565b7f4578636565646564204d696e74204c696d697400000000000000000000000000600082015250565b600061450c601383613858565b9150614517826144d6565b602082019050919050565b6000602082019050818103600083015261453b816144ff565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061459e602f83613858565b91506145a982614542565b604082019050919050565b600060208201905081810360008301526145cd81614591565b9050919050565b600081905092915050565b60006145ea8261384d565b6145f481856145d4565b9350614604818560208601613869565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461463281613fa7565b61463c81866145d4565b9450600182166000811461465757600181146146685761469b565b60ff1983168652818601935061469b565b61467185614610565b60005b8381101561469357815481890152600182019150602081019050614674565b838801955050505b50505092915050565b60006146b082866145df565b91506146bc82856145df565b91506146c88284614625565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614731602683613858565b915061473c826146d5565b604082019050919050565b6000602082019050818103600083015261476081614724565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061478e82614767565b6147988185614772565b93506147a8818560208601613869565b6147b18161389c565b840191505092915050565b60006080820190506147d1600083018761399d565b6147de602083018661399d565b6147eb6040830185613a33565b81810360608301526147fd8184614783565b905095945050505050565b600081519050614817816137be565b92915050565b60006020828403121561483357614832613788565b5b600061484184828501614808565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061488482613908565b915061488f83613908565b92508261489f5761489e61484a565b5b828204905092915050565b60006148b582613908565b91506148c083613908565b9250828210156148d3576148d2614126565b5b828203905092915050565b60006148e982613908565b91506148f483613908565b9250826149045761490361484a565b5b82820690509291505056fea26469706673582212200b931879987f0f7e3a2b3f20b1704fbe0add3fc2be1a5bb2147496bda2742c1164736f6c63430008090033697066733a2f2f516d646241744865766944614c4b4d4435447638656d326453673276677376537064466b6848435a6a516f7070332f697066733a2f2f516d4e5663395041323166354742746a7a5035595132367945317a79654c4d64743564736f7837707663675a33412f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102675760003560e01c806362b99ad411610144578063b071401b116100b6578063e0a808531161007a578063e0a80853146108ec578063e4386d2614610915578063e985e9c514610940578063efbd73f41461097d578063f19e75d4146109a6578063f2fde38b146109c257610267565b8063b071401b14610809578063b88d4fde14610832578063c87b56dd1461085b578063d4fcb2ae14610898578063d5abeb01146108c157610267565b80638da5cb5b116101085780638da5cb5b1461071857806394354fd01461074357806395d89b411461076e578063a0712d6814610799578063a22cb465146107b5578063a45ba8e7146107de57610267565b806362b99ad4146106335780636352211e1461065e57806370a082311461069b578063715018a6146106d85780637ec4a659146106ef57610267565b806323b872dd116101dd57806344a0d68a116101a157806344a0d68a146105375780634fdd43cb1461056057806351830227146105895780635503a0e8146105b45780635aca1bb6146105df5780635c975abb1461060857610267565b806323b872dd1461047357806333bc1c5c1461049c5780633ccfd60b146104c757806342842e0e146104d1578063438b6300146104fa57610267565b80631159aca41161022f5780631159aca41461036357806313faede61461038e57806316ba10e0146103b957806316c38b3c146103e257806318160ddd1461040b57806318cae2691461043657610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780631042779c1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906137ea565b6109eb565b6040516102a09190613832565b60405180910390f35b3480156102b557600080fd5b506102be610acd565b6040516102cb91906138e6565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f6919061393e565b610b5f565b60405161030891906139ac565b60405180910390f35b34801561031d57600080fd5b50610338600480360381019061033391906139f3565b610bdb565b005b34801561034657600080fd5b50610361600480360381019061035c919061393e565b610ce6565b005b34801561036f57600080fd5b50610378610db1565b6040516103859190613a42565b60405180910390f35b34801561039a57600080fd5b506103a3610db7565b6040516103b09190613a42565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613b92565b610dbd565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613c07565b610e53565b005b34801561041757600080fd5b50610420610eec565b60405161042d9190613a42565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190613c34565b610f03565b60405161046a9190613a42565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190613c61565b610f1b565b005b3480156104a857600080fd5b506104b1610f2b565b6040516104be9190613832565b60405180910390f35b6104cf610f3e565b005b3480156104dd57600080fd5b506104f860048036038101906104f39190613c61565b61103a565b005b34801561050657600080fd5b50610521600480360381019061051c9190613c34565b61105a565b60405161052e9190613d72565b60405180910390f35b34801561054357600080fd5b5061055e6004803603810190610559919061393e565b611275565b005b34801561056c57600080fd5b5061058760048036038101906105829190613b92565b6112fb565b005b34801561059557600080fd5b5061059e611391565b6040516105ab9190613832565b60405180910390f35b3480156105c057600080fd5b506105c96113a4565b6040516105d691906138e6565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190613c07565b611432565b005b34801561061457600080fd5b5061061d6114cb565b60405161062a9190613832565b60405180910390f35b34801561063f57600080fd5b506106486114de565b60405161065591906138e6565b60405180910390f35b34801561066a57600080fd5b506106856004803603810190610680919061393e565b61156c565b60405161069291906139ac565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190613c34565b611582565b6040516106cf9190613a42565b60405180910390f35b3480156106e457600080fd5b506106ed611652565b005b3480156106fb57600080fd5b5061071660048036038101906107119190613b92565b6116da565b005b34801561072457600080fd5b5061072d611770565b60405161073a91906139ac565b60405180910390f35b34801561074f57600080fd5b5061075861179a565b6040516107659190613a42565b60405180910390f35b34801561077a57600080fd5b506107836117a0565b60405161079091906138e6565b60405180910390f35b6107b360048036038101906107ae919061393e565b611832565b005b3480156107c157600080fd5b506107dc60048036038101906107d79190613d94565b611be1565b005b3480156107ea57600080fd5b506107f3611d59565b60405161080091906138e6565b60405180910390f35b34801561081557600080fd5b50610830600480360381019061082b919061393e565b611de7565b005b34801561083e57600080fd5b5061085960048036038101906108549190613e75565b611e6d565b005b34801561086757600080fd5b50610882600480360381019061087d919061393e565b611ee9565b60405161088f91906138e6565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba919061393e565b612042565b005b3480156108cd57600080fd5b506108d66120c8565b6040516108e39190613a42565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613c07565b6120ce565b005b34801561092157600080fd5b5061092a612167565b6040516109379190613a42565b60405180910390f35b34801561094c57600080fd5b5061096760048036038101906109629190613ef8565b61216d565b6040516109749190613832565b60405180910390f35b34801561098957600080fd5b506109a4600480360381019061099f9190613f38565b612201565b005b6109c060048036038101906109bb919061393e565b612370565b005b3480156109ce57600080fd5b506109e960048036038101906109e49190613c34565b61249a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac65750610ac5826125b5565b5b9050919050565b606060028054610adc90613fa7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0890613fa7565b8015610b555780601f10610b2a57610100808354040283529160200191610b55565b820191906000526020600020905b815481529060010190602001808311610b3857829003601f168201915b5050505050905090565b6000610b6a8261261f565b610ba0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be68261156c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c4e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c6d61266d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c9f5750610c9d81610c9861266d565b61216d565b155b15610cd6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce1838383612675565b505050565b610cee61266d565b73ffffffffffffffffffffffffffffffffffffffff16610d0c611770565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990614025565b60405180910390fd5b600d54811115610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90614091565b60405180910390fd5b80600f8190555050565b60105481565b600c5481565b610dc561266d565b73ffffffffffffffffffffffffffffffffffffffff16610de3611770565b73ffffffffffffffffffffffffffffffffffffffff1614610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090614025565b60405180910390fd5b80600a9080519060200190610e4f929190613698565b5050565b610e5b61266d565b73ffffffffffffffffffffffffffffffffffffffff16610e79611770565b73ffffffffffffffffffffffffffffffffffffffff1614610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690614025565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610ef6612727565b6001546000540303905090565b60126020528060005260406000206000915090505481565b610f26838383612730565b505050565b601160019054906101000a900460ff1681565b610f4661266d565b73ffffffffffffffffffffffffffffffffffffffff16610f64611770565b73ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190614025565b60405180910390fd5b6000610fc4611770565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fe7906140e2565b60006040518083038185875af1925050503d8060008114611024576040519150601f19603f3d011682016040523d82523d6000602084013e611029565b606091505b505090508061103757600080fd5b50565b61105583838360405180602001604052806000815250611e6d565b505050565b6060600061106783611582565b905060008167ffffffffffffffff81111561108557611084613a67565b5b6040519080825280602002602001820160405280156110b35781602001602082028036833780820191505090505b50905060006110c0612727565b90506000805b84821080156110d75750600d548311155b15611268576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156111e45750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b156111f157806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112545783858481518110611239576112386140f7565b5b602002602001018181525050828061125090614155565b9350505b838061125f90614155565b945050506110c6565b8395505050505050919050565b61127d61266d565b73ffffffffffffffffffffffffffffffffffffffff1661129b611770565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890614025565b60405180910390fd5b80600c8190555050565b61130361266d565b73ffffffffffffffffffffffffffffffffffffffff16611321611770565b73ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90614025565b60405180910390fd5b80600b908051906020019061138d929190613698565b5050565b601160029054906101000a900460ff1681565b600a80546113b190613fa7565b80601f01602080910402602001604051908101604052809291908181526020018280546113dd90613fa7565b801561142a5780601f106113ff5761010080835404028352916020019161142a565b820191906000526020600020905b81548152906001019060200180831161140d57829003601f168201915b505050505081565b61143a61266d565b73ffffffffffffffffffffffffffffffffffffffff16611458611770565b73ffffffffffffffffffffffffffffffffffffffff16146114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590614025565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b600980546114eb90613fa7565b80601f016020809104026020016040519081016040528092919081815260200182805461151790613fa7565b80156115645780601f1061153957610100808354040283529160200191611564565b820191906000526020600020905b81548152906001019060200180831161154757829003601f168201915b505050505081565b600061157782612be6565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ea576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61165a61266d565b73ffffffffffffffffffffffffffffffffffffffff16611678611770565b73ffffffffffffffffffffffffffffffffffffffff16146116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590614025565b60405180910390fd5b6116d86000612e75565b565b6116e261266d565b73ffffffffffffffffffffffffffffffffffffffff16611700611770565b73ffffffffffffffffffffffffffffffffffffffff1614611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90614025565b60405180910390fd5b806009908051906020019061176c929190613698565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600380546117af90613fa7565b80601f01602080910402602001604051908101604052809291908181526020018280546117db90613fa7565b80156118285780601f106117fd57610100808354040283529160200191611828565b820191906000526020600020905b81548152906001019060200180831161180b57829003601f168201915b5050505050905090565b8061183b611770565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118bf5760008111801561187f5750600e548111155b6118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906141ea565b60405180910390fd5b5b600d54816118cb610eec565b6118d5919061420a565b1115611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d906142ac565b60405180910390fd5b816000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060105481106119b55781600c5461197291906142cc565b3410156119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90614372565b60405180910390fd5b5b601160009054906101000a900460ff1615611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc906143de565b60405180910390fd5b601160019054906101000a900460ff16611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b9061444a565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601054811015611af7576010548582611ab1919061420a565b1115611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae9906144b6565b60405180910390fd5b611b52565b6010548110611b5157600f548582611b0f919061420a565b1115611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4790614522565b60405180910390fd5b5b5b611b63611b5d61266d565b86612f3b565b6000600190505b858111611bd957601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611bc190614155565b91905055508080611bd190614155565b915050611b6a565b505050505050565b611be961266d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c4e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c5b61266d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d0861266d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d4d9190613832565b60405180910390a35050565b600b8054611d6690613fa7565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9290613fa7565b8015611ddf5780601f10611db457610100808354040283529160200191611ddf565b820191906000526020600020905b815481529060010190602001808311611dc257829003601f168201915b505050505081565b611def61266d565b73ffffffffffffffffffffffffffffffffffffffff16611e0d611770565b73ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90614025565b60405180910390fd5b80600e8190555050565b611e78848484612730565b611e978373ffffffffffffffffffffffffffffffffffffffff16612592565b8015611eac5750611eaa84848484612f59565b155b15611ee3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611ef48261261f565b611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a906145b4565b60405180910390fd5b60001515601160029054906101000a900460ff1615151415611fe157600b8054611f5c90613fa7565b80601f0160208091040260200160405190810160405280929190818152602001828054611f8890613fa7565b8015611fd55780601f10611faa57610100808354040283529160200191611fd5565b820191906000526020600020905b815481529060010190602001808311611fb857829003601f168201915b5050505050905061203d565b6000611feb6130b9565b9050600081511161200b5760405180602001604052806000815250612039565b806120158461314b565b600a604051602001612029939291906146a4565b6040516020818303038152906040525b9150505b919050565b61204a61266d565b73ffffffffffffffffffffffffffffffffffffffff16612068611770565b73ffffffffffffffffffffffffffffffffffffffff16146120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b590614025565b60405180910390fd5b8060108190555050565b600d5481565b6120d661266d565b73ffffffffffffffffffffffffffffffffffffffff166120f4611770565b73ffffffffffffffffffffffffffffffffffffffff161461214a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214190614025565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8161220a611770565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461228e5760008111801561224e5750600e548111155b61228d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612284906141ea565b60405180910390fd5b5b600d548161229a610eec565b6122a4919061420a565b11156122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc906142ac565b60405180910390fd5b6122ed61266d565b73ffffffffffffffffffffffffffffffffffffffff1661230b611770565b73ffffffffffffffffffffffffffffffffffffffff1614612361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235890614025565b60405180910390fd5b61236b8284612f3b565b505050565b61237861266d565b73ffffffffffffffffffffffffffffffffffffffff16612396611770565b73ffffffffffffffffffffffffffffffffffffffff16146123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e390614025565b60405180910390fd5b6000811161242f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612426906141ea565b60405180910390fd5b600d548161243b610eec565b612445919061420a565b1115612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d906142ac565b60405180910390fd5b61249761249161266d565b82612f3b565b50565b6124a261266d565b73ffffffffffffffffffffffffffffffffffffffff166124c0611770565b73ffffffffffffffffffffffffffffffffffffffff1614612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d90614025565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257d90614747565b60405180910390fd5b61258f81612e75565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161262a612727565b11158015612639575060005482105b8015612666575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061273b82612be6565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127a6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127c761266d565b73ffffffffffffffffffffffffffffffffffffffff1614806127f657506127f5856127f061266d565b61216d565b5b8061283b575061280461266d565b73ffffffffffffffffffffffffffffffffffffffff1661282384610b5f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612874576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128db576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128e885858560016132ac565b6128f460008487612675565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b74576000548214612b7357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bdf85858560016132b2565b5050505050565b612bee61371e565b600082905080612bfc612727565b11158015612c0b575060005481105b15612e3e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e3c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d20578092505050612e70565b5b600115612e3b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e36578092505050612e70565b612d21565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f558282604051806020016040528060008152506132b8565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f7f61266d565b8786866040518563ffffffff1660e01b8152600401612fa194939291906147bc565b602060405180830381600087803b158015612fbb57600080fd5b505af1925050508015612fec57506040513d601f19601f82011682018060405250810190612fe9919061481d565b60015b613066573d806000811461301c576040519150601f19603f3d011682016040523d82523d6000602084013e613021565b606091505b5060008151141561305e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546130c890613fa7565b80601f01602080910402602001604051908101604052809291908181526020018280546130f490613fa7565b80156131415780601f1061311657610100808354040283529160200191613141565b820191906000526020600020905b81548152906001019060200180831161312457829003601f168201915b5050505050905090565b60606000821415613193576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132a7565b600082905060005b600082146131c55780806131ae90614155565b915050600a826131be9190614879565b915061319b565b60008167ffffffffffffffff8111156131e1576131e0613a67565b5b6040519080825280601f01601f1916602001820160405280156132135781602001600182028036833780820191505090505b5090505b600085146132a05760018261322c91906148aa565b9150600a8561323b91906148de565b6030613247919061420a565b60f81b81838151811061325d5761325c6140f7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132999190614879565b9450613217565b8093505050505b919050565b50505050565b50505050565b6132c583838360016132ca565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613337576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613372576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61337f60008683876132ac565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561354957506135488773ffffffffffffffffffffffffffffffffffffffff16612592565b5b1561360f575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135be6000888480600101955088612f59565b6135f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561354f57826000541461360a57600080fd5b61367b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613610575b81600081905550505061369160008683876132b2565b5050505050565b8280546136a490613fa7565b90600052602060002090601f0160209004810192826136c6576000855561370d565b82601f106136df57805160ff191683800117855561370d565b8280016001018555821561370d579182015b8281111561370c5782518255916020019190600101906136f1565b5b50905061371a9190613761565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561377a576000816000905550600101613762565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137c781613792565b81146137d257600080fd5b50565b6000813590506137e4816137be565b92915050565b600060208284031215613800576137ff613788565b5b600061380e848285016137d5565b91505092915050565b60008115159050919050565b61382c81613817565b82525050565b60006020820190506138476000830184613823565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561388757808201518184015260208101905061386c565b83811115613896576000848401525b50505050565b6000601f19601f8301169050919050565b60006138b88261384d565b6138c28185613858565b93506138d2818560208601613869565b6138db8161389c565b840191505092915050565b6000602082019050818103600083015261390081846138ad565b905092915050565b6000819050919050565b61391b81613908565b811461392657600080fd5b50565b60008135905061393881613912565b92915050565b60006020828403121561395457613953613788565b5b600061396284828501613929565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139968261396b565b9050919050565b6139a68161398b565b82525050565b60006020820190506139c1600083018461399d565b92915050565b6139d08161398b565b81146139db57600080fd5b50565b6000813590506139ed816139c7565b92915050565b60008060408385031215613a0a57613a09613788565b5b6000613a18858286016139de565b9250506020613a2985828601613929565b9150509250929050565b613a3c81613908565b82525050565b6000602082019050613a576000830184613a33565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a9f8261389c565b810181811067ffffffffffffffff82111715613abe57613abd613a67565b5b80604052505050565b6000613ad161377e565b9050613add8282613a96565b919050565b600067ffffffffffffffff821115613afd57613afc613a67565b5b613b068261389c565b9050602081019050919050565b82818337600083830152505050565b6000613b35613b3084613ae2565b613ac7565b905082815260208101848484011115613b5157613b50613a62565b5b613b5c848285613b13565b509392505050565b600082601f830112613b7957613b78613a5d565b5b8135613b89848260208601613b22565b91505092915050565b600060208284031215613ba857613ba7613788565b5b600082013567ffffffffffffffff811115613bc657613bc561378d565b5b613bd284828501613b64565b91505092915050565b613be481613817565b8114613bef57600080fd5b50565b600081359050613c0181613bdb565b92915050565b600060208284031215613c1d57613c1c613788565b5b6000613c2b84828501613bf2565b91505092915050565b600060208284031215613c4a57613c49613788565b5b6000613c58848285016139de565b91505092915050565b600080600060608486031215613c7a57613c79613788565b5b6000613c88868287016139de565b9350506020613c99868287016139de565b9250506040613caa86828701613929565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ce981613908565b82525050565b6000613cfb8383613ce0565b60208301905092915050565b6000602082019050919050565b6000613d1f82613cb4565b613d298185613cbf565b9350613d3483613cd0565b8060005b83811015613d65578151613d4c8882613cef565b9750613d5783613d07565b925050600181019050613d38565b5085935050505092915050565b60006020820190508181036000830152613d8c8184613d14565b905092915050565b60008060408385031215613dab57613daa613788565b5b6000613db9858286016139de565b9250506020613dca85828601613bf2565b9150509250929050565b600067ffffffffffffffff821115613def57613dee613a67565b5b613df88261389c565b9050602081019050919050565b6000613e18613e1384613dd4565b613ac7565b905082815260208101848484011115613e3457613e33613a62565b5b613e3f848285613b13565b509392505050565b600082601f830112613e5c57613e5b613a5d565b5b8135613e6c848260208601613e05565b91505092915050565b60008060008060808587031215613e8f57613e8e613788565b5b6000613e9d878288016139de565b9450506020613eae878288016139de565b9350506040613ebf87828801613929565b925050606085013567ffffffffffffffff811115613ee057613edf61378d565b5b613eec87828801613e47565b91505092959194509250565b60008060408385031215613f0f57613f0e613788565b5b6000613f1d858286016139de565b9250506020613f2e858286016139de565b9150509250929050565b60008060408385031215613f4f57613f4e613788565b5b6000613f5d85828601613929565b9250506020613f6e858286016139de565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fbf57607f821691505b60208210811415613fd357613fd2613f78565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061400f602083613858565b915061401a82613fd9565b602082019050919050565b6000602082019050818103600083015261403e81614002565b9050919050565b7f45786365656420746f74616c20616d6f756e7400000000000000000000000000600082015250565b600061407b601383613858565b915061408682614045565b602082019050919050565b600060208201905081810360008301526140aa8161406e565b9050919050565b600081905092915050565b50565b60006140cc6000836140b1565b91506140d7826140bc565b600082019050919050565b60006140ed826140bf565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061416082613908565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561419357614192614126565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006141d4601483613858565b91506141df8261419e565b602082019050919050565b60006020820190508181036000830152614203816141c7565b9050919050565b600061421582613908565b915061422083613908565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561425557614254614126565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000614296601483613858565b91506142a182614260565b602082019050919050565b600060208201905081810360008301526142c581614289565b9050919050565b60006142d782613908565b91506142e283613908565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561431b5761431a614126565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061435c601383613858565b915061436782614326565b602082019050919050565b6000602082019050818103600083015261438b8161434f565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006143c8601783613858565b91506143d382614392565b602082019050919050565b600060208201905081810360008301526143f7816143bb565b9050919050565b7f4e6f74206f70656e20746f207075626c69632079657421000000000000000000600082015250565b6000614434601783613858565b915061443f826143fe565b602082019050919050565b6000602082019050818103600083015261446381614427565b9050919050565b7f45786365656465642046726565204d696e74204c696d69740000000000000000600082015250565b60006144a0601883613858565b91506144ab8261446a565b602082019050919050565b600060208201905081810360008301526144cf81614493565b9050919050565b7f4578636565646564204d696e74204c696d697400000000000000000000000000600082015250565b600061450c601383613858565b9150614517826144d6565b602082019050919050565b6000602082019050818103600083015261453b816144ff565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061459e602f83613858565b91506145a982614542565b604082019050919050565b600060208201905081810360008301526145cd81614591565b9050919050565b600081905092915050565b60006145ea8261384d565b6145f481856145d4565b9350614604818560208601613869565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461463281613fa7565b61463c81866145d4565b9450600182166000811461465757600181146146685761469b565b60ff1983168652818601935061469b565b61467185614610565b60005b8381101561469357815481890152600182019150602081019050614674565b838801955050505b50505092915050565b60006146b082866145df565b91506146bc82856145df565b91506146c88284614625565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614731602683613858565b915061473c826146d5565b604082019050919050565b6000602082019050818103600083015261476081614724565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061478e82614767565b6147988185614772565b93506147a8818560208601613869565b6147b18161389c565b840191505092915050565b60006080820190506147d1600083018761399d565b6147de602083018661399d565b6147eb6040830185613a33565b81810360608301526147fd8184614783565b905095945050505050565b600081519050614817816137be565b92915050565b60006020828403121561483357614832613788565b5b600061484184828501614808565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061488482613908565b915061488f83613908565b92508261489f5761489e61484a565b5b828204905092915050565b60006148b582613908565b91506148c083613908565b9250828210156148d3576148d2614126565b5b828203905092915050565b60006148e982613908565b91506148f483613908565b9250826149045761490361484a565b5b82820690509291505056fea26469706673582212200b931879987f0f7e3a2b3f20b1704fbe0add3fc2be1a5bb2147496bda2742c1164736f6c63430008090033

Deployed Bytecode Sourcemap

44818:5344:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24472:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27585:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29088:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28651:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49045:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45224:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45059:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49597:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49703:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23721:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45367:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29953:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45299:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49894:155;;;:::i;:::-;;30194:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47389:796;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48830:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49353:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45333:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44980:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49786:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45268:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44893:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27393:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24841:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43930:103;;;;;;;;;;;;;:::i;:::-;;49491:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43279:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45136:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27754:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46205:760;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29364:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45019:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49217:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30450:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48292:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48912:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45100:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48743:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45179:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29722:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47226:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46971:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44188:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24472:305;24574:4;24626:25;24611:40;;;:11;:40;;;;:105;;;;24683:33;24668:48;;;:11;:48;;;;24611:105;:158;;;;24733:36;24757:11;24733:23;:36::i;:::-;24611:158;24591:178;;24472:305;;;:::o;27585:100::-;27639:13;27672:5;27665:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27585:100;:::o;29088:204::-;29156:7;29181:16;29189:7;29181;:16::i;:::-;29176:64;;29206:34;;;;;;;;;;;;;;29176:64;29260:15;:24;29276:7;29260:24;;;;;;;;;;;;;;;;;;;;;29253:31;;29088:204;;;:::o;28651:371::-;28724:13;28740:24;28756:7;28740:15;:24::i;:::-;28724:40;;28785:5;28779:11;;:2;:11;;;28775:48;;;28799:24;;;;;;;;;;;;;;28775:48;28856:5;28840:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28866:37;28883:5;28890:12;:10;:12::i;:::-;28866:16;:37::i;:::-;28865:38;28840:63;28836:138;;;28927:35;;;;;;;;;;;;;;28836:138;28986:28;28995:2;28999:7;29008:5;28986:8;:28::i;:::-;28713:309;28651:371;;:::o;49045:166::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49135:9:::1;;49124:7;:20;;49116:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;49198:7;49177:18;:28;;;;49045:166:::0;:::o;45224:36::-;;;;:::o;45059:33::-;;;;:::o;49597:100::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49681:10:::1;49669:9;:22;;;;;;;;;;;;:::i;:::-;;49597:100:::0;:::o;49703:77::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49768:6:::1;49759;;:15;;;;;;;;;;;;;;;;;;49703:77:::0;:::o;23721:303::-;23765:7;23990:15;:13;:15::i;:::-;23975:12;;23959:13;;:28;:46;23952:53;;23721:303;:::o;45367:55::-;;;;;;;;;;;;;;;;;:::o;29953:170::-;30087:28;30097:4;30103:2;30107:7;30087:9;:28::i;:::-;29953:170;;;:::o;45299:29::-;;;;;;;;;;;;;:::o;49894:155::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49951:7:::1;49972;:5;:7::i;:::-;49964:21;;49993;49964:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49950:69;;;50035:2;50027:11;;;::::0;::::1;;49939:110;49894:155::o:0;30194:185::-;30332:39;30349:4;30355:2;30359:7;30332:39;;;;;;;;;;;;:16;:39::i;:::-;30194:185;;;:::o;47389:796::-;47449:16;47474:23;47500:17;47510:6;47500:9;:17::i;:::-;47474:43;;47524:30;47571:15;47557:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47524:63;;47594:22;47619:15;:13;:15::i;:::-;47594:40;;47641:23;47675:26;47710:441;47735:15;47717;:33;:64;;;;;47772:9;;47754:14;:27;;47717:64;47710:441;;;47792:31;47826:11;:27;47838:14;47826:27;;;;;;;;;;;47792:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47869:9;:16;;;47868:17;:49;;;;;47915:1;47889:28;;:9;:14;;;:28;;;;47868:49;47864:111;;;47951:9;:14;;;47930:35;;47864:111;48011:6;47989:28;;:18;:28;;;47985:132;;;48063:14;48030:13;48044:15;48030:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;48090:17;;;;;:::i;:::-;;;;47985:132;48127:16;;;;;:::i;:::-;;;;47783:368;47710:441;;;48166:13;48159:20;;;;;;;47389:796;;;:::o;48830:75::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48893:5:::1;48886:4;:12;;;;48830:75:::0;:::o;49353:132::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49461:18:::1;49441:17;:38;;;;;;;;;;;;:::i;:::-;;49353:132:::0;:::o;45333:27::-;;;;;;;;;;;;;:::o;44980:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49786:85::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49859:6:::1;49846:10;;:19;;;;;;;;;;;;;;;;;;49786:85:::0;:::o;45268:26::-;;;;;;;;;;;;;:::o;44893:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27393:125::-;27457:7;27484:21;27497:7;27484:12;:21::i;:::-;:26;;;27477:33;;27393:125;;;:::o;24841:206::-;24905:7;24946:1;24929:19;;:5;:19;;;24925:60;;;24957:28;;;;;;;;;;;;;;24925:60;25011:12;:19;25024:5;25011:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25003:36;;24996:43;;24841:206;;;:::o;43930:103::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43995:30:::1;44022:1;43995:18;:30::i;:::-;43930:103::o:0;49491:100::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49575:10:::1;49563:9;:22;;;;;;;;;;;;:::i;:::-;;49491:100:::0;:::o;43279:87::-;43325:7;43352:6;;;;;;;;;;;43345:13;;43279:87;:::o;45136:37::-;;;;:::o;27754:104::-;27810:13;27843:7;27836:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27754:104;:::o;46205:760::-;46270:11;45706:7;:5;:7::i;:::-;45692:21;;:10;:21;;;45688:132;;45749:1;45735:11;:15;:52;;;;;45769:18;;45754:11;:33;;45735:52;45727:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;45688:132;45865:9;;45850:11;45834:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;45826:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46303:11:::1;45977:24;46004:20;:32;46025:10;46004:32;;;;;;;;;;;;;;;;45977:59;;46066:17;;46046:16;:37;46042:124;;46124:11;46117:4;;:18;;;;:::i;:::-;46104:9;:31;;46096:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46042:124;46332:6:::2;;;;;;;;;;;46331:7;46323:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;46382:10;;;;;;;;;;;46374:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;46427:24;46454:20;:32;46475:10;46454:32;;;;;;;;;;;;;;;;46427:59;;46518:17;;46499:16;:36;46495:320;;;46596:17;;46581:11;46562:16;:30;;;;:::i;:::-;:51;;46554:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;46495:320;;;46684:17;;46664:16;:37;46660:155;;46761:18;;46746:11;46727:16;:30;;;;:::i;:::-;:52;;46719:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;46660:155;46495:320;46823:36;46833:12;:10;:12::i;:::-;46847:11;46823:9;:36::i;:::-;46871:9;46883:1;46871:13;;46866:94;46890:11;46886:1;:15;46866:94;;46918:20;:32;46939:10;46918:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;46903:3;;;;;:::i;:::-;;;;46866:94;;;;46316:649;45970:213:::1;45906:1;46205:760:::0;;:::o;29364:287::-;29475:12;:10;:12::i;:::-;29463:24;;:8;:24;;;29459:54;;;29496:17;;;;;;;;;;;;;;29459:54;29571:8;29526:18;:32;29545:12;:10;:12::i;:::-;29526:32;;;;;;;;;;;;;;;:42;29559:8;29526:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29624:8;29595:48;;29610:12;:10;:12::i;:::-;29595:48;;;29634:8;29595:48;;;;;;:::i;:::-;;;;;;;;29364:287;;:::o;45019:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49217:130::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49322:19:::1;49301:18;:40;;;;49217:130:::0;:::o;30450:369::-;30617:28;30627:4;30633:2;30637:7;30617:9;:28::i;:::-;30660:15;:2;:13;;;:15::i;:::-;:76;;;;;30680:56;30711:4;30717:2;30721:7;30730:5;30680:30;:56::i;:::-;30679:57;30660:76;30656:156;;;30760:40;;;;;;;;;;;;;;30656:156;30450:369;;;;:::o;48292:445::-;48366:13;48396:17;48404:8;48396:7;:17::i;:::-;48388:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;48490:5;48478:17;;:8;;;;;;;;;;;:17;;;48474:64;;;48513:17;48506:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48474:64;48546:28;48577:10;:8;:10::i;:::-;48546:41;;48632:1;48607:14;48601:28;:32;:130;;;;;;;;;;;;;;;;;48669:14;48685:19;:8;:17;:19::i;:::-;48706:9;48652:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48601:130;48594:137;;;48292:445;;;;:::o;48912:127::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49014:18:::1;48994:17;:38;;;;48912:127:::0;:::o;45100:30::-;;;;:::o;48743:81::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48812:6:::1;48801:8;;:17;;;;;;;;;;;;;;;;;;48743:81:::0;:::o;45179:37::-;;;;:::o;29722:164::-;29819:4;29843:18;:25;29862:5;29843:25;;;;;;;;;;;;;;;:35;29869:8;29843:35;;;;;;;;;;;;;;;;;;;;;;;;;29836:42;;29722:164;;;;:::o;47226:155::-;47312:11;45706:7;:5;:7::i;:::-;45692:21;;:10;:21;;;45688:132;;45749:1;45735:11;:15;:52;;;;;45769:18;;45754:11;:33;;45735:52;45727:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;45688:132;45865:9;;45850:11;45834:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;45826:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43510:12:::1;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47342:33:::2;47352:9;47363:11;47342:9;:33::i;:::-;47226:155:::0;;;:::o;46971:251::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47066:1:::1;47052:11;:15;47044:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;47139:9;;47124:11;47108:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;47100:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47180:36;47190:12;:10;:12::i;:::-;47204:11;47180:9;:36::i;:::-;46971:251:::0;:::o;44188:201::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44297:1:::1;44277:22;;:8;:22;;;;44269:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44353:28;44372:8;44353:18;:28::i;:::-;44188:201:::0;:::o;3387:326::-;3447:4;3704:1;3682:7;:19;;;:23;3675:30;;3387:326;;;:::o;13470:157::-;13555:4;13594:25;13579:40;;;:11;:40;;;;13572:47;;13470:157;;;:::o;31074:174::-;31131:4;31174:7;31155:15;:13;:15::i;:::-;:26;;:53;;;;;31195:13;;31185:7;:23;31155:53;:85;;;;;31213:11;:20;31225:7;31213:20;;;;;;;;;;;:27;;;;;;;;;;;;31212:28;31155:85;31148:92;;31074:174;;;:::o;19988:98::-;20041:7;20068:10;20061:17;;19988:98;:::o;39231:196::-;39373:2;39346:15;:24;39362:7;39346:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39411:7;39407:2;39391:28;;39400:5;39391:28;;;;;;;;;;;;39231:196;;;:::o;48191:95::-;48256:7;48279:1;48272:8;;48191:95;:::o;34174:2130::-;34289:35;34327:21;34340:7;34327:12;:21::i;:::-;34289:59;;34387:4;34365:26;;:13;:18;;;:26;;;34361:67;;34400:28;;;;;;;;;;;;;;34361:67;34441:22;34483:4;34467:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34504:36;34521:4;34527:12;:10;:12::i;:::-;34504:16;:36::i;:::-;34467:73;:126;;;;34581:12;:10;:12::i;:::-;34557:36;;:20;34569:7;34557:11;:20::i;:::-;:36;;;34467:126;34441:153;;34612:17;34607:66;;34638:35;;;;;;;;;;;;;;34607:66;34702:1;34688:16;;:2;:16;;;34684:52;;;34713:23;;;;;;;;;;;;;;34684:52;34749:43;34771:4;34777:2;34781:7;34790:1;34749:21;:43::i;:::-;34857:35;34874:1;34878:7;34887:4;34857:8;:35::i;:::-;35218:1;35188:12;:18;35201:4;35188:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35262:1;35234:12;:16;35247:2;35234:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35280:31;35314:11;:20;35326:7;35314:20;;;;;;;;;;;35280:54;;35365:2;35349:8;:13;;;:18;;;;;;;;;;;;;;;;;;35415:15;35382:8;:23;;;:49;;;;;;;;;;;;;;;;;;35683:19;35715:1;35705:7;:11;35683:33;;35731:31;35765:11;:24;35777:11;35765:24;;;;;;;;;;;35731:58;;35833:1;35808:27;;:8;:13;;;;;;;;;;;;:27;;;35804:384;;;36018:13;;36003:11;:28;35999:174;;36072:4;36056:8;:13;;;:20;;;;;;;;;;;;;;;;;;36125:13;:28;;;36099:8;:23;;;:54;;;;;;;;;;;;;;;;;;35999:174;35804:384;35163:1036;;;36235:7;36231:2;36216:27;;36225:4;36216:27;;;;;;;;;;;;36254:42;36275:4;36281:2;36285:7;36294:1;36254:20;:42::i;:::-;34278:2026;;34174:2130;;;:::o;26222:1109::-;26284:21;;:::i;:::-;26318:12;26333:7;26318:22;;26401:4;26382:15;:13;:15::i;:::-;:23;;:47;;;;;26416:13;;26409:4;:20;26382:47;26378:886;;;26450:31;26484:11;:17;26496:4;26484:17;;;;;;;;;;;26450:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26525:9;:16;;;26520:729;;26596:1;26570:28;;:9;:14;;;:28;;;26566:101;;26634:9;26627:16;;;;;;26566:101;26969:261;26976:4;26969:261;;;27009:6;;;;;;;;27054:11;:17;27066:4;27054:17;;;;;;;;;;;27042:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27128:1;27102:28;;:9;:14;;;:28;;;27098:109;;27170:9;27163:16;;;;;;27098:109;26969:261;;;26520:729;26431:833;26378:886;27292:31;;;;;;;;;;;;;;26222:1109;;;;:::o;44549:191::-;44623:16;44642:6;;;;;;;;;;;44623:25;;44668:8;44659:6;;:17;;;;;;;;;;;;;;;;;;44723:8;44692:40;;44713:8;44692:40;;;;;;;;;;;;44612:128;44549:191;:::o;31256:104::-;31325:27;31335:2;31339:8;31325:27;;;;;;;;;;;;:9;:27::i;:::-;31256:104;;:::o;39919:667::-;40082:4;40119:2;40103:36;;;40140:12;:10;:12::i;:::-;40154:4;40160:7;40169:5;40103:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40099:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40354:1;40337:6;:13;:18;40333:235;;;40383:40;;;;;;;;;;;;;;40333:235;40526:6;40520:13;40511:6;40507:2;40503:15;40496:38;40099:480;40232:45;;;40222:55;;;:6;:55;;;;40215:62;;;39919:667;;;;;;:::o;50055:104::-;50115:13;50144:9;50137:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50055:104;:::o;395:723::-;451:13;681:1;672:5;:10;668:53;;;699:10;;;;;;;;;;;;;;;;;;;;;668:53;731:12;746:5;731:20;;762:14;787:78;802:1;794:4;:9;787:78;;820:8;;;;;:::i;:::-;;;;851:2;843:10;;;;;:::i;:::-;;;787:78;;;875:19;907:6;897:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;875:39;;925:154;941:1;932:5;:10;925:154;;969:1;959:11;;;;;:::i;:::-;;;1036:2;1028:5;:10;;;;:::i;:::-;1015:2;:24;;;;:::i;:::-;1002:39;;985:6;992;985:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1065:2;1056:11;;;;;:::i;:::-;;;925:154;;;1103:6;1089:21;;;;;395:723;;;;:::o;41234:159::-;;;;;:::o;42052:158::-;;;;;:::o;31723:163::-;31846:32;31852:2;31856:8;31866:5;31873:4;31846:5;:32::i;:::-;31723:163;;;:::o;32145:1775::-;32284:20;32307:13;;32284:36;;32349:1;32335:16;;:2;:16;;;32331:48;;;32360:19;;;;;;;;;;;;;;32331:48;32406:1;32394:8;:13;32390:44;;;32416:18;;;;;;;;;;;;;;32390:44;32447:61;32477:1;32481:2;32485:12;32499:8;32447:21;:61::i;:::-;32820:8;32785:12;:16;32798:2;32785:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32884:8;32844:12;:16;32857:2;32844:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32943:2;32910:11;:25;32922:12;32910:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33010:15;32960:11;:25;32972:12;32960:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33043:20;33066:12;33043:35;;33093:11;33122:8;33107:12;:23;33093:37;;33151:4;:23;;;;;33159:15;:2;:13;;;:15::i;:::-;33151:23;33147:641;;;33195:314;33251:12;33247:2;33226:38;;33243:1;33226:38;;;;;;;;;;;;33292:69;33331:1;33335:2;33339:14;;;;;;33355:5;33292:30;:69::i;:::-;33287:174;;33397:40;;;;;;;;;;;;;;33287:174;33504:3;33488:12;:19;;33195:314;;33590:12;33573:13;;:29;33569:43;;33604:8;;;33569:43;33147:641;;;33653:120;33709:14;;;;;;33705:2;33684:40;;33701:1;33684:40;;;;;;;;;;;;33768:3;33752:12;:19;;33653:120;;33147:641;33818:12;33802:13;:28;;;;32760:1082;;33852:60;33881:1;33885:2;33889:12;33903:8;33852:20;:60::i;:::-;32273:1647;32145:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:329::-;8560:6;8609:2;8597:9;8588:7;8584:23;8580:32;8577:119;;;8615:79;;:::i;:::-;8577:119;8735:1;8760:53;8805:7;8796:6;8785:9;8781:22;8760:53;:::i;:::-;8750:63;;8706:117;8501:329;;;;:::o;8836:619::-;8913:6;8921;8929;8978:2;8966:9;8957:7;8953:23;8949:32;8946:119;;;8984:79;;:::i;:::-;8946:119;9104:1;9129:53;9174:7;9165:6;9154:9;9150:22;9129:53;:::i;:::-;9119:63;;9075:117;9231:2;9257:53;9302:7;9293:6;9282:9;9278:22;9257:53;:::i;:::-;9247:63;;9202:118;9359:2;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9330:118;8836:619;;;;;:::o;9461:114::-;9528:6;9562:5;9556:12;9546:22;;9461:114;;;:::o;9581:184::-;9680:11;9714:6;9709:3;9702:19;9754:4;9749:3;9745:14;9730:29;;9581:184;;;;:::o;9771:132::-;9838:4;9861:3;9853:11;;9891:4;9886:3;9882:14;9874:22;;9771:132;;;:::o;9909:108::-;9986:24;10004:5;9986:24;:::i;:::-;9981:3;9974:37;9909:108;;:::o;10023:179::-;10092:10;10113:46;10155:3;10147:6;10113:46;:::i;:::-;10191:4;10186:3;10182:14;10168:28;;10023:179;;;;:::o;10208:113::-;10278:4;10310;10305:3;10301:14;10293:22;;10208:113;;;:::o;10357:732::-;10476:3;10505:54;10553:5;10505:54;:::i;:::-;10575:86;10654:6;10649:3;10575:86;:::i;:::-;10568:93;;10685:56;10735:5;10685:56;:::i;:::-;10764:7;10795:1;10780:284;10805:6;10802:1;10799:13;10780:284;;;10881:6;10875:13;10908:63;10967:3;10952:13;10908:63;:::i;:::-;10901:70;;10994:60;11047:6;10994:60;:::i;:::-;10984:70;;10840:224;10827:1;10824;10820:9;10815:14;;10780:284;;;10784:14;11080:3;11073:10;;10481:608;;;10357:732;;;;:::o;11095:373::-;11238:4;11276:2;11265:9;11261:18;11253:26;;11325:9;11319:4;11315:20;11311:1;11300:9;11296:17;11289:47;11353:108;11456:4;11447:6;11353:108;:::i;:::-;11345:116;;11095:373;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:307::-;12009:4;12099:18;12091:6;12088:30;12085:56;;;12121:18;;:::i;:::-;12085:56;12159:29;12181:6;12159:29;:::i;:::-;12151:37;;12243:4;12237;12233:15;12225:23;;11948:307;;;:::o;12261:410::-;12338:5;12363:65;12379:48;12420:6;12379:48;:::i;:::-;12363:65;:::i;:::-;12354:74;;12451:6;12444:5;12437:21;12489:4;12482:5;12478:16;12527:3;12518:6;12513:3;12509:16;12506:25;12503:112;;;12534:79;;:::i;:::-;12503:112;12624:41;12658:6;12653:3;12648;12624:41;:::i;:::-;12344:327;12261:410;;;;;:::o;12690:338::-;12745:5;12794:3;12787:4;12779:6;12775:17;12771:27;12761:122;;12802:79;;:::i;:::-;12761:122;12919:6;12906:20;12944:78;13018:3;13010:6;13003:4;12995:6;12991:17;12944:78;:::i;:::-;12935:87;;12751:277;12690:338;;;;:::o;13034:943::-;13129:6;13137;13145;13153;13202:3;13190:9;13181:7;13177:23;13173:33;13170:120;;;13209:79;;:::i;:::-;13170:120;13329:1;13354:53;13399:7;13390:6;13379:9;13375:22;13354:53;:::i;:::-;13344:63;;13300:117;13456:2;13482:53;13527:7;13518:6;13507:9;13503:22;13482:53;:::i;:::-;13472:63;;13427:118;13584:2;13610:53;13655:7;13646:6;13635:9;13631:22;13610:53;:::i;:::-;13600:63;;13555:118;13740:2;13729:9;13725:18;13712:32;13771:18;13763:6;13760:30;13757:117;;;13793:79;;:::i;:::-;13757:117;13898:62;13952:7;13943:6;13932:9;13928:22;13898:62;:::i;:::-;13888:72;;13683:287;13034:943;;;;;;;:::o;13983:474::-;14051:6;14059;14108:2;14096:9;14087:7;14083:23;14079:32;14076:119;;;14114:79;;:::i;:::-;14076:119;14234:1;14259:53;14304:7;14295:6;14284:9;14280:22;14259:53;:::i;:::-;14249:63;;14205:117;14361:2;14387:53;14432:7;14423:6;14412:9;14408:22;14387:53;:::i;:::-;14377:63;;14332:118;13983:474;;;;;:::o;14463:::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:180::-;14991:77;14988:1;14981:88;15088:4;15085:1;15078:15;15112:4;15109:1;15102:15;15129:320;15173:6;15210:1;15204:4;15200:12;15190:22;;15257:1;15251:4;15247:12;15278:18;15268:81;;15334:4;15326:6;15322:17;15312:27;;15268:81;15396:2;15388:6;15385:14;15365:18;15362:38;15359:84;;;15415:18;;:::i;:::-;15359:84;15180:269;15129:320;;;:::o;15455:182::-;15595:34;15591:1;15583:6;15579:14;15572:58;15455:182;:::o;15643:366::-;15785:3;15806:67;15870:2;15865:3;15806:67;:::i;:::-;15799:74;;15882:93;15971:3;15882:93;:::i;:::-;16000:2;15995:3;15991:12;15984:19;;15643:366;;;:::o;16015:419::-;16181:4;16219:2;16208:9;16204:18;16196:26;;16268:9;16262:4;16258:20;16254:1;16243:9;16239:17;16232:47;16296:131;16422:4;16296:131;:::i;:::-;16288:139;;16015:419;;;:::o;16440:169::-;16580:21;16576:1;16568:6;16564:14;16557:45;16440:169;:::o;16615:366::-;16757:3;16778:67;16842:2;16837:3;16778:67;:::i;:::-;16771:74;;16854:93;16943:3;16854:93;:::i;:::-;16972:2;16967:3;16963:12;16956:19;;16615:366;;;:::o;16987:419::-;17153:4;17191:2;17180:9;17176:18;17168:26;;17240:9;17234:4;17230:20;17226:1;17215:9;17211:17;17204:47;17268:131;17394:4;17268:131;:::i;:::-;17260:139;;16987:419;;;:::o;17412:147::-;17513:11;17550:3;17535:18;;17412:147;;;;:::o;17565:114::-;;:::o;17685:398::-;17844:3;17865:83;17946:1;17941:3;17865:83;:::i;:::-;17858:90;;17957:93;18046:3;17957:93;:::i;:::-;18075:1;18070:3;18066:11;18059:18;;17685:398;;;:::o;18089:379::-;18273:3;18295:147;18438:3;18295:147;:::i;:::-;18288:154;;18459:3;18452:10;;18089:379;;;:::o;18474:180::-;18522:77;18519:1;18512:88;18619:4;18616:1;18609:15;18643:4;18640:1;18633:15;18660:180;18708:77;18705:1;18698:88;18805:4;18802:1;18795:15;18829:4;18826:1;18819:15;18846:233;18885:3;18908:24;18926:5;18908:24;:::i;:::-;18899:33;;18954:66;18947:5;18944:77;18941:103;;;19024:18;;:::i;:::-;18941:103;19071:1;19064:5;19060:13;19053:20;;18846:233;;;:::o;19085:170::-;19225:22;19221:1;19213:6;19209:14;19202:46;19085:170;:::o;19261:366::-;19403:3;19424:67;19488:2;19483:3;19424:67;:::i;:::-;19417:74;;19500:93;19589:3;19500:93;:::i;:::-;19618:2;19613:3;19609:12;19602:19;;19261:366;;;:::o;19633:419::-;19799:4;19837:2;19826:9;19822:18;19814:26;;19886:9;19880:4;19876:20;19872:1;19861:9;19857:17;19850:47;19914:131;20040:4;19914:131;:::i;:::-;19906:139;;19633:419;;;:::o;20058:305::-;20098:3;20117:20;20135:1;20117:20;:::i;:::-;20112:25;;20151:20;20169:1;20151:20;:::i;:::-;20146:25;;20305:1;20237:66;20233:74;20230:1;20227:81;20224:107;;;20311:18;;:::i;:::-;20224:107;20355:1;20352;20348:9;20341:16;;20058:305;;;;:::o;20369:170::-;20509:22;20505:1;20497:6;20493:14;20486:46;20369:170;:::o;20545:366::-;20687:3;20708:67;20772:2;20767:3;20708:67;:::i;:::-;20701:74;;20784:93;20873:3;20784:93;:::i;:::-;20902:2;20897:3;20893:12;20886:19;;20545:366;;;:::o;20917:419::-;21083:4;21121:2;21110:9;21106:18;21098:26;;21170:9;21164:4;21160:20;21156:1;21145:9;21141:17;21134:47;21198:131;21324:4;21198:131;:::i;:::-;21190:139;;20917:419;;;:::o;21342:348::-;21382:7;21405:20;21423:1;21405:20;:::i;:::-;21400:25;;21439:20;21457:1;21439:20;:::i;:::-;21434:25;;21627:1;21559:66;21555:74;21552:1;21549:81;21544:1;21537:9;21530:17;21526:105;21523:131;;;21634:18;;:::i;:::-;21523:131;21682:1;21679;21675:9;21664:20;;21342:348;;;;:::o;21696:169::-;21836:21;21832:1;21824:6;21820:14;21813:45;21696:169;:::o;21871:366::-;22013:3;22034:67;22098:2;22093:3;22034:67;:::i;:::-;22027:74;;22110:93;22199:3;22110:93;:::i;:::-;22228:2;22223:3;22219:12;22212:19;;21871:366;;;:::o;22243:419::-;22409:4;22447:2;22436:9;22432:18;22424:26;;22496:9;22490:4;22486:20;22482:1;22471:9;22467:17;22460:47;22524:131;22650:4;22524:131;:::i;:::-;22516:139;;22243:419;;;:::o;22668:173::-;22808:25;22804:1;22796:6;22792:14;22785:49;22668:173;:::o;22847:366::-;22989:3;23010:67;23074:2;23069:3;23010:67;:::i;:::-;23003:74;;23086:93;23175:3;23086:93;:::i;:::-;23204:2;23199:3;23195:12;23188:19;;22847:366;;;:::o;23219:419::-;23385:4;23423:2;23412:9;23408:18;23400:26;;23472:9;23466:4;23462:20;23458:1;23447:9;23443:17;23436:47;23500:131;23626:4;23500:131;:::i;:::-;23492:139;;23219:419;;;:::o;23644:173::-;23784:25;23780:1;23772:6;23768:14;23761:49;23644:173;:::o;23823:366::-;23965:3;23986:67;24050:2;24045:3;23986:67;:::i;:::-;23979:74;;24062:93;24151:3;24062:93;:::i;:::-;24180:2;24175:3;24171:12;24164:19;;23823:366;;;:::o;24195:419::-;24361:4;24399:2;24388:9;24384:18;24376:26;;24448:9;24442:4;24438:20;24434:1;24423:9;24419:17;24412:47;24476:131;24602:4;24476:131;:::i;:::-;24468:139;;24195:419;;;:::o;24620:174::-;24760:26;24756:1;24748:6;24744:14;24737:50;24620:174;:::o;24800:366::-;24942:3;24963:67;25027:2;25022:3;24963:67;:::i;:::-;24956:74;;25039:93;25128:3;25039:93;:::i;:::-;25157:2;25152:3;25148:12;25141:19;;24800:366;;;:::o;25172:419::-;25338:4;25376:2;25365:9;25361:18;25353:26;;25425:9;25419:4;25415:20;25411:1;25400:9;25396:17;25389:47;25453:131;25579:4;25453:131;:::i;:::-;25445:139;;25172:419;;;:::o;25597:169::-;25737:21;25733:1;25725:6;25721:14;25714:45;25597:169;:::o;25772:366::-;25914:3;25935:67;25999:2;25994:3;25935:67;:::i;:::-;25928:74;;26011:93;26100:3;26011:93;:::i;:::-;26129:2;26124:3;26120:12;26113:19;;25772:366;;;:::o;26144:419::-;26310:4;26348:2;26337:9;26333:18;26325:26;;26397:9;26391:4;26387:20;26383:1;26372:9;26368:17;26361:47;26425:131;26551:4;26425:131;:::i;:::-;26417:139;;26144:419;;;:::o;26569:234::-;26709:34;26705:1;26697:6;26693:14;26686:58;26778:17;26773:2;26765:6;26761:15;26754:42;26569:234;:::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:148::-;27708:11;27745:3;27730:18;;27606:148;;;;:::o;27760:377::-;27866:3;27894:39;27927:5;27894:39;:::i;:::-;27949:89;28031:6;28026:3;27949:89;:::i;:::-;27942:96;;28047:52;28092:6;28087:3;28080:4;28073:5;28069:16;28047:52;:::i;:::-;28124:6;28119:3;28115:16;28108:23;;27870:267;27760:377;;;;:::o;28143:141::-;28192:4;28215:3;28207:11;;28238:3;28235:1;28228:14;28272:4;28269:1;28259:18;28251:26;;28143:141;;;:::o;28314:845::-;28417:3;28454:5;28448:12;28483:36;28509:9;28483:36;:::i;:::-;28535:89;28617:6;28612:3;28535:89;:::i;:::-;28528:96;;28655:1;28644:9;28640:17;28671:1;28666:137;;;;28817:1;28812:341;;;;28633:520;;28666:137;28750:4;28746:9;28735;28731:25;28726:3;28719:38;28786:6;28781:3;28777:16;28770:23;;28666:137;;28812:341;28879:38;28911:5;28879:38;:::i;:::-;28939:1;28953:154;28967:6;28964:1;28961:13;28953:154;;;29041:7;29035:14;29031:1;29026:3;29022:11;29015:35;29091:1;29082:7;29078:15;29067:26;;28989:4;28986:1;28982:12;28977:17;;28953:154;;;29136:6;29131:3;29127:16;29120:23;;28819:334;;28633:520;;28421:738;;28314:845;;;;:::o;29165:589::-;29390:3;29412:95;29503:3;29494:6;29412:95;:::i;:::-;29405:102;;29524:95;29615:3;29606:6;29524:95;:::i;:::-;29517:102;;29636:92;29724:3;29715:6;29636:92;:::i;:::-;29629:99;;29745:3;29738:10;;29165:589;;;;;;:::o;29760:225::-;29900:34;29896:1;29888:6;29884:14;29877:58;29969:8;29964:2;29956:6;29952:15;29945:33;29760:225;:::o;29991:366::-;30133:3;30154:67;30218:2;30213:3;30154:67;:::i;:::-;30147:74;;30230:93;30319:3;30230:93;:::i;:::-;30348:2;30343:3;30339:12;30332:19;;29991:366;;;:::o;30363:419::-;30529:4;30567:2;30556:9;30552:18;30544:26;;30616:9;30610:4;30606:20;30602:1;30591:9;30587:17;30580:47;30644:131;30770:4;30644:131;:::i;:::-;30636:139;;30363:419;;;:::o;30788:98::-;30839:6;30873:5;30867:12;30857:22;;30788:98;;;:::o;30892:168::-;30975:11;31009:6;31004:3;30997:19;31049:4;31044:3;31040:14;31025:29;;30892:168;;;;:::o;31066:360::-;31152:3;31180:38;31212:5;31180:38;:::i;:::-;31234:70;31297:6;31292:3;31234:70;:::i;:::-;31227:77;;31313:52;31358:6;31353:3;31346:4;31339:5;31335:16;31313:52;:::i;:::-;31390:29;31412:6;31390:29;:::i;:::-;31385:3;31381:39;31374:46;;31156:270;31066:360;;;;:::o;31432:640::-;31627:4;31665:3;31654:9;31650:19;31642:27;;31679:71;31747:1;31736:9;31732:17;31723:6;31679:71;:::i;:::-;31760:72;31828:2;31817:9;31813:18;31804:6;31760:72;:::i;:::-;31842;31910:2;31899:9;31895:18;31886:6;31842:72;:::i;:::-;31961:9;31955:4;31951:20;31946:2;31935:9;31931:18;31924:48;31989:76;32060:4;32051:6;31989:76;:::i;:::-;31981:84;;31432:640;;;;;;;:::o;32078:141::-;32134:5;32165:6;32159:13;32150:22;;32181:32;32207:5;32181:32;:::i;:::-;32078:141;;;;:::o;32225:349::-;32294:6;32343:2;32331:9;32322:7;32318:23;32314:32;32311:119;;;32349:79;;:::i;:::-;32311:119;32469:1;32494:63;32549:7;32540:6;32529:9;32525:22;32494:63;:::i;:::-;32484:73;;32440:127;32225:349;;;;:::o;32580:180::-;32628:77;32625:1;32618:88;32725:4;32722:1;32715:15;32749:4;32746:1;32739:15;32766:185;32806:1;32823:20;32841:1;32823:20;:::i;:::-;32818:25;;32857:20;32875:1;32857:20;:::i;:::-;32852:25;;32896:1;32886:35;;32901:18;;:::i;:::-;32886:35;32943:1;32940;32936:9;32931:14;;32766:185;;;;:::o;32957:191::-;32997:4;33017:20;33035:1;33017:20;:::i;:::-;33012:25;;33051:20;33069:1;33051:20;:::i;:::-;33046:25;;33090:1;33087;33084:8;33081:34;;;33095:18;;:::i;:::-;33081:34;33140:1;33137;33133:9;33125:17;;32957:191;;;;:::o;33154:176::-;33186:1;33203:20;33221:1;33203:20;:::i;:::-;33198:25;;33237:20;33255:1;33237:20;:::i;:::-;33232:25;;33276:1;33266:35;;33281:18;;:::i;:::-;33266:35;33322:1;33319;33315:9;33310:14;;33154:176;;;;:::o

Swarm Source

ipfs://0b931879987f0f7e3a2b3f20b1704fbe0add3fc2be1a5bb2147496bda2742c11
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.