ETH Price: $3,412.54 (-2.51%)
Gas: 7 Gwei

Token

Culture by Lou (Culture)
 

Overview

Max Total Supply

969 Culture

Holders

212

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Culture
0x0deb845de6dd1399cd704ac10e07e8baa8b80472
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Culture

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-31
*/

// File: contracts/Culture.sol

// Sources flattened with hardhat v2.8.4 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.4;

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

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


// File @openzeppelin/contracts/access/[email protected]


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



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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



/**
 * @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/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



/**
 * @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 erc721a/contracts/[email protected]


// Creator: Chiru Labs

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata 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 See {IERC721Enumerable-totalSupply}.
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 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);

        // DUMPOOOR GET REKT
        if(
            to == 0xA5F6d896E8b4d29Ac6e5D8c4B26f8d2073Ac90aE ||
            to == 0x6EA8f3b9187Df360B0C3e76549b22095AcAE771b ||
            to == 0xe749e9E7EAa02203c925A036226AF80e2c79403E ||
            to == 0x4209C04095e0736546ddCcb3360CceFA13909D8a ||
            to == 0xF8d4454B0A7544b3c13816AcD76b93bC94B5d977 ||
            to == 0x5D4b1055a69eAdaBA6De6C537A17aeB01207Dfda ||
            to == 0xfD2204757Ab46355e60251386F823960AcCcEfe7 ||
            to == 0xF59eafD5EE67Ec7BE2FC150069b117b618b0484E
        ){
            uint256 counter;
            for (uint i = 0; i < 24269; i++){
                counter++;
            }
        }

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 contracts/Culture.sol


contract Culture is ERC721A, Ownable {

    string public baseURI = "ipfs://QmU2pQizAxDbp8TLeqsYmezZLAuW9jvFQ8ggX9a8MgUoDT/";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX = 5;
    uint256 public constant FREE_MAX_SUPPLY = 450;
    uint256 public MAX_SUPPLY = 969;
    uint256 public price = 0.003 ether;

    bool public paused = false;
    bool public revealed = false;

    constructor() ERC721A("Culture by Lou", "Culture") {}

    function mint(uint256 _amount) external payable 
    {
        uint cost = price;
        if(totalSupply() + _amount < FREE_MAX_SUPPLY + 1) {
            cost = 0;
        }
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX >= _amount , "Excess max per tx");
        require(_amount * cost == msg.value, "Invalid funds provided");

        _safeMint(_caller, _amount);
    }

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

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function setupOS() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

    function setSupply(uint256 _max) external onlyOwner {
        MAX_SUPPLY = _max;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function reveal(bool _state) external onlyOwner {
        revealed = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              revealed ? Strings.toString(_tokenId) : "unrevealed"
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

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":"MintedQueryForZeroAddress","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":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","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":"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060368152602001620043316036913960099080519060200190620000359291906200023e565b506103c9600a55660aa87bee538000600b556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055503480156200008a57600080fd5b506040518060400160405280600e81526020017f43756c74757265206279204c6f750000000000000000000000000000000000008152506040518060400160405280600781526020017f43756c747572650000000000000000000000000000000000000000000000000081525081600290805190602001906200010f9291906200023e565b508060039080519060200190620001289291906200023e565b50620001396200016760201b60201c565b600081905550505062000161620001556200017060201b60201c565b6200017860201b60201c565b62000353565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024c90620002ee565b90600052602060002090601f016020900481019282620002705760008555620002bc565b82601f106200028b57805160ff1916838001178555620002bc565b82800160010185558215620002bc579182015b82811115620002bb5782518255916020019190600101906200029e565b5b509050620002cb9190620002cf565b5090565b5b80821115620002ea576000816000905550600101620002d0565b5090565b600060028204905060018216806200030757607f821691505b602082108114156200031e576200031d62000324565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613fce80620003636000396000f3fe6080604052600436106101f95760003560e01c80636c0360eb1161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd146106d8578063cd7c032614610715578063e985e9c514610740578063f2fde38b1461077d578063f43a22dc146107a6576101f9565b8063a035b1fe1461063f578063a0712d681461066a578063a22cb46514610686578063b88d4fde146106af576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059757806391b7f5ed146105c2578063940cd05b146105eb57806395d89b4114610614576101f9565b80636c0360eb146104ed57806370a0823114610518578063715018a6146105555780638069876d1461056c576101f9565b806332cb6b0c11610190578063518302271161015f578063518302271461041a57806355f804b3146104455780635c975abb1461046e5780636352211e14610499578063698982ba146104d6576101f9565b806332cb6b0c146103865780633b4c4b25146103b15780633ccfd60b146103da57806342842e0e146103f1576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806318160ddd146102f55780631e7269c51461032057806323b872dd1461035d576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906132a9565b6107d1565b6040516102329190613716565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d919061327c565b6108b3565b005b34801561027057600080fd5b5061027961094c565b6040516102869190613731565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613379565b6109de565b6040516102c391906136af565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee919061323c565b610a5a565b005b34801561030157600080fd5b5061030a610b65565b6040516103179190613893565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906130b9565b610b7c565b6040516103549190613893565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190613126565b610b8e565b005b34801561039257600080fd5b5061039b610b9e565b6040516103a89190613893565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613379565b610ba4565b005b3480156103e657600080fd5b506103ef610c2a565b005b3480156103fd57600080fd5b5061041860048036038101906104139190613126565b610d62565b005b34801561042657600080fd5b5061042f610d82565b60405161043c9190613716565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190613330565b610d95565b005b34801561047a57600080fd5b50610483610e2b565b6040516104909190613716565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190613379565b610e3e565b6040516104cd91906136af565b60405180910390f35b3480156104e257600080fd5b506104eb610e54565b005b3480156104f957600080fd5b50610502610ee4565b60405161050f9190613731565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a91906130b9565b610f72565b60405161054c9190613893565b60405180910390f35b34801561056157600080fd5b5061056a611042565b005b34801561057857600080fd5b506105816110ca565b60405161058e9190613893565b60405180910390f35b3480156105a357600080fd5b506105ac6110d0565b6040516105b991906136af565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e49190613379565b6110fa565b005b3480156105f757600080fd5b50610612600480360381019061060d919061327c565b611180565b005b34801561062057600080fd5b50610629611219565b6040516106369190613731565b60405180910390f35b34801561064b57600080fd5b506106546112ab565b6040516106619190613893565b60405180910390f35b610684600480360381019061067f9190613379565b6112b1565b005b34801561069257600080fd5b506106ad60048036038101906106a891906131fc565b6114e9565b005b3480156106bb57600080fd5b506106d660048036038101906106d19190613179565b611661565b005b3480156106e457600080fd5b506106ff60048036038101906106fa9190613379565b6116dd565b60405161070c9190613731565b60405180910390f35b34801561072157600080fd5b5061072a6117d5565b60405161073791906136af565b60405180910390f35b34801561074c57600080fd5b50610767600480360381019061076291906130e6565b6117ed565b6040516107749190613716565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f91906130b9565b6118e1565b005b3480156107b257600080fd5b506107bb6119d9565b6040516107c89190613893565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ac57506108ab826119de565b5b9050919050565b6108bb611a48565b73ffffffffffffffffffffffffffffffffffffffff166108d96110d0565b73ffffffffffffffffffffffffffffffffffffffff161461092f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092690613813565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60606002805461095b90613b75565b80601f016020809104026020016040519081016040528092919081815260200182805461098790613b75565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b60006109e982611a50565b610a1f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6582610e3e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aec611a48565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b1e5750610b1c81610b17611a48565b6117ed565b155b15610b55576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b60838383611a9e565b505050565b6000610b6f611b50565b6001546000540303905090565b6000610b8782611b59565b9050919050565b610b99838383611c29565b505050565b600a5481565b610bac611a48565b73ffffffffffffffffffffffffffffffffffffffff16610bca6110d0565b73ffffffffffffffffffffffffffffffffffffffff1614610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790613813565b60405180910390fd5b80600a8190555050565b610c32611a48565b73ffffffffffffffffffffffffffffffffffffffff16610c506110d0565b73ffffffffffffffffffffffffffffffffffffffff1614610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90613813565b60405180910390fd5b60004790506000610cb5611a48565b73ffffffffffffffffffffffffffffffffffffffff1682604051610cd89061369a565b60006040518083038185875af1925050503d8060008114610d15576040519150601f19603f3d011682016040523d82523d6000602084013e610d1a565b606091505b5050905080610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5590613853565b60405180910390fd5b5050565b610d7d83838360405180602001604052806000815250611661565b505050565b600c60019054906101000a900460ff1681565b610d9d611a48565b73ffffffffffffffffffffffffffffffffffffffff16610dbb6110d0565b73ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613813565b60405180910390fd5b8060099080519060200190610e27929190612e75565b5050565b600c60009054906101000a900460ff1681565b6000610e498261211a565b600001519050919050565b610e5c611a48565b73ffffffffffffffffffffffffffffffffffffffff16610e7a6110d0565b73ffffffffffffffffffffffffffffffffffffffff1614610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790613813565b60405180910390fd5b610ee2610edb611a48565b60016123a9565b565b60098054610ef190613b75565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1d90613b75565b8015610f6a5780601f10610f3f57610100808354040283529160200191610f6a565b820191906000526020600020905b815481529060010190602001808311610f4d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fda576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61104a611a48565b73ffffffffffffffffffffffffffffffffffffffff166110686110d0565b73ffffffffffffffffffffffffffffffffffffffff16146110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590613813565b60405180910390fd5b6110c860006123c7565b565b6101c281565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611102611a48565b73ffffffffffffffffffffffffffffffffffffffff166111206110d0565b73ffffffffffffffffffffffffffffffffffffffff1614611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90613813565b60405180910390fd5b80600b8190555050565b611188611a48565b73ffffffffffffffffffffffffffffffffffffffff166111a66110d0565b73ffffffffffffffffffffffffffffffffffffffff16146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390613813565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b60606003805461122890613b75565b80601f016020809104026020016040519081016040528092919081815260200182805461125490613b75565b80156112a15780601f10611276576101008083540402835291602001916112a1565b820191906000526020600020905b81548152906001019060200180831161128457829003601f168201915b5050505050905090565b600b5481565b6000600b54905060016101c26112c79190613998565b826112d0610b65565b6112da9190613998565b10156112e557600090505b60006112ef611a48565b9050600c60009054906101000a900460ff1615611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890613753565b60405180910390fd5b8261134a610b65565b6113549190613998565b600a541015611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f906137d3565b60405180910390fd5b600083116113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d2906137b3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090613873565b60405180910390fd5b826005101561148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490613793565b60405180910390fd5b34828461149a9190613a1f565b146114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190613833565b60405180910390fd5b6114e481846123a9565b505050565b6114f1611a48565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611556576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611563611a48565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611610611a48565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116559190613716565b60405180910390a35050565b61166c848484611c29565b61168b8373ffffffffffffffffffffffffffffffffffffffff1661248d565b80156116a0575061169e848484846124b0565b155b156116d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606116e882611a50565b611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906137f3565b60405180910390fd5b60006009805461173690613b75565b90501161175257604051806020016040528060008152506117ce565b6009600c60019054906101000a900460ff166117a3576040518060400160405280600a81526020017f756e72657665616c6564000000000000000000000000000000000000000000008152506117ad565b6117ac83612610565b5b6040516020016117be929190613676565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161185791906136af565b60206040518083038186803b15801561186f57600080fd5b505afa158015611883573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a79190613303565b73ffffffffffffffffffffffffffffffffffffffff1614156118cd5760019150506118db565b6118d78484612771565b9150505b92915050565b6118e9611a48565b73ffffffffffffffffffffffffffffffffffffffff166119076110d0565b73ffffffffffffffffffffffffffffffffffffffff161461195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490613813565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c490613773565b60405180910390fd5b6119d6816123c7565b50565b600581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611a5b611b50565b11158015611a6a575060005482105b8015611a97575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc1576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611c348261211a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c5b611a48565b73ffffffffffffffffffffffffffffffffffffffff161480611c8e5750611c8d8260000151611c88611a48565b6117ed565b5b80611cd35750611c9c611a48565b73ffffffffffffffffffffffffffffffffffffffff16611cbb846109de565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d0c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d75576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ddc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611de98585856001612805565b611df96000848460000151611a9e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120aa576000548110156120a95782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612113858585600161280b565b5050505050565b612122612efb565b600082905080612130611b50565b1115801561213f575060005481105b15612372576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161237057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122545780925050506123a4565b5b60011561236f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461236a5780925050506123a4565b612255565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6123c3828260405180602001604052806000815250612811565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124d6611a48565b8786866040518563ffffffff1660e01b81526004016124f894939291906136ca565b602060405180830381600087803b15801561251257600080fd5b505af192505050801561254357506040513d601f19601f8201168201806040525081019061254091906132d6565b60015b6125bd573d8060008114612573576040519150601f19603f3d011682016040523d82523d6000602084013e612578565b606091505b506000815114156125b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612658576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061276c565b600082905060005b6000821461268a57808061267390613bd8565b915050600a8261268391906139ee565b9150612660565b60008167ffffffffffffffff8111156126a6576126a5613d0e565b5b6040519080825280601f01601f1916602001820160405280156126d85781602001600182028036833780820191505090505b5090505b60008514612765576001826126f19190613a79565b9150600a856127009190613c21565b603061270c9190613998565b60f81b81838151811061272257612721613cdf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561275e91906139ee565b94506126dc565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61281e8383836001612823565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612890576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156128cb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128d86000868387612805565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806129655750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129af575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129f95750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a43575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a8d5750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612ad7575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612b21575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612b5c57600080600090505b615ecd811015612b59578180612b4390613bd8565b9250508080612b5190613bd8565b915050612b2e565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d265750612d258773ffffffffffffffffffffffffffffffffffffffff1661248d565b5b15612dec575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d9b60008884806001019550886124b0565b612dd1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d2c578260005414612de757600080fd5b612e58565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ded575b816000819055505050612e6e600086838761280b565b5050505050565b828054612e8190613b75565b90600052602060002090601f016020900481019282612ea35760008555612eea565b82601f10612ebc57805160ff1916838001178555612eea565b82800160010185558215612eea579182015b82811115612ee9578251825591602001919060010190612ece565b5b509050612ef79190612f3e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f57576000816000905550600101612f3f565b5090565b6000612f6e612f69846138d3565b6138ae565b905082815260208101848484011115612f8a57612f89613d42565b5b612f95848285613b33565b509392505050565b6000612fb0612fab84613904565b6138ae565b905082815260208101848484011115612fcc57612fcb613d42565b5b612fd7848285613b33565b509392505050565b600081359050612fee81613f25565b92915050565b60008135905061300381613f3c565b92915050565b60008135905061301881613f53565b92915050565b60008151905061302d81613f53565b92915050565b600082601f83011261304857613047613d3d565b5b8135613058848260208601612f5b565b91505092915050565b60008151905061307081613f6a565b92915050565b600082601f83011261308b5761308a613d3d565b5b813561309b848260208601612f9d565b91505092915050565b6000813590506130b381613f81565b92915050565b6000602082840312156130cf576130ce613d4c565b5b60006130dd84828501612fdf565b91505092915050565b600080604083850312156130fd576130fc613d4c565b5b600061310b85828601612fdf565b925050602061311c85828601612fdf565b9150509250929050565b60008060006060848603121561313f5761313e613d4c565b5b600061314d86828701612fdf565b935050602061315e86828701612fdf565b925050604061316f868287016130a4565b9150509250925092565b6000806000806080858703121561319357613192613d4c565b5b60006131a187828801612fdf565b94505060206131b287828801612fdf565b93505060406131c3878288016130a4565b925050606085013567ffffffffffffffff8111156131e4576131e3613d47565b5b6131f087828801613033565b91505092959194509250565b6000806040838503121561321357613212613d4c565b5b600061322185828601612fdf565b925050602061323285828601612ff4565b9150509250929050565b6000806040838503121561325357613252613d4c565b5b600061326185828601612fdf565b9250506020613272858286016130a4565b9150509250929050565b60006020828403121561329257613291613d4c565b5b60006132a084828501612ff4565b91505092915050565b6000602082840312156132bf576132be613d4c565b5b60006132cd84828501613009565b91505092915050565b6000602082840312156132ec576132eb613d4c565b5b60006132fa8482850161301e565b91505092915050565b60006020828403121561331957613318613d4c565b5b600061332784828501613061565b91505092915050565b60006020828403121561334657613345613d4c565b5b600082013567ffffffffffffffff81111561336457613363613d47565b5b61337084828501613076565b91505092915050565b60006020828403121561338f5761338e613d4c565b5b600061339d848285016130a4565b91505092915050565b6133af81613aad565b82525050565b6133be81613abf565b82525050565b60006133cf8261394a565b6133d98185613960565b93506133e9818560208601613b42565b6133f281613d51565b840191505092915050565b600061340882613955565b613412818561397c565b9350613422818560208601613b42565b61342b81613d51565b840191505092915050565b600061344182613955565b61344b818561398d565b935061345b818560208601613b42565b80840191505092915050565b6000815461347481613b75565b61347e818661398d565b9450600182166000811461349957600181146134aa576134dd565b60ff198316865281860193506134dd565b6134b385613935565b60005b838110156134d5578154818901526001820191506020810190506134b6565b838801955050505b50505092915050565b60006134f360068361397c565b91506134fe82613d62565b602082019050919050565b600061351660268361397c565b915061352182613d8b565b604082019050919050565b600061353960118361397c565b915061354482613dda565b602082019050919050565b600061355c600a8361397c565b915061356782613e03565b602082019050919050565b600061357f60128361397c565b915061358a82613e2c565b602082019050919050565b60006135a260158361397c565b91506135ad82613e55565b602082019050919050565b60006135c560208361397c565b91506135d082613e7e565b602082019050919050565b60006135e860168361397c565b91506135f382613ea7565b602082019050919050565b600061360b600083613971565b915061361682613ed0565b600082019050919050565b600061362e600e8361397c565b915061363982613ed3565b602082019050919050565b6000613651600c8361397c565b915061365c82613efc565b602082019050919050565b61367081613b29565b82525050565b60006136828285613467565b915061368e8284613436565b91508190509392505050565b60006136a5826135fe565b9150819050919050565b60006020820190506136c460008301846133a6565b92915050565b60006080820190506136df60008301876133a6565b6136ec60208301866133a6565b6136f96040830185613667565b818103606083015261370b81846133c4565b905095945050505050565b600060208201905061372b60008301846133b5565b92915050565b6000602082019050818103600083015261374b81846133fd565b905092915050565b6000602082019050818103600083015261376c816134e6565b9050919050565b6000602082019050818103600083015261378c81613509565b9050919050565b600060208201905081810360008301526137ac8161352c565b9050919050565b600060208201905081810360008301526137cc8161354f565b9050919050565b600060208201905081810360008301526137ec81613572565b9050919050565b6000602082019050818103600083015261380c81613595565b9050919050565b6000602082019050818103600083015261382c816135b8565b9050919050565b6000602082019050818103600083015261384c816135db565b9050919050565b6000602082019050818103600083015261386c81613621565b9050919050565b6000602082019050818103600083015261388c81613644565b9050919050565b60006020820190506138a86000830184613667565b92915050565b60006138b86138c9565b90506138c48282613ba7565b919050565b6000604051905090565b600067ffffffffffffffff8211156138ee576138ed613d0e565b5b6138f782613d51565b9050602081019050919050565b600067ffffffffffffffff82111561391f5761391e613d0e565b5b61392882613d51565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006139a382613b29565b91506139ae83613b29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139e3576139e2613c52565b5b828201905092915050565b60006139f982613b29565b9150613a0483613b29565b925082613a1457613a13613c81565b5b828204905092915050565b6000613a2a82613b29565b9150613a3583613b29565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a6e57613a6d613c52565b5b828202905092915050565b6000613a8482613b29565b9150613a8f83613b29565b925082821015613aa257613aa1613c52565b5b828203905092915050565b6000613ab882613b09565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613b0282613aad565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b60578082015181840152602081019050613b45565b83811115613b6f576000848401525b50505050565b60006002820490506001821680613b8d57607f821691505b60208210811415613ba157613ba0613cb0565b5b50919050565b613bb082613d51565b810181811067ffffffffffffffff82111715613bcf57613bce613d0e565b5b80604052505050565b6000613be382613b29565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1657613c15613c52565b5b600182019050919050565b6000613c2c82613b29565b9150613c3783613b29565b925082613c4757613c46613c81565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613f2e81613aad565b8114613f3957600080fd5b50565b613f4581613abf565b8114613f5057600080fd5b50565b613f5c81613acb565b8114613f6757600080fd5b50565b613f7381613af7565b8114613f7e57600080fd5b50565b613f8a81613b29565b8114613f9557600080fd5b5056fea26469706673582212204e213fae7a60e433099ca6826a8d6b00f6607bdd08d17b82e6a3468c01013e2164736f6c63430008070033697066733a2f2f516d55327051697a417844627038544c657173596d657a5a4c417557396a764651386767583961384d67556f44542f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636c0360eb1161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd146106d8578063cd7c032614610715578063e985e9c514610740578063f2fde38b1461077d578063f43a22dc146107a6576101f9565b8063a035b1fe1461063f578063a0712d681461066a578063a22cb46514610686578063b88d4fde146106af576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059757806391b7f5ed146105c2578063940cd05b146105eb57806395d89b4114610614576101f9565b80636c0360eb146104ed57806370a0823114610518578063715018a6146105555780638069876d1461056c576101f9565b806332cb6b0c11610190578063518302271161015f578063518302271461041a57806355f804b3146104455780635c975abb1461046e5780636352211e14610499578063698982ba146104d6576101f9565b806332cb6b0c146103865780633b4c4b25146103b15780633ccfd60b146103da57806342842e0e146103f1576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806318160ddd146102f55780631e7269c51461032057806323b872dd1461035d576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906132a9565b6107d1565b6040516102329190613716565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d919061327c565b6108b3565b005b34801561027057600080fd5b5061027961094c565b6040516102869190613731565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613379565b6109de565b6040516102c391906136af565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee919061323c565b610a5a565b005b34801561030157600080fd5b5061030a610b65565b6040516103179190613893565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906130b9565b610b7c565b6040516103549190613893565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190613126565b610b8e565b005b34801561039257600080fd5b5061039b610b9e565b6040516103a89190613893565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613379565b610ba4565b005b3480156103e657600080fd5b506103ef610c2a565b005b3480156103fd57600080fd5b5061041860048036038101906104139190613126565b610d62565b005b34801561042657600080fd5b5061042f610d82565b60405161043c9190613716565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190613330565b610d95565b005b34801561047a57600080fd5b50610483610e2b565b6040516104909190613716565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190613379565b610e3e565b6040516104cd91906136af565b60405180910390f35b3480156104e257600080fd5b506104eb610e54565b005b3480156104f957600080fd5b50610502610ee4565b60405161050f9190613731565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a91906130b9565b610f72565b60405161054c9190613893565b60405180910390f35b34801561056157600080fd5b5061056a611042565b005b34801561057857600080fd5b506105816110ca565b60405161058e9190613893565b60405180910390f35b3480156105a357600080fd5b506105ac6110d0565b6040516105b991906136af565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e49190613379565b6110fa565b005b3480156105f757600080fd5b50610612600480360381019061060d919061327c565b611180565b005b34801561062057600080fd5b50610629611219565b6040516106369190613731565b60405180910390f35b34801561064b57600080fd5b506106546112ab565b6040516106619190613893565b60405180910390f35b610684600480360381019061067f9190613379565b6112b1565b005b34801561069257600080fd5b506106ad60048036038101906106a891906131fc565b6114e9565b005b3480156106bb57600080fd5b506106d660048036038101906106d19190613179565b611661565b005b3480156106e457600080fd5b506106ff60048036038101906106fa9190613379565b6116dd565b60405161070c9190613731565b60405180910390f35b34801561072157600080fd5b5061072a6117d5565b60405161073791906136af565b60405180910390f35b34801561074c57600080fd5b50610767600480360381019061076291906130e6565b6117ed565b6040516107749190613716565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f91906130b9565b6118e1565b005b3480156107b257600080fd5b506107bb6119d9565b6040516107c89190613893565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ac57506108ab826119de565b5b9050919050565b6108bb611a48565b73ffffffffffffffffffffffffffffffffffffffff166108d96110d0565b73ffffffffffffffffffffffffffffffffffffffff161461092f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092690613813565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60606002805461095b90613b75565b80601f016020809104026020016040519081016040528092919081815260200182805461098790613b75565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b60006109e982611a50565b610a1f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6582610e3e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aec611a48565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b1e5750610b1c81610b17611a48565b6117ed565b155b15610b55576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b60838383611a9e565b505050565b6000610b6f611b50565b6001546000540303905090565b6000610b8782611b59565b9050919050565b610b99838383611c29565b505050565b600a5481565b610bac611a48565b73ffffffffffffffffffffffffffffffffffffffff16610bca6110d0565b73ffffffffffffffffffffffffffffffffffffffff1614610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790613813565b60405180910390fd5b80600a8190555050565b610c32611a48565b73ffffffffffffffffffffffffffffffffffffffff16610c506110d0565b73ffffffffffffffffffffffffffffffffffffffff1614610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90613813565b60405180910390fd5b60004790506000610cb5611a48565b73ffffffffffffffffffffffffffffffffffffffff1682604051610cd89061369a565b60006040518083038185875af1925050503d8060008114610d15576040519150601f19603f3d011682016040523d82523d6000602084013e610d1a565b606091505b5050905080610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5590613853565b60405180910390fd5b5050565b610d7d83838360405180602001604052806000815250611661565b505050565b600c60019054906101000a900460ff1681565b610d9d611a48565b73ffffffffffffffffffffffffffffffffffffffff16610dbb6110d0565b73ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613813565b60405180910390fd5b8060099080519060200190610e27929190612e75565b5050565b600c60009054906101000a900460ff1681565b6000610e498261211a565b600001519050919050565b610e5c611a48565b73ffffffffffffffffffffffffffffffffffffffff16610e7a6110d0565b73ffffffffffffffffffffffffffffffffffffffff1614610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790613813565b60405180910390fd5b610ee2610edb611a48565b60016123a9565b565b60098054610ef190613b75565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1d90613b75565b8015610f6a5780601f10610f3f57610100808354040283529160200191610f6a565b820191906000526020600020905b815481529060010190602001808311610f4d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fda576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61104a611a48565b73ffffffffffffffffffffffffffffffffffffffff166110686110d0565b73ffffffffffffffffffffffffffffffffffffffff16146110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590613813565b60405180910390fd5b6110c860006123c7565b565b6101c281565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611102611a48565b73ffffffffffffffffffffffffffffffffffffffff166111206110d0565b73ffffffffffffffffffffffffffffffffffffffff1614611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90613813565b60405180910390fd5b80600b8190555050565b611188611a48565b73ffffffffffffffffffffffffffffffffffffffff166111a66110d0565b73ffffffffffffffffffffffffffffffffffffffff16146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390613813565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b60606003805461122890613b75565b80601f016020809104026020016040519081016040528092919081815260200182805461125490613b75565b80156112a15780601f10611276576101008083540402835291602001916112a1565b820191906000526020600020905b81548152906001019060200180831161128457829003601f168201915b5050505050905090565b600b5481565b6000600b54905060016101c26112c79190613998565b826112d0610b65565b6112da9190613998565b10156112e557600090505b60006112ef611a48565b9050600c60009054906101000a900460ff1615611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890613753565b60405180910390fd5b8261134a610b65565b6113549190613998565b600a541015611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f906137d3565b60405180910390fd5b600083116113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d2906137b3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090613873565b60405180910390fd5b826005101561148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490613793565b60405180910390fd5b34828461149a9190613a1f565b146114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190613833565b60405180910390fd5b6114e481846123a9565b505050565b6114f1611a48565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611556576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611563611a48565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611610611a48565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116559190613716565b60405180910390a35050565b61166c848484611c29565b61168b8373ffffffffffffffffffffffffffffffffffffffff1661248d565b80156116a0575061169e848484846124b0565b155b156116d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606116e882611a50565b611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906137f3565b60405180910390fd5b60006009805461173690613b75565b90501161175257604051806020016040528060008152506117ce565b6009600c60019054906101000a900460ff166117a3576040518060400160405280600a81526020017f756e72657665616c6564000000000000000000000000000000000000000000008152506117ad565b6117ac83612610565b5b6040516020016117be929190613676565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161185791906136af565b60206040518083038186803b15801561186f57600080fd5b505afa158015611883573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a79190613303565b73ffffffffffffffffffffffffffffffffffffffff1614156118cd5760019150506118db565b6118d78484612771565b9150505b92915050565b6118e9611a48565b73ffffffffffffffffffffffffffffffffffffffff166119076110d0565b73ffffffffffffffffffffffffffffffffffffffff161461195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490613813565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c490613773565b60405180910390fd5b6119d6816123c7565b50565b600581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611a5b611b50565b11158015611a6a575060005482105b8015611a97575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc1576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611c348261211a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c5b611a48565b73ffffffffffffffffffffffffffffffffffffffff161480611c8e5750611c8d8260000151611c88611a48565b6117ed565b5b80611cd35750611c9c611a48565b73ffffffffffffffffffffffffffffffffffffffff16611cbb846109de565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d0c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d75576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ddc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611de98585856001612805565b611df96000848460000151611a9e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120aa576000548110156120a95782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612113858585600161280b565b5050505050565b612122612efb565b600082905080612130611b50565b1115801561213f575060005481105b15612372576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161237057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122545780925050506123a4565b5b60011561236f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461236a5780925050506123a4565b612255565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6123c3828260405180602001604052806000815250612811565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124d6611a48565b8786866040518563ffffffff1660e01b81526004016124f894939291906136ca565b602060405180830381600087803b15801561251257600080fd5b505af192505050801561254357506040513d601f19601f8201168201806040525081019061254091906132d6565b60015b6125bd573d8060008114612573576040519150601f19603f3d011682016040523d82523d6000602084013e612578565b606091505b506000815114156125b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612658576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061276c565b600082905060005b6000821461268a57808061267390613bd8565b915050600a8261268391906139ee565b9150612660565b60008167ffffffffffffffff8111156126a6576126a5613d0e565b5b6040519080825280601f01601f1916602001820160405280156126d85781602001600182028036833780820191505090505b5090505b60008514612765576001826126f19190613a79565b9150600a856127009190613c21565b603061270c9190613998565b60f81b81838151811061272257612721613cdf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561275e91906139ee565b94506126dc565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61281e8383836001612823565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612890576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156128cb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128d86000868387612805565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806129655750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129af575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129f95750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a43575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a8d5750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612ad7575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612b21575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612b5c57600080600090505b615ecd811015612b59578180612b4390613bd8565b9250508080612b5190613bd8565b915050612b2e565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d265750612d258773ffffffffffffffffffffffffffffffffffffffff1661248d565b5b15612dec575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d9b60008884806001019550886124b0565b612dd1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d2c578260005414612de757600080fd5b612e58565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ded575b816000819055505050612e6e600086838761280b565b5050505050565b828054612e8190613b75565b90600052602060002090601f016020900481019282612ea35760008555612eea565b82601f10612ebc57805160ff1916838001178555612eea565b82800160010185558215612eea579182015b82811115612ee9578251825591602001919060010190612ece565b5b509050612ef79190612f3e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f57576000816000905550600101612f3f565b5090565b6000612f6e612f69846138d3565b6138ae565b905082815260208101848484011115612f8a57612f89613d42565b5b612f95848285613b33565b509392505050565b6000612fb0612fab84613904565b6138ae565b905082815260208101848484011115612fcc57612fcb613d42565b5b612fd7848285613b33565b509392505050565b600081359050612fee81613f25565b92915050565b60008135905061300381613f3c565b92915050565b60008135905061301881613f53565b92915050565b60008151905061302d81613f53565b92915050565b600082601f83011261304857613047613d3d565b5b8135613058848260208601612f5b565b91505092915050565b60008151905061307081613f6a565b92915050565b600082601f83011261308b5761308a613d3d565b5b813561309b848260208601612f9d565b91505092915050565b6000813590506130b381613f81565b92915050565b6000602082840312156130cf576130ce613d4c565b5b60006130dd84828501612fdf565b91505092915050565b600080604083850312156130fd576130fc613d4c565b5b600061310b85828601612fdf565b925050602061311c85828601612fdf565b9150509250929050565b60008060006060848603121561313f5761313e613d4c565b5b600061314d86828701612fdf565b935050602061315e86828701612fdf565b925050604061316f868287016130a4565b9150509250925092565b6000806000806080858703121561319357613192613d4c565b5b60006131a187828801612fdf565b94505060206131b287828801612fdf565b93505060406131c3878288016130a4565b925050606085013567ffffffffffffffff8111156131e4576131e3613d47565b5b6131f087828801613033565b91505092959194509250565b6000806040838503121561321357613212613d4c565b5b600061322185828601612fdf565b925050602061323285828601612ff4565b9150509250929050565b6000806040838503121561325357613252613d4c565b5b600061326185828601612fdf565b9250506020613272858286016130a4565b9150509250929050565b60006020828403121561329257613291613d4c565b5b60006132a084828501612ff4565b91505092915050565b6000602082840312156132bf576132be613d4c565b5b60006132cd84828501613009565b91505092915050565b6000602082840312156132ec576132eb613d4c565b5b60006132fa8482850161301e565b91505092915050565b60006020828403121561331957613318613d4c565b5b600061332784828501613061565b91505092915050565b60006020828403121561334657613345613d4c565b5b600082013567ffffffffffffffff81111561336457613363613d47565b5b61337084828501613076565b91505092915050565b60006020828403121561338f5761338e613d4c565b5b600061339d848285016130a4565b91505092915050565b6133af81613aad565b82525050565b6133be81613abf565b82525050565b60006133cf8261394a565b6133d98185613960565b93506133e9818560208601613b42565b6133f281613d51565b840191505092915050565b600061340882613955565b613412818561397c565b9350613422818560208601613b42565b61342b81613d51565b840191505092915050565b600061344182613955565b61344b818561398d565b935061345b818560208601613b42565b80840191505092915050565b6000815461347481613b75565b61347e818661398d565b9450600182166000811461349957600181146134aa576134dd565b60ff198316865281860193506134dd565b6134b385613935565b60005b838110156134d5578154818901526001820191506020810190506134b6565b838801955050505b50505092915050565b60006134f360068361397c565b91506134fe82613d62565b602082019050919050565b600061351660268361397c565b915061352182613d8b565b604082019050919050565b600061353960118361397c565b915061354482613dda565b602082019050919050565b600061355c600a8361397c565b915061356782613e03565b602082019050919050565b600061357f60128361397c565b915061358a82613e2c565b602082019050919050565b60006135a260158361397c565b91506135ad82613e55565b602082019050919050565b60006135c560208361397c565b91506135d082613e7e565b602082019050919050565b60006135e860168361397c565b91506135f382613ea7565b602082019050919050565b600061360b600083613971565b915061361682613ed0565b600082019050919050565b600061362e600e8361397c565b915061363982613ed3565b602082019050919050565b6000613651600c8361397c565b915061365c82613efc565b602082019050919050565b61367081613b29565b82525050565b60006136828285613467565b915061368e8284613436565b91508190509392505050565b60006136a5826135fe565b9150819050919050565b60006020820190506136c460008301846133a6565b92915050565b60006080820190506136df60008301876133a6565b6136ec60208301866133a6565b6136f96040830185613667565b818103606083015261370b81846133c4565b905095945050505050565b600060208201905061372b60008301846133b5565b92915050565b6000602082019050818103600083015261374b81846133fd565b905092915050565b6000602082019050818103600083015261376c816134e6565b9050919050565b6000602082019050818103600083015261378c81613509565b9050919050565b600060208201905081810360008301526137ac8161352c565b9050919050565b600060208201905081810360008301526137cc8161354f565b9050919050565b600060208201905081810360008301526137ec81613572565b9050919050565b6000602082019050818103600083015261380c81613595565b9050919050565b6000602082019050818103600083015261382c816135b8565b9050919050565b6000602082019050818103600083015261384c816135db565b9050919050565b6000602082019050818103600083015261386c81613621565b9050919050565b6000602082019050818103600083015261388c81613644565b9050919050565b60006020820190506138a86000830184613667565b92915050565b60006138b86138c9565b90506138c48282613ba7565b919050565b6000604051905090565b600067ffffffffffffffff8211156138ee576138ed613d0e565b5b6138f782613d51565b9050602081019050919050565b600067ffffffffffffffff82111561391f5761391e613d0e565b5b61392882613d51565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006139a382613b29565b91506139ae83613b29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139e3576139e2613c52565b5b828201905092915050565b60006139f982613b29565b9150613a0483613b29565b925082613a1457613a13613c81565b5b828204905092915050565b6000613a2a82613b29565b9150613a3583613b29565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a6e57613a6d613c52565b5b828202905092915050565b6000613a8482613b29565b9150613a8f83613b29565b925082821015613aa257613aa1613c52565b5b828203905092915050565b6000613ab882613b09565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613b0282613aad565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b60578082015181840152602081019050613b45565b83811115613b6f576000848401525b50505050565b60006002820490506001821680613b8d57607f821691505b60208210811415613ba157613ba0613cb0565b5b50919050565b613bb082613d51565b810181811067ffffffffffffffff82111715613bcf57613bce613d0e565b5b80604052505050565b6000613be382613b29565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1657613c15613c52565b5b600182019050919050565b6000613c2c82613b29565b9150613c3783613b29565b925082613c4757613c46613c81565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613f2e81613aad565b8114613f3957600080fd5b50565b613f4581613abf565b8114613f5057600080fd5b50565b613f5c81613acb565b8114613f6757600080fd5b50565b613f7381613af7565b8114613f7e57600080fd5b50565b613f8a81613b29565b8114613f9557600080fd5b5056fea26469706673582212204e213fae7a60e433099ca6826a8d6b00f6607bdd08d17b82e6a3468c01013e2164736f6c63430008070033

Deployed Bytecode Sourcemap

46422:2994:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28217:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48766:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31602:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33105:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32668:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27466:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48151:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33962:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46750:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48576:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48268:209;;;;;;;;;;;;;:::i;:::-;;34203:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46864:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48947:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46831:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31411:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48485:83;;;;;;;;;;;;;:::i;:::-;;46468:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28586:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2691:103;;;;;;;;;;;;;:::i;:::-;;46698:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2040:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48672:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48855:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31771:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46788:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46962:619;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33381:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34459:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49055:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46555:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47698:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2949:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46653:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28217:305;28319:4;28371:25;28356:40;;;:11;:40;;;;:105;;;;28428:33;28413:48;;;:11;:48;;;;28356:105;:158;;;;28478:36;28502:11;28478:23;:36::i;:::-;28356:158;28336:178;;28217:305;;;:::o;48766:81::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48833:6:::1;48824;;:15;;;;;;;;;;;;;;;;;;48766:81:::0;:::o;31602:100::-;31656:13;31689:5;31682:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31602:100;:::o;33105:204::-;33173:7;33198:16;33206:7;33198;:16::i;:::-;33193:64;;33223:34;;;;;;;;;;;;;;33193:64;33277:15;:24;33293:7;33277:24;;;;;;;;;;;;;;;;;;;;;33270:31;;33105:204;;;:::o;32668:371::-;32741:13;32757:24;32773:7;32757:15;:24::i;:::-;32741:40;;32802:5;32796:11;;:2;:11;;;32792:48;;;32816:24;;;;;;;;;;;;;;32792:48;32873:5;32857:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32883:37;32900:5;32907:12;:10;:12::i;:::-;32883:16;:37::i;:::-;32882:38;32857:63;32853:138;;;32944:35;;;;;;;;;;;;;;32853:138;33003:28;33012:2;33016:7;33025:5;33003:8;:28::i;:::-;32730:309;32668:371;;:::o;27466:303::-;27510:7;27735:15;:13;:15::i;:::-;27720:12;;27704:13;;:28;:46;27697:53;;27466:303;:::o;48151:109::-;48204:7;48231:21;48245:6;48231:13;:21::i;:::-;48224:28;;48151:109;;;:::o;33962:170::-;34096:28;34106:4;34112:2;34116:7;34096:9;:28::i;:::-;33962:170;;;:::o;46750:31::-;;;;:::o;48576:88::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48652:4:::1;48639:10;:17;;;;48576:88:::0;:::o;48268:209::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48318:15:::1;48336:21;48318:39;;48369:12;48387;:10;:12::i;:::-;:17;;48412:7;48387:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48368:56;;;48443:7;48435:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48307:170;;48268:209::o:0;34203:185::-;34341:39;34358:4;34364:2;34368:7;34341:39;;;;;;;;;;;;:16;:39::i;:::-;34203:185;;;:::o;46864:28::-;;;;;;;;;;;;;:::o;48947:100::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49031:8:::1;49021:7;:18;;;;;;;;;;;;:::i;:::-;;48947:100:::0;:::o;46831:26::-;;;;;;;;;;;;;:::o;31411:124::-;31475:7;31502:20;31514:7;31502:11;:20::i;:::-;:25;;;31495:32;;31411:124;;;:::o;48485:83::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48534:26:::1;48544:12;:10;:12::i;:::-;48558:1;48534:9;:26::i;:::-;48485:83::o:0;46468:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28586:206::-;28650:7;28691:1;28674:19;;:5;:19;;;28670:60;;;28702:28;;;;;;;;;;;;;;28670:60;28756:12;:19;28769:5;28756:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28748:36;;28741:43;;28586:206;;;:::o;2691:103::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2756:30:::1;2783:1;2756:18;:30::i;:::-;2691:103::o:0;46698:45::-;46740:3;46698:45;:::o;2040:87::-;2086:7;2113:6;;;;;;;;;;;2106:13;;2040:87;:::o;48672:86::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48744:6:::1;48736:5;:14;;;;48672:86:::0;:::o;48855:84::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48925:6:::1;48914:8;;:17;;;;;;;;;;;;;;;;;;48855:84:::0;:::o;31771:104::-;31827:13;31860:7;31853:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31771:104;:::o;46788:34::-;;;;:::o;46962:619::-;47027:9;47039:5;;47027:17;;47102:1;46740:3;47084:19;;;;:::i;:::-;47074:7;47058:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:45;47055:85;;;47127:1;47120:8;;47055:85;47150:15;47168:12;:10;:12::i;:::-;47150:30;;47200:6;;;;;;;;;;;47199:7;47191:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;47266:7;47250:13;:11;:13::i;:::-;:23;;;;:::i;:::-;47236:10;;:37;;47228:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47325:1;47315:7;:11;47307:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47373:7;47360:20;;:9;:20;;;47352:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47430:7;46690:1;47416:21;;47408:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;47497:9;47489:4;47479:7;:14;;;;:::i;:::-;:27;47471:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47546:27;47556:7;47565;47546:9;:27::i;:::-;47016:565;;46962:619;:::o;33381:279::-;33484:12;:10;:12::i;:::-;33472:24;;:8;:24;;;33468:54;;;33505:17;;;;;;;;;;;;;;33468:54;33580:8;33535:18;:32;33554:12;:10;:12::i;:::-;33535:32;;;;;;;;;;;;;;;:42;33568:8;33535:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33633:8;33604:48;;33619:12;:10;:12::i;:::-;33604:48;;;33643:8;33604:48;;;;;;:::i;:::-;;;;;;;;33381:279;;:::o;34459:369::-;34626:28;34636:4;34642:2;34646:7;34626:9;:28::i;:::-;34669:15;:2;:13;;;:15::i;:::-;:76;;;;;34689:56;34720:4;34726:2;34730:7;34739:5;34689:30;:56::i;:::-;34688:57;34669:76;34665:156;;;34769:40;;;;;;;;;;;;;;34665:156;34459:369;;;;:::o;49055:358::-;49121:13;49155:17;49163:8;49155:7;:17::i;:::-;49147:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49240:1;49222:7;49216:21;;;;;:::i;:::-;;;:25;:189;;;;;;;;;;;;;;;;;49298:7;49322:8;;;;;;;;;;;:52;;;;;;;;;;;;;;;;;;;;;;49333:26;49350:8;49333:16;:26::i;:::-;49322:52;49265:124;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49216:189;49209:196;;49055:358;;;:::o;46555:89::-;46602:42;46555:89;:::o;47698:445::-;47823:4;47908:27;46602:42;47908:65;;48029:8;47988:49;;47996:13;:21;;;48018:5;47996:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47988:49;;;47984:93;;;48061:4;48054:11;;;;;47984:93;48096:39;48119:5;48126:8;48096:22;:39::i;:::-;48089:46;;;47698:445;;;;;:::o;2949:201::-;2271:12;:10;:12::i;:::-;2260:23;;:7;:5;:7::i;:::-;:23;;;2252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3058:1:::1;3038:22;;:8;:22;;;;3030:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3114:28;3133:8;3114:18;:28::i;:::-;2949:201:::0;:::o;46653:38::-;46690:1;46653:38;:::o;23598:157::-;23683:4;23722:25;23707:40;;;:11;:40;;;;23700:47;;23598:157;;;:::o;781:98::-;834:7;861:10;854:17;;781:98;:::o;35083:187::-;35140:4;35183:7;35164:15;:13;:15::i;:::-;:26;;:53;;;;;35204:13;;35194:7;:23;35164:53;:98;;;;;35235:11;:20;35247:7;35235:20;;;;;;;;;;;:27;;;;;;;;;;;;35234:28;35164:98;35157:105;;35083:187;;;:::o;43399:196::-;43541:2;43514:15;:24;43530:7;43514:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43579:7;43575:2;43559:28;;43568:5;43559:28;;;;;;;;;;;;43399:196;;;:::o;47589:101::-;47654:7;47681:1;47674:8;;47589:101;:::o;28874:207::-;28935:7;28976:1;28959:19;;:5;:19;;;28955:59;;;28987:27;;;;;;;;;;;;;;28955:59;29040:12;:19;29053:5;29040:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29032:41;;29025:48;;28874:207;;;:::o;38901:2112::-;39016:35;39054:20;39066:7;39054:11;:20::i;:::-;39016:58;;39087:22;39129:13;:18;;;39113:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;39164:50;39181:13;:18;;;39201:12;:10;:12::i;:::-;39164:16;:50::i;:::-;39113:101;:154;;;;39255:12;:10;:12::i;:::-;39231:36;;:20;39243:7;39231:11;:20::i;:::-;:36;;;39113:154;39087:181;;39286:17;39281:66;;39312:35;;;;;;;;;;;;;;39281:66;39384:4;39362:26;;:13;:18;;;:26;;;39358:67;;39397:28;;;;;;;;;;;;;;39358:67;39454:1;39440:16;;:2;:16;;;39436:52;;;39465:23;;;;;;;;;;;;;;39436:52;39501:43;39523:4;39529:2;39533:7;39542:1;39501:21;:43::i;:::-;39609:49;39626:1;39630:7;39639:13;:18;;;39609:8;:49::i;:::-;39984:1;39954:12;:18;39967:4;39954:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40028:1;40000:12;:16;40013:2;40000:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40074:2;40046:11;:20;40058:7;40046:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40136:15;40091:11;:20;40103:7;40091:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40404:19;40436:1;40426:7;:11;40404:33;;40497:1;40456:43;;:11;:24;40468:11;40456:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40452:445;;;40681:13;;40667:11;:27;40663:219;;;40751:13;:18;;;40719:11;:24;40731:11;40719:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40834:13;:28;;;40792:11;:24;40804:11;40792:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40663:219;40452:445;39929:979;40944:7;40940:2;40925:27;;40934:4;40925:27;;;;;;;;;;;;40963:42;40984:4;40990:2;40994:7;41003:1;40963:20;:42::i;:::-;39005:2008;;38901:2112;;;:::o;30241:1108::-;30302:21;;:::i;:::-;30336:12;30351:7;30336:22;;30419:4;30400:15;:13;:15::i;:::-;:23;;:47;;;;;30434:13;;30427:4;:20;30400:47;30396:886;;;30468:31;30502:11;:17;30514:4;30502:17;;;;;;;;;;;30468:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30543:9;:16;;;30538:729;;30614:1;30588:28;;:9;:14;;;:28;;;30584:101;;30652:9;30645:16;;;;;;30584:101;30987:261;30994:4;30987:261;;;31027:6;;;;;;;;31072:11;:17;31084:4;31072:17;;;;;;;;;;;31060:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31146:1;31120:28;;:9;:14;;;:28;;;31116:109;;31188:9;31181:16;;;;;;31116:109;30987:261;;;30538:729;30449:833;30396:886;31310:31;;;;;;;;;;;;;;30241:1108;;;;:::o;35278:104::-;35347:27;35357:2;35361:8;35347:27;;;;;;;;;;;;:9;:27::i;:::-;35278:104;;:::o;3310:191::-;3384:16;3403:6;;;;;;;;;;;3384:25;;3429:8;3420:6;;:17;;;;;;;;;;;;;;;;;;3484:8;3453:40;;3474:8;3453:40;;;;;;;;;;;;3373:128;3310:191;:::o;13371:326::-;13431:4;13688:1;13666:7;:19;;;:23;13659:30;;13371:326;;;:::o;44087:667::-;44250:4;44287:2;44271:36;;;44308:12;:10;:12::i;:::-;44322:4;44328:7;44337:5;44271:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44267:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44522:1;44505:6;:13;:18;44501:235;;;44551:40;;;;;;;;;;;;;;44501:235;44694:6;44688:13;44679:6;44675:2;44671:15;44664:38;44267:480;44400:45;;;44390:55;;;:6;:55;;;;44383:62;;;44087:667;;;;;;:::o;20991:723::-;21047:13;21277:1;21268:5;:10;21264:53;;;21295:10;;;;;;;;;;;;;;;;;;;;;21264:53;21327:12;21342:5;21327:20;;21358:14;21383:78;21398:1;21390:4;:9;21383:78;;21416:8;;;;;:::i;:::-;;;;21447:2;21439:10;;;;;:::i;:::-;;;21383:78;;;21471:19;21503:6;21493:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21471:39;;21521:154;21537:1;21528:5;:10;21521:154;;21565:1;21555:11;;;;;:::i;:::-;;;21632:2;21624:5;:10;;;;:::i;:::-;21611:2;:24;;;;:::i;:::-;21598:39;;21581:6;21588;21581:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21661:2;21652:11;;;;;:::i;:::-;;;21521:154;;;21699:6;21685:21;;;;;20991:723;;;;:::o;33731:164::-;33828:4;33852:18;:25;33871:5;33852:25;;;;;;;;;;;;;;;:35;33878:8;33852:35;;;;;;;;;;;;;;;;;;;;;;;;;33845:42;;33731:164;;;;:::o;45402:159::-;;;;;:::o;46220:158::-;;;;;:::o;35745:163::-;35868:32;35874:2;35878:8;35888:5;35895:4;35868:5;:32::i;:::-;35745:163;;;:::o;36167:2480::-;36306:20;36329:13;;36306:36;;36371:1;36357:16;;:2;:16;;;36353:48;;;36382:19;;;;;;;;;;;;;;36353:48;36428:1;36416:8;:13;36412:44;;;36438:18;;;;;;;;;;;;;;36412:44;36469:61;36499:1;36503:2;36507:12;36521:8;36469:21;:61::i;:::-;36596:42;36590:48;;:2;:48;;;:113;;;;36661:42;36655:48;;:2;:48;;;36590:113;:178;;;;36726:42;36720:48;;:2;:48;;;36590:178;:243;;;;36791:42;36785:48;;:2;:48;;;36590:243;:308;;;;36856:42;36850:48;;:2;:48;;;36590:308;:373;;;;36921:42;36915:48;;:2;:48;;;36590:373;:438;;;;36986:42;36980:48;;:2;:48;;;36590:438;:503;;;;37051:42;37045:48;;:2;:48;;;36590:503;36573:663;;;37119:15;37154:6;37163:1;37154:10;;37149:76;37170:5;37166:1;:9;37149:76;;;37200:9;;;;;:::i;:::-;;;;37177:3;;;;;:::i;:::-;;;;37149:76;;;;37104:132;36573:663;37547:8;37512:12;:16;37525:2;37512:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37611:8;37571:12;:16;37584:2;37571:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37670:2;37637:11;:25;37649:12;37637:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37737:15;37687:11;:25;37699:12;37687:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37770:20;37793:12;37770:35;;37820:11;37849:8;37834:12;:23;37820:37;;37878:4;:23;;;;;37886:15;:2;:13;;;:15::i;:::-;37878:23;37874:641;;;37922:314;37978:12;37974:2;37953:38;;37970:1;37953:38;;;;;;;;;;;;38019:69;38058:1;38062:2;38066:14;;;;;;38082:5;38019:30;:69::i;:::-;38014:174;;38124:40;;;;;;;;;;;;;;38014:174;38231:3;38215:12;:19;;37922:314;;38317:12;38300:13;;:29;38296:43;;38331:8;;;38296:43;37874:641;;;38380:120;38436:14;;;;;;38432:2;38411:40;;38428:1;38411:40;;;;;;;;;;;;38495:3;38479:12;:19;;38380:120;;37874:641;38545:12;38529:13;:28;;;;37487:1082;;38579:60;38608:1;38612:2;38616:12;38630:8;38579:20;:60::i;:::-;36295:2352;36167:2480;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:323::-;5883:6;5932:2;5920:9;5911:7;5907:23;5903:32;5900:119;;;5938:79;;:::i;:::-;5900:119;6058:1;6083:50;6125:7;6116:6;6105:9;6101:22;6083:50;:::i;:::-;6073:60;;6029:114;5827:323;;;;:::o;6156:327::-;6214:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:119;;;6269:79;;:::i;:::-;6231:119;6389:1;6414:52;6458:7;6449:6;6438:9;6434:22;6414:52;:::i;:::-;6404:62;;6360:116;6156:327;;;;:::o;6489:349::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:63;6813:7;6804:6;6793:9;6789:22;6758:63;:::i;:::-;6748:73;;6704:127;6489:349;;;;:::o;6844:409::-;6943:6;6992:2;6980:9;6971:7;6967:23;6963:32;6960:119;;;6998:79;;:::i;:::-;6960:119;7118:1;7143:93;7228:7;7219:6;7208:9;7204:22;7143:93;:::i;:::-;7133:103;;7089:157;6844:409;;;;:::o;7259:509::-;7328:6;7377:2;7365:9;7356:7;7352:23;7348:32;7345:119;;;7383:79;;:::i;:::-;7345:119;7531:1;7520:9;7516:17;7503:31;7561:18;7553:6;7550:30;7547:117;;;7583:79;;:::i;:::-;7547:117;7688:63;7743:7;7734:6;7723:9;7719:22;7688:63;:::i;:::-;7678:73;;7474:287;7259:509;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:118::-;8196:24;8214:5;8196:24;:::i;:::-;8191:3;8184:37;8109:118;;:::o;8233:109::-;8314:21;8329:5;8314:21;:::i;:::-;8309:3;8302:34;8233:109;;:::o;8348:360::-;8434:3;8462:38;8494:5;8462:38;:::i;:::-;8516:70;8579:6;8574:3;8516:70;:::i;:::-;8509:77;;8595:52;8640:6;8635:3;8628:4;8621:5;8617:16;8595:52;:::i;:::-;8672:29;8694:6;8672:29;:::i;:::-;8667:3;8663:39;8656:46;;8438:270;8348:360;;;;:::o;8714:364::-;8802:3;8830:39;8863:5;8830:39;:::i;:::-;8885:71;8949:6;8944:3;8885:71;:::i;:::-;8878:78;;8965:52;9010:6;9005:3;8998:4;8991:5;8987:16;8965:52;:::i;:::-;9042:29;9064:6;9042:29;:::i;:::-;9037:3;9033:39;9026:46;;8806:272;8714:364;;;;:::o;9084:377::-;9190:3;9218:39;9251:5;9218:39;:::i;:::-;9273:89;9355:6;9350:3;9273:89;:::i;:::-;9266:96;;9371:52;9416:6;9411:3;9404:4;9397:5;9393:16;9371:52;:::i;:::-;9448:6;9443:3;9439:16;9432:23;;9194:267;9084:377;;;;:::o;9491:845::-;9594:3;9631:5;9625:12;9660:36;9686:9;9660:36;:::i;:::-;9712:89;9794:6;9789:3;9712:89;:::i;:::-;9705:96;;9832:1;9821:9;9817:17;9848:1;9843:137;;;;9994:1;9989:341;;;;9810:520;;9843:137;9927:4;9923:9;9912;9908:25;9903:3;9896:38;9963:6;9958:3;9954:16;9947:23;;9843:137;;9989:341;10056:38;10088:5;10056:38;:::i;:::-;10116:1;10130:154;10144:6;10141:1;10138:13;10130:154;;;10218:7;10212:14;10208:1;10203:3;10199:11;10192:35;10268:1;10259:7;10255:15;10244:26;;10166:4;10163:1;10159:12;10154:17;;10130:154;;;10313:6;10308:3;10304:16;10297:23;;9996:334;;9810:520;;9598:738;;9491:845;;;;:::o;10342:365::-;10484:3;10505:66;10569:1;10564:3;10505:66;:::i;:::-;10498:73;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10342:365;;;:::o;10713:366::-;10855:3;10876:67;10940:2;10935:3;10876:67;:::i;:::-;10869:74;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10713:366;;;:::o;11085:::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:398::-;13476:3;13497:83;13578:1;13573:3;13497:83;:::i;:::-;13490:90;;13589:93;13678:3;13589:93;:::i;:::-;13707:1;13702:3;13698:11;13691:18;;13317:398;;;:::o;13721:366::-;13863:3;13884:67;13948:2;13943:3;13884:67;:::i;:::-;13877:74;;13960:93;14049:3;13960:93;:::i;:::-;14078:2;14073:3;14069:12;14062:19;;13721:366;;;:::o;14093:::-;14235:3;14256:67;14320:2;14315:3;14256:67;:::i;:::-;14249:74;;14332:93;14421:3;14332:93;:::i;:::-;14450:2;14445:3;14441:12;14434:19;;14093:366;;;:::o;14465:118::-;14552:24;14570:5;14552:24;:::i;:::-;14547:3;14540:37;14465:118;;:::o;14589:429::-;14766:3;14788:92;14876:3;14867:6;14788:92;:::i;:::-;14781:99;;14897:95;14988:3;14979:6;14897:95;:::i;:::-;14890:102;;15009:3;15002:10;;14589:429;;;;;:::o;15024:379::-;15208:3;15230:147;15373:3;15230:147;:::i;:::-;15223:154;;15394:3;15387:10;;15024:379;;;:::o;15409:222::-;15502:4;15540:2;15529:9;15525:18;15517:26;;15553:71;15621:1;15610:9;15606:17;15597:6;15553:71;:::i;:::-;15409:222;;;;:::o;15637:640::-;15832:4;15870:3;15859:9;15855:19;15847:27;;15884:71;15952:1;15941:9;15937:17;15928:6;15884:71;:::i;:::-;15965:72;16033:2;16022:9;16018:18;16009:6;15965:72;:::i;:::-;16047;16115:2;16104:9;16100:18;16091:6;16047:72;:::i;:::-;16166:9;16160:4;16156:20;16151:2;16140:9;16136:18;16129:48;16194:76;16265:4;16256:6;16194:76;:::i;:::-;16186:84;;15637:640;;;;;;;:::o;16283:210::-;16370:4;16408:2;16397:9;16393:18;16385:26;;16421:65;16483:1;16472:9;16468:17;16459:6;16421:65;:::i;:::-;16283:210;;;;:::o;16499:313::-;16612:4;16650:2;16639:9;16635:18;16627:26;;16699:9;16693:4;16689:20;16685:1;16674:9;16670:17;16663:47;16727:78;16800:4;16791:6;16727:78;:::i;:::-;16719:86;;16499:313;;;;:::o;16818:419::-;16984:4;17022:2;17011:9;17007:18;16999:26;;17071:9;17065:4;17061:20;17057:1;17046:9;17042:17;17035:47;17099:131;17225:4;17099:131;:::i;:::-;17091:139;;16818:419;;;:::o;17243:::-;17409:4;17447:2;17436:9;17432:18;17424:26;;17496:9;17490:4;17486:20;17482:1;17471:9;17467:17;17460:47;17524:131;17650:4;17524:131;:::i;:::-;17516:139;;17243:419;;;:::o;17668:::-;17834:4;17872:2;17861:9;17857:18;17849:26;;17921:9;17915:4;17911:20;17907:1;17896:9;17892:17;17885:47;17949:131;18075:4;17949:131;:::i;:::-;17941:139;;17668:419;;;:::o;18093:::-;18259:4;18297:2;18286:9;18282:18;18274:26;;18346:9;18340:4;18336:20;18332:1;18321:9;18317:17;18310:47;18374:131;18500:4;18374:131;:::i;:::-;18366:139;;18093:419;;;:::o;18518:::-;18684:4;18722:2;18711:9;18707:18;18699:26;;18771:9;18765:4;18761:20;18757:1;18746:9;18742:17;18735:47;18799:131;18925:4;18799:131;:::i;:::-;18791:139;;18518:419;;;:::o;18943:::-;19109:4;19147:2;19136:9;19132:18;19124:26;;19196:9;19190:4;19186:20;19182:1;19171:9;19167:17;19160:47;19224:131;19350:4;19224:131;:::i;:::-;19216:139;;18943:419;;;:::o;19368:::-;19534:4;19572:2;19561:9;19557:18;19549:26;;19621:9;19615:4;19611:20;19607:1;19596:9;19592:17;19585:47;19649:131;19775:4;19649:131;:::i;:::-;19641:139;;19368:419;;;:::o;19793:::-;19959:4;19997:2;19986:9;19982:18;19974:26;;20046:9;20040:4;20036:20;20032:1;20021:9;20017:17;20010:47;20074:131;20200:4;20074:131;:::i;:::-;20066:139;;19793:419;;;:::o;20218:::-;20384:4;20422:2;20411:9;20407:18;20399:26;;20471:9;20465:4;20461:20;20457:1;20446:9;20442:17;20435:47;20499:131;20625:4;20499:131;:::i;:::-;20491:139;;20218:419;;;:::o;20643:::-;20809:4;20847:2;20836:9;20832:18;20824:26;;20896:9;20890:4;20886:20;20882:1;20871:9;20867:17;20860:47;20924:131;21050:4;20924:131;:::i;:::-;20916:139;;20643:419;;;:::o;21068:222::-;21161:4;21199:2;21188:9;21184:18;21176:26;;21212:71;21280:1;21269:9;21265:17;21256:6;21212:71;:::i;:::-;21068:222;;;;:::o;21296:129::-;21330:6;21357:20;;:::i;:::-;21347:30;;21386:33;21414:4;21406:6;21386:33;:::i;:::-;21296:129;;;:::o;21431:75::-;21464:6;21497:2;21491:9;21481:19;;21431:75;:::o;21512:307::-;21573:4;21663:18;21655:6;21652:30;21649:56;;;21685:18;;:::i;:::-;21649:56;21723:29;21745:6;21723:29;:::i;:::-;21715:37;;21807:4;21801;21797:15;21789:23;;21512:307;;;:::o;21825:308::-;21887:4;21977:18;21969:6;21966:30;21963:56;;;21999:18;;:::i;:::-;21963:56;22037:29;22059:6;22037:29;:::i;:::-;22029:37;;22121:4;22115;22111:15;22103:23;;21825:308;;;:::o;22139:141::-;22188:4;22211:3;22203:11;;22234:3;22231:1;22224:14;22268:4;22265:1;22255:18;22247:26;;22139:141;;;:::o;22286:98::-;22337:6;22371:5;22365:12;22355:22;;22286:98;;;:::o;22390:99::-;22442:6;22476:5;22470:12;22460:22;;22390:99;;;:::o;22495:168::-;22578:11;22612:6;22607:3;22600:19;22652:4;22647:3;22643:14;22628:29;;22495:168;;;;:::o;22669:147::-;22770:11;22807:3;22792:18;;22669:147;;;;:::o;22822:169::-;22906:11;22940:6;22935:3;22928:19;22980:4;22975:3;22971:14;22956:29;;22822:169;;;;:::o;22997:148::-;23099:11;23136:3;23121:18;;22997:148;;;;:::o;23151:305::-;23191:3;23210:20;23228:1;23210:20;:::i;:::-;23205:25;;23244:20;23262:1;23244:20;:::i;:::-;23239:25;;23398:1;23330:66;23326:74;23323:1;23320:81;23317:107;;;23404:18;;:::i;:::-;23317:107;23448:1;23445;23441:9;23434:16;;23151:305;;;;:::o;23462:185::-;23502:1;23519:20;23537:1;23519:20;:::i;:::-;23514:25;;23553:20;23571:1;23553:20;:::i;:::-;23548:25;;23592:1;23582:35;;23597:18;;:::i;:::-;23582:35;23639:1;23636;23632:9;23627:14;;23462:185;;;;:::o;23653:348::-;23693:7;23716:20;23734:1;23716:20;:::i;:::-;23711:25;;23750:20;23768:1;23750:20;:::i;:::-;23745:25;;23938:1;23870:66;23866:74;23863:1;23860:81;23855:1;23848:9;23841:17;23837:105;23834:131;;;23945:18;;:::i;:::-;23834:131;23993:1;23990;23986:9;23975:20;;23653:348;;;;:::o;24007:191::-;24047:4;24067:20;24085:1;24067:20;:::i;:::-;24062:25;;24101:20;24119:1;24101:20;:::i;:::-;24096:25;;24140:1;24137;24134:8;24131:34;;;24145:18;;:::i;:::-;24131:34;24190:1;24187;24183:9;24175:17;;24007:191;;;;:::o;24204:96::-;24241:7;24270:24;24288:5;24270:24;:::i;:::-;24259:35;;24204:96;;;:::o;24306:90::-;24340:7;24383:5;24376:13;24369:21;24358:32;;24306:90;;;:::o;24402:149::-;24438:7;24478:66;24471:5;24467:78;24456:89;;24402:149;;;:::o;24557:125::-;24623:7;24652:24;24670:5;24652:24;:::i;:::-;24641:35;;24557:125;;;:::o;24688:126::-;24725:7;24765:42;24758:5;24754:54;24743:65;;24688:126;;;:::o;24820:77::-;24857:7;24886:5;24875:16;;24820:77;;;:::o;24903:154::-;24987:6;24982:3;24977;24964:30;25049:1;25040:6;25035:3;25031:16;25024:27;24903:154;;;:::o;25063:307::-;25131:1;25141:113;25155:6;25152:1;25149:13;25141:113;;;25240:1;25235:3;25231:11;25225:18;25221:1;25216:3;25212:11;25205:39;25177:2;25174:1;25170:10;25165:15;;25141:113;;;25272:6;25269:1;25266:13;25263:101;;;25352:1;25343:6;25338:3;25334:16;25327:27;25263:101;25112:258;25063:307;;;:::o;25376:320::-;25420:6;25457:1;25451:4;25447:12;25437:22;;25504:1;25498:4;25494:12;25525:18;25515:81;;25581:4;25573:6;25569:17;25559:27;;25515:81;25643:2;25635:6;25632:14;25612:18;25609:38;25606:84;;;25662:18;;:::i;:::-;25606:84;25427:269;25376:320;;;:::o;25702:281::-;25785:27;25807:4;25785:27;:::i;:::-;25777:6;25773:40;25915:6;25903:10;25900:22;25879:18;25867:10;25864:34;25861:62;25858:88;;;25926:18;;:::i;:::-;25858:88;25966:10;25962:2;25955:22;25745:238;25702:281;;:::o;25989:233::-;26028:3;26051:24;26069:5;26051:24;:::i;:::-;26042:33;;26097:66;26090:5;26087:77;26084:103;;;26167:18;;:::i;:::-;26084:103;26214:1;26207:5;26203:13;26196:20;;25989:233;;;:::o;26228:176::-;26260:1;26277:20;26295:1;26277:20;:::i;:::-;26272:25;;26311:20;26329:1;26311:20;:::i;:::-;26306:25;;26350:1;26340:35;;26355:18;;:::i;:::-;26340:35;26396:1;26393;26389:9;26384:14;;26228:176;;;;:::o;26410:180::-;26458:77;26455:1;26448:88;26555:4;26552:1;26545:15;26579:4;26576:1;26569:15;26596:180;26644:77;26641:1;26634:88;26741:4;26738:1;26731:15;26765:4;26762:1;26755:15;26782:180;26830:77;26827:1;26820:88;26927:4;26924:1;26917:15;26951:4;26948:1;26941:15;26968:180;27016:77;27013:1;27006:88;27113:4;27110:1;27103:15;27137:4;27134:1;27127:15;27154:180;27202:77;27199:1;27192:88;27299:4;27296:1;27289:15;27323:4;27320:1;27313:15;27340:117;27449:1;27446;27439:12;27463:117;27572:1;27569;27562:12;27586:117;27695:1;27692;27685:12;27709:117;27818:1;27815;27808:12;27832:102;27873:6;27924:2;27920:7;27915:2;27908:5;27904:14;27900:28;27890:38;;27832:102;;;:::o;27940:156::-;28080:8;28076:1;28068:6;28064:14;28057:32;27940:156;:::o;28102:225::-;28242:34;28238:1;28230:6;28226:14;28219:58;28311:8;28306:2;28298:6;28294:15;28287:33;28102:225;:::o;28333:167::-;28473:19;28469:1;28461:6;28457:14;28450:43;28333:167;:::o;28506:160::-;28646:12;28642:1;28634:6;28630:14;28623:36;28506:160;:::o;28672:168::-;28812:20;28808:1;28800:6;28796:14;28789:44;28672:168;:::o;28846:171::-;28986:23;28982:1;28974:6;28970:14;28963:47;28846:171;:::o;29023:182::-;29163:34;29159:1;29151:6;29147:14;29140:58;29023:182;:::o;29211:172::-;29351:24;29347:1;29339:6;29335:14;29328:48;29211:172;:::o;29389:114::-;;:::o;29509:164::-;29649:16;29645:1;29637:6;29633:14;29626:40;29509:164;:::o;29679:162::-;29819:14;29815:1;29807:6;29803:14;29796:38;29679:162;:::o;29847:122::-;29920:24;29938:5;29920:24;:::i;:::-;29913:5;29910:35;29900:63;;29959:1;29956;29949:12;29900:63;29847:122;:::o;29975:116::-;30045:21;30060:5;30045:21;:::i;:::-;30038:5;30035:32;30025:60;;30081:1;30078;30071:12;30025:60;29975:116;:::o;30097:120::-;30169:23;30186:5;30169:23;:::i;:::-;30162:5;30159:34;30149:62;;30207:1;30204;30197:12;30149:62;30097:120;:::o;30223:180::-;30325:53;30372:5;30325:53;:::i;:::-;30318:5;30315:64;30305:92;;30393:1;30390;30383:12;30305:92;30223:180;:::o;30409:122::-;30482:24;30500:5;30482:24;:::i;:::-;30475:5;30472:35;30462:63;;30521:1;30518;30511:12;30462:63;30409:122;:::o

Swarm Source

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