ETH Price: $2,453.08 (+0.87%)

Token

Kawaii Clouds (Clouds)
 

Overview

Max Total Supply

887 Clouds

Holders

197

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 Clouds
0x067c1070e0c7c84974b7192076c42a2a2eadcf83
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:
KawaiiClouds

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: KawaiiClouds.sol

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





contract KawaiiClouds is ERC721A, Ownable, Pausable {
    using SafeMath for uint256;

    event PermanentURI(string _value, uint256 indexed _id);
    mapping(address => uint) private _mintings;

    uint public constant MAX_SUPPLY = 888;
    uint public constant PRICE = 5e15; //0.005 ETH
    uint public constant MAX_PER_MINT = 4;
    uint public constant MAX_PER_WALLET = 20;

    string public _contractBaseURI= "https://ipfs.io/ipfs/QmSsn6T2hroU4bkchQixDJvLBxeySJGpZJNGNY3bLuP6iA/";
    
    
    constructor() ERC721A("Kawaii Clouds", "Clouds") {
    }
    modifier callerIsUser(){
        require(tx.origin == msg.sender, "Kawaii Clouds :: Cannot be called by a contract");
        _;
    }

    function mint(uint256 quantity) external payable callerIsUser {
        require(quantity > 0, "Kawaii Clouds :: Quantity cannot be zero");
        uint totalMinted = totalSupply();
        require(quantity <= MAX_PER_MINT, "Kawaii Clouds :: Cannot mint that many at once");
        require((mintedBy(msg.sender) + quantity) <= MAX_PER_WALLET, "Kawaii Clouds :: The limit of minting per address is exceeded");
        require(totalMinted.add(quantity) < MAX_SUPPLY, "Kawaii Clouds :: Not enough NFTs left to mint");
        require(PRICE * quantity <= msg.value, "Kawaii Clouds :: Insufficient funds sent");

        _safeMint(msg.sender, quantity);
        lockMetadata(quantity);
        _mintings[msg.sender] += quantity;
    }

    function mintedBy(address addr) public view returns(uint) {
        return _mintings[addr];
    }

    function lockMetadata(uint256 quantity) internal {
        for (uint256 i = quantity; i > 0; i--) {
            uint256 tid = totalSupply() - i;
            emit PermanentURI(tokenURI(tid), tid);
        }
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;

        payable(msg.sender).transfer(balance);
    }

    // OpenSea metadata initialization
    function contractURI() public pure returns (string memory) {
        return "";
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"mintedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280604481526020016200379560449139600a9080519060200190620000359291906200020e565b503480156200004357600080fd5b506040518060400160405280600d81526020017f4b617761696920436c6f756473000000000000000000000000000000000000008152506040518060400160405280600681526020017f436c6f75647300000000000000000000000000000000000000000000000000008152508160029080519060200190620000c89291906200020e565b508060039080519060200190620000e19291906200020e565b50620000f26200013b60201b60201c565b60008190555050506200011a6200010e6200014060201b60201c565b6200014860201b60201c565b6000600860146101000a81548160ff02191690831515021790555062000323565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021c90620002ed565b90600052602060002090601f0160209004810192826200024057600085556200028c565b82601f106200025b57805160ff19168380011785556200028c565b828001600101855582156200028c579182015b828111156200028b5782518255916020019190600101906200026e565b5b5090506200029b91906200029f565b5090565b5b80821115620002ba576000816000905550600101620002a0565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030657607f821691505b602082108114156200031d576200031c620002be565b5b50919050565b61346280620003336000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610597578063e8a3d485146105d4578063e985e9c5146105ff578063f2fde38b1461063c5761019c565b8063a0712d6814610529578063a22cb46514610545578063b88d4fde1461056e5761019c565b8063715018a6116100c6578063715018a6146104915780638d859f3e146104a85780638da5cb5b146104d357806395d89b41146104fe5761019c565b80636352211e146103ec57806370a08231146104295780637101ebca146104665761019c565b806318160ddd116101595780633ccfd60b116101335780633ccfd60b146103445780633cef28d21461035b57806342842e0e146103985780635c975abb146103c15761019c565b806318160ddd146102c557806323b872dd146102f057806332cb6b0c146103195761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806309d42b301461026f5780630f2cdd6c1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612681565b610665565b6040516101d591906126c9565b60405180910390f35b3480156101ea57600080fd5b506101f3610747565b604051610200919061277d565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b91906127d5565b6107d9565b60405161023d9190612843565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061288a565b610855565b005b34801561027b57600080fd5b50610284610960565b60405161029191906128d9565b60405180910390f35b3480156102a657600080fd5b506102af610965565b6040516102bc91906128d9565b60405180910390f35b3480156102d157600080fd5b506102da61096a565b6040516102e791906128d9565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906128f4565b610981565b005b34801561032557600080fd5b5061032e610991565b60405161033b91906128d9565b60405180910390f35b34801561035057600080fd5b50610359610997565b005b34801561036757600080fd5b50610382600480360381019061037d9190612947565b610a62565b60405161038f91906128d9565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba91906128f4565b610aab565b005b3480156103cd57600080fd5b506103d6610acb565b6040516103e391906126c9565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e91906127d5565b610ae2565b6040516104209190612843565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190612947565b610af8565b60405161045d91906128d9565b60405180910390f35b34801561047257600080fd5b5061047b610bc8565b604051610488919061277d565b60405180910390f35b34801561049d57600080fd5b506104a6610c56565b005b3480156104b457600080fd5b506104bd610cde565b6040516104ca91906128d9565b60405180910390f35b3480156104df57600080fd5b506104e8610ce9565b6040516104f59190612843565b60405180910390f35b34801561050a57600080fd5b50610513610d13565b604051610520919061277d565b60405180910390f35b610543600480360381019061053e91906127d5565b610da5565b005b34801561055157600080fd5b5061056c600480360381019061056791906129a0565b611015565b005b34801561057a57600080fd5b5061059560048036038101906105909190612b15565b61118d565b005b3480156105a357600080fd5b506105be60048036038101906105b991906127d5565b611209565b6040516105cb919061277d565b60405180910390f35b3480156105e057600080fd5b506105e96112a8565b6040516105f6919061277d565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190612b98565b6112bf565b60405161063391906126c9565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190612947565b611353565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610740575061073f8261144b565b5b9050919050565b60606002805461075690612c07565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612c07565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e4826114b5565b61081a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086082610ae2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e7611503565b73ffffffffffffffffffffffffffffffffffffffff1614158015610919575061091781610912611503565b6112bf565b155b15610950576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61095b83838361150b565b505050565b600481565b601481565b60006109746115bd565b6001546000540303905090565b61098c8383836115c2565b505050565b61037881565b61099f611503565b73ffffffffffffffffffffffffffffffffffffffff166109bd610ce9565b73ffffffffffffffffffffffffffffffffffffffff1614610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a90612c85565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a5e573d6000803e3d6000fd5b5050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ac68383836040518060200160405280600081525061118d565b505050565b6000600860149054906101000a900460ff16905090565b6000610aed82611a78565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600a8054610bd590612c07565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0190612c07565b8015610c4e5780601f10610c2357610100808354040283529160200191610c4e565b820191906000526020600020905b815481529060010190602001808311610c3157829003601f168201915b505050505081565b610c5e611503565b73ffffffffffffffffffffffffffffffffffffffff16610c7c610ce9565b73ffffffffffffffffffffffffffffffffffffffff1614610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990612c85565b60405180910390fd5b610cdc6000611d07565b565b6611c37937e0800081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d2290612c07565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4e90612c07565b8015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b820191906000526020600020905b815481529060010190602001808311610d7e57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90612d17565b60405180910390fd5b60008111610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90612da9565b60405180910390fd5b6000610e6061096a565b90506004821115610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90612e3b565b60405180910390fd5b601482610eb233610a62565b610ebc9190612e8a565b1115610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490612f52565b60405180910390fd5b610378610f138383611dcd90919063ffffffff16565b10610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90612fe4565b60405180910390fd5b34826611c37937e08000610f679190613004565b1115610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f906130d0565b60405180910390fd5b610fb23383611de3565b610fbb82611e01565b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461100a9190612e8a565b925050819055505050565b61101d611503565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611082576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061108f611503565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661113c611503565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161118191906126c9565b60405180910390a35050565b6111988484846115c2565b6111b78373ffffffffffffffffffffffffffffffffffffffff16611e7f565b80156111cc57506111ca84848484611ea2565b155b15611203576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611214826114b5565b61124a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611254611ff3565b905060008151141561127557604051806020016040528060008152506112a0565b8061127f84612085565b60405160200161129092919061312c565b6040516020818303038152906040525b915050919050565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61135b611503565b73ffffffffffffffffffffffffffffffffffffffff16611379610ce9565b73ffffffffffffffffffffffffffffffffffffffff16146113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690612c85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561143f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611436906131c2565b60405180910390fd5b61144881611d07565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816114c06115bd565b111580156114cf575060005482105b80156114fc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006115cd82611a78565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611638576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611659611503565b73ffffffffffffffffffffffffffffffffffffffff161480611688575061168785611682611503565b6112bf565b5b806116cd5750611696611503565b73ffffffffffffffffffffffffffffffffffffffff166116b5846107d9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611706576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561176d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61177a85858560016121e6565b6117866000848761150b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a06576000548214611a0557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a7185858560016121ec565b5050505050565b611a806125d2565b600082905080611a8e6115bd565b11158015611a9d575060005481105b15611cd0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611cce57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bb2578092505050611d02565b5b600115611ccd57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cc8578092505050611d02565b611bb3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611ddb9190612e8a565b905092915050565b611dfd8282604051806020016040528060008152506121f2565b5050565b60008190505b6000811115611e7b57600081611e1b61096a565b611e2591906131e2565b9050807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207611e5283611209565b604051611e5f919061277d565b60405180910390a2508080611e7390613216565b915050611e07565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ec8611503565b8786866040518563ffffffff1660e01b8152600401611eea9493929190613295565b6020604051808303816000875af1925050508015611f2657506040513d601f19601f82011682018060405250810190611f2391906132f6565b60015b611fa0573d8060008114611f56576040519150601f19603f3d011682016040523d82523d6000602084013e611f5b565b606091505b50600081511415611f98576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461200290612c07565b80601f016020809104026020016040519081016040528092919081815260200182805461202e90612c07565b801561207b5780601f106120505761010080835404028352916020019161207b565b820191906000526020600020905b81548152906001019060200180831161205e57829003601f168201915b5050505050905090565b606060008214156120cd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121e1565b600082905060005b600082146120ff5780806120e890613323565b915050600a826120f8919061339b565b91506120d5565b60008167ffffffffffffffff81111561211b5761211a6129ea565b5b6040519080825280601f01601f19166020018201604052801561214d5781602001600182028036833780820191505090505b5090505b600085146121da5760018261216691906131e2565b9150600a8561217591906133cc565b60306121819190612e8a565b60f81b818381518110612197576121966133fd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121d3919061339b565b9450612151565b8093505050505b919050565b50505050565b50505050565b6121ff8383836001612204565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612271576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156122ac576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b960008683876121e6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561248357506124828773ffffffffffffffffffffffffffffffffffffffff16611e7f565b5b15612549575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124f86000888480600101955088611ea2565b61252e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561248957826000541461254457600080fd5b6125b5565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561254a575b8160008190555050506125cb60008683876121ec565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61265e81612629565b811461266957600080fd5b50565b60008135905061267b81612655565b92915050565b6000602082840312156126975761269661261f565b5b60006126a58482850161266c565b91505092915050565b60008115159050919050565b6126c3816126ae565b82525050565b60006020820190506126de60008301846126ba565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561271e578082015181840152602081019050612703565b8381111561272d576000848401525b50505050565b6000601f19601f8301169050919050565b600061274f826126e4565b61275981856126ef565b9350612769818560208601612700565b61277281612733565b840191505092915050565b600060208201905081810360008301526127978184612744565b905092915050565b6000819050919050565b6127b28161279f565b81146127bd57600080fd5b50565b6000813590506127cf816127a9565b92915050565b6000602082840312156127eb576127ea61261f565b5b60006127f9848285016127c0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061282d82612802565b9050919050565b61283d81612822565b82525050565b60006020820190506128586000830184612834565b92915050565b61286781612822565b811461287257600080fd5b50565b6000813590506128848161285e565b92915050565b600080604083850312156128a1576128a061261f565b5b60006128af85828601612875565b92505060206128c0858286016127c0565b9150509250929050565b6128d38161279f565b82525050565b60006020820190506128ee60008301846128ca565b92915050565b60008060006060848603121561290d5761290c61261f565b5b600061291b86828701612875565b935050602061292c86828701612875565b925050604061293d868287016127c0565b9150509250925092565b60006020828403121561295d5761295c61261f565b5b600061296b84828501612875565b91505092915050565b61297d816126ae565b811461298857600080fd5b50565b60008135905061299a81612974565b92915050565b600080604083850312156129b7576129b661261f565b5b60006129c585828601612875565b92505060206129d68582860161298b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a2282612733565b810181811067ffffffffffffffff82111715612a4157612a406129ea565b5b80604052505050565b6000612a54612615565b9050612a608282612a19565b919050565b600067ffffffffffffffff821115612a8057612a7f6129ea565b5b612a8982612733565b9050602081019050919050565b82818337600083830152505050565b6000612ab8612ab384612a65565b612a4a565b905082815260208101848484011115612ad457612ad36129e5565b5b612adf848285612a96565b509392505050565b600082601f830112612afc57612afb6129e0565b5b8135612b0c848260208601612aa5565b91505092915050565b60008060008060808587031215612b2f57612b2e61261f565b5b6000612b3d87828801612875565b9450506020612b4e87828801612875565b9350506040612b5f878288016127c0565b925050606085013567ffffffffffffffff811115612b8057612b7f612624565b5b612b8c87828801612ae7565b91505092959194509250565b60008060408385031215612baf57612bae61261f565b5b6000612bbd85828601612875565b9250506020612bce85828601612875565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c1f57607f821691505b60208210811415612c3357612c32612bd8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c6f6020836126ef565b9150612c7a82612c39565b602082019050919050565b60006020820190508181036000830152612c9e81612c62565b9050919050565b7f4b617761696920436c6f756473203a3a2043616e6e6f742062652063616c6c6560008201527f64206279206120636f6e74726163740000000000000000000000000000000000602082015250565b6000612d01602f836126ef565b9150612d0c82612ca5565b604082019050919050565b60006020820190508181036000830152612d3081612cf4565b9050919050565b7f4b617761696920436c6f756473203a3a205175616e746974792063616e6e6f7460008201527f206265207a65726f000000000000000000000000000000000000000000000000602082015250565b6000612d936028836126ef565b9150612d9e82612d37565b604082019050919050565b60006020820190508181036000830152612dc281612d86565b9050919050565b7f4b617761696920436c6f756473203a3a2043616e6e6f74206d696e742074686160008201527f74206d616e79206174206f6e6365000000000000000000000000000000000000602082015250565b6000612e25602e836126ef565b9150612e3082612dc9565b604082019050919050565b60006020820190508181036000830152612e5481612e18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e958261279f565b9150612ea08361279f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ed557612ed4612e5b565b5b828201905092915050565b7f4b617761696920436c6f756473203a3a20546865206c696d6974206f66206d6960008201527f6e74696e67207065722061646472657373206973206578636565646564000000602082015250565b6000612f3c603d836126ef565b9150612f4782612ee0565b604082019050919050565b60006020820190508181036000830152612f6b81612f2f565b9050919050565b7f4b617761696920436c6f756473203a3a204e6f7420656e6f756768204e46547360008201527f206c65667420746f206d696e7400000000000000000000000000000000000000602082015250565b6000612fce602d836126ef565b9150612fd982612f72565b604082019050919050565b60006020820190508181036000830152612ffd81612fc1565b9050919050565b600061300f8261279f565b915061301a8361279f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561305357613052612e5b565b5b828202905092915050565b7f4b617761696920436c6f756473203a3a20496e73756666696369656e7420667560008201527f6e64732073656e74000000000000000000000000000000000000000000000000602082015250565b60006130ba6028836126ef565b91506130c58261305e565b604082019050919050565b600060208201905081810360008301526130e9816130ad565b9050919050565b600081905092915050565b6000613106826126e4565b61311081856130f0565b9350613120818560208601612700565b80840191505092915050565b600061313882856130fb565b915061314482846130fb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131ac6026836126ef565b91506131b782613150565b604082019050919050565b600060208201905081810360008301526131db8161319f565b9050919050565b60006131ed8261279f565b91506131f88361279f565b92508282101561320b5761320a612e5b565b5b828203905092915050565b60006132218261279f565b9150600082141561323557613234612e5b565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b600061326782613240565b613271818561324b565b9350613281818560208601612700565b61328a81612733565b840191505092915050565b60006080820190506132aa6000830187612834565b6132b76020830186612834565b6132c460408301856128ca565b81810360608301526132d6818461325c565b905095945050505050565b6000815190506132f081612655565b92915050565b60006020828403121561330c5761330b61261f565b5b600061331a848285016132e1565b91505092915050565b600061332e8261279f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561336157613360612e5b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133a68261279f565b91506133b18361279f565b9250826133c1576133c061336c565b5b828204905092915050565b60006133d78261279f565b91506133e28361279f565b9250826133f2576133f161336c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a4498dedc37bb9fda0d754ec9fe174430157512fbaa7610707221dd04e23d7e664736f6c634300080b003368747470733a2f2f697066732e696f2f697066732f516d53736e36543268726f5534626b6368516978444a764c42786579534a47705a4a4e474e5933624c75503669412f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636352211e116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610597578063e8a3d485146105d4578063e985e9c5146105ff578063f2fde38b1461063c5761019c565b8063a0712d6814610529578063a22cb46514610545578063b88d4fde1461056e5761019c565b8063715018a6116100c6578063715018a6146104915780638d859f3e146104a85780638da5cb5b146104d357806395d89b41146104fe5761019c565b80636352211e146103ec57806370a08231146104295780637101ebca146104665761019c565b806318160ddd116101595780633ccfd60b116101335780633ccfd60b146103445780633cef28d21461035b57806342842e0e146103985780635c975abb146103c15761019c565b806318160ddd146102c557806323b872dd146102f057806332cb6b0c146103195761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806309d42b301461026f5780630f2cdd6c1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612681565b610665565b6040516101d591906126c9565b60405180910390f35b3480156101ea57600080fd5b506101f3610747565b604051610200919061277d565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b91906127d5565b6107d9565b60405161023d9190612843565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061288a565b610855565b005b34801561027b57600080fd5b50610284610960565b60405161029191906128d9565b60405180910390f35b3480156102a657600080fd5b506102af610965565b6040516102bc91906128d9565b60405180910390f35b3480156102d157600080fd5b506102da61096a565b6040516102e791906128d9565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906128f4565b610981565b005b34801561032557600080fd5b5061032e610991565b60405161033b91906128d9565b60405180910390f35b34801561035057600080fd5b50610359610997565b005b34801561036757600080fd5b50610382600480360381019061037d9190612947565b610a62565b60405161038f91906128d9565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba91906128f4565b610aab565b005b3480156103cd57600080fd5b506103d6610acb565b6040516103e391906126c9565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e91906127d5565b610ae2565b6040516104209190612843565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190612947565b610af8565b60405161045d91906128d9565b60405180910390f35b34801561047257600080fd5b5061047b610bc8565b604051610488919061277d565b60405180910390f35b34801561049d57600080fd5b506104a6610c56565b005b3480156104b457600080fd5b506104bd610cde565b6040516104ca91906128d9565b60405180910390f35b3480156104df57600080fd5b506104e8610ce9565b6040516104f59190612843565b60405180910390f35b34801561050a57600080fd5b50610513610d13565b604051610520919061277d565b60405180910390f35b610543600480360381019061053e91906127d5565b610da5565b005b34801561055157600080fd5b5061056c600480360381019061056791906129a0565b611015565b005b34801561057a57600080fd5b5061059560048036038101906105909190612b15565b61118d565b005b3480156105a357600080fd5b506105be60048036038101906105b991906127d5565b611209565b6040516105cb919061277d565b60405180910390f35b3480156105e057600080fd5b506105e96112a8565b6040516105f6919061277d565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190612b98565b6112bf565b60405161063391906126c9565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190612947565b611353565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610740575061073f8261144b565b5b9050919050565b60606002805461075690612c07565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612c07565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e4826114b5565b61081a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086082610ae2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e7611503565b73ffffffffffffffffffffffffffffffffffffffff1614158015610919575061091781610912611503565b6112bf565b155b15610950576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61095b83838361150b565b505050565b600481565b601481565b60006109746115bd565b6001546000540303905090565b61098c8383836115c2565b505050565b61037881565b61099f611503565b73ffffffffffffffffffffffffffffffffffffffff166109bd610ce9565b73ffffffffffffffffffffffffffffffffffffffff1614610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a90612c85565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a5e573d6000803e3d6000fd5b5050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ac68383836040518060200160405280600081525061118d565b505050565b6000600860149054906101000a900460ff16905090565b6000610aed82611a78565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600a8054610bd590612c07565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0190612c07565b8015610c4e5780601f10610c2357610100808354040283529160200191610c4e565b820191906000526020600020905b815481529060010190602001808311610c3157829003601f168201915b505050505081565b610c5e611503565b73ffffffffffffffffffffffffffffffffffffffff16610c7c610ce9565b73ffffffffffffffffffffffffffffffffffffffff1614610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990612c85565b60405180910390fd5b610cdc6000611d07565b565b6611c37937e0800081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d2290612c07565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4e90612c07565b8015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b820191906000526020600020905b815481529060010190602001808311610d7e57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90612d17565b60405180910390fd5b60008111610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90612da9565b60405180910390fd5b6000610e6061096a565b90506004821115610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90612e3b565b60405180910390fd5b601482610eb233610a62565b610ebc9190612e8a565b1115610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490612f52565b60405180910390fd5b610378610f138383611dcd90919063ffffffff16565b10610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90612fe4565b60405180910390fd5b34826611c37937e08000610f679190613004565b1115610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f906130d0565b60405180910390fd5b610fb23383611de3565b610fbb82611e01565b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461100a9190612e8a565b925050819055505050565b61101d611503565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611082576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061108f611503565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661113c611503565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161118191906126c9565b60405180910390a35050565b6111988484846115c2565b6111b78373ffffffffffffffffffffffffffffffffffffffff16611e7f565b80156111cc57506111ca84848484611ea2565b155b15611203576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611214826114b5565b61124a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611254611ff3565b905060008151141561127557604051806020016040528060008152506112a0565b8061127f84612085565b60405160200161129092919061312c565b6040516020818303038152906040525b915050919050565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61135b611503565b73ffffffffffffffffffffffffffffffffffffffff16611379610ce9565b73ffffffffffffffffffffffffffffffffffffffff16146113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690612c85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561143f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611436906131c2565b60405180910390fd5b61144881611d07565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816114c06115bd565b111580156114cf575060005482105b80156114fc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006115cd82611a78565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611638576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611659611503565b73ffffffffffffffffffffffffffffffffffffffff161480611688575061168785611682611503565b6112bf565b5b806116cd5750611696611503565b73ffffffffffffffffffffffffffffffffffffffff166116b5846107d9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611706576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561176d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61177a85858560016121e6565b6117866000848761150b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a06576000548214611a0557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a7185858560016121ec565b5050505050565b611a806125d2565b600082905080611a8e6115bd565b11158015611a9d575060005481105b15611cd0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611cce57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bb2578092505050611d02565b5b600115611ccd57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cc8578092505050611d02565b611bb3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611ddb9190612e8a565b905092915050565b611dfd8282604051806020016040528060008152506121f2565b5050565b60008190505b6000811115611e7b57600081611e1b61096a565b611e2591906131e2565b9050807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207611e5283611209565b604051611e5f919061277d565b60405180910390a2508080611e7390613216565b915050611e07565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ec8611503565b8786866040518563ffffffff1660e01b8152600401611eea9493929190613295565b6020604051808303816000875af1925050508015611f2657506040513d601f19601f82011682018060405250810190611f2391906132f6565b60015b611fa0573d8060008114611f56576040519150601f19603f3d011682016040523d82523d6000602084013e611f5b565b606091505b50600081511415611f98576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461200290612c07565b80601f016020809104026020016040519081016040528092919081815260200182805461202e90612c07565b801561207b5780601f106120505761010080835404028352916020019161207b565b820191906000526020600020905b81548152906001019060200180831161205e57829003601f168201915b5050505050905090565b606060008214156120cd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121e1565b600082905060005b600082146120ff5780806120e890613323565b915050600a826120f8919061339b565b91506120d5565b60008167ffffffffffffffff81111561211b5761211a6129ea565b5b6040519080825280601f01601f19166020018201604052801561214d5781602001600182028036833780820191505090505b5090505b600085146121da5760018261216691906131e2565b9150600a8561217591906133cc565b60306121819190612e8a565b60f81b818381518110612197576121966133fd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121d3919061339b565b9450612151565b8093505050505b919050565b50505050565b50505050565b6121ff8383836001612204565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612271576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156122ac576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b960008683876121e6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561248357506124828773ffffffffffffffffffffffffffffffffffffffff16611e7f565b5b15612549575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124f86000888480600101955088611ea2565b61252e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561248957826000541461254457600080fd5b6125b5565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561254a575b8160008190555050506125cb60008683876121ec565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61265e81612629565b811461266957600080fd5b50565b60008135905061267b81612655565b92915050565b6000602082840312156126975761269661261f565b5b60006126a58482850161266c565b91505092915050565b60008115159050919050565b6126c3816126ae565b82525050565b60006020820190506126de60008301846126ba565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561271e578082015181840152602081019050612703565b8381111561272d576000848401525b50505050565b6000601f19601f8301169050919050565b600061274f826126e4565b61275981856126ef565b9350612769818560208601612700565b61277281612733565b840191505092915050565b600060208201905081810360008301526127978184612744565b905092915050565b6000819050919050565b6127b28161279f565b81146127bd57600080fd5b50565b6000813590506127cf816127a9565b92915050565b6000602082840312156127eb576127ea61261f565b5b60006127f9848285016127c0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061282d82612802565b9050919050565b61283d81612822565b82525050565b60006020820190506128586000830184612834565b92915050565b61286781612822565b811461287257600080fd5b50565b6000813590506128848161285e565b92915050565b600080604083850312156128a1576128a061261f565b5b60006128af85828601612875565b92505060206128c0858286016127c0565b9150509250929050565b6128d38161279f565b82525050565b60006020820190506128ee60008301846128ca565b92915050565b60008060006060848603121561290d5761290c61261f565b5b600061291b86828701612875565b935050602061292c86828701612875565b925050604061293d868287016127c0565b9150509250925092565b60006020828403121561295d5761295c61261f565b5b600061296b84828501612875565b91505092915050565b61297d816126ae565b811461298857600080fd5b50565b60008135905061299a81612974565b92915050565b600080604083850312156129b7576129b661261f565b5b60006129c585828601612875565b92505060206129d68582860161298b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a2282612733565b810181811067ffffffffffffffff82111715612a4157612a406129ea565b5b80604052505050565b6000612a54612615565b9050612a608282612a19565b919050565b600067ffffffffffffffff821115612a8057612a7f6129ea565b5b612a8982612733565b9050602081019050919050565b82818337600083830152505050565b6000612ab8612ab384612a65565b612a4a565b905082815260208101848484011115612ad457612ad36129e5565b5b612adf848285612a96565b509392505050565b600082601f830112612afc57612afb6129e0565b5b8135612b0c848260208601612aa5565b91505092915050565b60008060008060808587031215612b2f57612b2e61261f565b5b6000612b3d87828801612875565b9450506020612b4e87828801612875565b9350506040612b5f878288016127c0565b925050606085013567ffffffffffffffff811115612b8057612b7f612624565b5b612b8c87828801612ae7565b91505092959194509250565b60008060408385031215612baf57612bae61261f565b5b6000612bbd85828601612875565b9250506020612bce85828601612875565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c1f57607f821691505b60208210811415612c3357612c32612bd8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c6f6020836126ef565b9150612c7a82612c39565b602082019050919050565b60006020820190508181036000830152612c9e81612c62565b9050919050565b7f4b617761696920436c6f756473203a3a2043616e6e6f742062652063616c6c6560008201527f64206279206120636f6e74726163740000000000000000000000000000000000602082015250565b6000612d01602f836126ef565b9150612d0c82612ca5565b604082019050919050565b60006020820190508181036000830152612d3081612cf4565b9050919050565b7f4b617761696920436c6f756473203a3a205175616e746974792063616e6e6f7460008201527f206265207a65726f000000000000000000000000000000000000000000000000602082015250565b6000612d936028836126ef565b9150612d9e82612d37565b604082019050919050565b60006020820190508181036000830152612dc281612d86565b9050919050565b7f4b617761696920436c6f756473203a3a2043616e6e6f74206d696e742074686160008201527f74206d616e79206174206f6e6365000000000000000000000000000000000000602082015250565b6000612e25602e836126ef565b9150612e3082612dc9565b604082019050919050565b60006020820190508181036000830152612e5481612e18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e958261279f565b9150612ea08361279f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ed557612ed4612e5b565b5b828201905092915050565b7f4b617761696920436c6f756473203a3a20546865206c696d6974206f66206d6960008201527f6e74696e67207065722061646472657373206973206578636565646564000000602082015250565b6000612f3c603d836126ef565b9150612f4782612ee0565b604082019050919050565b60006020820190508181036000830152612f6b81612f2f565b9050919050565b7f4b617761696920436c6f756473203a3a204e6f7420656e6f756768204e46547360008201527f206c65667420746f206d696e7400000000000000000000000000000000000000602082015250565b6000612fce602d836126ef565b9150612fd982612f72565b604082019050919050565b60006020820190508181036000830152612ffd81612fc1565b9050919050565b600061300f8261279f565b915061301a8361279f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561305357613052612e5b565b5b828202905092915050565b7f4b617761696920436c6f756473203a3a20496e73756666696369656e7420667560008201527f6e64732073656e74000000000000000000000000000000000000000000000000602082015250565b60006130ba6028836126ef565b91506130c58261305e565b604082019050919050565b600060208201905081810360008301526130e9816130ad565b9050919050565b600081905092915050565b6000613106826126e4565b61311081856130f0565b9350613120818560208601612700565b80840191505092915050565b600061313882856130fb565b915061314482846130fb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131ac6026836126ef565b91506131b782613150565b604082019050919050565b600060208201905081810360008301526131db8161319f565b9050919050565b60006131ed8261279f565b91506131f88361279f565b92508282101561320b5761320a612e5b565b5b828203905092915050565b60006132218261279f565b9150600082141561323557613234612e5b565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b600061326782613240565b613271818561324b565b9350613281818560208601612700565b61328a81612733565b840191505092915050565b60006080820190506132aa6000830187612834565b6132b76020830186612834565b6132c460408301856128ca565b81810360608301526132d6818461325c565b905095945050505050565b6000815190506132f081612655565b92915050565b60006020828403121561330c5761330b61261f565b5b600061331a848285016132e1565b91505092915050565b600061332e8261279f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561336157613360612e5b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133a68261279f565b91506133b18361279f565b9250826133c1576133c061336c565b5b828204905092915050565b60006133d78261279f565b91506133e28361279f565b9250826133f2576133f161336c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a4498dedc37bb9fda0d754ec9fe174430157512fbaa7610707221dd04e23d7e664736f6c634300080b0033

Deployed Bytecode Sourcemap

54159:2202:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31469:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34582:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36085:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35648:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54461:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54505:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30718:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36950:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54365:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55962:142;;;;;;;;;;;;;:::i;:::-;;55631:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37191:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50346:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34390:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31838:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54554:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53245:103;;;;;;;;;;;;;:::i;:::-;;54409:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52594:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34751:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54883:740;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36361:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37447:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34926:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56152:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36719:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53503:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31469:305;31571:4;31623:25;31608:40;;;:11;:40;;;;:105;;;;31680:33;31665:48;;;:11;:48;;;;31608:105;:158;;;;31730:36;31754:11;31730:23;:36::i;:::-;31608:158;31588:178;;31469:305;;;:::o;34582:100::-;34636:13;34669:5;34662:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34582:100;:::o;36085:204::-;36153:7;36178:16;36186:7;36178;:16::i;:::-;36173:64;;36203:34;;;;;;;;;;;;;;36173:64;36257:15;:24;36273:7;36257:24;;;;;;;;;;;;;;;;;;;;;36250:31;;36085:204;;;:::o;35648:371::-;35721:13;35737:24;35753:7;35737:15;:24::i;:::-;35721:40;;35782:5;35776:11;;:2;:11;;;35772:48;;;35796:24;;;;;;;;;;;;;;35772:48;35853:5;35837:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35863:37;35880:5;35887:12;:10;:12::i;:::-;35863:16;:37::i;:::-;35862:38;35837:63;35833:138;;;35924:35;;;;;;;;;;;;;;35833:138;35983:28;35992:2;35996:7;36005:5;35983:8;:28::i;:::-;35710:309;35648:371;;:::o;54461:37::-;54497:1;54461:37;:::o;54505:40::-;54543:2;54505:40;:::o;30718:303::-;30762:7;30987:15;:13;:15::i;:::-;30972:12;;30956:13;;:28;:46;30949:53;;30718:303;:::o;36950:170::-;37084:28;37094:4;37100:2;37104:7;37084:9;:28::i;:::-;36950:170;;;:::o;54365:37::-;54399:3;54365:37;:::o;55962:142::-;52825:12;:10;:12::i;:::-;52814:23;;:7;:5;:7::i;:::-;:23;;;52806:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56010:12:::1;56025:21;56010:36;;56067:10;56059:28;;:37;56088:7;56059:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;55999:105;55962:142::o:0;55631:99::-;55683:4;55707:9;:15;55717:4;55707:15;;;;;;;;;;;;;;;;55700:22;;55631:99;;;:::o;37191:185::-;37329:39;37346:4;37352:2;37356:7;37329:39;;;;;;;;;;;;:16;:39::i;:::-;37191:185;;;:::o;50346:86::-;50393:4;50417:7;;;;;;;;;;;50410:14;;50346:86;:::o;34390:125::-;34454:7;34481:21;34494:7;34481:12;:21::i;:::-;:26;;;34474:33;;34390:125;;;:::o;31838:206::-;31902:7;31943:1;31926:19;;:5;:19;;;31922:60;;;31954:28;;;;;;;;;;;;;;31922:60;32008:12;:19;32021:5;32008:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;32000:36;;31993:43;;31838:206;;;:::o;54554:102::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53245:103::-;52825:12;:10;:12::i;:::-;52814:23;;:7;:5;:7::i;:::-;:23;;;52806:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53310:30:::1;53337:1;53310:18;:30::i;:::-;53245:103::o:0;54409:33::-;54438:4;54409:33;:::o;52594:87::-;52640:7;52667:6;;;;;;;;;;;52660:13;;52594:87;:::o;34751:104::-;34807:13;34840:7;34833:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34751:104;:::o;54883:740::-;54793:10;54780:23;;:9;:23;;;54772:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;54975:1:::1;54964:8;:12;54956:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;55032:16;55051:13;:11;:13::i;:::-;55032:32;;54497:1;55083:8;:24;;55075:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;54543:2;55201:8;55178:20;55187:10;55178:8;:20::i;:::-;:31;;;;:::i;:::-;55177:51;;55169:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;54399:3;55313:25;55329:8;55313:11;:15;;:25;;;;:::i;:::-;:38;55305:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;55440:9;55428:8;54438:4;55420:16;;;;:::i;:::-;:29;;55412:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;55507:31;55517:10;55529:8;55507:9;:31::i;:::-;55549:22;55562:8;55549:12;:22::i;:::-;55607:8;55582:9;:21;55592:10;55582:21;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;54945:678;54883:740:::0;:::o;36361:287::-;36472:12;:10;:12::i;:::-;36460:24;;:8;:24;;;36456:54;;;36493:17;;;;;;;;;;;;;;36456:54;36568:8;36523:18;:32;36542:12;:10;:12::i;:::-;36523:32;;;;;;;;;;;;;;;:42;36556:8;36523:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36621:8;36592:48;;36607:12;:10;:12::i;:::-;36592:48;;;36631:8;36592:48;;;;;;:::i;:::-;;;;;;;;36361:287;;:::o;37447:369::-;37614:28;37624:4;37630:2;37634:7;37614:9;:28::i;:::-;37657:15;:2;:13;;;:15::i;:::-;:76;;;;;37677:56;37708:4;37714:2;37718:7;37727:5;37677:30;:56::i;:::-;37676:57;37657:76;37653:156;;;37757:40;;;;;;;;;;;;;;37653:156;37447:369;;;;:::o;34926:318::-;34999:13;35030:16;35038:7;35030;:16::i;:::-;35025:59;;35055:29;;;;;;;;;;;;;;35025:59;35097:21;35121:10;:8;:10::i;:::-;35097:34;;35174:1;35155:7;35149:21;:26;;:87;;;;;;;;;;;;;;;;;35202:7;35211:18;:7;:16;:18::i;:::-;35185:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35149:87;35142:94;;;34926:318;;;:::o;56152:87::-;56196:13;56222:9;;;;;;;;;;;;;;56152:87;:::o;36719:164::-;36816:4;36840:18;:25;36859:5;36840:25;;;;;;;;;;;;;;;:35;36866:8;36840:35;;;;;;;;;;;;;;;;;;;;;;;;;36833:42;;36719:164;;;;:::o;53503:201::-;52825:12;:10;:12::i;:::-;52814:23;;:7;:5;:7::i;:::-;:23;;;52806:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53612:1:::1;53592:22;;:8;:22;;;;53584:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;53668:28;53687:8;53668:18;:28::i;:::-;53503:201:::0;:::o;13440:157::-;13525:4;13564:25;13549:40;;;:11;:40;;;;13542:47;;13440:157;;;:::o;38071:174::-;38128:4;38171:7;38152:15;:13;:15::i;:::-;:26;;:53;;;;;38192:13;;38182:7;:23;38152:53;:85;;;;;38210:11;:20;38222:7;38210:20;;;;;;;;;;;:27;;;;;;;;;;;;38209:28;38152:85;38145:92;;38071:174;;;:::o;26985:98::-;27038:7;27065:10;27058:17;;26985:98;:::o;46228:196::-;46370:2;46343:15;:24;46359:7;46343:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;46408:7;46404:2;46388:28;;46397:5;46388:28;;;;;;;;;;;;46228:196;;;:::o;30492:92::-;30548:7;30492:92;:::o;41171:2130::-;41286:35;41324:21;41337:7;41324:12;:21::i;:::-;41286:59;;41384:4;41362:26;;:13;:18;;;:26;;;41358:67;;41397:28;;;;;;;;;;;;;;41358:67;41438:22;41480:4;41464:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;41501:36;41518:4;41524:12;:10;:12::i;:::-;41501:16;:36::i;:::-;41464:73;:126;;;;41578:12;:10;:12::i;:::-;41554:36;;:20;41566:7;41554:11;:20::i;:::-;:36;;;41464:126;41438:153;;41609:17;41604:66;;41635:35;;;;;;;;;;;;;;41604:66;41699:1;41685:16;;:2;:16;;;41681:52;;;41710:23;;;;;;;;;;;;;;41681:52;41746:43;41768:4;41774:2;41778:7;41787:1;41746:21;:43::i;:::-;41854:35;41871:1;41875:7;41884:4;41854:8;:35::i;:::-;42215:1;42185:12;:18;42198:4;42185:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42259:1;42231:12;:16;42244:2;42231:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42277:31;42311:11;:20;42323:7;42311:20;;;;;;;;;;;42277:54;;42362:2;42346:8;:13;;;:18;;;;;;;;;;;;;;;;;;42412:15;42379:8;:23;;;:49;;;;;;;;;;;;;;;;;;42680:19;42712:1;42702:7;:11;42680:33;;42728:31;42762:11;:24;42774:11;42762:24;;;;;;;;;;;42728:58;;42830:1;42805:27;;:8;:13;;;;;;;;;;;;:27;;;42801:384;;;43015:13;;43000:11;:28;42996:174;;43069:4;43053:8;:13;;;:20;;;;;;;;;;;;;;;;;;43122:13;:28;;;43096:8;:23;;;:54;;;;;;;;;;;;;;;;;;42996:174;42801:384;42160:1036;;;43232:7;43228:2;43213:27;;43222:4;43213:27;;;;;;;;;;;;43251:42;43272:4;43278:2;43282:7;43291:1;43251:20;:42::i;:::-;41275:2026;;41171:2130;;;:::o;33219:1109::-;33281:21;;:::i;:::-;33315:12;33330:7;33315:22;;33398:4;33379:15;:13;:15::i;:::-;:23;;:47;;;;;33413:13;;33406:4;:20;33379:47;33375:886;;;33447:31;33481:11;:17;33493:4;33481:17;;;;;;;;;;;33447:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33522:9;:16;;;33517:729;;33593:1;33567:28;;:9;:14;;;:28;;;33563:101;;33631:9;33624:16;;;;;;33563:101;33966:261;33973:4;33966:261;;;34006:6;;;;;;;;34051:11;:17;34063:4;34051:17;;;;;;;;;;;34039:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34125:1;34099:28;;:9;:14;;;:28;;;34095:109;;34167:9;34160:16;;;;;;34095:109;33966:261;;;33517:729;33428:833;33375:886;34289:31;;;;;;;;;;;;;;33219:1109;;;;:::o;53864:191::-;53938:16;53957:6;;;;;;;;;;;53938:25;;53983:8;53974:6;;:17;;;;;;;;;;;;;;;;;;54038:8;54007:40;;54028:8;54007:40;;;;;;;;;;;;53927:128;53864:191;:::o;22141:98::-;22199:7;22230:1;22226;:5;;;;:::i;:::-;22219:12;;22141:98;;;;:::o;38253:104::-;38322:27;38332:2;38336:8;38322:27;;;;;;;;;;;;:9;:27::i;:::-;38253:104;;:::o;55738:216::-;55803:9;55815:8;55803:20;;55798:149;55829:1;55825;:5;55798:149;;;55852:11;55882:1;55866:13;:11;:13::i;:::-;:17;;;;:::i;:::-;55852:31;;55931:3;55903:32;55916:13;55925:3;55916:8;:13::i;:::-;55903:32;;;;;;:::i;:::-;;;;;;;;55837:110;55832:3;;;;;:::i;:::-;;;;55798:149;;;;55738:216;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357:326;;;:::o;46916:667::-;47079:4;47116:2;47100:36;;;47137:12;:10;:12::i;:::-;47151:4;47157:7;47166:5;47100:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47096:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47351:1;47334:6;:13;:18;47330:235;;;47380:40;;;;;;;;;;;;;;47330:235;47523:6;47517:13;47508:6;47504:2;47500:15;47493:38;47096:480;47229:45;;;47219:55;;;:6;:55;;;;47212:62;;;46916:667;;;;;;:::o;56247:109::-;56299:13;56332:16;56325:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56247:109;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;48231:159::-;;;;;:::o;49049:158::-;;;;;:::o;38720:163::-;38843:32;38849:2;38853:8;38863:5;38870:4;38843:5;:32::i;:::-;38720:163;;;:::o;39142:1775::-;39281:20;39304:13;;39281:36;;39346:1;39332:16;;:2;:16;;;39328:48;;;39357:19;;;;;;;;;;;;;;39328:48;39403:1;39391:8;:13;39387:44;;;39413:18;;;;;;;;;;;;;;39387:44;39444:61;39474:1;39478:2;39482:12;39496:8;39444:21;:61::i;:::-;39817:8;39782:12;:16;39795:2;39782:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39881:8;39841:12;:16;39854:2;39841:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39940:2;39907:11;:25;39919:12;39907:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40007:15;39957:11;:25;39969:12;39957:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;40040:20;40063:12;40040:35;;40090:11;40119:8;40104:12;:23;40090:37;;40148:4;:23;;;;;40156:15;:2;:13;;;:15::i;:::-;40148:23;40144:641;;;40192:314;40248:12;40244:2;40223:38;;40240:1;40223:38;;;;;;;;;;;;40289:69;40328:1;40332:2;40336:14;;;;;;40352:5;40289:30;:69::i;:::-;40284:174;;40394:40;;;;;;;;;;;;;;40284:174;40501:3;40485:12;:19;;40192:314;;40587:12;40570:13;;:29;40566:43;;40601:8;;;40566:43;40144:641;;;40650:120;40706:14;;;;;;40702:2;40681:40;;40698:1;40681:40;;;;;;;;;;;;40765:3;40749:12;:19;;40650:120;;40144:641;40815:12;40799:13;:28;;;;39757:1082;;40849:60;40878:1;40882:2;40886:12;40900:8;40849:20;:60::i;:::-;39270:1647;39142:1775;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:307::-;7900:4;7990:18;7982:6;7979:30;7976:56;;;8012:18;;:::i;:::-;7976:56;8050:29;8072:6;8050:29;:::i;:::-;8042:37;;8134:4;8128;8124:15;8116:23;;7839:307;;;:::o;8152:154::-;8236:6;8231:3;8226;8213:30;8298:1;8289:6;8284:3;8280:16;8273:27;8152:154;;;:::o;8312:410::-;8389:5;8414:65;8430:48;8471:6;8430:48;:::i;:::-;8414:65;:::i;:::-;8405:74;;8502:6;8495:5;8488:21;8540:4;8533:5;8529:16;8578:3;8569:6;8564:3;8560:16;8557:25;8554:112;;;8585:79;;:::i;:::-;8554:112;8675:41;8709:6;8704:3;8699;8675:41;:::i;:::-;8395:327;8312:410;;;;;:::o;8741:338::-;8796:5;8845:3;8838:4;8830:6;8826:17;8822:27;8812:122;;8853:79;;:::i;:::-;8812:122;8970:6;8957:20;8995:78;9069:3;9061:6;9054:4;9046:6;9042:17;8995:78;:::i;:::-;8986:87;;8802:277;8741:338;;;;:::o;9085:943::-;9180:6;9188;9196;9204;9253:3;9241:9;9232:7;9228:23;9224:33;9221:120;;;9260:79;;:::i;:::-;9221:120;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9478:118;9635:2;9661:53;9706:7;9697:6;9686:9;9682:22;9661:53;:::i;:::-;9651:63;;9606:118;9791:2;9780:9;9776:18;9763:32;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9949:62;10003:7;9994:6;9983:9;9979:22;9949:62;:::i;:::-;9939:72;;9734:287;9085:943;;;;;;;:::o;10034:474::-;10102:6;10110;10159:2;10147:9;10138:7;10134:23;10130:32;10127:119;;;10165:79;;:::i;:::-;10127:119;10285:1;10310:53;10355:7;10346:6;10335:9;10331:22;10310:53;:::i;:::-;10300:63;;10256:117;10412:2;10438:53;10483:7;10474:6;10463:9;10459:22;10438:53;:::i;:::-;10428:63;;10383:118;10034:474;;;;;:::o;10514:180::-;10562:77;10559:1;10552:88;10659:4;10656:1;10649:15;10683:4;10680:1;10673:15;10700:320;10744:6;10781:1;10775:4;10771:12;10761:22;;10828:1;10822:4;10818:12;10849:18;10839:81;;10905:4;10897:6;10893:17;10883:27;;10839:81;10967:2;10959:6;10956:14;10936:18;10933:38;10930:84;;;10986:18;;:::i;:::-;10930:84;10751:269;10700:320;;;:::o;11026:182::-;11166:34;11162:1;11154:6;11150:14;11143:58;11026:182;:::o;11214:366::-;11356:3;11377:67;11441:2;11436:3;11377:67;:::i;:::-;11370:74;;11453:93;11542:3;11453:93;:::i;:::-;11571:2;11566:3;11562:12;11555:19;;11214:366;;;:::o;11586:419::-;11752:4;11790:2;11779:9;11775:18;11767:26;;11839:9;11833:4;11829:20;11825:1;11814:9;11810:17;11803:47;11867:131;11993:4;11867:131;:::i;:::-;11859:139;;11586:419;;;:::o;12011:234::-;12151:34;12147:1;12139:6;12135:14;12128:58;12220:17;12215:2;12207:6;12203:15;12196:42;12011:234;:::o;12251:366::-;12393:3;12414:67;12478:2;12473:3;12414:67;:::i;:::-;12407:74;;12490:93;12579:3;12490:93;:::i;:::-;12608:2;12603:3;12599:12;12592:19;;12251:366;;;:::o;12623:419::-;12789:4;12827:2;12816:9;12812:18;12804:26;;12876:9;12870:4;12866:20;12862:1;12851:9;12847:17;12840:47;12904:131;13030:4;12904:131;:::i;:::-;12896:139;;12623:419;;;:::o;13048:227::-;13188:34;13184:1;13176:6;13172:14;13165:58;13257:10;13252:2;13244:6;13240:15;13233:35;13048:227;:::o;13281:366::-;13423:3;13444:67;13508:2;13503:3;13444:67;:::i;:::-;13437:74;;13520:93;13609:3;13520:93;:::i;:::-;13638:2;13633:3;13629:12;13622:19;;13281:366;;;:::o;13653:419::-;13819:4;13857:2;13846:9;13842:18;13834:26;;13906:9;13900:4;13896:20;13892:1;13881:9;13877:17;13870:47;13934:131;14060:4;13934:131;:::i;:::-;13926:139;;13653:419;;;:::o;14078:233::-;14218:34;14214:1;14206:6;14202:14;14195:58;14287:16;14282:2;14274:6;14270:15;14263:41;14078:233;:::o;14317:366::-;14459:3;14480:67;14544:2;14539:3;14480:67;:::i;:::-;14473:74;;14556:93;14645:3;14556:93;:::i;:::-;14674:2;14669:3;14665:12;14658:19;;14317:366;;;:::o;14689:419::-;14855:4;14893:2;14882:9;14878:18;14870:26;;14942:9;14936:4;14932:20;14928:1;14917:9;14913:17;14906:47;14970:131;15096:4;14970:131;:::i;:::-;14962:139;;14689:419;;;:::o;15114:180::-;15162:77;15159:1;15152:88;15259:4;15256:1;15249:15;15283:4;15280:1;15273:15;15300:305;15340:3;15359:20;15377:1;15359:20;:::i;:::-;15354:25;;15393:20;15411:1;15393:20;:::i;:::-;15388:25;;15547:1;15479:66;15475:74;15472:1;15469:81;15466:107;;;15553:18;;:::i;:::-;15466:107;15597:1;15594;15590:9;15583:16;;15300:305;;;;:::o;15611:248::-;15751:34;15747:1;15739:6;15735:14;15728:58;15820:31;15815:2;15807:6;15803:15;15796:56;15611:248;:::o;15865:366::-;16007:3;16028:67;16092:2;16087:3;16028:67;:::i;:::-;16021:74;;16104:93;16193:3;16104:93;:::i;:::-;16222:2;16217:3;16213:12;16206:19;;15865:366;;;:::o;16237:419::-;16403:4;16441:2;16430:9;16426:18;16418:26;;16490:9;16484:4;16480:20;16476:1;16465:9;16461:17;16454:47;16518:131;16644:4;16518:131;:::i;:::-;16510:139;;16237:419;;;:::o;16662:232::-;16802:34;16798:1;16790:6;16786:14;16779:58;16871:15;16866:2;16858:6;16854:15;16847:40;16662:232;:::o;16900:366::-;17042:3;17063:67;17127:2;17122:3;17063:67;:::i;:::-;17056:74;;17139:93;17228:3;17139:93;:::i;:::-;17257:2;17252:3;17248:12;17241:19;;16900:366;;;:::o;17272:419::-;17438:4;17476:2;17465:9;17461:18;17453:26;;17525:9;17519:4;17515:20;17511:1;17500:9;17496:17;17489:47;17553:131;17679:4;17553:131;:::i;:::-;17545:139;;17272:419;;;:::o;17697:348::-;17737:7;17760:20;17778:1;17760:20;:::i;:::-;17755:25;;17794:20;17812:1;17794:20;:::i;:::-;17789:25;;17982:1;17914:66;17910:74;17907:1;17904:81;17899:1;17892:9;17885:17;17881:105;17878:131;;;17989:18;;:::i;:::-;17878:131;18037:1;18034;18030:9;18019:20;;17697:348;;;;:::o;18051:227::-;18191:34;18187:1;18179:6;18175:14;18168:58;18260:10;18255:2;18247:6;18243:15;18236:35;18051:227;:::o;18284:366::-;18426:3;18447:67;18511:2;18506:3;18447:67;:::i;:::-;18440:74;;18523:93;18612:3;18523:93;:::i;:::-;18641:2;18636:3;18632:12;18625:19;;18284:366;;;:::o;18656:419::-;18822:4;18860:2;18849:9;18845:18;18837:26;;18909:9;18903:4;18899:20;18895:1;18884:9;18880:17;18873:47;18937:131;19063:4;18937:131;:::i;:::-;18929:139;;18656:419;;;:::o;19081:148::-;19183:11;19220:3;19205:18;;19081:148;;;;:::o;19235:377::-;19341:3;19369:39;19402:5;19369:39;:::i;:::-;19424:89;19506:6;19501:3;19424:89;:::i;:::-;19417:96;;19522:52;19567:6;19562:3;19555:4;19548:5;19544:16;19522:52;:::i;:::-;19599:6;19594:3;19590:16;19583:23;;19345:267;19235:377;;;;:::o;19618:435::-;19798:3;19820:95;19911:3;19902:6;19820:95;:::i;:::-;19813:102;;19932:95;20023:3;20014:6;19932:95;:::i;:::-;19925:102;;20044:3;20037:10;;19618:435;;;;;:::o;20059:225::-;20199:34;20195:1;20187:6;20183:14;20176:58;20268:8;20263:2;20255:6;20251:15;20244:33;20059:225;:::o;20290:366::-;20432:3;20453:67;20517:2;20512:3;20453:67;:::i;:::-;20446:74;;20529:93;20618:3;20529:93;:::i;:::-;20647:2;20642:3;20638:12;20631:19;;20290:366;;;:::o;20662:419::-;20828:4;20866:2;20855:9;20851:18;20843:26;;20915:9;20909:4;20905:20;20901:1;20890:9;20886:17;20879:47;20943:131;21069:4;20943:131;:::i;:::-;20935:139;;20662:419;;;:::o;21087:191::-;21127:4;21147:20;21165:1;21147:20;:::i;:::-;21142:25;;21181:20;21199:1;21181:20;:::i;:::-;21176:25;;21220:1;21217;21214:8;21211:34;;;21225:18;;:::i;:::-;21211:34;21270:1;21267;21263:9;21255:17;;21087:191;;;;:::o;21284:171::-;21323:3;21346:24;21364:5;21346:24;:::i;:::-;21337:33;;21392:4;21385:5;21382:15;21379:41;;;21400:18;;:::i;:::-;21379:41;21447:1;21440:5;21436:13;21429:20;;21284:171;;;:::o;21461:98::-;21512:6;21546:5;21540:12;21530:22;;21461:98;;;:::o;21565:168::-;21648:11;21682:6;21677:3;21670:19;21722:4;21717:3;21713:14;21698:29;;21565:168;;;;:::o;21739:360::-;21825:3;21853:38;21885:5;21853:38;:::i;:::-;21907:70;21970:6;21965:3;21907:70;:::i;:::-;21900:77;;21986:52;22031:6;22026:3;22019:4;22012:5;22008:16;21986:52;:::i;:::-;22063:29;22085:6;22063:29;:::i;:::-;22058:3;22054:39;22047:46;;21829:270;21739:360;;;;:::o;22105:640::-;22300:4;22338:3;22327:9;22323:19;22315:27;;22352:71;22420:1;22409:9;22405:17;22396:6;22352:71;:::i;:::-;22433:72;22501:2;22490:9;22486:18;22477:6;22433:72;:::i;:::-;22515;22583:2;22572:9;22568:18;22559:6;22515:72;:::i;:::-;22634:9;22628:4;22624:20;22619:2;22608:9;22604:18;22597:48;22662:76;22733:4;22724:6;22662:76;:::i;:::-;22654:84;;22105:640;;;;;;;:::o;22751:141::-;22807:5;22838:6;22832:13;22823:22;;22854:32;22880:5;22854:32;:::i;:::-;22751:141;;;;:::o;22898:349::-;22967:6;23016:2;23004:9;22995:7;22991:23;22987:32;22984:119;;;23022:79;;:::i;:::-;22984:119;23142:1;23167:63;23222:7;23213:6;23202:9;23198:22;23167:63;:::i;:::-;23157:73;;23113:127;22898:349;;;;:::o;23253:233::-;23292:3;23315:24;23333:5;23315:24;:::i;:::-;23306:33;;23361:66;23354:5;23351:77;23348:103;;;23431:18;;:::i;:::-;23348:103;23478:1;23471:5;23467:13;23460:20;;23253:233;;;:::o;23492:180::-;23540:77;23537:1;23530:88;23637:4;23634:1;23627:15;23661:4;23658:1;23651:15;23678:185;23718:1;23735:20;23753:1;23735:20;:::i;:::-;23730:25;;23769:20;23787:1;23769:20;:::i;:::-;23764:25;;23808:1;23798:35;;23813:18;;:::i;:::-;23798:35;23855:1;23852;23848:9;23843:14;;23678:185;;;;:::o;23869:176::-;23901:1;23918:20;23936:1;23918:20;:::i;:::-;23913:25;;23952:20;23970:1;23952:20;:::i;:::-;23947:25;;23991:1;23981:35;;23996:18;;:::i;:::-;23981:35;24037:1;24034;24030:9;24025:14;;23869:176;;;;:::o;24051:180::-;24099:77;24096:1;24089:88;24196:4;24193:1;24186:15;24220:4;24217:1;24210:15

Swarm Source

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