ETH Price: $3,475.84 (-1.19%)
Gas: 3 Gwei

Token

KevinZuki Club (KZC)
 

Overview

Max Total Supply

2,222 KZC

Holders

264

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
15 KZC
0x253ae13B5e9d0B789e6e0e4335df8C5b48060908
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:
KevinZukiClub

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;



// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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;
    }
}


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

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

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

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

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

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

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

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


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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
            }
        }
    }
}


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


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

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

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

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

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

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

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

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

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

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

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

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


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


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

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

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


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

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

    /**
     * @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);
}


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


// Creator: Chiru Labs
/**
 * @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 = 0;

    // 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 = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; 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');

        for (uint256 curr = tokenId; ; 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())) : '';
    }

    /**
     * @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 override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater than 0');

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

        _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 = 0; 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 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.
        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 KevinZukiClub is Ownable, ERC721A, ReentrancyGuard {
    using SafeMath for uint256;
    using Strings for uint256;
    using Address for address;

    string public azuKevinBaseURI;
    bool public saleIsActive;
    bool public isMetadataLocked;

    uint256 public constant MAX_TOKEN_SUPPLY = 2222;
    uint256 public constant MAX_MINT_QUANTITY = 5;

    constructor(string memory _initialBaseURI, bool _saleIsActive)
        ERC721A("KevinZuki Club", "KZC")
    {
        azuKevinBaseURI = _initialBaseURI;
        saleIsActive = _saleIsActive;
        isMetadataLocked = false;
    }

    modifier quantityIsOk(uint256 amount) {
        require(
            amount > 0 && amount <= MAX_MINT_QUANTITY,
            "Can only mint 5 tokens at a time."
        );
        require(
            totalSupply().add(amount) <= MAX_TOKEN_SUPPLY,
            "Minting would exceed max supply."
        );
        _;
    }

    modifier saleActive() {
        require(saleIsActive, "Sale is not active.");
        _;
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function mint(uint256 amount)
        public
        saleActive
        nonReentrant
        quantityIsOk(amount)
    {
        _safeMint(msg.sender, amount);
    }

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

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        require(!isMetadataLocked, "Metadata is locked");
        azuKevinBaseURI = _newBaseURI;
    }

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

        string memory base = _baseURI();

        return string(abi.encodePacked(base, tokenId.toString()));
    }

    function lockMetadata() external onlyOwner {
        isMetadataLocked = true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"},{"internalType":"bool","name":"_saleIsActive","type":"bool"}],"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":[],"name":"MAX_MINT_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKEN_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"azuKevinBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"isMetadataLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006001553480156200001657600080fd5b50604051620044173803806200441783398181016040528101906200003c9190620004b0565b6040518060400160405280600e81526020017f4b6576696e5a756b6920436c75620000000000000000000000000000000000008152506040518060400160405280600381526020017f4b5a430000000000000000000000000000000000000000000000000000000000815250620000c8620000bc6200015a60201b60201c565b6200016260201b60201c565b8160029080519060200190620000e092919062000226565b508060039080519060200190620000f992919062000226565b505050600160088190555081600990805190602001906200011c92919062000226565b5080600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff02191690831515021790555050506200057b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002349062000545565b90600052602060002090601f016020900481019282620002585760008555620002a4565b82601f106200027357805160ff1916838001178555620002a4565b82800160010185558215620002a4579182015b82811115620002a357825182559160200191906001019062000286565b5b509050620002b39190620002b7565b5090565b5b80821115620002d2576000816000905550600101620002b8565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200033f82620002f4565b810181811067ffffffffffffffff8211171562000361576200036062000305565b5b80604052505050565b600062000376620002d6565b905062000384828262000334565b919050565b600067ffffffffffffffff821115620003a757620003a662000305565b5b620003b282620002f4565b9050602081019050919050565b60005b83811015620003df578082015181840152602081019050620003c2565b83811115620003ef576000848401525b50505050565b60006200040c620004068462000389565b6200036a565b9050828152602081018484840111156200042b576200042a620002ef565b5b62000438848285620003bf565b509392505050565b600082601f830112620004585762000457620002ea565b5b81516200046a848260208601620003f5565b91505092915050565b60008115159050919050565b6200048a8162000473565b81146200049657600080fd5b50565b600081519050620004aa816200047f565b92915050565b60008060408385031215620004ca57620004c9620002e0565b5b600083015167ffffffffffffffff811115620004eb57620004ea620002e5565b5b620004f98582860162000440565b92505060206200050c8582860162000499565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200055e57607f821691505b6020821081141562000575576200057462000516565b5b50919050565b613e8c806200058b6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806371273bb7116100f9578063b88d4fde11610097578063e489d51011610071578063e489d510146104cd578063e985e9c5146104eb578063eb8d24441461051b578063f2fde38b14610539576101c4565b8063b88d4fde14610463578063c87b56dd1461047f578063d7e45cd7146104af576101c4565b806395d89b41116100d357806395d89b4114610403578063989bdbb614610421578063a0712d681461042b578063a22cb46514610447576101c4565b806371273bb7146103bd578063715018a6146103db5780638da5cb5b146103e5576101c4565b806334918dfd1161016657806355f804b31161014057806355f804b3146103235780635d8857961461033f5780636352211e1461035d57806370a082311461038d576101c4565b806334918dfd146102cd57806342842e0e146102d75780634f6ccce7146102f3576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd1461026357806323b872dd146102815780632f745c591461029d576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de919061277d565b610555565b6040516101f091906127c5565b60405180910390f35b61020161069f565b60405161020e9190612879565b60405180910390f35b610231600480360381019061022c91906128d1565b610731565b60405161023e919061293f565b60405180910390f35b610261600480360381019061025c9190612986565b6107b6565b005b61026b6108cf565b60405161027891906129d5565b60405180910390f35b61029b600480360381019061029691906129f0565b6108d9565b005b6102b760048036038101906102b29190612986565b6108e9565b6040516102c491906129d5565b60405180910390f35b6102d5610ae7565b005b6102f160048036038101906102ec91906129f0565b610b8f565b005b61030d600480360381019061030891906128d1565b610baf565b60405161031a91906129d5565b60405180910390f35b61033d60048036038101906103389190612b78565b610c02565b005b610347610ce8565b6040516103549190612879565b60405180910390f35b610377600480360381019061037291906128d1565b610d76565b604051610384919061293f565b60405180910390f35b6103a760048036038101906103a29190612bc1565b610d8c565b6040516103b491906129d5565b60405180910390f35b6103c5610e75565b6040516103d291906129d5565b60405180910390f35b6103e3610e7a565b005b6103ed610f02565b6040516103fa919061293f565b60405180910390f35b61040b610f2b565b6040516104189190612879565b60405180910390f35b610429610fbd565b005b610445600480360381019061044091906128d1565b611056565b005b610461600480360381019061045c9190612c1a565b6111b8565b005b61047d60048036038101906104789190612cfb565b611339565b005b610499600480360381019061049491906128d1565b611395565b6040516104a69190612879565b60405180910390f35b6104b761141d565b6040516104c491906127c5565b60405180910390f35b6104d5611430565b6040516104e291906129d5565b60405180910390f35b61050560048036038101906105009190612d7e565b611436565b60405161051291906127c5565b60405180910390f35b6105236114ca565b60405161053091906127c5565b60405180910390f35b610553600480360381019061054e9190612bc1565b6114dd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106985750610697826115d5565b5b9050919050565b6060600280546106ae90612ded565b80601f01602080910402602001604051908101604052809291908181526020018280546106da90612ded565b80156107275780601f106106fc57610100808354040283529160200191610727565b820191906000526020600020905b81548152906001019060200180831161070a57829003601f168201915b5050505050905090565b600061073c8261163f565b61077b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077290612e91565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107c182610d76565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990612f23565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661085161164d565b73ffffffffffffffffffffffffffffffffffffffff161480610880575061087f8161087a61164d565b611436565b5b6108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b690612fb5565b60405180910390fd5b6108ca838383611655565b505050565b6000600154905090565b6108e4838383611707565b505050565b60006108f483610d8c565b8210610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90613047565b60405180910390fd5b600061093f6108cf565b905060008060005b83811015610aa5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610a3957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a915786841415610a82578195505050505050610ae1565b8380610a8d90613096565b9450505b508080610a9d90613096565b915050610947565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890613151565b60405180910390fd5b92915050565b610aef61164d565b73ffffffffffffffffffffffffffffffffffffffff16610b0d610f02565b73ffffffffffffffffffffffffffffffffffffffff1614610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a906131bd565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b610baa83838360405180602001604052806000815250611339565b505050565b6000610bb96108cf565b8210610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf19061324f565b60405180910390fd5b819050919050565b610c0a61164d565b73ffffffffffffffffffffffffffffffffffffffff16610c28610f02565b73ffffffffffffffffffffffffffffffffffffffff1614610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c75906131bd565b60405180910390fd5b600a60019054906101000a900460ff1615610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc5906132bb565b60405180910390fd5b8060099080519060200190610ce4929190612634565b5050565b60098054610cf590612ded565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2190612ded565b8015610d6e5780601f10610d4357610100808354040283529160200191610d6e565b820191906000526020600020905b815481529060010190602001808311610d5157829003601f168201915b505050505081565b6000610d8182611c50565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df49061334d565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600581565b610e8261164d565b73ffffffffffffffffffffffffffffffffffffffff16610ea0610f02565b73ffffffffffffffffffffffffffffffffffffffff1614610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed906131bd565b60405180910390fd5b610f006000611dab565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f3a90612ded565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6690612ded565b8015610fb35780601f10610f8857610100808354040283529160200191610fb3565b820191906000526020600020905b815481529060010190602001808311610f9657829003601f168201915b5050505050905090565b610fc561164d565b73ffffffffffffffffffffffffffffffffffffffff16610fe3610f02565b73ffffffffffffffffffffffffffffffffffffffff1614611039576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611030906131bd565b60405180910390fd5b6001600a60016101000a81548160ff021916908315150217905550565b600a60009054906101000a900460ff166110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c906133b9565b60405180910390fd5b600260085414156110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290613425565b60405180910390fd5b600260088190555080600081118015611105575060058111155b611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906134b7565b60405180910390fd5b6108ae611161826111536108cf565b611e6f90919063ffffffff16565b11156111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990613523565b60405180910390fd5b6111ac3383611e85565b50600160088190555050565b6111c061164d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112259061358f565b60405180910390fd5b806007600061123b61164d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112e861164d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161132d91906127c5565b60405180910390a35050565b611344848484611707565b61135084848484611ea3565b61138f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138690613621565b60405180910390fd5b50505050565b60606113a08261163f565b6113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d6906136b3565b60405180910390fd5b60006113e961202b565b9050806113f5846120bd565b60405160200161140692919061370f565b604051602081830303815290604052915050919050565b600a60019054906101000a900460ff1681565b6108ae81565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b6114e561164d565b73ffffffffffffffffffffffffffffffffffffffff16611503610f02565b73ffffffffffffffffffffffffffffffffffffffff1614611559576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611550906131bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c0906137a5565b60405180910390fd5b6115d281611dab565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061171282611c50565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661173961164d565b73ffffffffffffffffffffffffffffffffffffffff161480611795575061175e61164d565b73ffffffffffffffffffffffffffffffffffffffff1661177d84610731565b73ffffffffffffffffffffffffffffffffffffffff16145b806117b157506117b082600001516117ab61164d565b611436565b5b9050806117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90613837565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c906138c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc9061395b565b60405180910390fd5b6118e2858585600161221e565b6118f26000848460000151611655565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184611ac9919061397b565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611be057611b3f8161163f565b15611bdf5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c488686866001612224565b505050505050565b611c586126ba565b611c618261163f565b611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9790613a43565b60405180910390fd5b60008290505b6000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d92578092505050611da6565b508080611d9e90613a63565b915050611ca6565b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611e7d919061397b565b905092915050565b611e9f82826040518060200160405280600081525061222a565b5050565b6000611ec48473ffffffffffffffffffffffffffffffffffffffff1661223c565b1561201e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eed61164d565b8786866040518563ffffffff1660e01b8152600401611f0f9493929190613ae2565b6020604051808303816000875af1925050508015611f4b57506040513d601f19601f82011682018060405250810190611f489190613b43565b60015b611fce573d8060008114611f7b576040519150601f19603f3d011682016040523d82523d6000602084013e611f80565b606091505b50600081511415611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90613621565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612023565b600190505b949350505050565b60606009805461203a90612ded565b80601f016020809104026020016040519081016040528092919081815260200182805461206690612ded565b80156120b35780601f10612088576101008083540402835291602001916120b3565b820191906000526020600020905b81548152906001019060200180831161209657829003601f168201915b5050505050905090565b60606000821415612105576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612219565b600082905060005b6000821461213757808061212090613096565b915050600a826121309190613b9f565b915061210d565b60008167ffffffffffffffff81111561215357612152612a4d565b5b6040519080825280601f01601f1916602001820160405280156121855781602001600182028036833780820191505090505b5090505b600085146122125760018261219e9190613bd0565b9150600a856121ad9190613c04565b60306121b9919061397b565b60f81b8183815181106121cf576121ce613c35565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561220b9190613b9f565b9450612189565b8093505050505b919050565b50505050565b50505050565b612237838383600161224f565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd90613cd6565b60405180910390fd5b6122cf8161163f565b1561230f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230690613d42565b60405180910390fd5b60008411612352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234990613dd4565b60405180910390fd5b61235f600086838761221e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123cc9190613e10565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff1661246f9190613e10565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561261757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156125f6576125b66000888488611ea3565b6125f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ec90613621565b60405180910390fd5b5b818061260190613096565b925050808061260f90613096565b91505061253f565b508060018190555061262c6000878488612224565b505050505050565b82805461264090612ded565b90600052602060002090601f01602090048101928261266257600085556126a9565b82601f1061267b57805160ff19168380011785556126a9565b828001600101855582156126a9579182015b828111156126a857825182559160200191906001019061268d565b5b5090506126b691906126f4565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561270d5760008160009055506001016126f5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61275a81612725565b811461276557600080fd5b50565b60008135905061277781612751565b92915050565b6000602082840312156127935761279261271b565b5b60006127a184828501612768565b91505092915050565b60008115159050919050565b6127bf816127aa565b82525050565b60006020820190506127da60008301846127b6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561281a5780820151818401526020810190506127ff565b83811115612829576000848401525b50505050565b6000601f19601f8301169050919050565b600061284b826127e0565b61285581856127eb565b93506128658185602086016127fc565b61286e8161282f565b840191505092915050565b600060208201905081810360008301526128938184612840565b905092915050565b6000819050919050565b6128ae8161289b565b81146128b957600080fd5b50565b6000813590506128cb816128a5565b92915050565b6000602082840312156128e7576128e661271b565b5b60006128f5848285016128bc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612929826128fe565b9050919050565b6129398161291e565b82525050565b60006020820190506129546000830184612930565b92915050565b6129638161291e565b811461296e57600080fd5b50565b6000813590506129808161295a565b92915050565b6000806040838503121561299d5761299c61271b565b5b60006129ab85828601612971565b92505060206129bc858286016128bc565b9150509250929050565b6129cf8161289b565b82525050565b60006020820190506129ea60008301846129c6565b92915050565b600080600060608486031215612a0957612a0861271b565b5b6000612a1786828701612971565b9350506020612a2886828701612971565b9250506040612a39868287016128bc565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a858261282f565b810181811067ffffffffffffffff82111715612aa457612aa3612a4d565b5b80604052505050565b6000612ab7612711565b9050612ac38282612a7c565b919050565b600067ffffffffffffffff821115612ae357612ae2612a4d565b5b612aec8261282f565b9050602081019050919050565b82818337600083830152505050565b6000612b1b612b1684612ac8565b612aad565b905082815260208101848484011115612b3757612b36612a48565b5b612b42848285612af9565b509392505050565b600082601f830112612b5f57612b5e612a43565b5b8135612b6f848260208601612b08565b91505092915050565b600060208284031215612b8e57612b8d61271b565b5b600082013567ffffffffffffffff811115612bac57612bab612720565b5b612bb884828501612b4a565b91505092915050565b600060208284031215612bd757612bd661271b565b5b6000612be584828501612971565b91505092915050565b612bf7816127aa565b8114612c0257600080fd5b50565b600081359050612c1481612bee565b92915050565b60008060408385031215612c3157612c3061271b565b5b6000612c3f85828601612971565b9250506020612c5085828601612c05565b9150509250929050565b600067ffffffffffffffff821115612c7557612c74612a4d565b5b612c7e8261282f565b9050602081019050919050565b6000612c9e612c9984612c5a565b612aad565b905082815260208101848484011115612cba57612cb9612a48565b5b612cc5848285612af9565b509392505050565b600082601f830112612ce257612ce1612a43565b5b8135612cf2848260208601612c8b565b91505092915050565b60008060008060808587031215612d1557612d1461271b565b5b6000612d2387828801612971565b9450506020612d3487828801612971565b9350506040612d45878288016128bc565b925050606085013567ffffffffffffffff811115612d6657612d65612720565b5b612d7287828801612ccd565b91505092959194509250565b60008060408385031215612d9557612d9461271b565b5b6000612da385828601612971565b9250506020612db485828601612971565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0557607f821691505b60208210811415612e1957612e18612dbe565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000612e7b602d836127eb565b9150612e8682612e1f565b604082019050919050565b60006020820190508181036000830152612eaa81612e6e565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f0d6022836127eb565b9150612f1882612eb1565b604082019050919050565b60006020820190508181036000830152612f3c81612f00565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000612f9f6039836127eb565b9150612faa82612f43565b604082019050919050565b60006020820190508181036000830152612fce81612f92565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006130316022836127eb565b915061303c82612fd5565b604082019050919050565b6000602082019050818103600083015261306081613024565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130a18261289b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130d4576130d3613067565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061313b602e836127eb565b9150613146826130df565b604082019050919050565b6000602082019050818103600083015261316a8161312e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131a76020836127eb565b91506131b282613171565b602082019050919050565b600060208201905081810360008301526131d68161319a565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006132396023836127eb565b9150613244826131dd565b604082019050919050565b600060208201905081810360008301526132688161322c565b9050919050565b7f4d65746164617461206973206c6f636b65640000000000000000000000000000600082015250565b60006132a56012836127eb565b91506132b08261326f565b602082019050919050565b600060208201905081810360008301526132d481613298565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613337602b836127eb565b9150613342826132db565b604082019050919050565b600060208201905081810360008301526133668161332a565b9050919050565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b60006133a36013836127eb565b91506133ae8261336d565b602082019050919050565b600060208201905081810360008301526133d281613396565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061340f601f836127eb565b915061341a826133d9565b602082019050919050565b6000602082019050818103600083015261343e81613402565b9050919050565b7f43616e206f6e6c79206d696e74203520746f6b656e7320617420612074696d6560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006134a16021836127eb565b91506134ac82613445565b604082019050919050565b600060208201905081810360008301526134d081613494565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c792e600082015250565b600061350d6020836127eb565b9150613518826134d7565b602082019050919050565b6000602082019050818103600083015261353c81613500565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613579601a836127eb565b915061358482613543565b602082019050919050565b600060208201905081810360008301526135a88161356c565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061360b6033836127eb565b9150613616826135af565b604082019050919050565b6000602082019050818103600083015261363a816135fe565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061369d602f836127eb565b91506136a882613641565b604082019050919050565b600060208201905081810360008301526136cc81613690565b9050919050565b600081905092915050565b60006136e9826127e0565b6136f381856136d3565b93506137038185602086016127fc565b80840191505092915050565b600061371b82856136de565b915061372782846136de565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061378f6026836127eb565b915061379a82613733565b604082019050919050565b600060208201905081810360008301526137be81613782565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006138216032836127eb565b915061382c826137c5565b604082019050919050565b6000602082019050818103600083015261385081613814565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006138b36026836127eb565b91506138be82613857565b604082019050919050565b600060208201905081810360008301526138e2816138a6565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139456025836127eb565b9150613950826138e9565b604082019050919050565b6000602082019050818103600083015261397481613938565b9050919050565b60006139868261289b565b91506139918361289b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139c6576139c5613067565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613a2d602a836127eb565b9150613a38826139d1565b604082019050919050565b60006020820190508181036000830152613a5c81613a20565b9050919050565b6000613a6e8261289b565b91506000821415613a8257613a81613067565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b6000613ab482613a8d565b613abe8185613a98565b9350613ace8185602086016127fc565b613ad78161282f565b840191505092915050565b6000608082019050613af76000830187612930565b613b046020830186612930565b613b1160408301856129c6565b8181036060830152613b238184613aa9565b905095945050505050565b600081519050613b3d81612751565b92915050565b600060208284031215613b5957613b5861271b565b5b6000613b6784828501613b2e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613baa8261289b565b9150613bb58361289b565b925082613bc557613bc4613b70565b5b828204905092915050565b6000613bdb8261289b565b9150613be68361289b565b925082821015613bf957613bf8613067565b5b828203905092915050565b6000613c0f8261289b565b9150613c1a8361289b565b925082613c2a57613c29613b70565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cc06021836127eb565b9150613ccb82613c64565b604082019050919050565b60006020820190508181036000830152613cef81613cb3565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000613d2c601d836127eb565b9150613d3782613cf6565b602082019050919050565b60006020820190508181036000830152613d5b81613d1f565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000613dbe6028836127eb565b9150613dc982613d62565b604082019050919050565b60006020820190508181036000830152613ded81613db1565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613e1b82613df4565b9150613e2683613df4565b9250826fffffffffffffffffffffffffffffffff03821115613e4b57613e4a613067565b5b82820190509291505056fea26469706673582212208d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db164736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001b68747470733a2f2f6b6576696e7a756b692e636c75622f6170692f0000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806371273bb7116100f9578063b88d4fde11610097578063e489d51011610071578063e489d510146104cd578063e985e9c5146104eb578063eb8d24441461051b578063f2fde38b14610539576101c4565b8063b88d4fde14610463578063c87b56dd1461047f578063d7e45cd7146104af576101c4565b806395d89b41116100d357806395d89b4114610403578063989bdbb614610421578063a0712d681461042b578063a22cb46514610447576101c4565b806371273bb7146103bd578063715018a6146103db5780638da5cb5b146103e5576101c4565b806334918dfd1161016657806355f804b31161014057806355f804b3146103235780635d8857961461033f5780636352211e1461035d57806370a082311461038d576101c4565b806334918dfd146102cd57806342842e0e146102d75780634f6ccce7146102f3576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd1461026357806323b872dd146102815780632f745c591461029d576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de919061277d565b610555565b6040516101f091906127c5565b60405180910390f35b61020161069f565b60405161020e9190612879565b60405180910390f35b610231600480360381019061022c91906128d1565b610731565b60405161023e919061293f565b60405180910390f35b610261600480360381019061025c9190612986565b6107b6565b005b61026b6108cf565b60405161027891906129d5565b60405180910390f35b61029b600480360381019061029691906129f0565b6108d9565b005b6102b760048036038101906102b29190612986565b6108e9565b6040516102c491906129d5565b60405180910390f35b6102d5610ae7565b005b6102f160048036038101906102ec91906129f0565b610b8f565b005b61030d600480360381019061030891906128d1565b610baf565b60405161031a91906129d5565b60405180910390f35b61033d60048036038101906103389190612b78565b610c02565b005b610347610ce8565b6040516103549190612879565b60405180910390f35b610377600480360381019061037291906128d1565b610d76565b604051610384919061293f565b60405180910390f35b6103a760048036038101906103a29190612bc1565b610d8c565b6040516103b491906129d5565b60405180910390f35b6103c5610e75565b6040516103d291906129d5565b60405180910390f35b6103e3610e7a565b005b6103ed610f02565b6040516103fa919061293f565b60405180910390f35b61040b610f2b565b6040516104189190612879565b60405180910390f35b610429610fbd565b005b610445600480360381019061044091906128d1565b611056565b005b610461600480360381019061045c9190612c1a565b6111b8565b005b61047d60048036038101906104789190612cfb565b611339565b005b610499600480360381019061049491906128d1565b611395565b6040516104a69190612879565b60405180910390f35b6104b761141d565b6040516104c491906127c5565b60405180910390f35b6104d5611430565b6040516104e291906129d5565b60405180910390f35b61050560048036038101906105009190612d7e565b611436565b60405161051291906127c5565b60405180910390f35b6105236114ca565b60405161053091906127c5565b60405180910390f35b610553600480360381019061054e9190612bc1565b6114dd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106985750610697826115d5565b5b9050919050565b6060600280546106ae90612ded565b80601f01602080910402602001604051908101604052809291908181526020018280546106da90612ded565b80156107275780601f106106fc57610100808354040283529160200191610727565b820191906000526020600020905b81548152906001019060200180831161070a57829003601f168201915b5050505050905090565b600061073c8261163f565b61077b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077290612e91565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107c182610d76565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990612f23565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661085161164d565b73ffffffffffffffffffffffffffffffffffffffff161480610880575061087f8161087a61164d565b611436565b5b6108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b690612fb5565b60405180910390fd5b6108ca838383611655565b505050565b6000600154905090565b6108e4838383611707565b505050565b60006108f483610d8c565b8210610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90613047565b60405180910390fd5b600061093f6108cf565b905060008060005b83811015610aa5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610a3957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a915786841415610a82578195505050505050610ae1565b8380610a8d90613096565b9450505b508080610a9d90613096565b915050610947565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890613151565b60405180910390fd5b92915050565b610aef61164d565b73ffffffffffffffffffffffffffffffffffffffff16610b0d610f02565b73ffffffffffffffffffffffffffffffffffffffff1614610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a906131bd565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b610baa83838360405180602001604052806000815250611339565b505050565b6000610bb96108cf565b8210610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf19061324f565b60405180910390fd5b819050919050565b610c0a61164d565b73ffffffffffffffffffffffffffffffffffffffff16610c28610f02565b73ffffffffffffffffffffffffffffffffffffffff1614610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c75906131bd565b60405180910390fd5b600a60019054906101000a900460ff1615610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc5906132bb565b60405180910390fd5b8060099080519060200190610ce4929190612634565b5050565b60098054610cf590612ded565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2190612ded565b8015610d6e5780601f10610d4357610100808354040283529160200191610d6e565b820191906000526020600020905b815481529060010190602001808311610d5157829003601f168201915b505050505081565b6000610d8182611c50565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df49061334d565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600581565b610e8261164d565b73ffffffffffffffffffffffffffffffffffffffff16610ea0610f02565b73ffffffffffffffffffffffffffffffffffffffff1614610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed906131bd565b60405180910390fd5b610f006000611dab565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f3a90612ded565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6690612ded565b8015610fb35780601f10610f8857610100808354040283529160200191610fb3565b820191906000526020600020905b815481529060010190602001808311610f9657829003601f168201915b5050505050905090565b610fc561164d565b73ffffffffffffffffffffffffffffffffffffffff16610fe3610f02565b73ffffffffffffffffffffffffffffffffffffffff1614611039576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611030906131bd565b60405180910390fd5b6001600a60016101000a81548160ff021916908315150217905550565b600a60009054906101000a900460ff166110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c906133b9565b60405180910390fd5b600260085414156110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290613425565b60405180910390fd5b600260088190555080600081118015611105575060058111155b611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906134b7565b60405180910390fd5b6108ae611161826111536108cf565b611e6f90919063ffffffff16565b11156111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990613523565b60405180910390fd5b6111ac3383611e85565b50600160088190555050565b6111c061164d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112259061358f565b60405180910390fd5b806007600061123b61164d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112e861164d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161132d91906127c5565b60405180910390a35050565b611344848484611707565b61135084848484611ea3565b61138f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138690613621565b60405180910390fd5b50505050565b60606113a08261163f565b6113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d6906136b3565b60405180910390fd5b60006113e961202b565b9050806113f5846120bd565b60405160200161140692919061370f565b604051602081830303815290604052915050919050565b600a60019054906101000a900460ff1681565b6108ae81565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b6114e561164d565b73ffffffffffffffffffffffffffffffffffffffff16611503610f02565b73ffffffffffffffffffffffffffffffffffffffff1614611559576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611550906131bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c0906137a5565b60405180910390fd5b6115d281611dab565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061171282611c50565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661173961164d565b73ffffffffffffffffffffffffffffffffffffffff161480611795575061175e61164d565b73ffffffffffffffffffffffffffffffffffffffff1661177d84610731565b73ffffffffffffffffffffffffffffffffffffffff16145b806117b157506117b082600001516117ab61164d565b611436565b5b9050806117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90613837565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c906138c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc9061395b565b60405180910390fd5b6118e2858585600161221e565b6118f26000848460000151611655565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184611ac9919061397b565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611be057611b3f8161163f565b15611bdf5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c488686866001612224565b505050505050565b611c586126ba565b611c618261163f565b611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9790613a43565b60405180910390fd5b60008290505b6000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d92578092505050611da6565b508080611d9e90613a63565b915050611ca6565b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611e7d919061397b565b905092915050565b611e9f82826040518060200160405280600081525061222a565b5050565b6000611ec48473ffffffffffffffffffffffffffffffffffffffff1661223c565b1561201e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eed61164d565b8786866040518563ffffffff1660e01b8152600401611f0f9493929190613ae2565b6020604051808303816000875af1925050508015611f4b57506040513d601f19601f82011682018060405250810190611f489190613b43565b60015b611fce573d8060008114611f7b576040519150601f19603f3d011682016040523d82523d6000602084013e611f80565b606091505b50600081511415611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90613621565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612023565b600190505b949350505050565b60606009805461203a90612ded565b80601f016020809104026020016040519081016040528092919081815260200182805461206690612ded565b80156120b35780601f10612088576101008083540402835291602001916120b3565b820191906000526020600020905b81548152906001019060200180831161209657829003601f168201915b5050505050905090565b60606000821415612105576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612219565b600082905060005b6000821461213757808061212090613096565b915050600a826121309190613b9f565b915061210d565b60008167ffffffffffffffff81111561215357612152612a4d565b5b6040519080825280601f01601f1916602001820160405280156121855781602001600182028036833780820191505090505b5090505b600085146122125760018261219e9190613bd0565b9150600a856121ad9190613c04565b60306121b9919061397b565b60f81b8183815181106121cf576121ce613c35565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561220b9190613b9f565b9450612189565b8093505050505b919050565b50505050565b50505050565b612237838383600161224f565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd90613cd6565b60405180910390fd5b6122cf8161163f565b1561230f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230690613d42565b60405180910390fd5b60008411612352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234990613dd4565b60405180910390fd5b61235f600086838761221e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123cc9190613e10565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff1661246f9190613e10565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561261757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156125f6576125b66000888488611ea3565b6125f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ec90613621565b60405180910390fd5b5b818061260190613096565b925050808061260f90613096565b91505061253f565b508060018190555061262c6000878488612224565b505050505050565b82805461264090612ded565b90600052602060002090601f01602090048101928261266257600085556126a9565b82601f1061267b57805160ff19168380011785556126a9565b828001600101855582156126a9579182015b828111156126a857825182559160200191906001019061268d565b5b5090506126b691906126f4565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561270d5760008160009055506001016126f5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61275a81612725565b811461276557600080fd5b50565b60008135905061277781612751565b92915050565b6000602082840312156127935761279261271b565b5b60006127a184828501612768565b91505092915050565b60008115159050919050565b6127bf816127aa565b82525050565b60006020820190506127da60008301846127b6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561281a5780820151818401526020810190506127ff565b83811115612829576000848401525b50505050565b6000601f19601f8301169050919050565b600061284b826127e0565b61285581856127eb565b93506128658185602086016127fc565b61286e8161282f565b840191505092915050565b600060208201905081810360008301526128938184612840565b905092915050565b6000819050919050565b6128ae8161289b565b81146128b957600080fd5b50565b6000813590506128cb816128a5565b92915050565b6000602082840312156128e7576128e661271b565b5b60006128f5848285016128bc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612929826128fe565b9050919050565b6129398161291e565b82525050565b60006020820190506129546000830184612930565b92915050565b6129638161291e565b811461296e57600080fd5b50565b6000813590506129808161295a565b92915050565b6000806040838503121561299d5761299c61271b565b5b60006129ab85828601612971565b92505060206129bc858286016128bc565b9150509250929050565b6129cf8161289b565b82525050565b60006020820190506129ea60008301846129c6565b92915050565b600080600060608486031215612a0957612a0861271b565b5b6000612a1786828701612971565b9350506020612a2886828701612971565b9250506040612a39868287016128bc565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a858261282f565b810181811067ffffffffffffffff82111715612aa457612aa3612a4d565b5b80604052505050565b6000612ab7612711565b9050612ac38282612a7c565b919050565b600067ffffffffffffffff821115612ae357612ae2612a4d565b5b612aec8261282f565b9050602081019050919050565b82818337600083830152505050565b6000612b1b612b1684612ac8565b612aad565b905082815260208101848484011115612b3757612b36612a48565b5b612b42848285612af9565b509392505050565b600082601f830112612b5f57612b5e612a43565b5b8135612b6f848260208601612b08565b91505092915050565b600060208284031215612b8e57612b8d61271b565b5b600082013567ffffffffffffffff811115612bac57612bab612720565b5b612bb884828501612b4a565b91505092915050565b600060208284031215612bd757612bd661271b565b5b6000612be584828501612971565b91505092915050565b612bf7816127aa565b8114612c0257600080fd5b50565b600081359050612c1481612bee565b92915050565b60008060408385031215612c3157612c3061271b565b5b6000612c3f85828601612971565b9250506020612c5085828601612c05565b9150509250929050565b600067ffffffffffffffff821115612c7557612c74612a4d565b5b612c7e8261282f565b9050602081019050919050565b6000612c9e612c9984612c5a565b612aad565b905082815260208101848484011115612cba57612cb9612a48565b5b612cc5848285612af9565b509392505050565b600082601f830112612ce257612ce1612a43565b5b8135612cf2848260208601612c8b565b91505092915050565b60008060008060808587031215612d1557612d1461271b565b5b6000612d2387828801612971565b9450506020612d3487828801612971565b9350506040612d45878288016128bc565b925050606085013567ffffffffffffffff811115612d6657612d65612720565b5b612d7287828801612ccd565b91505092959194509250565b60008060408385031215612d9557612d9461271b565b5b6000612da385828601612971565b9250506020612db485828601612971565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0557607f821691505b60208210811415612e1957612e18612dbe565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000612e7b602d836127eb565b9150612e8682612e1f565b604082019050919050565b60006020820190508181036000830152612eaa81612e6e565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f0d6022836127eb565b9150612f1882612eb1565b604082019050919050565b60006020820190508181036000830152612f3c81612f00565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000612f9f6039836127eb565b9150612faa82612f43565b604082019050919050565b60006020820190508181036000830152612fce81612f92565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006130316022836127eb565b915061303c82612fd5565b604082019050919050565b6000602082019050818103600083015261306081613024565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130a18261289b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130d4576130d3613067565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061313b602e836127eb565b9150613146826130df565b604082019050919050565b6000602082019050818103600083015261316a8161312e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131a76020836127eb565b91506131b282613171565b602082019050919050565b600060208201905081810360008301526131d68161319a565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006132396023836127eb565b9150613244826131dd565b604082019050919050565b600060208201905081810360008301526132688161322c565b9050919050565b7f4d65746164617461206973206c6f636b65640000000000000000000000000000600082015250565b60006132a56012836127eb565b91506132b08261326f565b602082019050919050565b600060208201905081810360008301526132d481613298565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613337602b836127eb565b9150613342826132db565b604082019050919050565b600060208201905081810360008301526133668161332a565b9050919050565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b60006133a36013836127eb565b91506133ae8261336d565b602082019050919050565b600060208201905081810360008301526133d281613396565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061340f601f836127eb565b915061341a826133d9565b602082019050919050565b6000602082019050818103600083015261343e81613402565b9050919050565b7f43616e206f6e6c79206d696e74203520746f6b656e7320617420612074696d6560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006134a16021836127eb565b91506134ac82613445565b604082019050919050565b600060208201905081810360008301526134d081613494565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c792e600082015250565b600061350d6020836127eb565b9150613518826134d7565b602082019050919050565b6000602082019050818103600083015261353c81613500565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613579601a836127eb565b915061358482613543565b602082019050919050565b600060208201905081810360008301526135a88161356c565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061360b6033836127eb565b9150613616826135af565b604082019050919050565b6000602082019050818103600083015261363a816135fe565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061369d602f836127eb565b91506136a882613641565b604082019050919050565b600060208201905081810360008301526136cc81613690565b9050919050565b600081905092915050565b60006136e9826127e0565b6136f381856136d3565b93506137038185602086016127fc565b80840191505092915050565b600061371b82856136de565b915061372782846136de565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061378f6026836127eb565b915061379a82613733565b604082019050919050565b600060208201905081810360008301526137be81613782565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006138216032836127eb565b915061382c826137c5565b604082019050919050565b6000602082019050818103600083015261385081613814565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006138b36026836127eb565b91506138be82613857565b604082019050919050565b600060208201905081810360008301526138e2816138a6565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139456025836127eb565b9150613950826138e9565b604082019050919050565b6000602082019050818103600083015261397481613938565b9050919050565b60006139868261289b565b91506139918361289b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139c6576139c5613067565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613a2d602a836127eb565b9150613a38826139d1565b604082019050919050565b60006020820190508181036000830152613a5c81613a20565b9050919050565b6000613a6e8261289b565b91506000821415613a8257613a81613067565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b6000613ab482613a8d565b613abe8185613a98565b9350613ace8185602086016127fc565b613ad78161282f565b840191505092915050565b6000608082019050613af76000830187612930565b613b046020830186612930565b613b1160408301856129c6565b8181036060830152613b238184613aa9565b905095945050505050565b600081519050613b3d81612751565b92915050565b600060208284031215613b5957613b5861271b565b5b6000613b6784828501613b2e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613baa8261289b565b9150613bb58361289b565b925082613bc557613bc4613b70565b5b828204905092915050565b6000613bdb8261289b565b9150613be68361289b565b925082821015613bf957613bf8613067565b5b828203905092915050565b6000613c0f8261289b565b9150613c1a8361289b565b925082613c2a57613c29613b70565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cc06021836127eb565b9150613ccb82613c64565b604082019050919050565b60006020820190508181036000830152613cef81613cb3565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000613d2c601d836127eb565b9150613d3782613cf6565b602082019050919050565b60006020820190508181036000830152613d5b81613d1f565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000613dbe6028836127eb565b9150613dc982613d62565b604082019050919050565b60006020820190508181036000830152613ded81613db1565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613e1b82613df4565b9150613e2683613df4565b9250826fffffffffffffffffffffffffffffffff03821115613e4b57613e4a613067565b5b82820190509291505056fea26469706673582212208d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db164736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001b68747470733a2f2f6b6576696e7a756b692e636c75622f6170692f0000000000

-----Decoded View---------------
Arg [0] : _initialBaseURI (string): https://kevinzuki.club/api/
Arg [1] : _saleIsActive (bool): True

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [3] : 68747470733a2f2f6b6576696e7a756b692e636c75622f6170692f0000000000


Deployed Bytecode Sourcemap

48228:2127:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35440:372;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37261:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38822:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38343:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33881:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39698:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34545:823;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49294:89;;;:::i;:::-;;39931:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34058:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49694:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48394:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37070:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35876:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48552:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2500:103;;;:::i;:::-;;1849:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37430:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50267:85;;;:::i;:::-;;49391:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39108:288;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40179:355;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49875:384;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48461:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48498:47;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39467:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48430:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2758:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35440:372;35542:4;35594:25;35579:40;;;:11;:40;;;;:105;;;;35651:33;35636:48;;;:11;:48;;;;35579:105;:172;;;;35716:35;35701:50;;;:11;:50;;;;35579:172;:225;;;;35768:36;35792:11;35768:23;:36::i;:::-;35579:225;35559:245;;35440:372;;;:::o;37261:100::-;37315:13;37348:5;37341:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37261:100;:::o;38822:214::-;38890:7;38918:16;38926:7;38918;:16::i;:::-;38910:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;39004:15;:24;39020:7;39004:24;;;;;;;;;;;;;;;;;;;;;38997:31;;38822:214;;;:::o;38343:413::-;38416:13;38432:24;38448:7;38432:15;:24::i;:::-;38416:40;;38481:5;38475:11;;:2;:11;;;;38467:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38576:5;38560:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;38585:37;38602:5;38609:12;:10;:12::i;:::-;38585:16;:37::i;:::-;38560:62;38538:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;38720:28;38729:2;38733:7;38742:5;38720:8;:28::i;:::-;38405:351;38343:413;;:::o;33881:100::-;33934:7;33961:12;;33954:19;;33881:100;:::o;39698:162::-;39824:28;39834:4;39840:2;39844:7;39824:9;:28::i;:::-;39698:162;;;:::o;34545:823::-;34634:7;34670:16;34680:5;34670:9;:16::i;:::-;34662:5;:24;34654:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;34736:22;34761:13;:11;:13::i;:::-;34736:38;;34785:19;34819:25;34873:9;34868:426;34892:14;34888:1;:18;34868:426;;;34928:31;34962:11;:14;34974:1;34962:14;;;;;;;;;;;34928:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35021:1;34995:28;;:9;:14;;;:28;;;34991:103;;35064:9;:14;;;35044:34;;34991:103;35133:5;35112:26;;:17;:26;;;35108:175;;;35178:5;35163:11;:20;35159:77;;;35215:1;35208:8;;;;;;;;;35159:77;35254:13;;;;;:::i;:::-;;;;35108:175;34913:381;34908:3;;;;;:::i;:::-;;;;34868:426;;;;35304:56;;;;;;;;;;:::i;:::-;;;;;;;;34545:823;;;;;:::o;49294:89::-;2080:12;:10;:12::i;:::-;2069:23;;:7;:5;:7::i;:::-;:23;;;2061:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49363:12:::1;;;;;;;;;;;49362:13;49347:12;;:28;;;;;;;;;;;;;;;;;;49294:89::o:0;39931:177::-;40061:39;40078:4;40084:2;40088:7;40061:39;;;;;;;;;;;;:16;:39::i;:::-;39931:177;;;:::o;34058:187::-;34125:7;34161:13;:11;:13::i;:::-;34153:5;:21;34145:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;34232:5;34225:12;;34058:187;;;:::o;49694:173::-;2080:12;:10;:12::i;:::-;2069:23;;:7;:5;:7::i;:::-;:23;;;2061:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49780:16:::1;;;;;;;;;;;49779:17;49771:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;49848:11;49830:15;:29;;;;;;;;;;;;:::i;:::-;;49694:173:::0;:::o;48394:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37070:124::-;37134:7;37161:20;37173:7;37161:11;:20::i;:::-;:25;;;37154:32;;37070:124;;;:::o;35876:221::-;35940:7;35985:1;35968:19;;:5;:19;;;;35960:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;36061:12;:19;36074:5;36061:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;36053:36;;36046:43;;35876:221;;;:::o;48552:45::-;48596:1;48552:45;:::o;2500:103::-;2080:12;:10;:12::i;:::-;2069:23;;:7;:5;:7::i;:::-;:23;;;2061:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2565:30:::1;2592:1;2565:18;:30::i;:::-;2500:103::o:0;1849:87::-;1895:7;1922:6;;;;;;;;;;;1915:13;;1849:87;:::o;37430:104::-;37486:13;37519:7;37512:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37430:104;:::o;50267:85::-;2080:12;:10;:12::i;:::-;2069:23;;:7;:5;:7::i;:::-;:23;;;2061:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50340:4:::1;50321:16;;:23;;;;;;;;;;;;;;;;;;50267:85::o:0;49391:171::-;49230:12;;;;;;;;;;;49222:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;5035:1:::1;5633:7;;:19;;5625:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5035:1;5766:7;:18;;;;49501:6:::2;48930:1;48921:6;:10;:41;;;;;48596:1;48935:6;:27;;48921:41;48899:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;48541:4;49056:25;49074:6;49056:13;:11;:13::i;:::-;:17;;:25;;;;:::i;:::-;:45;;49034:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;49525:29:::3;49535:10;49547:6;49525:9;:29::i;:::-;5797:1:::2;4991::::1;5945:7;:22;;;;49391:171:::0;:::o;39108:288::-;39215:12;:10;:12::i;:::-;39203:24;;:8;:24;;;;39195:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;39316:8;39271:18;:32;39290:12;:10;:12::i;:::-;39271:32;;;;;;;;;;;;;;;:42;39304:8;39271:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;39369:8;39340:48;;39355:12;:10;:12::i;:::-;39340:48;;;39379:8;39340:48;;;;;;:::i;:::-;;;;;;;;39108:288;;:::o;40179:355::-;40338:28;40348:4;40354:2;40358:7;40338:9;:28::i;:::-;40399:48;40422:4;40428:2;40432:7;40441:5;40399:22;:48::i;:::-;40377:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;40179:355;;;;:::o;49875:384::-;49993:13;50046:16;50054:7;50046;:16::i;:::-;50024:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;50150:18;50171:10;:8;:10::i;:::-;50150:31;;50225:4;50231:18;:7;:16;:18::i;:::-;50208:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50194:57;;;49875:384;;;:::o;48461:28::-;;;;;;;;;;;;;:::o;48498:47::-;48541:4;48498:47;:::o;39467:164::-;39564:4;39588:18;:25;39607:5;39588:25;;;;;;;;;;;;;;;:35;39614:8;39588:35;;;;;;;;;;;;;;;;;;;;;;;;;39581:42;;39467:164;;;;:::o;48430:24::-;;;;;;;;;;;;;:::o;2758:201::-;2080:12;:10;:12::i;:::-;2069:23;;:7;:5;:7::i;:::-;:23;;;2061:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2867:1:::1;2847:22;;:8;:22;;;;2839:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2923:28;2942:8;2923:18;:28::i;:::-;2758:201:::0;:::o;31979:157::-;32064:4;32103:25;32088:40;;;:11;:40;;;;32081:47;;31979:157;;;:::o;40789:111::-;40846:4;40880:12;;40870:7;:22;40863:29;;40789:111;;;:::o;659:98::-;712:7;739:10;732:17;;659:98;:::o;45437:196::-;45579:2;45552:15;:24;45568:7;45552:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45617:7;45613:2;45597:28;;45606:5;45597:28;;;;;;;;;;;;45437:196;;;:::o;43452:1867::-;43567:35;43605:20;43617:7;43605:11;:20::i;:::-;43567:58;;43638:22;43680:13;:18;;;43664:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;43739:12;:10;:12::i;:::-;43715:36;;:20;43727:7;43715:11;:20::i;:::-;:36;;;43664:87;:154;;;;43768:50;43785:13;:18;;;43805:12;:10;:12::i;:::-;43768:16;:50::i;:::-;43664:154;43638:181;;43840:17;43832:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;43955:4;43933:26;;:13;:18;;;:26;;;43925:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;44035:1;44021:16;;:2;:16;;;;44013:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;44092:43;44114:4;44120:2;44124:7;44133:1;44092:21;:43::i;:::-;44200:49;44217:1;44221:7;44230:13;:18;;;44200:8;:49::i;:::-;44484:1;44454:12;:18;44467:4;44454:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44528:1;44500:12;:16;44513:2;44500:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44581:2;44553:11;:20;44565:7;44553:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;44639:15;44594:11;:20;44606:7;44594:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;44895:19;44927:1;44917:7;:11;;;;:::i;:::-;44895:33;;44984:1;44943:43;;:11;:24;44955:11;44943:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;44939:275;;;45007:20;45015:11;45007:7;:20::i;:::-;45003:200;;;45080:13;:18;;;45048:11;:24;45060:11;45048:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;45159:13;:28;;;45117:11;:24;45129:11;45117:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;45003:200;44939:275;45250:7;45246:2;45231:27;;45240:4;45231:27;;;;;;;;;;;;45269:42;45290:4;45296:2;45300:7;45309:1;45269:20;:42::i;:::-;43556:1763;;;43452:1867;;;:::o;36536:472::-;36597:21;;:::i;:::-;36639:16;36647:7;36639;:16::i;:::-;36631:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36720:12;36735:7;36720:22;;36715:216;36769:31;36803:11;:17;36815:4;36803:17;;;;;;;;;;;36769:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36865:1;36839:28;;:9;:14;;;:28;;;36835:85;;36895:9;36888:16;;;;;;36835:85;36754:177;36746:6;;;;;:::i;:::-;;;;36715:216;;36536:472;;;;:::o;3119:191::-;3193:16;3212:6;;;;;;;;;;;3193:25;;3238:8;3229:6;;:17;;;;;;;;;;;;;;;;;;3293:8;3262:40;;3283:8;3262:40;;;;;;;;;;;;3182:128;3119:191;:::o;10794:98::-;10852:7;10883:1;10879;:5;;;;:::i;:::-;10872:12;;10794:98;;;;:::o;40908:104::-;40977:27;40987:2;40991:8;40977:27;;;;;;;;;;;;:9;:27::i;:::-;40908:104;;:::o;46198:804::-;46353:4;46374:15;:2;:13;;;:15::i;:::-;46370:625;;;46426:2;46410:36;;;46447:12;:10;:12::i;:::-;46461:4;46467:7;46476:5;46410:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46406:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46673:1;46656:6;:13;:18;46652:273;;;46699:61;;;;;;;;;;:::i;:::-;;;;;;;;46652:273;46875:6;46869:13;46860:6;46856:2;46852:15;46845:38;46406:534;46543:45;;;46533:55;;;:6;:55;;;;46526:62;;;;;46370:625;46979:4;46972:11;;46198:804;;;;;;;:::o;49570:116::-;49630:13;49663:15;49656:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49570:116;:::o;6264:723::-;6320:13;6550:1;6541:5;:10;6537:53;;;6568:10;;;;;;;;;;;;;;;;;;;;;6537:53;6600:12;6615:5;6600:20;;6631:14;6656:78;6671:1;6663:4;:9;6656:78;;6689:8;;;;;:::i;:::-;;;;6720:2;6712:10;;;;;:::i;:::-;;;6656:78;;;6744:19;6776:6;6766:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6744:39;;6794:154;6810:1;6801:5;:10;6794:154;;6838:1;6828:11;;;;;:::i;:::-;;;6905:2;6897:5;:10;;;;:::i;:::-;6884:2;:24;;;;:::i;:::-;6871:39;;6854:6;6861;6854:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6934:2;6925:11;;;;;:::i;:::-;;;6794:154;;;6972:6;6958:21;;;;;6264:723;;;;:::o;47490:159::-;;;;;:::o;48061:158::-;;;;;:::o;41375:163::-;41498:32;41504:2;41508:8;41518:5;41525:4;41498:5;:32::i;:::-;41375:163;;;:::o;15696:387::-;15756:4;15964:12;16031:7;16019:20;16011:28;;16074:1;16067:4;:8;16060:15;;;15696:387;;;:::o;41797:1401::-;41936:20;41959:12;;41936:35;;42004:1;41990:16;;:2;:16;;;;41982:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;42189:21;42197:12;42189:7;:21::i;:::-;42188:22;42180:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42274:1;42263:8;:12;42255:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;42333:61;42363:1;42367:2;42371:12;42385:8;42333:21;:61::i;:::-;42443:8;42407:12;:16;42420:2;42407:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42504:8;42463:12;:16;42476:2;42463:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42559:2;42526:11;:25;42538:12;42526:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;42622:15;42572:11;:25;42584:12;42572:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;42651:20;42674:12;42651:35;;42704:9;42699:381;42723:8;42719:1;:12;42699:381;;;42783:12;42779:2;42758:38;;42775:1;42758:38;;;;;;;;;;;;42815:4;42811:229;;;42870:59;42901:1;42905:2;42909:12;42923:5;42870:22;:59::i;:::-;42840:184;;;;;;;;;;;;:::i;:::-;;;;;;;;;42811:229;43054:14;;;;;:::i;:::-;;;;42733:3;;;;;:::i;:::-;;;;42699:381;;;;43107:12;43092;:27;;;;43130:60;43159:1;43163:2;43167:12;43181:8;43130:20;:60::i;:::-;41925:1273;;41797:1401;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:232::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:15;12837:2;12829:6;12825:15;12818:40;12633:232;:::o;12871:366::-;13013:3;13034:67;13098:2;13093:3;13034:67;:::i;:::-;13027:74;;13110:93;13199:3;13110:93;:::i;:::-;13228:2;13223:3;13219:12;13212:19;;12871:366;;;:::o;13243:419::-;13409:4;13447:2;13436:9;13432:18;13424:26;;13496:9;13490:4;13486:20;13482:1;13471:9;13467:17;13460:47;13524:131;13650:4;13524:131;:::i;:::-;13516:139;;13243:419;;;:::o;13668:221::-;13808:34;13804:1;13796:6;13792:14;13785:58;13877:4;13872:2;13864:6;13860:15;13853:29;13668:221;:::o;13895:366::-;14037:3;14058:67;14122:2;14117:3;14058:67;:::i;:::-;14051:74;;14134:93;14223:3;14134:93;:::i;:::-;14252:2;14247:3;14243:12;14236:19;;13895:366;;;:::o;14267:419::-;14433:4;14471:2;14460:9;14456:18;14448:26;;14520:9;14514:4;14510:20;14506:1;14495:9;14491:17;14484:47;14548:131;14674:4;14548:131;:::i;:::-;14540:139;;14267:419;;;:::o;14692:244::-;14832:34;14828:1;14820:6;14816:14;14809:58;14901:27;14896:2;14888:6;14884:15;14877:52;14692:244;:::o;14942:366::-;15084:3;15105:67;15169:2;15164:3;15105:67;:::i;:::-;15098:74;;15181:93;15270:3;15181:93;:::i;:::-;15299:2;15294:3;15290:12;15283:19;;14942:366;;;:::o;15314:419::-;15480:4;15518:2;15507:9;15503:18;15495:26;;15567:9;15561:4;15557:20;15553:1;15542:9;15538:17;15531:47;15595:131;15721:4;15595:131;:::i;:::-;15587:139;;15314:419;;;:::o;15739:221::-;15879:34;15875:1;15867:6;15863:14;15856:58;15948:4;15943:2;15935:6;15931:15;15924:29;15739:221;:::o;15966:366::-;16108:3;16129:67;16193:2;16188:3;16129:67;:::i;:::-;16122:74;;16205:93;16294:3;16205:93;:::i;:::-;16323:2;16318:3;16314:12;16307:19;;15966:366;;;:::o;16338:419::-;16504:4;16542:2;16531:9;16527:18;16519:26;;16591:9;16585:4;16581:20;16577:1;16566:9;16562:17;16555:47;16619:131;16745:4;16619:131;:::i;:::-;16611:139;;16338:419;;;:::o;16763:180::-;16811:77;16808:1;16801:88;16908:4;16905:1;16898:15;16932:4;16929:1;16922:15;16949:233;16988:3;17011:24;17029:5;17011:24;:::i;:::-;17002:33;;17057:66;17050:5;17047:77;17044:103;;;17127:18;;:::i;:::-;17044:103;17174:1;17167:5;17163:13;17156:20;;16949:233;;;:::o;17188:::-;17328:34;17324:1;17316:6;17312:14;17305:58;17397:16;17392:2;17384:6;17380:15;17373:41;17188:233;:::o;17427:366::-;17569:3;17590:67;17654:2;17649:3;17590:67;:::i;:::-;17583:74;;17666:93;17755:3;17666:93;:::i;:::-;17784:2;17779:3;17775:12;17768:19;;17427:366;;;:::o;17799:419::-;17965:4;18003:2;17992:9;17988:18;17980:26;;18052:9;18046:4;18042:20;18038:1;18027:9;18023:17;18016:47;18080:131;18206:4;18080:131;:::i;:::-;18072:139;;17799:419;;;:::o;18224:182::-;18364:34;18360:1;18352:6;18348:14;18341:58;18224:182;:::o;18412:366::-;18554:3;18575:67;18639:2;18634:3;18575:67;:::i;:::-;18568:74;;18651:93;18740:3;18651:93;:::i;:::-;18769:2;18764:3;18760:12;18753:19;;18412:366;;;:::o;18784:419::-;18950:4;18988:2;18977:9;18973:18;18965:26;;19037:9;19031:4;19027:20;19023:1;19012:9;19008:17;19001:47;19065:131;19191:4;19065:131;:::i;:::-;19057:139;;18784:419;;;:::o;19209:222::-;19349:34;19345:1;19337:6;19333:14;19326:58;19418:5;19413:2;19405:6;19401:15;19394:30;19209:222;:::o;19437:366::-;19579:3;19600:67;19664:2;19659:3;19600:67;:::i;:::-;19593:74;;19676:93;19765:3;19676:93;:::i;:::-;19794:2;19789:3;19785:12;19778:19;;19437:366;;;:::o;19809:419::-;19975:4;20013:2;20002:9;19998:18;19990:26;;20062:9;20056:4;20052:20;20048:1;20037:9;20033:17;20026:47;20090:131;20216:4;20090:131;:::i;:::-;20082:139;;19809:419;;;:::o;20234:168::-;20374:20;20370:1;20362:6;20358:14;20351:44;20234:168;:::o;20408:366::-;20550:3;20571:67;20635:2;20630:3;20571:67;:::i;:::-;20564:74;;20647:93;20736:3;20647:93;:::i;:::-;20765:2;20760:3;20756:12;20749:19;;20408:366;;;:::o;20780:419::-;20946:4;20984:2;20973:9;20969:18;20961:26;;21033:9;21027:4;21023:20;21019:1;21008:9;21004:17;20997:47;21061:131;21187:4;21061:131;:::i;:::-;21053:139;;20780:419;;;:::o;21205:230::-;21345:34;21341:1;21333:6;21329:14;21322:58;21414:13;21409:2;21401:6;21397:15;21390:38;21205:230;:::o;21441:366::-;21583:3;21604:67;21668:2;21663:3;21604:67;:::i;:::-;21597:74;;21680:93;21769:3;21680:93;:::i;:::-;21798:2;21793:3;21789:12;21782:19;;21441:366;;;:::o;21813:419::-;21979:4;22017:2;22006:9;22002:18;21994:26;;22066:9;22060:4;22056:20;22052:1;22041:9;22037:17;22030:47;22094:131;22220:4;22094:131;:::i;:::-;22086:139;;21813:419;;;:::o;22238:169::-;22378:21;22374:1;22366:6;22362:14;22355:45;22238:169;:::o;22413:366::-;22555:3;22576:67;22640:2;22635:3;22576:67;:::i;:::-;22569:74;;22652:93;22741:3;22652:93;:::i;:::-;22770:2;22765:3;22761:12;22754:19;;22413:366;;;:::o;22785:419::-;22951:4;22989:2;22978:9;22974:18;22966:26;;23038:9;23032:4;23028:20;23024:1;23013:9;23009:17;23002:47;23066:131;23192:4;23066:131;:::i;:::-;23058:139;;22785:419;;;:::o;23210:181::-;23350:33;23346:1;23338:6;23334:14;23327:57;23210:181;:::o;23397:366::-;23539:3;23560:67;23624:2;23619:3;23560:67;:::i;:::-;23553:74;;23636:93;23725:3;23636:93;:::i;:::-;23754:2;23749:3;23745:12;23738:19;;23397:366;;;:::o;23769:419::-;23935:4;23973:2;23962:9;23958:18;23950:26;;24022:9;24016:4;24012:20;24008:1;23997:9;23993:17;23986:47;24050:131;24176:4;24050:131;:::i;:::-;24042:139;;23769:419;;;:::o;24194:220::-;24334:34;24330:1;24322:6;24318:14;24311:58;24403:3;24398:2;24390:6;24386:15;24379:28;24194:220;:::o;24420:366::-;24562:3;24583:67;24647:2;24642:3;24583:67;:::i;:::-;24576:74;;24659:93;24748:3;24659:93;:::i;:::-;24777:2;24772:3;24768:12;24761:19;;24420:366;;;:::o;24792:419::-;24958:4;24996:2;24985:9;24981:18;24973:26;;25045:9;25039:4;25035:20;25031:1;25020:9;25016:17;25009:47;25073:131;25199:4;25073:131;:::i;:::-;25065:139;;24792:419;;;:::o;25217:182::-;25357:34;25353:1;25345:6;25341:14;25334:58;25217:182;:::o;25405:366::-;25547:3;25568:67;25632:2;25627:3;25568:67;:::i;:::-;25561:74;;25644:93;25733:3;25644:93;:::i;:::-;25762:2;25757:3;25753:12;25746:19;;25405:366;;;:::o;25777:419::-;25943:4;25981:2;25970:9;25966:18;25958:26;;26030:9;26024:4;26020:20;26016:1;26005:9;26001:17;25994:47;26058:131;26184:4;26058:131;:::i;:::-;26050:139;;25777:419;;;:::o;26202:176::-;26342:28;26338:1;26330:6;26326:14;26319:52;26202:176;:::o;26384:366::-;26526:3;26547:67;26611:2;26606:3;26547:67;:::i;:::-;26540:74;;26623:93;26712:3;26623:93;:::i;:::-;26741:2;26736:3;26732:12;26725:19;;26384:366;;;:::o;26756:419::-;26922:4;26960:2;26949:9;26945:18;26937:26;;27009:9;27003:4;26999:20;26995:1;26984:9;26980:17;26973:47;27037:131;27163:4;27037:131;:::i;:::-;27029:139;;26756:419;;;:::o;27181:238::-;27321:34;27317:1;27309:6;27305:14;27298:58;27390:21;27385:2;27377:6;27373:15;27366:46;27181:238;:::o;27425:366::-;27567:3;27588:67;27652:2;27647:3;27588:67;:::i;:::-;27581:74;;27664:93;27753:3;27664:93;:::i;:::-;27782:2;27777:3;27773:12;27766:19;;27425:366;;;:::o;27797:419::-;27963:4;28001:2;27990:9;27986:18;27978:26;;28050:9;28044:4;28040:20;28036:1;28025:9;28021:17;28014:47;28078:131;28204:4;28078:131;:::i;:::-;28070:139;;27797:419;;;:::o;28222:234::-;28362:34;28358:1;28350:6;28346:14;28339:58;28431:17;28426:2;28418:6;28414:15;28407:42;28222:234;:::o;28462:366::-;28604:3;28625:67;28689:2;28684:3;28625:67;:::i;:::-;28618:74;;28701:93;28790:3;28701:93;:::i;:::-;28819:2;28814:3;28810:12;28803:19;;28462:366;;;:::o;28834:419::-;29000:4;29038:2;29027:9;29023:18;29015:26;;29087:9;29081:4;29077:20;29073:1;29062:9;29058:17;29051:47;29115:131;29241:4;29115:131;:::i;:::-;29107:139;;28834:419;;;:::o;29259:148::-;29361:11;29398:3;29383:18;;29259:148;;;;:::o;29413:377::-;29519:3;29547:39;29580:5;29547:39;:::i;:::-;29602:89;29684:6;29679:3;29602:89;:::i;:::-;29595:96;;29700:52;29745:6;29740:3;29733:4;29726:5;29722:16;29700:52;:::i;:::-;29777:6;29772:3;29768:16;29761:23;;29523:267;29413:377;;;;:::o;29796:435::-;29976:3;29998:95;30089:3;30080:6;29998:95;:::i;:::-;29991:102;;30110:95;30201:3;30192:6;30110:95;:::i;:::-;30103:102;;30222:3;30215:10;;29796:435;;;;;:::o;30237:225::-;30377:34;30373:1;30365:6;30361:14;30354:58;30446:8;30441:2;30433:6;30429:15;30422:33;30237:225;:::o;30468:366::-;30610:3;30631:67;30695:2;30690:3;30631:67;:::i;:::-;30624:74;;30707:93;30796:3;30707:93;:::i;:::-;30825:2;30820:3;30816:12;30809:19;;30468:366;;;:::o;30840:419::-;31006:4;31044:2;31033:9;31029:18;31021:26;;31093:9;31087:4;31083:20;31079:1;31068:9;31064:17;31057:47;31121:131;31247:4;31121:131;:::i;:::-;31113:139;;30840:419;;;:::o;31265:237::-;31405:34;31401:1;31393:6;31389:14;31382:58;31474:20;31469:2;31461:6;31457:15;31450:45;31265:237;:::o;31508:366::-;31650:3;31671:67;31735:2;31730:3;31671:67;:::i;:::-;31664:74;;31747:93;31836:3;31747:93;:::i;:::-;31865:2;31860:3;31856:12;31849:19;;31508:366;;;:::o;31880:419::-;32046:4;32084:2;32073:9;32069:18;32061:26;;32133:9;32127:4;32123:20;32119:1;32108:9;32104:17;32097:47;32161:131;32287:4;32161:131;:::i;:::-;32153:139;;31880:419;;;:::o;32305:225::-;32445:34;32441:1;32433:6;32429:14;32422:58;32514:8;32509:2;32501:6;32497:15;32490:33;32305:225;:::o;32536:366::-;32678:3;32699:67;32763:2;32758:3;32699:67;:::i;:::-;32692:74;;32775:93;32864:3;32775:93;:::i;:::-;32893:2;32888:3;32884:12;32877:19;;32536:366;;;:::o;32908:419::-;33074:4;33112:2;33101:9;33097:18;33089:26;;33161:9;33155:4;33151:20;33147:1;33136:9;33132:17;33125:47;33189:131;33315:4;33189:131;:::i;:::-;33181:139;;32908:419;;;:::o;33333:224::-;33473:34;33469:1;33461:6;33457:14;33450:58;33542:7;33537:2;33529:6;33525:15;33518:32;33333:224;:::o;33563:366::-;33705:3;33726:67;33790:2;33785:3;33726:67;:::i;:::-;33719:74;;33802:93;33891:3;33802:93;:::i;:::-;33920:2;33915:3;33911:12;33904:19;;33563:366;;;:::o;33935:419::-;34101:4;34139:2;34128:9;34124:18;34116:26;;34188:9;34182:4;34178:20;34174:1;34163:9;34159:17;34152:47;34216:131;34342:4;34216:131;:::i;:::-;34208:139;;33935:419;;;:::o;34360:305::-;34400:3;34419:20;34437:1;34419:20;:::i;:::-;34414:25;;34453:20;34471:1;34453:20;:::i;:::-;34448:25;;34607:1;34539:66;34535:74;34532:1;34529:81;34526:107;;;34613:18;;:::i;:::-;34526:107;34657:1;34654;34650:9;34643:16;;34360:305;;;;:::o;34671:229::-;34811:34;34807:1;34799:6;34795:14;34788:58;34880:12;34875:2;34867:6;34863:15;34856:37;34671:229;:::o;34906:366::-;35048:3;35069:67;35133:2;35128:3;35069:67;:::i;:::-;35062:74;;35145:93;35234:3;35145:93;:::i;:::-;35263:2;35258:3;35254:12;35247:19;;34906:366;;;:::o;35278:419::-;35444:4;35482:2;35471:9;35467:18;35459:26;;35531:9;35525:4;35521:20;35517:1;35506:9;35502:17;35495:47;35559:131;35685:4;35559:131;:::i;:::-;35551:139;;35278:419;;;:::o;35703:171::-;35742:3;35765:24;35783:5;35765:24;:::i;:::-;35756:33;;35811:4;35804:5;35801:15;35798:41;;;35819:18;;:::i;:::-;35798:41;35866:1;35859:5;35855:13;35848:20;;35703:171;;;:::o;36917:98::-;36968:6;37002:5;36996:12;36986:22;;36917:98;;;:::o;37021:168::-;37104:11;37138:6;37133:3;37126:19;37178:4;37173:3;37169:14;37154:29;;37021:168;;;;:::o;37195:360::-;37281:3;37309:38;37341:5;37309:38;:::i;:::-;37363:70;37426:6;37421:3;37363:70;:::i;:::-;37356:77;;37442:52;37487:6;37482:3;37475:4;37468:5;37464:16;37442:52;:::i;:::-;37519:29;37541:6;37519:29;:::i;:::-;37514:3;37510:39;37503:46;;37285:270;37195:360;;;;:::o;37561:640::-;37756:4;37794:3;37783:9;37779:19;37771:27;;37808:71;37876:1;37865:9;37861:17;37852:6;37808:71;:::i;:::-;37889:72;37957:2;37946:9;37942:18;37933:6;37889:72;:::i;:::-;37971;38039:2;38028:9;38024:18;38015:6;37971:72;:::i;:::-;38090:9;38084:4;38080:20;38075:2;38064:9;38060:18;38053:48;38118:76;38189:4;38180:6;38118:76;:::i;:::-;38110:84;;37561:640;;;;;;;:::o;38207:141::-;38263:5;38294:6;38288:13;38279:22;;38310:32;38336:5;38310:32;:::i;:::-;38207:141;;;;:::o;38354:349::-;38423:6;38472:2;38460:9;38451:7;38447:23;38443:32;38440:119;;;38478:79;;:::i;:::-;38440:119;38598:1;38623:63;38678:7;38669:6;38658:9;38654:22;38623:63;:::i;:::-;38613:73;;38569:127;38354:349;;;;:::o;38709:180::-;38757:77;38754:1;38747:88;38854:4;38851:1;38844:15;38878:4;38875:1;38868:15;38895:185;38935:1;38952:20;38970:1;38952:20;:::i;:::-;38947:25;;38986:20;39004:1;38986:20;:::i;:::-;38981:25;;39025:1;39015:35;;39030:18;;:::i;:::-;39015:35;39072:1;39069;39065:9;39060:14;;38895:185;;;;:::o;39086:191::-;39126:4;39146:20;39164:1;39146:20;:::i;:::-;39141:25;;39180:20;39198:1;39180:20;:::i;:::-;39175:25;;39219:1;39216;39213:8;39210:34;;;39224:18;;:::i;:::-;39210:34;39269:1;39266;39262:9;39254:17;;39086:191;;;;:::o;39283:176::-;39315:1;39332:20;39350:1;39332:20;:::i;:::-;39327:25;;39366:20;39384:1;39366:20;:::i;:::-;39361:25;;39405:1;39395:35;;39410:18;;:::i;:::-;39395:35;39451:1;39448;39444:9;39439:14;;39283:176;;;;:::o;39465:180::-;39513:77;39510:1;39503:88;39610:4;39607:1;39600:15;39634:4;39631:1;39624:15;39651:220;39791:34;39787:1;39779:6;39775:14;39768:58;39860:3;39855:2;39847:6;39843:15;39836:28;39651:220;:::o;39877:366::-;40019:3;40040:67;40104:2;40099:3;40040:67;:::i;:::-;40033:74;;40116:93;40205:3;40116:93;:::i;:::-;40234:2;40229:3;40225:12;40218:19;;39877:366;;;:::o;40249:419::-;40415:4;40453:2;40442:9;40438:18;40430:26;;40502:9;40496:4;40492:20;40488:1;40477:9;40473:17;40466:47;40530:131;40656:4;40530:131;:::i;:::-;40522:139;;40249:419;;;:::o;40674:179::-;40814:31;40810:1;40802:6;40798:14;40791:55;40674:179;:::o;40859:366::-;41001:3;41022:67;41086:2;41081:3;41022:67;:::i;:::-;41015:74;;41098:93;41187:3;41098:93;:::i;:::-;41216:2;41211:3;41207:12;41200:19;;40859:366;;;:::o;41231:419::-;41397:4;41435:2;41424:9;41420:18;41412:26;;41484:9;41478:4;41474:20;41470:1;41459:9;41455:17;41448:47;41512:131;41638:4;41512:131;:::i;:::-;41504:139;;41231:419;;;:::o;41656:227::-;41796:34;41792:1;41784:6;41780:14;41773:58;41865:10;41860:2;41852:6;41848:15;41841:35;41656:227;:::o;41889:366::-;42031:3;42052:67;42116:2;42111:3;42052:67;:::i;:::-;42045:74;;42128:93;42217:3;42128:93;:::i;:::-;42246:2;42241:3;42237:12;42230:19;;41889:366;;;:::o;42261:419::-;42427:4;42465:2;42454:9;42450:18;42442:26;;42514:9;42508:4;42504:20;42500:1;42489:9;42485:17;42478:47;42542:131;42668:4;42542:131;:::i;:::-;42534:139;;42261:419;;;:::o;42686:118::-;42723:7;42763:34;42756:5;42752:46;42741:57;;42686:118;;;:::o;42810:273::-;42850:3;42869:20;42887:1;42869:20;:::i;:::-;42864:25;;42903:20;42921:1;42903:20;:::i;:::-;42898:25;;43025:1;42989:34;42985:42;42982:1;42979:49;42976:75;;;43031:18;;:::i;:::-;42976:75;43075:1;43072;43068:9;43061:16;;42810:273;;;;:::o

Swarm Source

ipfs://8d8fc1f7756a06f78bb3d17ad03c96304b8a8d39eae741f8f230b745e32b4db1
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.