ETH Price: $3,090.06 (+0.22%)
Gas: 10 Gwei

Token

Ghoultownwtf (GTWTF)
 

Overview

Max Total Supply

5,000 GTWTF

Holders

377

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
coinlistor.eth
Balance
10 GTWTF
0x22ee94b928d34b0d171546ccfbedc369f308a920
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:
Ghoultown

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-06-04
*/

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error 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);

        // 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: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/Ghoultown.sol



pragma solidity ^0.8.0;





contract Ghoultown is Ownable, ERC721A, ReentrancyGuard {

  uint256 public MAX_TRANSACTION = 10;
  uint256 public MAX_SUPPLY = 5000;
  uint256 public MAX_MINTTO = 10;
  uint256 public reserves;
  
  uint256 public Price = 0.00 ether;

  bool saleActive = false;

  address[] payees = [
	0x5fd4A5C95265f13eF3263e12Aea91251eC12521F
  ];

  uint[] owed = [100];

  constructor() ERC721A("Ghoultownwtf", "GTWTF") { }

  function publicMint(uint256 quantity) external payable {
    require(saleActive, "Sale not started");
    require(tx.origin == msg.sender, "No proxy calls");
    require(quantity <= MAX_TRANSACTION, "Order exceeds transaction limit");
    require(totalSupply() + quantity <= MAX_SUPPLY, "Order exceeds max supply");

    require(msg.value >= Price * quantity, "Insufficient ETH sent");
	
    _safeMint(msg.sender, quantity);
  }

  // // metadata URI
  string private _baseTokenURI;

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

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }
  
  function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
    return ownershipOf(tokenId);
  }

  // Only Owner
  
  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function mintTo(address _receiver, uint256 quantity) external onlyOwner {
    require(totalSupply() + quantity <= MAX_SUPPLY, "Order exceeds max supply");
	require(quantity + reserves <= MAX_MINTTO, "Exceeds reserves");

	reserves += quantity;
    _safeMint(_receiver, quantity);
  }

  function flipSaleState() external onlyOwner {
    saleActive = !saleActive;
  }
  
  function reduceSupply(uint _newMax) external onlyOwner {
    require(_newMax < MAX_SUPPLY && _newMax > totalSupply(), "Invalid Supply");
    MAX_SUPPLY = _newMax;
  }

  function sendPayments() payable external onlyOwner nonReentrant {
    uint startingBal = address(this).balance;
    uint balanceDue;

    for(uint i=0; i < payees.length; i++) {
      balanceDue = startingBal * owed[i] / 100;
      (bool success, ) = payable(payees[i]).call{value: balanceDue}("");
      require(success, "Transfer failed.");
    }
  }

}

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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"MAX_MINTTO","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":[],"name":"MAX_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Price","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":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserves","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendPayments","outputs":[],"stateMutability":"payable","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":"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"}]

6080604052600a8055611388600b55600a600c556000600e556000600f60006101000a81548160ff0219169083151502179055506040518060200160405280735fd4a5c95265f13ef3263e12aea91251ec12521f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152506010906001620000949291906200027e565b506040518060200160405280606460ff168152506011906001620000ba9291906200030d565b50348015620000c857600080fd5b506040518060400160405280600c81526020017f47686f756c746f776e77746600000000000000000000000000000000000000008152506040518060400160405280600581526020017f47545754460000000000000000000000000000000000000000000000000000008152506200015562000149620001ad60201b60201c565b620001b560201b60201c565b81600390805190602001906200016d92919062000364565b5080600490805190602001906200018692919062000364565b50620001976200027960201b60201c565b6001819055505050600160098190555062000479565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b828054828255906000526020600020908101928215620002fa579160200282015b82811115620002f95782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200029f565b5b509050620003099190620003f5565b5090565b82805482825590600052602060002090810192821562000351579160200282015b8281111562000350578251829060ff169055916020019190600101906200032e565b5b509050620003609190620003f5565b5090565b828054620003729062000414565b90600052602060002090601f016020900481019282620003965760008555620003e2565b82601f10620003b157805160ff1916838001178555620003e2565b82800160010185558215620003e2579182015b82811115620003e1578251825591602001919060010190620003c4565b5b509050620003f19190620003f5565b5090565b5b8082111562000410576000816000905550600101620003f6565b5090565b600060028204905060018216806200042d57607f821691505b602082108114156200044457620004436200044a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b1980620004896000396000f3fe6080604052600436106101cd5760003560e01c806369ad6765116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610622578063dc33e6811461065f578063e985e9c51461069c578063f2fde38b146106d9576101cd565b806395d89b411461057a5780639dfde201146105a5578063a22cb465146105d0578063b88d4fde146105f9576101cd565b806375172a8b116100d157806375172a8b146104be57806380623444146104e95780638da5cb5b146105125780639231ab2a1461053d576101cd565b806369ad67651461046057806370a082311461046a578063715018a6146104a7576101cd565b80632db115441161016f57806342842e0e1161013e57806342842e0e146103a8578063449a52f8146103d157806355f804b3146103fa5780636352211e14610423576101cd565b80632db115441461031f57806332cb6b0c1461033b57806334918dfd14610366578063365487321461037d576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780631451dd43146102a057806318160ddd146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612df7565b610702565b604051610206919061324e565b60405180910390f35b34801561021b57600080fd5b506102246107e4565b6040516102319190613269565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612e9e565b610876565b60405161026e91906131e7565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612db7565b6108f2565b005b3480156102ac57600080fd5b506102b56109fd565b6040516102c29190613406565b60405180910390f35b3480156102d757600080fd5b506102e0610a03565b6040516102ed9190613406565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612ca1565b610a1a565b005b61033960048036038101906103349190612e9e565b610a2a565b005b34801561034757600080fd5b50610350610be0565b60405161035d9190613406565b60405180910390f35b34801561037257600080fd5b5061037b610be6565b005b34801561038957600080fd5b50610392610c8e565b60405161039f9190613406565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca9190612ca1565b610c94565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190612db7565b610cb4565b005b34801561040657600080fd5b50610421600480360381019061041c9190612e51565b610e00565b005b34801561042f57600080fd5b5061044a60048036038101906104459190612e9e565b610e92565b60405161045791906131e7565b60405180910390f35b610468610ea8565b005b34801561047657600080fd5b50610491600480360381019061048c9190612c34565b6110cf565b60405161049e9190613406565b60405180910390f35b3480156104b357600080fd5b506104bc61119f565b005b3480156104ca57600080fd5b506104d3611227565b6040516104e09190613406565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190612e9e565b61122d565b005b34801561051e57600080fd5b50610527611309565b60405161053491906131e7565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612e9e565b611332565b60405161057191906133eb565b60405180910390f35b34801561058657600080fd5b5061058f61134a565b60405161059c9190613269565b60405180910390f35b3480156105b157600080fd5b506105ba6113dc565b6040516105c79190613406565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190612d77565b6113e2565b005b34801561060557600080fd5b50610620600480360381019061061b9190612cf4565b61155a565b005b34801561062e57600080fd5b5061064960048036038101906106449190612e9e565b6115d6565b6040516106569190613269565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190612c34565b611675565b6040516106939190613406565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190612c61565b611687565b6040516106d0919061324e565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190612c34565b61171b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107dd57506107dc82611813565b5b9050919050565b6060600380546107f3906136a4565b80601f016020809104026020016040519081016040528092919081815260200182805461081f906136a4565b801561086c5780601f106108415761010080835404028352916020019161086c565b820191906000526020600020905b81548152906001019060200180831161084f57829003601f168201915b5050505050905090565b60006108818261187d565b6108b7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108fd82610e92565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610965576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109846118cb565b73ffffffffffffffffffffffffffffffffffffffff16141580156109b657506109b4816109af6118cb565b611687565b155b156109ed576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109f88383836118d3565b505050565b600a5481565b6000610a0d611985565b6002546001540303905090565b610a2583838361198a565b505050565b600f60009054906101000a900460ff16610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a709061330b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade906132eb565b60405180910390fd5b600a54811115610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b23906133cb565b60405180910390fd5b600b5481610b38610a03565b610b4291906134c5565b1115610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a9061334b565b60405180910390fd5b80600e54610b91919061354c565b341015610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca906132ab565b60405180910390fd5b610bdd3382611e7b565b50565b600b5481565b610bee6118cb565b73ffffffffffffffffffffffffffffffffffffffff16610c0c611309565b73ffffffffffffffffffffffffffffffffffffffff1614610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c599061332b565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600c5481565b610caf8383836040518060200160405280600081525061155a565b505050565b610cbc6118cb565b73ffffffffffffffffffffffffffffffffffffffff16610cda611309565b73ffffffffffffffffffffffffffffffffffffffff1614610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d279061332b565b60405180910390fd5b600b5481610d3c610a03565b610d4691906134c5565b1115610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e9061334b565b60405180910390fd5b600c54600d5482610d9891906134c5565b1115610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd09061338b565b60405180910390fd5b80600d6000828254610deb91906134c5565b92505081905550610dfc8282611e7b565b5050565b610e086118cb565b73ffffffffffffffffffffffffffffffffffffffff16610e26611309565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e739061332b565b60405180910390fd5b818160129190610e8d929190612a1f565b505050565b6000610e9d82611e99565b600001519050919050565b610eb06118cb565b73ffffffffffffffffffffffffffffffffffffffff16610ece611309565b73ffffffffffffffffffffffffffffffffffffffff1614610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b9061332b565b60405180910390fd5b60026009541415610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f61906133ab565b60405180910390fd5b60026009819055506000479050600080600090505b6010805490508110156110c257606460118281548110610fa257610fa161380e565b5b906000526020600020015484610fb8919061354c565b610fc2919061351b565b9150600060108281548110610fda57610fd961380e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051611028906131d2565b60006040518083038185875af1925050503d8060008114611065576040519150601f19603f3d011682016040523d82523d6000602084013e61106a565b606091505b50509050806110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a59061336b565b60405180910390fd5b5080806110ba90613707565b915050610f7f565b5050506001600981905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611137576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111a76118cb565b73ffffffffffffffffffffffffffffffffffffffff166111c5611309565b73ffffffffffffffffffffffffffffffffffffffff161461121b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112129061332b565b60405180910390fd5b6112256000612128565b565b600d5481565b6112356118cb565b73ffffffffffffffffffffffffffffffffffffffff16611253611309565b73ffffffffffffffffffffffffffffffffffffffff16146112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a09061332b565b60405180910390fd5b600b54811080156112c057506112bd610a03565b81115b6112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f69061328b565b60405180910390fd5b80600b8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61133a612aa5565b61134382611e99565b9050919050565b606060048054611359906136a4565b80601f0160208091040260200160405190810160405280929190818152602001828054611385906136a4565b80156113d25780601f106113a7576101008083540402835291602001916113d2565b820191906000526020600020905b8154815290600101906020018083116113b557829003601f168201915b5050505050905090565b600e5481565b6113ea6118cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061145c6118cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115096118cb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161154e919061324e565b60405180910390a35050565b61156584848461198a565b6115848373ffffffffffffffffffffffffffffffffffffffff166121ec565b801561159957506115978484848461220f565b155b156115d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606115e18261187d565b611617576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061162161236f565b9050600081511415611642576040518060200160405280600081525061166d565b8061164c84612401565b60405160200161165d9291906131ae565b6040516020818303038152906040525b915050919050565b600061168082612562565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117236118cb565b73ffffffffffffffffffffffffffffffffffffffff16611741611309565b73ffffffffffffffffffffffffffffffffffffffff1614611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e9061332b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe906132cb565b60405180910390fd5b61181081612128565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611888611985565b11158015611897575060015482105b80156118c4575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061199582611e99565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119bc6118cb565b73ffffffffffffffffffffffffffffffffffffffff1614806119ef57506119ee82600001516119e96118cb565b611687565b5b80611a3457506119fd6118cb565b73ffffffffffffffffffffffffffffffffffffffff16611a1c84610876565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a6d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ad6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b3d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b4a8585856001612632565b611b5a60008484600001516118d3565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e0b57600154811015611e0a5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e748585856001612638565b5050505050565b611e9582826040518060200160405280600081525061263e565b5050565b611ea1612aa5565b600082905080611eaf611985565b11158015611ebe575060015481105b156120f1576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516120ef57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fd3578092505050612123565b5b6001156120ee57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120e9578092505050612123565b611fd4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122356118cb565b8786866040518563ffffffff1660e01b81526004016122579493929190613202565b602060405180830381600087803b15801561227157600080fd5b505af19250505080156122a257506040513d601f19601f8201168201806040525081019061229f9190612e24565b60015b61231c573d80600081146122d2576040519150601f19603f3d011682016040523d82523d6000602084013e6122d7565b606091505b50600081511415612314576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606012805461237e906136a4565b80601f01602080910402602001604051908101604052809291908181526020018280546123aa906136a4565b80156123f75780601f106123cc576101008083540402835291602001916123f7565b820191906000526020600020905b8154815290600101906020018083116123da57829003601f168201915b5050505050905090565b60606000821415612449576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061255d565b600082905060005b6000821461247b57808061246490613707565b915050600a82612474919061351b565b9150612451565b60008167ffffffffffffffff8111156124975761249661383d565b5b6040519080825280601f01601f1916602001820160405280156124c95781602001600182028036833780820191505090505b5090505b60008514612556576001826124e291906135a6565b9150600a856124f19190613750565b60306124fd91906134c5565b60f81b8183815181106125135761251261380e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561254f919061351b565b94506124cd565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125ca576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b61264b8383836001612650565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156126be576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156126f9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127066000868387612632565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156128d057506128cf8773ffffffffffffffffffffffffffffffffffffffff166121ec565b5b15612996575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612945600088848060010195508861220f565b61297b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156128d657826001541461299157600080fd5b612a02565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612997575b816001819055505050612a186000868387612638565b5050505050565b828054612a2b906136a4565b90600052602060002090601f016020900481019282612a4d5760008555612a94565b82601f10612a6657803560ff1916838001178555612a94565b82800160010185558215612a94579182015b82811115612a93578235825591602001919060010190612a78565b5b509050612aa19190612ae8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b01576000816000905550600101612ae9565b5090565b6000612b18612b1384613446565b613421565b905082815260208101848484011115612b3457612b3361387b565b5b612b3f848285613662565b509392505050565b600081359050612b5681613a87565b92915050565b600081359050612b6b81613a9e565b92915050565b600081359050612b8081613ab5565b92915050565b600081519050612b9581613ab5565b92915050565b600082601f830112612bb057612baf613871565b5b8135612bc0848260208601612b05565b91505092915050565b60008083601f840112612bdf57612bde613871565b5b8235905067ffffffffffffffff811115612bfc57612bfb61386c565b5b602083019150836001820283011115612c1857612c17613876565b5b9250929050565b600081359050612c2e81613acc565b92915050565b600060208284031215612c4a57612c49613885565b5b6000612c5884828501612b47565b91505092915050565b60008060408385031215612c7857612c77613885565b5b6000612c8685828601612b47565b9250506020612c9785828601612b47565b9150509250929050565b600080600060608486031215612cba57612cb9613885565b5b6000612cc886828701612b47565b9350506020612cd986828701612b47565b9250506040612cea86828701612c1f565b9150509250925092565b60008060008060808587031215612d0e57612d0d613885565b5b6000612d1c87828801612b47565b9450506020612d2d87828801612b47565b9350506040612d3e87828801612c1f565b925050606085013567ffffffffffffffff811115612d5f57612d5e613880565b5b612d6b87828801612b9b565b91505092959194509250565b60008060408385031215612d8e57612d8d613885565b5b6000612d9c85828601612b47565b9250506020612dad85828601612b5c565b9150509250929050565b60008060408385031215612dce57612dcd613885565b5b6000612ddc85828601612b47565b9250506020612ded85828601612c1f565b9150509250929050565b600060208284031215612e0d57612e0c613885565b5b6000612e1b84828501612b71565b91505092915050565b600060208284031215612e3a57612e39613885565b5b6000612e4884828501612b86565b91505092915050565b60008060208385031215612e6857612e67613885565b5b600083013567ffffffffffffffff811115612e8657612e85613880565b5b612e9285828601612bc9565b92509250509250929050565b600060208284031215612eb457612eb3613885565b5b6000612ec284828501612c1f565b91505092915050565b612ed4816135da565b82525050565b612ee3816135da565b82525050565b612ef2816135ec565b82525050565b612f01816135ec565b82525050565b6000612f1282613477565b612f1c818561348d565b9350612f2c818560208601613671565b612f358161388a565b840191505092915050565b6000612f4b82613482565b612f5581856134a9565b9350612f65818560208601613671565b612f6e8161388a565b840191505092915050565b6000612f8482613482565b612f8e81856134ba565b9350612f9e818560208601613671565b80840191505092915050565b6000612fb7600e836134a9565b9150612fc28261389b565b602082019050919050565b6000612fda6015836134a9565b9150612fe5826138c4565b602082019050919050565b6000612ffd6026836134a9565b9150613008826138ed565b604082019050919050565b6000613020600e836134a9565b915061302b8261393c565b602082019050919050565b60006130436010836134a9565b915061304e82613965565b602082019050919050565b60006130666020836134a9565b91506130718261398e565b602082019050919050565b60006130896018836134a9565b9150613094826139b7565b602082019050919050565b60006130ac60008361349e565b91506130b7826139e0565b600082019050919050565b60006130cf6010836134a9565b91506130da826139e3565b602082019050919050565b60006130f26010836134a9565b91506130fd82613a0c565b602082019050919050565b6000613115601f836134a9565b915061312082613a35565b602082019050919050565b6000613138601f836134a9565b915061314382613a5e565b602082019050919050565b6060820160008201516131646000850182612ecb565b506020820151613177602085018261319f565b50604082015161318a6040850182612ee9565b50505050565b61319981613644565b82525050565b6131a88161364e565b82525050565b60006131ba8285612f79565b91506131c68284612f79565b91508190509392505050565b60006131dd8261309f565b9150819050919050565b60006020820190506131fc6000830184612eda565b92915050565b60006080820190506132176000830187612eda565b6132246020830186612eda565b6132316040830185613190565b81810360608301526132438184612f07565b905095945050505050565b60006020820190506132636000830184612ef8565b92915050565b600060208201905081810360008301526132838184612f40565b905092915050565b600060208201905081810360008301526132a481612faa565b9050919050565b600060208201905081810360008301526132c481612fcd565b9050919050565b600060208201905081810360008301526132e481612ff0565b9050919050565b6000602082019050818103600083015261330481613013565b9050919050565b6000602082019050818103600083015261332481613036565b9050919050565b6000602082019050818103600083015261334481613059565b9050919050565b600060208201905081810360008301526133648161307c565b9050919050565b60006020820190508181036000830152613384816130c2565b9050919050565b600060208201905081810360008301526133a4816130e5565b9050919050565b600060208201905081810360008301526133c481613108565b9050919050565b600060208201905081810360008301526133e48161312b565b9050919050565b6000606082019050613400600083018461314e565b92915050565b600060208201905061341b6000830184613190565b92915050565b600061342b61343c565b905061343782826136d6565b919050565b6000604051905090565b600067ffffffffffffffff8211156134615761346061383d565b5b61346a8261388a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006134d082613644565b91506134db83613644565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135105761350f613781565b5b828201905092915050565b600061352682613644565b915061353183613644565b925082613541576135406137b0565b5b828204905092915050565b600061355782613644565b915061356283613644565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561359b5761359a613781565b5b828202905092915050565b60006135b182613644565b91506135bc83613644565b9250828210156135cf576135ce613781565b5b828203905092915050565b60006135e582613624565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561368f578082015181840152602081019050613674565b8381111561369e576000848401525b50505050565b600060028204905060018216806136bc57607f821691505b602082108114156136d0576136cf6137df565b5b50919050565b6136df8261388a565b810181811067ffffffffffffffff821117156136fe576136fd61383d565b5b80604052505050565b600061371282613644565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561374557613744613781565b5b600182019050919050565b600061375b82613644565b915061376683613644565b925082613776576137756137b0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c696420537570706c79000000000000000000000000000000000000600082015250565b7f496e73756666696369656e74204554482073656e740000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2070726f78792063616c6c73000000000000000000000000000000000000600082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4f726465722065786365656473206d617820737570706c790000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4578636565647320726573657276657300000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4f726465722065786365656473207472616e73616374696f6e206c696d697400600082015250565b613a90816135da565b8114613a9b57600080fd5b50565b613aa7816135ec565b8114613ab257600080fd5b50565b613abe816135f8565b8114613ac957600080fd5b50565b613ad581613644565b8114613ae057600080fd5b5056fea26469706673582212205e440225f23c2eecf35b9c4a0b7f3030685f40f78005d074afb7df93430b29b764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806369ad6765116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610622578063dc33e6811461065f578063e985e9c51461069c578063f2fde38b146106d9576101cd565b806395d89b411461057a5780639dfde201146105a5578063a22cb465146105d0578063b88d4fde146105f9576101cd565b806375172a8b116100d157806375172a8b146104be57806380623444146104e95780638da5cb5b146105125780639231ab2a1461053d576101cd565b806369ad67651461046057806370a082311461046a578063715018a6146104a7576101cd565b80632db115441161016f57806342842e0e1161013e57806342842e0e146103a8578063449a52f8146103d157806355f804b3146103fa5780636352211e14610423576101cd565b80632db115441461031f57806332cb6b0c1461033b57806334918dfd14610366578063365487321461037d576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780631451dd43146102a057806318160ddd146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612df7565b610702565b604051610206919061324e565b60405180910390f35b34801561021b57600080fd5b506102246107e4565b6040516102319190613269565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612e9e565b610876565b60405161026e91906131e7565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612db7565b6108f2565b005b3480156102ac57600080fd5b506102b56109fd565b6040516102c29190613406565b60405180910390f35b3480156102d757600080fd5b506102e0610a03565b6040516102ed9190613406565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612ca1565b610a1a565b005b61033960048036038101906103349190612e9e565b610a2a565b005b34801561034757600080fd5b50610350610be0565b60405161035d9190613406565b60405180910390f35b34801561037257600080fd5b5061037b610be6565b005b34801561038957600080fd5b50610392610c8e565b60405161039f9190613406565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca9190612ca1565b610c94565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190612db7565b610cb4565b005b34801561040657600080fd5b50610421600480360381019061041c9190612e51565b610e00565b005b34801561042f57600080fd5b5061044a60048036038101906104459190612e9e565b610e92565b60405161045791906131e7565b60405180910390f35b610468610ea8565b005b34801561047657600080fd5b50610491600480360381019061048c9190612c34565b6110cf565b60405161049e9190613406565b60405180910390f35b3480156104b357600080fd5b506104bc61119f565b005b3480156104ca57600080fd5b506104d3611227565b6040516104e09190613406565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190612e9e565b61122d565b005b34801561051e57600080fd5b50610527611309565b60405161053491906131e7565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612e9e565b611332565b60405161057191906133eb565b60405180910390f35b34801561058657600080fd5b5061058f61134a565b60405161059c9190613269565b60405180910390f35b3480156105b157600080fd5b506105ba6113dc565b6040516105c79190613406565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190612d77565b6113e2565b005b34801561060557600080fd5b50610620600480360381019061061b9190612cf4565b61155a565b005b34801561062e57600080fd5b5061064960048036038101906106449190612e9e565b6115d6565b6040516106569190613269565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190612c34565b611675565b6040516106939190613406565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190612c61565b611687565b6040516106d0919061324e565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190612c34565b61171b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107dd57506107dc82611813565b5b9050919050565b6060600380546107f3906136a4565b80601f016020809104026020016040519081016040528092919081815260200182805461081f906136a4565b801561086c5780601f106108415761010080835404028352916020019161086c565b820191906000526020600020905b81548152906001019060200180831161084f57829003601f168201915b5050505050905090565b60006108818261187d565b6108b7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108fd82610e92565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610965576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109846118cb565b73ffffffffffffffffffffffffffffffffffffffff16141580156109b657506109b4816109af6118cb565b611687565b155b156109ed576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109f88383836118d3565b505050565b600a5481565b6000610a0d611985565b6002546001540303905090565b610a2583838361198a565b505050565b600f60009054906101000a900460ff16610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a709061330b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade906132eb565b60405180910390fd5b600a54811115610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b23906133cb565b60405180910390fd5b600b5481610b38610a03565b610b4291906134c5565b1115610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a9061334b565b60405180910390fd5b80600e54610b91919061354c565b341015610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca906132ab565b60405180910390fd5b610bdd3382611e7b565b50565b600b5481565b610bee6118cb565b73ffffffffffffffffffffffffffffffffffffffff16610c0c611309565b73ffffffffffffffffffffffffffffffffffffffff1614610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c599061332b565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600c5481565b610caf8383836040518060200160405280600081525061155a565b505050565b610cbc6118cb565b73ffffffffffffffffffffffffffffffffffffffff16610cda611309565b73ffffffffffffffffffffffffffffffffffffffff1614610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d279061332b565b60405180910390fd5b600b5481610d3c610a03565b610d4691906134c5565b1115610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e9061334b565b60405180910390fd5b600c54600d5482610d9891906134c5565b1115610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd09061338b565b60405180910390fd5b80600d6000828254610deb91906134c5565b92505081905550610dfc8282611e7b565b5050565b610e086118cb565b73ffffffffffffffffffffffffffffffffffffffff16610e26611309565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e739061332b565b60405180910390fd5b818160129190610e8d929190612a1f565b505050565b6000610e9d82611e99565b600001519050919050565b610eb06118cb565b73ffffffffffffffffffffffffffffffffffffffff16610ece611309565b73ffffffffffffffffffffffffffffffffffffffff1614610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b9061332b565b60405180910390fd5b60026009541415610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f61906133ab565b60405180910390fd5b60026009819055506000479050600080600090505b6010805490508110156110c257606460118281548110610fa257610fa161380e565b5b906000526020600020015484610fb8919061354c565b610fc2919061351b565b9150600060108281548110610fda57610fd961380e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051611028906131d2565b60006040518083038185875af1925050503d8060008114611065576040519150601f19603f3d011682016040523d82523d6000602084013e61106a565b606091505b50509050806110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a59061336b565b60405180910390fd5b5080806110ba90613707565b915050610f7f565b5050506001600981905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611137576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111a76118cb565b73ffffffffffffffffffffffffffffffffffffffff166111c5611309565b73ffffffffffffffffffffffffffffffffffffffff161461121b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112129061332b565b60405180910390fd5b6112256000612128565b565b600d5481565b6112356118cb565b73ffffffffffffffffffffffffffffffffffffffff16611253611309565b73ffffffffffffffffffffffffffffffffffffffff16146112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a09061332b565b60405180910390fd5b600b54811080156112c057506112bd610a03565b81115b6112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f69061328b565b60405180910390fd5b80600b8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61133a612aa5565b61134382611e99565b9050919050565b606060048054611359906136a4565b80601f0160208091040260200160405190810160405280929190818152602001828054611385906136a4565b80156113d25780601f106113a7576101008083540402835291602001916113d2565b820191906000526020600020905b8154815290600101906020018083116113b557829003601f168201915b5050505050905090565b600e5481565b6113ea6118cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061145c6118cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115096118cb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161154e919061324e565b60405180910390a35050565b61156584848461198a565b6115848373ffffffffffffffffffffffffffffffffffffffff166121ec565b801561159957506115978484848461220f565b155b156115d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606115e18261187d565b611617576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061162161236f565b9050600081511415611642576040518060200160405280600081525061166d565b8061164c84612401565b60405160200161165d9291906131ae565b6040516020818303038152906040525b915050919050565b600061168082612562565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117236118cb565b73ffffffffffffffffffffffffffffffffffffffff16611741611309565b73ffffffffffffffffffffffffffffffffffffffff1614611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e9061332b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe906132cb565b60405180910390fd5b61181081612128565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611888611985565b11158015611897575060015482105b80156118c4575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061199582611e99565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119bc6118cb565b73ffffffffffffffffffffffffffffffffffffffff1614806119ef57506119ee82600001516119e96118cb565b611687565b5b80611a3457506119fd6118cb565b73ffffffffffffffffffffffffffffffffffffffff16611a1c84610876565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a6d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ad6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b3d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b4a8585856001612632565b611b5a60008484600001516118d3565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e0b57600154811015611e0a5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e748585856001612638565b5050505050565b611e9582826040518060200160405280600081525061263e565b5050565b611ea1612aa5565b600082905080611eaf611985565b11158015611ebe575060015481105b156120f1576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516120ef57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fd3578092505050612123565b5b6001156120ee57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120e9578092505050612123565b611fd4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122356118cb565b8786866040518563ffffffff1660e01b81526004016122579493929190613202565b602060405180830381600087803b15801561227157600080fd5b505af19250505080156122a257506040513d601f19601f8201168201806040525081019061229f9190612e24565b60015b61231c573d80600081146122d2576040519150601f19603f3d011682016040523d82523d6000602084013e6122d7565b606091505b50600081511415612314576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606012805461237e906136a4565b80601f01602080910402602001604051908101604052809291908181526020018280546123aa906136a4565b80156123f75780601f106123cc576101008083540402835291602001916123f7565b820191906000526020600020905b8154815290600101906020018083116123da57829003601f168201915b5050505050905090565b60606000821415612449576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061255d565b600082905060005b6000821461247b57808061246490613707565b915050600a82612474919061351b565b9150612451565b60008167ffffffffffffffff8111156124975761249661383d565b5b6040519080825280601f01601f1916602001820160405280156124c95781602001600182028036833780820191505090505b5090505b60008514612556576001826124e291906135a6565b9150600a856124f19190613750565b60306124fd91906134c5565b60f81b8183815181106125135761251261380e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561254f919061351b565b94506124cd565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125ca576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b61264b8383836001612650565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156126be576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156126f9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127066000868387612632565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156128d057506128cf8773ffffffffffffffffffffffffffffffffffffffff166121ec565b5b15612996575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612945600088848060010195508861220f565b61297b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156128d657826001541461299157600080fd5b612a02565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612997575b816001819055505050612a186000868387612638565b5050505050565b828054612a2b906136a4565b90600052602060002090601f016020900481019282612a4d5760008555612a94565b82601f10612a6657803560ff1916838001178555612a94565b82800160010185558215612a94579182015b82811115612a93578235825591602001919060010190612a78565b5b509050612aa19190612ae8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b01576000816000905550600101612ae9565b5090565b6000612b18612b1384613446565b613421565b905082815260208101848484011115612b3457612b3361387b565b5b612b3f848285613662565b509392505050565b600081359050612b5681613a87565b92915050565b600081359050612b6b81613a9e565b92915050565b600081359050612b8081613ab5565b92915050565b600081519050612b9581613ab5565b92915050565b600082601f830112612bb057612baf613871565b5b8135612bc0848260208601612b05565b91505092915050565b60008083601f840112612bdf57612bde613871565b5b8235905067ffffffffffffffff811115612bfc57612bfb61386c565b5b602083019150836001820283011115612c1857612c17613876565b5b9250929050565b600081359050612c2e81613acc565b92915050565b600060208284031215612c4a57612c49613885565b5b6000612c5884828501612b47565b91505092915050565b60008060408385031215612c7857612c77613885565b5b6000612c8685828601612b47565b9250506020612c9785828601612b47565b9150509250929050565b600080600060608486031215612cba57612cb9613885565b5b6000612cc886828701612b47565b9350506020612cd986828701612b47565b9250506040612cea86828701612c1f565b9150509250925092565b60008060008060808587031215612d0e57612d0d613885565b5b6000612d1c87828801612b47565b9450506020612d2d87828801612b47565b9350506040612d3e87828801612c1f565b925050606085013567ffffffffffffffff811115612d5f57612d5e613880565b5b612d6b87828801612b9b565b91505092959194509250565b60008060408385031215612d8e57612d8d613885565b5b6000612d9c85828601612b47565b9250506020612dad85828601612b5c565b9150509250929050565b60008060408385031215612dce57612dcd613885565b5b6000612ddc85828601612b47565b9250506020612ded85828601612c1f565b9150509250929050565b600060208284031215612e0d57612e0c613885565b5b6000612e1b84828501612b71565b91505092915050565b600060208284031215612e3a57612e39613885565b5b6000612e4884828501612b86565b91505092915050565b60008060208385031215612e6857612e67613885565b5b600083013567ffffffffffffffff811115612e8657612e85613880565b5b612e9285828601612bc9565b92509250509250929050565b600060208284031215612eb457612eb3613885565b5b6000612ec284828501612c1f565b91505092915050565b612ed4816135da565b82525050565b612ee3816135da565b82525050565b612ef2816135ec565b82525050565b612f01816135ec565b82525050565b6000612f1282613477565b612f1c818561348d565b9350612f2c818560208601613671565b612f358161388a565b840191505092915050565b6000612f4b82613482565b612f5581856134a9565b9350612f65818560208601613671565b612f6e8161388a565b840191505092915050565b6000612f8482613482565b612f8e81856134ba565b9350612f9e818560208601613671565b80840191505092915050565b6000612fb7600e836134a9565b9150612fc28261389b565b602082019050919050565b6000612fda6015836134a9565b9150612fe5826138c4565b602082019050919050565b6000612ffd6026836134a9565b9150613008826138ed565b604082019050919050565b6000613020600e836134a9565b915061302b8261393c565b602082019050919050565b60006130436010836134a9565b915061304e82613965565b602082019050919050565b60006130666020836134a9565b91506130718261398e565b602082019050919050565b60006130896018836134a9565b9150613094826139b7565b602082019050919050565b60006130ac60008361349e565b91506130b7826139e0565b600082019050919050565b60006130cf6010836134a9565b91506130da826139e3565b602082019050919050565b60006130f26010836134a9565b91506130fd82613a0c565b602082019050919050565b6000613115601f836134a9565b915061312082613a35565b602082019050919050565b6000613138601f836134a9565b915061314382613a5e565b602082019050919050565b6060820160008201516131646000850182612ecb565b506020820151613177602085018261319f565b50604082015161318a6040850182612ee9565b50505050565b61319981613644565b82525050565b6131a88161364e565b82525050565b60006131ba8285612f79565b91506131c68284612f79565b91508190509392505050565b60006131dd8261309f565b9150819050919050565b60006020820190506131fc6000830184612eda565b92915050565b60006080820190506132176000830187612eda565b6132246020830186612eda565b6132316040830185613190565b81810360608301526132438184612f07565b905095945050505050565b60006020820190506132636000830184612ef8565b92915050565b600060208201905081810360008301526132838184612f40565b905092915050565b600060208201905081810360008301526132a481612faa565b9050919050565b600060208201905081810360008301526132c481612fcd565b9050919050565b600060208201905081810360008301526132e481612ff0565b9050919050565b6000602082019050818103600083015261330481613013565b9050919050565b6000602082019050818103600083015261332481613036565b9050919050565b6000602082019050818103600083015261334481613059565b9050919050565b600060208201905081810360008301526133648161307c565b9050919050565b60006020820190508181036000830152613384816130c2565b9050919050565b600060208201905081810360008301526133a4816130e5565b9050919050565b600060208201905081810360008301526133c481613108565b9050919050565b600060208201905081810360008301526133e48161312b565b9050919050565b6000606082019050613400600083018461314e565b92915050565b600060208201905061341b6000830184613190565b92915050565b600061342b61343c565b905061343782826136d6565b919050565b6000604051905090565b600067ffffffffffffffff8211156134615761346061383d565b5b61346a8261388a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006134d082613644565b91506134db83613644565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135105761350f613781565b5b828201905092915050565b600061352682613644565b915061353183613644565b925082613541576135406137b0565b5b828204905092915050565b600061355782613644565b915061356283613644565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561359b5761359a613781565b5b828202905092915050565b60006135b182613644565b91506135bc83613644565b9250828210156135cf576135ce613781565b5b828203905092915050565b60006135e582613624565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561368f578082015181840152602081019050613674565b8381111561369e576000848401525b50505050565b600060028204905060018216806136bc57607f821691505b602082108114156136d0576136cf6137df565b5b50919050565b6136df8261388a565b810181811067ffffffffffffffff821117156136fe576136fd61383d565b5b80604052505050565b600061371282613644565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561374557613744613781565b5b600182019050919050565b600061375b82613644565b915061376683613644565b925082613776576137756137b0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c696420537570706c79000000000000000000000000000000000000600082015250565b7f496e73756666696369656e74204554482073656e740000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2070726f78792063616c6c73000000000000000000000000000000000000600082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4f726465722065786365656473206d617820737570706c790000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4578636565647320726573657276657300000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4f726465722065786365656473207472616e73616374696f6e206c696d697400600082015250565b613a90816135da565b8114613a9b57600080fd5b50565b613aa7816135ec565b8114613ab257600080fd5b50565b613abe816135f8565b8114613ac957600080fd5b50565b613ad581613644565b8114613ae057600080fd5b5056fea26469706673582212205e440225f23c2eecf35b9c4a0b7f3030685f40f78005d074afb7df93430b29b764736f6c63430008070033

Deployed Bytecode Sourcemap

48628:2352:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28562:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31947:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33450:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33013:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48691:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27811:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34307:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49064:437;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48731:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50350:81;;;;;;;;;;;;;:::i;:::-;;48768:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34548:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50055:289;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49949:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31756:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50614:361;;;:::i;:::-;;28931:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47736:103;;;;;;;;;;;;;:::i;:::-;;48803:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50439:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47085:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49793:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32116:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48835:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33726:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34804:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32291:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49678:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34076:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47994:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28562:305;28664:4;28716:25;28701:40;;;:11;:40;;;;:105;;;;28773:33;28758:48;;;:11;:48;;;;28701:105;:158;;;;28823:36;28847:11;28823:23;:36::i;:::-;28701:158;28681:178;;28562:305;;;:::o;31947:100::-;32001:13;32034:5;32027:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31947:100;:::o;33450:204::-;33518:7;33543:16;33551:7;33543;:16::i;:::-;33538:64;;33568:34;;;;;;;;;;;;;;33538:64;33622:15;:24;33638:7;33622:24;;;;;;;;;;;;;;;;;;;;;33615:31;;33450:204;;;:::o;33013:371::-;33086:13;33102:24;33118:7;33102:15;:24::i;:::-;33086:40;;33147:5;33141:11;;:2;:11;;;33137:48;;;33161:24;;;;;;;;;;;;;;33137:48;33218:5;33202:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33228:37;33245:5;33252:12;:10;:12::i;:::-;33228:16;:37::i;:::-;33227:38;33202:63;33198:138;;;33289:35;;;;;;;;;;;;;;33198:138;33348:28;33357:2;33361:7;33370:5;33348:8;:28::i;:::-;33075:309;33013:371;;:::o;48691:35::-;;;;:::o;27811:303::-;27855:7;28080:15;:13;:15::i;:::-;28065:12;;28049:13;;:28;:46;28042:53;;27811:303;:::o;34307:170::-;34441:28;34451:4;34457:2;34461:7;34441:9;:28::i;:::-;34307:170;;;:::o;49064:437::-;49134:10;;;;;;;;;;;49126:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;49193:10;49180:23;;:9;:23;;;49172:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;49249:15;;49237:8;:27;;49229:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;49343:10;;49331:8;49315:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;49307:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;49420:8;49412:5;;:16;;;;:::i;:::-;49399:9;:29;;49391:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49464:31;49474:10;49486:8;49464:9;:31::i;:::-;49064:437;:::o;48731:32::-;;;;:::o;50350:81::-;47316:12;:10;:12::i;:::-;47305:23;;:7;:5;:7::i;:::-;:23;;;47297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50415:10:::1;;;;;;;;;;;50414:11;50401:10;;:24;;;;;;;;;;;;;;;;;;50350:81::o:0;48768:30::-;;;;:::o;34548:185::-;34686:39;34703:4;34709:2;34713:7;34686:39;;;;;;;;;;;;:16;:39::i;:::-;34548:185;;;:::o;50055:289::-;47316:12;:10;:12::i;:::-;47305:23;;:7;:5;:7::i;:::-;:23;;;47297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50170:10:::1;;50158:8;50142:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;50134:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;50244:10;;50232:8;;50221;:19;;;;:::i;:::-;:33;;50213:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50293:8;50281;;:20;;;;;;;:::i;:::-;;;;;;;;50308:30;50318:9;50329:8;50308:9;:30::i;:::-;50055:289:::0;;:::o;49949:100::-;47316:12;:10;:12::i;:::-;47305:23;;:7;:5;:7::i;:::-;:23;;;47297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50036:7:::1;;50020:13;:23;;;;;;;:::i;:::-;;49949:100:::0;;:::o;31756:124::-;31820:7;31847:20;31859:7;31847:11;:20::i;:::-;:25;;;31840:32;;31756:124;;;:::o;50614:361::-;47316:12;:10;:12::i;:::-;47305:23;;:7;:5;:7::i;:::-;:23;;;47297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22240:1:::1;22838:7;;:19;;22830:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22240:1;22971:7;:18;;;;50685:16:::2;50704:21;50685:40;;50732:15;50760:6:::0;50767:1:::2;50760:8;;50756:214;50774:6;:13;;;;50770:1;:17;50756:214;;;50840:3;50830:4;50835:1;50830:7;;;;;;;;:::i;:::-;;;;;;;;;;50816:11;:21;;;;:::i;:::-;:27;;;;:::i;:::-;50803:40;;50853:12;50879:6;50886:1;50879:9;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50871:23;;50902:10;50871:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50852:65;;;50934:7;50926:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;50794:176;50789:3;;;;;:::i;:::-;;;;50756:214;;;;50678:297;;22196:1:::1;23150:7;:22;;;;50614:361::o:0;28931:206::-;28995:7;29036:1;29019:19;;:5;:19;;;29015:60;;;29047:28;;;;;;;;;;;;;;29015:60;29101:12;:19;29114:5;29101:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29093:36;;29086:43;;28931:206;;;:::o;47736:103::-;47316:12;:10;:12::i;:::-;47305:23;;:7;:5;:7::i;:::-;:23;;;47297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47801:30:::1;47828:1;47801:18;:30::i;:::-;47736:103::o:0;48803:23::-;;;;:::o;50439:169::-;47316:12;:10;:12::i;:::-;47305:23;;:7;:5;:7::i;:::-;:23;;;47297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50519:10:::1;;50509:7;:20;:47;;;;;50543:13;:11;:13::i;:::-;50533:7;:23;50509:47;50501:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;50595:7;50582:10;:20;;;;50439:169:::0;:::o;47085:87::-;47131:7;47158:6;;;;;;;;;;;47151:13;;47085:87;:::o;49793:129::-;49859:21;;:::i;:::-;49896:20;49908:7;49896:11;:20::i;:::-;49889:27;;49793:129;;;:::o;32116:104::-;32172:13;32205:7;32198:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32116:104;:::o;48835:33::-;;;;:::o;33726:279::-;33829:12;:10;:12::i;:::-;33817:24;;:8;:24;;;33813:54;;;33850:17;;;;;;;;;;;;;;33813:54;33925:8;33880:18;:32;33899:12;:10;:12::i;:::-;33880:32;;;;;;;;;;;;;;;:42;33913:8;33880:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33978:8;33949:48;;33964:12;:10;:12::i;:::-;33949:48;;;33988:8;33949:48;;;;;;:::i;:::-;;;;;;;;33726:279;;:::o;34804:369::-;34971:28;34981:4;34987:2;34991:7;34971:9;:28::i;:::-;35014:15;:2;:13;;;:15::i;:::-;:76;;;;;35034:56;35065:4;35071:2;35075:7;35084:5;35034:30;:56::i;:::-;35033:57;35014:76;35010:156;;;35114:40;;;;;;;;;;;;;;35010:156;34804:369;;;;:::o;32291:318::-;32364:13;32395:16;32403:7;32395;:16::i;:::-;32390:59;;32420:29;;;;;;;;;;;;;;32390:59;32462:21;32486:10;:8;:10::i;:::-;32462:34;;32539:1;32520:7;32514:21;:26;;:87;;;;;;;;;;;;;;;;;32567:7;32576:18;:7;:16;:18::i;:::-;32550:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32514:87;32507:94;;;32291:318;;;:::o;49678:107::-;49736:7;49759:20;49773:5;49759:13;:20::i;:::-;49752:27;;49678:107;;;:::o;34076:164::-;34173:4;34197:18;:25;34216:5;34197:25;;;;;;;;;;;;;;;:35;34223:8;34197:35;;;;;;;;;;;;;;;;;;;;;;;;;34190:42;;34076:164;;;;:::o;47994:201::-;47316:12;:10;:12::i;:::-;47305:23;;:7;:5;:7::i;:::-;:23;;;47297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48103:1:::1;48083:22;;:8;:22;;;;48075:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48159:28;48178:8;48159:18;:28::i;:::-;47994:201:::0;:::o;11370:157::-;11455:4;11494:25;11479:40;;;:11;:40;;;;11472:47;;11370:157;;;:::o;35428:187::-;35485:4;35528:7;35509:15;:13;:15::i;:::-;:26;;:53;;;;;35549:13;;35539:7;:23;35509:53;:98;;;;;35580:11;:20;35592:7;35580:20;;;;;;;;;;;:27;;;;;;;;;;;;35579:28;35509:98;35502:105;;35428:187;;;:::o;23866:98::-;23919:7;23946:10;23939:17;;23866:98;:::o;43039:196::-;43181:2;43154:15;:24;43170:7;43154:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43219:7;43215:2;43199:28;;43208:5;43199:28;;;;;;;;;;;;43039:196;;;:::o;27535:92::-;27591:7;27535:92;:::o;38541:2112::-;38656:35;38694:20;38706:7;38694:11;:20::i;:::-;38656:58;;38727:22;38769:13;:18;;;38753:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38804:50;38821:13;:18;;;38841:12;:10;:12::i;:::-;38804:16;:50::i;:::-;38753:101;:154;;;;38895:12;:10;:12::i;:::-;38871:36;;:20;38883:7;38871:11;:20::i;:::-;:36;;;38753:154;38727:181;;38926:17;38921:66;;38952:35;;;;;;;;;;;;;;38921:66;39024:4;39002:26;;:13;:18;;;:26;;;38998:67;;39037:28;;;;;;;;;;;;;;38998:67;39094:1;39080:16;;:2;:16;;;39076:52;;;39105:23;;;;;;;;;;;;;;39076:52;39141:43;39163:4;39169:2;39173:7;39182:1;39141:21;:43::i;:::-;39249:49;39266:1;39270:7;39279:13;:18;;;39249:8;:49::i;:::-;39624:1;39594:12;:18;39607:4;39594:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39668:1;39640:12;:16;39653:2;39640:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39714:2;39686:11;:20;39698:7;39686:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39776:15;39731:11;:20;39743:7;39731:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40044:19;40076:1;40066:7;:11;40044:33;;40137:1;40096:43;;:11;:24;40108:11;40096:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40092:445;;;40321:13;;40307:11;:27;40303:219;;;40391:13;:18;;;40359:11;:24;40371:11;40359:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40474:13;:28;;;40432:11;:24;40444:11;40432:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40303:219;40092:445;39569:979;40584:7;40580:2;40565:27;;40574:4;40565:27;;;;;;;;;;;;40603:42;40624:4;40630:2;40634:7;40643:1;40603:20;:42::i;:::-;38645:2008;;38541:2112;;;:::o;35623:104::-;35692:27;35702:2;35706:8;35692:27;;;;;;;;;;;;:9;:27::i;:::-;35623:104;;:::o;30586:1108::-;30647:21;;:::i;:::-;30681:12;30696:7;30681:22;;30764:4;30745:15;:13;:15::i;:::-;:23;;:47;;;;;30779:13;;30772:4;:20;30745:47;30741:886;;;30813:31;30847:11;:17;30859:4;30847:17;;;;;;;;;;;30813:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30888:9;:16;;;30883:729;;30959:1;30933:28;;:9;:14;;;:28;;;30929:101;;30997:9;30990:16;;;;;;30929:101;31332:261;31339:4;31332:261;;;31372:6;;;;;;;;31417:11;:17;31429:4;31417:17;;;;;;;;;;;31405:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31491:1;31465:28;;:9;:14;;;:28;;;31461:109;;31533:9;31526:16;;;;;;31461:109;31332:261;;;30883:729;30794:833;30741:886;31655:31;;;;;;;;;;;;;;30586:1108;;;;:::o;48355:191::-;48429:16;48448:6;;;;;;;;;;;48429:25;;48474:8;48465:6;;:17;;;;;;;;;;;;;;;;;;48529:8;48498:40;;48519:8;48498:40;;;;;;;;;;;;48418:128;48355:191;:::o;1264:326::-;1324:4;1581:1;1559:7;:19;;;:23;1552:30;;1264:326;;;:::o;43727:667::-;43890:4;43927:2;43911:36;;;43948:12;:10;:12::i;:::-;43962:4;43968:7;43977:5;43911:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43907:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44162:1;44145:6;:13;:18;44141:235;;;44191:40;;;;;;;;;;;;;;44141:235;44334:6;44328:13;44319:6;44315:2;44311:15;44304:38;43907:480;44040:45;;;44030:55;;;:6;:55;;;;44023:62;;;43727:667;;;;;;:::o;49564:108::-;49624:13;49653;49646:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49564:108;:::o;18669:723::-;18725:13;18955:1;18946:5;:10;18942:53;;;18973:10;;;;;;;;;;;;;;;;;;;;;18942:53;19005:12;19020:5;19005:20;;19036:14;19061:78;19076:1;19068:4;:9;19061:78;;19094:8;;;;;:::i;:::-;;;;19125:2;19117:10;;;;;:::i;:::-;;;19061:78;;;19149:19;19181:6;19171:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19149:39;;19199:154;19215:1;19206:5;:10;19199:154;;19243:1;19233:11;;;;;:::i;:::-;;;19310:2;19302:5;:10;;;;:::i;:::-;19289:2;:24;;;;:::i;:::-;19276:39;;19259:6;19266;19259:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19339:2;19330:11;;;;;:::i;:::-;;;19199:154;;;19377:6;19363:21;;;;;18669:723;;;;:::o;29219:207::-;29280:7;29321:1;29304:19;;:5;:19;;;29300:59;;;29332:27;;;;;;;;;;;;;;29300:59;29385:12;:19;29398:5;29385:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29377:41;;29370:48;;29219:207;;;:::o;45042:159::-;;;;;:::o;45860:158::-;;;;;:::o;36090:163::-;36213:32;36219:2;36223:8;36233:5;36240:4;36213:5;:32::i;:::-;36090:163;;;:::o;36512:1775::-;36651:20;36674:13;;36651:36;;36716:1;36702:16;;:2;:16;;;36698:48;;;36727:19;;;;;;;;;;;;;;36698:48;36773:1;36761:8;:13;36757:44;;;36783:18;;;;;;;;;;;;;;36757:44;36814:61;36844:1;36848:2;36852:12;36866:8;36814:21;:61::i;:::-;37187:8;37152:12;:16;37165:2;37152:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37251:8;37211:12;:16;37224:2;37211:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37310:2;37277:11;:25;37289:12;37277:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37377:15;37327:11;:25;37339:12;37327:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37410:20;37433:12;37410:35;;37460:11;37489:8;37474:12;:23;37460:37;;37518:4;:23;;;;;37526:15;:2;:13;;;:15::i;:::-;37518:23;37514:641;;;37562:314;37618:12;37614:2;37593:38;;37610:1;37593:38;;;;;;;;;;;;37659:69;37698:1;37702:2;37706:14;;;;;;37722:5;37659:30;:69::i;:::-;37654:174;;37764:40;;;;;;;;;;;;;;37654:174;37871:3;37855:12;:19;;37562:314;;37957:12;37940:13;;:29;37936:43;;37971:8;;;37936:43;37514:641;;;38020:120;38076:14;;;;;;38072:2;38051:40;;38068:1;38051:40;;;;;;;;;;;;38135:3;38119:12;:19;;38020:120;;37514:641;38185:12;38169:13;:28;;;;37127:1082;;38219:60;38248:1;38252:2;38256:12;38270:8;38219:20;:60::i;:::-;36640:1647;36512:1775;;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:99::-;7282:21;7297:5;7282:21;:::i;:::-;7277:3;7270:34;7211:99;;:::o;7316:109::-;7397:21;7412:5;7397:21;:::i;:::-;7392:3;7385:34;7316:109;;:::o;7431:360::-;7517:3;7545:38;7577:5;7545:38;:::i;:::-;7599:70;7662:6;7657:3;7599:70;:::i;:::-;7592:77;;7678:52;7723:6;7718:3;7711:4;7704:5;7700:16;7678:52;:::i;:::-;7755:29;7777:6;7755:29;:::i;:::-;7750:3;7746:39;7739:46;;7521:270;7431:360;;;;:::o;7797:364::-;7885:3;7913:39;7946:5;7913:39;:::i;:::-;7968:71;8032:6;8027:3;7968:71;:::i;:::-;7961:78;;8048:52;8093:6;8088:3;8081:4;8074:5;8070:16;8048:52;:::i;:::-;8125:29;8147:6;8125:29;:::i;:::-;8120:3;8116:39;8109:46;;7889:272;7797:364;;;;:::o;8167:377::-;8273:3;8301:39;8334:5;8301:39;:::i;:::-;8356:89;8438:6;8433:3;8356:89;:::i;:::-;8349:96;;8454:52;8499:6;8494:3;8487:4;8480:5;8476:16;8454:52;:::i;:::-;8531:6;8526:3;8522:16;8515:23;;8277:267;8167:377;;;;:::o;8550:366::-;8692:3;8713:67;8777:2;8772:3;8713:67;:::i;:::-;8706:74;;8789:93;8878:3;8789:93;:::i;:::-;8907:2;8902:3;8898:12;8891:19;;8550:366;;;:::o;8922:::-;9064:3;9085:67;9149:2;9144:3;9085:67;:::i;:::-;9078:74;;9161:93;9250:3;9161:93;:::i;:::-;9279:2;9274:3;9270:12;9263:19;;8922:366;;;:::o;9294:::-;9436:3;9457:67;9521:2;9516:3;9457:67;:::i;:::-;9450:74;;9533:93;9622:3;9533:93;:::i;:::-;9651:2;9646:3;9642:12;9635:19;;9294:366;;;:::o;9666:::-;9808:3;9829:67;9893:2;9888:3;9829:67;:::i;:::-;9822:74;;9905:93;9994:3;9905:93;:::i;:::-;10023:2;10018:3;10014:12;10007:19;;9666:366;;;:::o;10038:::-;10180:3;10201:67;10265:2;10260:3;10201:67;:::i;:::-;10194:74;;10277:93;10366:3;10277:93;:::i;:::-;10395:2;10390:3;10386:12;10379:19;;10038:366;;;:::o;10410:::-;10552:3;10573:67;10637:2;10632:3;10573:67;:::i;:::-;10566:74;;10649:93;10738:3;10649:93;:::i;:::-;10767:2;10762:3;10758:12;10751:19;;10410:366;;;:::o;10782:::-;10924:3;10945:67;11009:2;11004:3;10945:67;:::i;:::-;10938:74;;11021:93;11110:3;11021:93;:::i;:::-;11139:2;11134:3;11130:12;11123:19;;10782:366;;;:::o;11154:398::-;11313:3;11334:83;11415:1;11410:3;11334:83;:::i;:::-;11327:90;;11426:93;11515:3;11426:93;:::i;:::-;11544:1;11539:3;11535:11;11528:18;;11154:398;;;:::o;11558:366::-;11700:3;11721:67;11785:2;11780:3;11721:67;:::i;:::-;11714:74;;11797:93;11886:3;11797:93;:::i;:::-;11915:2;11910:3;11906:12;11899:19;;11558:366;;;:::o;11930:::-;12072:3;12093:67;12157:2;12152:3;12093:67;:::i;:::-;12086:74;;12169:93;12258:3;12169:93;:::i;:::-;12287:2;12282:3;12278:12;12271:19;;11930:366;;;:::o;12302:::-;12444:3;12465:67;12529:2;12524:3;12465:67;:::i;:::-;12458:74;;12541:93;12630:3;12541:93;:::i;:::-;12659:2;12654:3;12650:12;12643:19;;12302:366;;;:::o;12674:::-;12816:3;12837:67;12901:2;12896:3;12837:67;:::i;:::-;12830:74;;12913:93;13002:3;12913:93;:::i;:::-;13031:2;13026:3;13022:12;13015:19;;12674:366;;;:::o;13116:697::-;13275:4;13270:3;13266:14;13362:4;13355:5;13351:16;13345:23;13381:63;13438:4;13433:3;13429:14;13415:12;13381:63;:::i;:::-;13290:164;13546:4;13539:5;13535:16;13529:23;13565:61;13620:4;13615:3;13611:14;13597:12;13565:61;:::i;:::-;13464:172;13720:4;13713:5;13709:16;13703:23;13739:57;13790:4;13785:3;13781:14;13767:12;13739:57;:::i;:::-;13646:160;13244:569;13116:697;;:::o;13819:118::-;13906:24;13924:5;13906:24;:::i;:::-;13901:3;13894:37;13819:118;;:::o;13943:105::-;14018:23;14035:5;14018:23;:::i;:::-;14013:3;14006:36;13943:105;;:::o;14054:435::-;14234:3;14256:95;14347:3;14338:6;14256:95;:::i;:::-;14249:102;;14368:95;14459:3;14450:6;14368:95;:::i;:::-;14361:102;;14480:3;14473:10;;14054:435;;;;;:::o;14495:379::-;14679:3;14701:147;14844:3;14701:147;:::i;:::-;14694:154;;14865:3;14858:10;;14495:379;;;:::o;14880:222::-;14973:4;15011:2;15000:9;14996:18;14988:26;;15024:71;15092:1;15081:9;15077:17;15068:6;15024:71;:::i;:::-;14880:222;;;;:::o;15108:640::-;15303:4;15341:3;15330:9;15326:19;15318:27;;15355:71;15423:1;15412:9;15408:17;15399:6;15355:71;:::i;:::-;15436:72;15504:2;15493:9;15489:18;15480:6;15436:72;:::i;:::-;15518;15586:2;15575:9;15571:18;15562:6;15518:72;:::i;:::-;15637:9;15631:4;15627:20;15622:2;15611:9;15607:18;15600:48;15665:76;15736:4;15727:6;15665:76;:::i;:::-;15657:84;;15108:640;;;;;;;:::o;15754:210::-;15841:4;15879:2;15868:9;15864:18;15856:26;;15892:65;15954:1;15943:9;15939:17;15930:6;15892:65;:::i;:::-;15754:210;;;;:::o;15970:313::-;16083:4;16121:2;16110:9;16106:18;16098:26;;16170:9;16164:4;16160:20;16156:1;16145:9;16141:17;16134:47;16198:78;16271:4;16262:6;16198:78;:::i;:::-;16190:86;;15970:313;;;;:::o;16289:419::-;16455:4;16493:2;16482:9;16478:18;16470:26;;16542:9;16536:4;16532:20;16528:1;16517:9;16513:17;16506:47;16570:131;16696:4;16570:131;:::i;:::-;16562:139;;16289:419;;;:::o;16714:::-;16880:4;16918:2;16907:9;16903:18;16895:26;;16967:9;16961:4;16957:20;16953:1;16942:9;16938:17;16931:47;16995:131;17121:4;16995:131;:::i;:::-;16987:139;;16714:419;;;:::o;17139:::-;17305:4;17343:2;17332:9;17328:18;17320:26;;17392:9;17386:4;17382:20;17378:1;17367:9;17363:17;17356:47;17420:131;17546:4;17420:131;:::i;:::-;17412:139;;17139:419;;;:::o;17564:::-;17730:4;17768:2;17757:9;17753:18;17745:26;;17817:9;17811:4;17807:20;17803:1;17792:9;17788:17;17781:47;17845:131;17971:4;17845:131;:::i;:::-;17837:139;;17564:419;;;:::o;17989:::-;18155:4;18193:2;18182:9;18178:18;18170:26;;18242:9;18236:4;18232:20;18228:1;18217:9;18213:17;18206:47;18270:131;18396:4;18270:131;:::i;:::-;18262:139;;17989:419;;;:::o;18414:::-;18580:4;18618:2;18607:9;18603:18;18595:26;;18667:9;18661:4;18657:20;18653:1;18642:9;18638:17;18631:47;18695:131;18821:4;18695:131;:::i;:::-;18687:139;;18414:419;;;:::o;18839:::-;19005:4;19043:2;19032:9;19028:18;19020:26;;19092:9;19086:4;19082:20;19078:1;19067:9;19063:17;19056:47;19120:131;19246:4;19120:131;:::i;:::-;19112:139;;18839:419;;;:::o;19264:::-;19430:4;19468:2;19457:9;19453:18;19445:26;;19517:9;19511:4;19507:20;19503:1;19492:9;19488:17;19481:47;19545:131;19671:4;19545:131;:::i;:::-;19537:139;;19264:419;;;:::o;19689:::-;19855:4;19893:2;19882:9;19878:18;19870:26;;19942:9;19936:4;19932:20;19928:1;19917:9;19913:17;19906:47;19970:131;20096:4;19970:131;:::i;:::-;19962:139;;19689:419;;;:::o;20114:::-;20280:4;20318:2;20307:9;20303:18;20295:26;;20367:9;20361:4;20357:20;20353:1;20342:9;20338:17;20331:47;20395:131;20521:4;20395:131;:::i;:::-;20387:139;;20114:419;;;:::o;20539:::-;20705:4;20743:2;20732:9;20728:18;20720:26;;20792:9;20786:4;20782:20;20778:1;20767:9;20763:17;20756:47;20820:131;20946:4;20820:131;:::i;:::-;20812:139;;20539:419;;;:::o;20964:346::-;21119:4;21157:2;21146:9;21142:18;21134:26;;21170:133;21300:1;21289:9;21285:17;21276:6;21170:133;:::i;:::-;20964:346;;;;:::o;21316:222::-;21409:4;21447:2;21436:9;21432:18;21424:26;;21460:71;21528:1;21517:9;21513:17;21504:6;21460:71;:::i;:::-;21316:222;;;;:::o;21544:129::-;21578:6;21605:20;;:::i;:::-;21595:30;;21634:33;21662:4;21654:6;21634:33;:::i;:::-;21544:129;;;:::o;21679:75::-;21712:6;21745:2;21739:9;21729:19;;21679:75;:::o;21760:307::-;21821:4;21911:18;21903:6;21900:30;21897:56;;;21933:18;;:::i;:::-;21897:56;21971:29;21993:6;21971:29;:::i;:::-;21963:37;;22055:4;22049;22045:15;22037:23;;21760:307;;;:::o;22073:98::-;22124:6;22158:5;22152:12;22142:22;;22073:98;;;:::o;22177:99::-;22229:6;22263:5;22257:12;22247:22;;22177:99;;;:::o;22282:168::-;22365:11;22399:6;22394:3;22387:19;22439:4;22434:3;22430:14;22415:29;;22282:168;;;;:::o;22456:147::-;22557:11;22594:3;22579:18;;22456:147;;;;:::o;22609:169::-;22693:11;22727:6;22722:3;22715:19;22767:4;22762:3;22758:14;22743:29;;22609:169;;;;:::o;22784:148::-;22886:11;22923:3;22908:18;;22784:148;;;;:::o;22938:305::-;22978:3;22997:20;23015:1;22997:20;:::i;:::-;22992:25;;23031:20;23049:1;23031:20;:::i;:::-;23026:25;;23185:1;23117:66;23113:74;23110:1;23107:81;23104:107;;;23191:18;;:::i;:::-;23104:107;23235:1;23232;23228:9;23221:16;;22938:305;;;;:::o;23249:185::-;23289:1;23306:20;23324:1;23306:20;:::i;:::-;23301:25;;23340:20;23358:1;23340:20;:::i;:::-;23335:25;;23379:1;23369:35;;23384:18;;:::i;:::-;23369:35;23426:1;23423;23419:9;23414:14;;23249:185;;;;:::o;23440:348::-;23480:7;23503:20;23521:1;23503:20;:::i;:::-;23498:25;;23537:20;23555:1;23537:20;:::i;:::-;23532:25;;23725:1;23657:66;23653:74;23650:1;23647:81;23642:1;23635:9;23628:17;23624:105;23621:131;;;23732:18;;:::i;:::-;23621:131;23780:1;23777;23773:9;23762:20;;23440:348;;;;:::o;23794:191::-;23834:4;23854:20;23872:1;23854:20;:::i;:::-;23849:25;;23888:20;23906:1;23888:20;:::i;:::-;23883:25;;23927:1;23924;23921:8;23918:34;;;23932:18;;:::i;:::-;23918:34;23977:1;23974;23970:9;23962:17;;23794:191;;;;:::o;23991:96::-;24028:7;24057:24;24075:5;24057:24;:::i;:::-;24046:35;;23991:96;;;:::o;24093:90::-;24127:7;24170:5;24163:13;24156:21;24145:32;;24093:90;;;:::o;24189:149::-;24225:7;24265:66;24258:5;24254:78;24243:89;;24189:149;;;:::o;24344:126::-;24381:7;24421:42;24414:5;24410:54;24399:65;;24344:126;;;:::o;24476:77::-;24513:7;24542:5;24531:16;;24476:77;;;:::o;24559:101::-;24595:7;24635:18;24628:5;24624:30;24613:41;;24559:101;;;:::o;24666:154::-;24750:6;24745:3;24740;24727:30;24812:1;24803:6;24798:3;24794:16;24787:27;24666:154;;;:::o;24826:307::-;24894:1;24904:113;24918:6;24915:1;24912:13;24904:113;;;25003:1;24998:3;24994:11;24988:18;24984:1;24979:3;24975:11;24968:39;24940:2;24937:1;24933:10;24928:15;;24904:113;;;25035:6;25032:1;25029:13;25026:101;;;25115:1;25106:6;25101:3;25097:16;25090:27;25026:101;24875:258;24826:307;;;:::o;25139:320::-;25183:6;25220:1;25214:4;25210:12;25200:22;;25267:1;25261:4;25257:12;25288:18;25278:81;;25344:4;25336:6;25332:17;25322:27;;25278:81;25406:2;25398:6;25395:14;25375:18;25372:38;25369:84;;;25425:18;;:::i;:::-;25369:84;25190:269;25139:320;;;:::o;25465:281::-;25548:27;25570:4;25548:27;:::i;:::-;25540:6;25536:40;25678:6;25666:10;25663:22;25642:18;25630:10;25627:34;25624:62;25621:88;;;25689:18;;:::i;:::-;25621:88;25729:10;25725:2;25718:22;25508:238;25465:281;;:::o;25752:233::-;25791:3;25814:24;25832:5;25814:24;:::i;:::-;25805:33;;25860:66;25853:5;25850:77;25847:103;;;25930:18;;:::i;:::-;25847:103;25977:1;25970:5;25966:13;25959:20;;25752:233;;;:::o;25991:176::-;26023:1;26040:20;26058:1;26040:20;:::i;:::-;26035:25;;26074:20;26092:1;26074:20;:::i;:::-;26069:25;;26113:1;26103:35;;26118:18;;:::i;:::-;26103:35;26159:1;26156;26152:9;26147:14;;25991:176;;;;:::o;26173:180::-;26221:77;26218:1;26211:88;26318:4;26315:1;26308:15;26342:4;26339:1;26332:15;26359:180;26407:77;26404:1;26397:88;26504:4;26501:1;26494:15;26528:4;26525:1;26518:15;26545:180;26593:77;26590:1;26583:88;26690:4;26687:1;26680:15;26714:4;26711:1;26704:15;26731:180;26779:77;26776:1;26769:88;26876:4;26873:1;26866:15;26900:4;26897:1;26890:15;26917:180;26965:77;26962:1;26955:88;27062:4;27059:1;27052:15;27086:4;27083:1;27076:15;27103:117;27212:1;27209;27202:12;27226:117;27335:1;27332;27325:12;27349:117;27458:1;27455;27448:12;27472:117;27581:1;27578;27571:12;27595:117;27704:1;27701;27694:12;27718:117;27827:1;27824;27817:12;27841:102;27882:6;27933:2;27929:7;27924:2;27917:5;27913:14;27909:28;27899:38;;27841:102;;;:::o;27949:164::-;28089:16;28085:1;28077:6;28073:14;28066:40;27949:164;:::o;28119:171::-;28259:23;28255:1;28247:6;28243:14;28236:47;28119:171;:::o;28296:225::-;28436:34;28432:1;28424:6;28420:14;28413:58;28505:8;28500:2;28492:6;28488:15;28481:33;28296:225;:::o;28527:164::-;28667:16;28663:1;28655:6;28651:14;28644:40;28527:164;:::o;28697:166::-;28837:18;28833:1;28825:6;28821:14;28814:42;28697:166;:::o;28869:182::-;29009:34;29005:1;28997:6;28993:14;28986:58;28869:182;:::o;29057:174::-;29197:26;29193:1;29185:6;29181:14;29174:50;29057:174;:::o;29237:114::-;;:::o;29357:166::-;29497:18;29493:1;29485:6;29481:14;29474:42;29357:166;:::o;29529:::-;29669:18;29665:1;29657:6;29653:14;29646:42;29529:166;:::o;29701:181::-;29841:33;29837:1;29829:6;29825:14;29818:57;29701:181;:::o;29888:::-;30028:33;30024:1;30016:6;30012:14;30005:57;29888:181;:::o;30075:122::-;30148:24;30166:5;30148:24;:::i;:::-;30141:5;30138:35;30128:63;;30187:1;30184;30177:12;30128:63;30075:122;:::o;30203:116::-;30273:21;30288:5;30273:21;:::i;:::-;30266:5;30263:32;30253:60;;30309:1;30306;30299:12;30253:60;30203:116;:::o;30325:120::-;30397:23;30414:5;30397:23;:::i;:::-;30390:5;30387:34;30377:62;;30435:1;30432;30425:12;30377:62;30325:120;:::o;30451:122::-;30524:24;30542:5;30524:24;:::i;:::-;30517:5;30514:35;30504:63;;30563:1;30560;30553:12;30504:63;30451:122;:::o

Swarm Source

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