ETH Price: $2,630.47 (+2.22%)

Token

luckytiger (LT)
 

Overview

Max Total Supply

1,000 LT

Holders

686

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LT
0x3344418553159f712d50b8babfb95d3c3fd70400
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:
luckytiger

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-24
*/

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721L.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 ERC721L 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 1;
    }

    /**
     * @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 = ERC721L.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;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            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 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/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: contracts/luckytiger.sol


pragma solidity ^0.8.16;


    /**
     * lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky!
     */
contract luckytiger is ERC721L, Ownable {
    using Strings for uint256;
    string prizeTokenURI;
    string baseTokenURI;
    address public withdrawAddress = 0x511604E18d63D32ac2605B5f0aF0cF580D21FA49;
    bool public pauseMint;
    bool lucky;
    uint256 public price = 0.01 * 10 ** 18;
    uint public constant maxTotal = 1000;
    event NEWLucky(uint256 _tokenId, bool lucky);
    mapping(address => bool) whiteLists;
    mapping(uint256 => bool) tokenId_luckys;
    /**
     * lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky!
     */
    constructor(string memory _prizeTokenURI, string memory _baseTokenURI)  
     ERC721L("luckytiger", "LT")  {
        prizeTokenURI = _prizeTokenURI;
        baseTokenURI = _baseTokenURI;
    }
    /**
     * lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky!
     */ 
    function setWhiteLists(address[] calldata to)public onlyOwner {
       for(uint32 i = 0; i < to.length; i++){
           address _user = to[i];
           whiteLists[_user] = true;}
    }
    function removeWhitelistUser(address _user) public onlyOwner {
        whiteLists[_user] = false;
    }
    function isWhiteList(address _user)public view returns(bool){
        return whiteLists[_user];
    }
    /**
     * lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky!
     */
    function setMintPrice(uint256 _price) public onlyOwner {
        price = _price;
    } 
    function setPauseMint() public onlyOwner {
        pauseMint = !pauseMint;
    }
    /**
     * lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky!
     */
    function addBonusPool()public payable{
    }
    function isPrize(uint256 tokenId) public view returns (bool){
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');
        return tokenId_luckys[tokenId];
    }
    /**
     * lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky!
     */
    function freeMint(address _user) public {
        uint256 supply = totalSupply(); 
        require(!pauseMint, "Pause mint");
        require(whiteLists[_user], "Not whiteLists user");
        require(supply + 1 <= maxTotal, "Exceeds maximum supply");
        _safeMint(msg.sender, 1);
        whiteLists[_user] = false;
        bool randLucky = _getRandom();
        uint256 tokenId = _totalMinted();
        emit NEWLucky(tokenId, randLucky);
        tokenId_luckys[tokenId] = lucky;
        if(tokenId_luckys[tokenId] == true){
        require(payable(msg.sender).send((price * 95) / 100));
        require(payable(withdrawAddress).send((price * 5) / 100));}
    }
    /**
     * lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky!
     */
    function publicMint() public payable {
        uint256 supply = totalSupply();
        require(!pauseMint, "Pause mint");
        require(msg.value >= price, "Ether sent is not correct");
        require(supply + 1 <= maxTotal, "Exceeds maximum supply");
        _safeMint(msg.sender, 1);
        bool randLucky = _getRandom();
        uint256 tokenId = _totalMinted();
        emit NEWLucky(tokenId, randLucky);
        tokenId_luckys[tokenId] = lucky;
        if(tokenId_luckys[tokenId] == true){
        require(payable(msg.sender).send((price * 190) / 100));
        require(payable(withdrawAddress).send((price * 10) / 100));}
    }
    /**
     * lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky!
     */
    function withdraw() public onlyOwner {
        require(payable(withdrawAddress).send(address(this).balance));
    } 
    /**
     * lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky!
     */  
    function _getRandom() private returns(bool) {
        uint256 random = uint256(keccak256(abi.encodePacked(block.difficulty, block.timestamp)));
        uint256 rand = random%2;
        if(rand == 0){return lucky = false;}
        else         {return lucky = true;}
    }
    /**
     * lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky!
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
     require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');
      if(tokenId_luckys[tokenId]) {
            return string(abi.encodePacked(prizeTokenURI, Strings.toString(tokenId), ".json"));}
      else {
          return string(abi.encodePacked(baseTokenURI, Strings.toString(tokenId), ".json"));}
    }
    /**
     * lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky! lucky!
     */
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_prizeTokenURI","type":"string"},{"internalType":"string","name":"_baseTokenURI","type":"string"}],"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"},{"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":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"bool","name":"lucky","type":"bool"}],"name":"NEWLucky","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"addBonusPool","outputs":[],"stateMutability":"payable","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":[{"internalType":"address","name":"_user","type":"address"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isPrize","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotal","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":"pauseMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPauseMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"setWhiteLists","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"},{"inputs":[],"name":"withdrawAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405273511604e18d63d32ac2605b5f0af0cf580d21fa49600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550662386f26fc10000600c553480156200007157600080fd5b50604051620040f8380380620040f88339818101604052810190620000979190620003f5565b6040518060400160405280600a81526020017f6c75636b797469676572000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4c540000000000000000000000000000000000000000000000000000000000008152508160029081620001149190620006c5565b508060039081620001269190620006c5565b50620001376200018b60201b60201c565b60008190555050506200015f620001536200019460201b60201c565b6200019c60201b60201c565b8160099081620001709190620006c5565b5080600a9081620001829190620006c5565b505050620007ac565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002cb8262000280565b810181811067ffffffffffffffff82111715620002ed57620002ec62000291565b5b80604052505050565b60006200030262000262565b9050620003108282620002c0565b919050565b600067ffffffffffffffff82111562000333576200033262000291565b5b6200033e8262000280565b9050602081019050919050565b60005b838110156200036b5780820151818401526020810190506200034e565b60008484015250505050565b60006200038e620003888462000315565b620002f6565b905082815260208101848484011115620003ad57620003ac6200027b565b5b620003ba8482856200034b565b509392505050565b600082601f830112620003da57620003d962000276565b5b8151620003ec84826020860162000377565b91505092915050565b600080604083850312156200040f576200040e6200026c565b5b600083015167ffffffffffffffff81111562000430576200042f62000271565b5b6200043e85828601620003c2565b925050602083015167ffffffffffffffff81111562000462576200046162000271565b5b6200047085828601620003c2565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004cd57607f821691505b602082108103620004e357620004e262000485565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200054d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200050e565b6200055986836200050e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005a6620005a06200059a8462000571565b6200057b565b62000571565b9050919050565b6000819050919050565b620005c28362000585565b620005da620005d182620005ad565b8484546200051b565b825550505050565b600090565b620005f1620005e2565b620005fe818484620005b7565b505050565b5b8181101562000626576200061a600082620005e7565b60018101905062000604565b5050565b601f82111562000675576200063f81620004e9565b6200064a84620004fe565b810160208510156200065a578190505b620006726200066985620004fe565b83018262000603565b50505b505050565b600082821c905092915050565b60006200069a600019846008026200067a565b1980831691505092915050565b6000620006b5838362000687565b9150826002028217905092915050565b620006d0826200047a565b67ffffffffffffffff811115620006ec57620006eb62000291565b5b620006f88254620004b4565b620007058282856200062a565b600060209050601f8311600181146200073d576000841562000728578287015190505b620007348582620006a7565b865550620007a4565b601f1984166200074d86620004e9565b60005b82811015620007775784890151825560018201915060208501945060208101905062000750565b8683101562000797578489015162000793601f89168262000687565b8355505b6001600288020188555050505b505050505050565b61393c80620007bc6000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063cd85cdb511610095578063f4a0a52811610064578063f4a0a52814610658578063f99031a714610681578063fa07ce1d146106be578063fc31f0bf146106e7576101d8565b8063cd85cdb5146105bd578063e20c4ec8146105e8578063e985e9c5146105f2578063f2fde38b1461062f576101d8565b8063a035b1fe116100d1578063a035b1fe14610503578063a22cb4651461052e578063b88d4fde14610557578063c87b56dd14610580576101d8565b806370a0823114610459578063715018a6146104965780638da5cb5b146104ad57806395d89b41146104d8576101d8565b806326092b831161017a57806342842e0e1161014957806342842e0e146103b157806360d8d3d9146103da5780636352211e146103f1578063648e3c261461042e576101d8565b806326092b831461032a5780632c88af5e1461033457806330cc7ae0146103715780633ccfd60b1461039a576101d8565b8063095ea7b3116101b6578063095ea7b3146102825780631581b600146102ab57806318160ddd146102d657806323b872dd14610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612a8e565b610710565b6040516102119190612ad6565b60405180910390f35b34801561022657600080fd5b5061022f6107f2565b60405161023c9190612b81565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612bd9565b610884565b6040516102799190612c47565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612c8e565b610900565b005b3480156102b757600080fd5b506102c0610a0a565b6040516102cd9190612c47565b60405180910390f35b3480156102e257600080fd5b506102eb610a30565b6040516102f89190612cdd565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612cf8565b610a47565b005b610332610a57565b005b34801561034057600080fd5b5061035b60048036038101906103569190612bd9565b610ce3565b6040516103689190612ad6565b60405180910390f35b34801561037d57600080fd5b5061039860048036038101906103939190612d4b565b610d55565b005b3480156103a657600080fd5b506103af610db8565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612cf8565b610e22565b005b3480156103e657600080fd5b506103ef610e42565b005b3480156103fd57600080fd5b5061041860048036038101906104139190612bd9565b610e76565b6040516104259190612c47565b60405180910390f35b34801561043a57600080fd5b50610443610e8c565b6040516104509190612cdd565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612d4b565b610e92565b60405161048d9190612cdd565b60405180910390f35b3480156104a257600080fd5b506104ab610f61565b005b3480156104b957600080fd5b506104c2610f75565b6040516104cf9190612c47565b60405180910390f35b3480156104e457600080fd5b506104ed610f9f565b6040516104fa9190612b81565b60405180910390f35b34801561050f57600080fd5b50610518611031565b6040516105259190612cdd565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190612da4565b611037565b005b34801561056357600080fd5b5061057e60048036038101906105799190612f19565b6111ae565b005b34801561058c57600080fd5b506105a760048036038101906105a29190612bd9565b61122a565b6040516105b49190612b81565b60405180910390f35b3480156105c957600080fd5b506105d26112ff565b6040516105df9190612ad6565b60405180910390f35b6105f0611312565b005b3480156105fe57600080fd5b5061061960048036038101906106149190612f9c565b611314565b6040516106269190612ad6565b60405180910390f35b34801561063b57600080fd5b5061065660048036038101906106519190612d4b565b6113a8565b005b34801561066457600080fd5b5061067f600480360381019061067a9190612bd9565b61142b565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612d4b565b61143d565b6040516106b59190612ad6565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190612d4b565b611493565b005b3480156106f357600080fd5b5061070e6004803603810190610709919061303c565b6117bf565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107db57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107eb57506107ea8261187e565b5b9050919050565b606060028054610801906130b8565b80601f016020809104026020016040519081016040528092919081815260200182805461082d906130b8565b801561087a5780601f1061084f5761010080835404028352916020019161087a565b820191906000526020600020905b81548152906001019060200180831161085d57829003601f168201915b5050505050905090565b600061088f826118e8565b6108c5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090b82610e76565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610972576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610991611936565b73ffffffffffffffffffffffffffffffffffffffff16141580156109c357506109c1816109bc611936565b611314565b155b156109fa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a0583838361193e565b505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a3a6119f0565b6001546000540303905090565b610a528383836119f9565b505050565b6000610a61610a30565b9050600b60149054906101000a900460ff1615610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90613135565b60405180910390fd5b600c54341015610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef906131a1565b60405180910390fd5b6103e8600182610b0891906131f0565b1115610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090613270565b60405180910390fd5b610b54336001611ead565b6000610b5e611ecb565b90506000610b6a611f5a565b90507f6dd0b1196e80c465d51f2d7a9488c932354b5b80e48a0e074a1e964081efcc908183604051610b9d929190613290565b60405180910390a1600b60159054906101000a900460ff16600e600083815260200190815260200160002060006101000a81548160ff02191690831515021790555060011515600e600083815260200190815260200160002060009054906101000a900460ff16151503610cde573373ffffffffffffffffffffffffffffffffffffffff166108fc606460be600c54610c3691906132b9565b610c409190613342565b9081150290604051600060405180830381858888f19350505050610c6357600080fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a600c54610cb091906132b9565b610cba9190613342565b9081150290604051600060405180830381858888f19350505050610cdd57600080fd5b5b505050565b6000610cee826118e8565b610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d24906133e5565b60405180910390fd5b600e600083815260200190815260200160002060009054906101000a900460ff169050919050565b610d5d611f6d565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610dc0611f6d565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610e2057600080fd5b565b610e3d838383604051806020016040528060008152506111ae565b505050565b610e4a611f6d565b600b60149054906101000a900460ff1615600b60146101000a81548160ff021916908315150217905550565b6000610e8182611feb565b600001519050919050565b6103e881565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f69611f6d565b610f73600061227a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fae906130b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610fda906130b8565b80156110275780601f10610ffc57610100808354040283529160200191611027565b820191906000526020600020905b81548152906001019060200180831161100a57829003601f168201915b5050505050905090565b600c5481565b61103f611936565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110b0611936565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661115d611936565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111a29190612ad6565b60405180910390a35050565b6111b98484846119f9565b6111d88373ffffffffffffffffffffffffffffffffffffffff16612340565b80156111ed57506111eb84848484612363565b155b15611224576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611235826118e8565b611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b906133e5565b60405180910390fd5b600e600083815260200190815260200160002060009054906101000a900460ff16156112cc5760096112a5836124b3565b6040516020016112b6929190613525565b60405160208183030381529060405290506112fa565b600a6112d7836124b3565b6040516020016112e8929190613525565b60405160208183030381529060405290505b919050565b600b60149054906101000a900460ff1681565b565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113b0611f6d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361141f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611416906135c6565b60405180910390fd5b6114288161227a565b50565b611433611f6d565b80600c8190555050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061149d610a30565b9050600b60149054906101000a900460ff16156114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e690613135565b60405180910390fd5b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290613632565b60405180910390fd5b6103e860018261158b91906131f0565b11156115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390613270565b60405180910390fd5b6115d7336001611ead565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000611639611ecb565b90506000611645611f5a565b90507f6dd0b1196e80c465d51f2d7a9488c932354b5b80e48a0e074a1e964081efcc908183604051611678929190613290565b60405180910390a1600b60159054906101000a900460ff16600e600083815260200190815260200160002060006101000a81548160ff02191690831515021790555060011515600e600083815260200190815260200160002060009054906101000a900460ff161515036117b9573373ffffffffffffffffffffffffffffffffffffffff166108fc6064605f600c5461171191906132b9565b61171b9190613342565b9081150290604051600060405180830381858888f1935050505061173e57600080fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646005600c5461178b91906132b9565b6117959190613342565b9081150290604051600060405180830381858888f193505050506117b857600080fd5b5b50505050565b6117c7611f6d565b60005b828290508163ffffffff16101561187957600083838363ffffffff168181106117f6576117f5613652565b5b905060200201602081019061180b9190612d4b565b90506001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061187190613691565b9150506117ca565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118f36119f0565b11158015611902575060005482105b801561192f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611a0482611feb565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a6f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a90611936565b73ffffffffffffffffffffffffffffffffffffffff161480611abf5750611abe85611ab9611936565b611314565b5b80611b045750611acd611936565b73ffffffffffffffffffffffffffffffffffffffff16611aec84610884565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b3d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ba3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bb08585856001612613565b611bbc6000848761193e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611e3b576000548214611e3a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ea68585856001612619565b5050505050565b611ec782826040518060200160405280600081525061261f565b5050565b6000804442604051602001611ee19291906136de565b6040516020818303038152906040528051906020012060001c90506000600282611f0b919061370a565b905060008103611f38576000600b60156101000a81548160ff021916908315150217905592505050611f57565b6001600b60156101000a81548160ff0219169083151502179055925050505b90565b6000611f646119f0565b60005403905090565b611f75611936565b73ffffffffffffffffffffffffffffffffffffffff16611f93610f75565b73ffffffffffffffffffffffffffffffffffffffff1614611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090613787565b60405180910390fd5b565b611ff36129df565b6000829050806120016119f0565b11158015612010575060005481105b15612243576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161224157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612125578092505050612275565b5b60011561224057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461223b578092505050612275565b612126565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612389611936565b8786866040518563ffffffff1660e01b81526004016123ab94939291906137fc565b6020604051808303816000875af19250505080156123e757506040513d601f19601f820116820180604052508101906123e4919061385d565b60015b612460573d8060008114612417576040519150601f19603f3d011682016040523d82523d6000602084013e61241c565b606091505b506000815103612458576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036124fa576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061260e565b600082905060005b6000821461252c5780806125159061388a565b915050600a826125259190613342565b9150612502565b60008167ffffffffffffffff81111561254857612547612dee565b5b6040519080825280601f01601f19166020018201604052801561257a5781602001600182028036833780820191505090505b5090505b600085146126075760018261259391906138d2565b9150600a856125a2919061370a565b60306125ae91906131f0565b60f81b8183815181106125c4576125c3613652565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126009190613342565b945061257e565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361268b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036126c5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126d26000858386612613565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506128938673ffffffffffffffffffffffffffffffffffffffff16612340565b15612958575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129086000878480600101955087612363565b61293e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361289957826000541461295357600080fd5b6129c3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612959575b8160008190555050506129d96000858386612619565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a6b81612a36565b8114612a7657600080fd5b50565b600081359050612a8881612a62565b92915050565b600060208284031215612aa457612aa3612a2c565b5b6000612ab284828501612a79565b91505092915050565b60008115159050919050565b612ad081612abb565b82525050565b6000602082019050612aeb6000830184612ac7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b2b578082015181840152602081019050612b10565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b5382612af1565b612b5d8185612afc565b9350612b6d818560208601612b0d565b612b7681612b37565b840191505092915050565b60006020820190508181036000830152612b9b8184612b48565b905092915050565b6000819050919050565b612bb681612ba3565b8114612bc157600080fd5b50565b600081359050612bd381612bad565b92915050565b600060208284031215612bef57612bee612a2c565b5b6000612bfd84828501612bc4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c3182612c06565b9050919050565b612c4181612c26565b82525050565b6000602082019050612c5c6000830184612c38565b92915050565b612c6b81612c26565b8114612c7657600080fd5b50565b600081359050612c8881612c62565b92915050565b60008060408385031215612ca557612ca4612a2c565b5b6000612cb385828601612c79565b9250506020612cc485828601612bc4565b9150509250929050565b612cd781612ba3565b82525050565b6000602082019050612cf26000830184612cce565b92915050565b600080600060608486031215612d1157612d10612a2c565b5b6000612d1f86828701612c79565b9350506020612d3086828701612c79565b9250506040612d4186828701612bc4565b9150509250925092565b600060208284031215612d6157612d60612a2c565b5b6000612d6f84828501612c79565b91505092915050565b612d8181612abb565b8114612d8c57600080fd5b50565b600081359050612d9e81612d78565b92915050565b60008060408385031215612dbb57612dba612a2c565b5b6000612dc985828601612c79565b9250506020612dda85828601612d8f565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e2682612b37565b810181811067ffffffffffffffff82111715612e4557612e44612dee565b5b80604052505050565b6000612e58612a22565b9050612e648282612e1d565b919050565b600067ffffffffffffffff821115612e8457612e83612dee565b5b612e8d82612b37565b9050602081019050919050565b82818337600083830152505050565b6000612ebc612eb784612e69565b612e4e565b905082815260208101848484011115612ed857612ed7612de9565b5b612ee3848285612e9a565b509392505050565b600082601f830112612f0057612eff612de4565b5b8135612f10848260208601612ea9565b91505092915050565b60008060008060808587031215612f3357612f32612a2c565b5b6000612f4187828801612c79565b9450506020612f5287828801612c79565b9350506040612f6387828801612bc4565b925050606085013567ffffffffffffffff811115612f8457612f83612a31565b5b612f9087828801612eeb565b91505092959194509250565b60008060408385031215612fb357612fb2612a2c565b5b6000612fc185828601612c79565b9250506020612fd285828601612c79565b9150509250929050565b600080fd5b600080fd5b60008083601f840112612ffc57612ffb612de4565b5b8235905067ffffffffffffffff81111561301957613018612fdc565b5b60208301915083602082028301111561303557613034612fe1565b5b9250929050565b6000806020838503121561305357613052612a2c565b5b600083013567ffffffffffffffff81111561307157613070612a31565b5b61307d85828601612fe6565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130d057607f821691505b6020821081036130e3576130e2613089565b5b50919050565b7f5061757365206d696e7400000000000000000000000000000000000000000000600082015250565b600061311f600a83612afc565b915061312a826130e9565b602082019050919050565b6000602082019050818103600083015261314e81613112565b9050919050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b600061318b601983612afc565b915061319682613155565b602082019050919050565b600060208201905081810360008301526131ba8161317e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131fb82612ba3565b915061320683612ba3565b925082820190508082111561321e5761321d6131c1565b5b92915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b600061325a601683612afc565b915061326582613224565b602082019050919050565b600060208201905081810360008301526132898161324d565b9050919050565b60006040820190506132a56000830185612cce565b6132b26020830184612ac7565b9392505050565b60006132c482612ba3565b91506132cf83612ba3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613308576133076131c1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061334d82612ba3565b915061335883612ba3565b92508261336857613367613313565b5b828204905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133cf602f83612afc565b91506133da82613373565b604082019050919050565b600060208201905081810360008301526133fe816133c2565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613432816130b8565b61343c8186613405565b94506001821660008114613457576001811461346c5761349f565b60ff198316865281151582028601935061349f565b61347585613410565b60005b8381101561349757815481890152600182019150602081019050613478565b838801955050505b50505092915050565b60006134b382612af1565b6134bd8185613405565b93506134cd818560208601612b0d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061350f600583613405565b915061351a826134d9565b600582019050919050565b60006135318285613425565b915061353d82846134a8565b915061354882613502565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135b0602683612afc565b91506135bb82613554565b604082019050919050565b600060208201905081810360008301526135df816135a3565b9050919050565b7f4e6f742077686974654c69737473207573657200000000000000000000000000600082015250565b600061361c601383612afc565b9150613627826135e6565b602082019050919050565b6000602082019050818103600083015261364b8161360f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600063ffffffff82169050919050565b600061369c82613681565b915063ffffffff82036136b2576136b16131c1565b5b600182019050919050565b6000819050919050565b6136d86136d382612ba3565b6136bd565b82525050565b60006136ea82856136c7565b6020820191506136fa82846136c7565b6020820191508190509392505050565b600061371582612ba3565b915061372083612ba3565b9250826137305761372f613313565b5b828206905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613771602083612afc565b915061377c8261373b565b602082019050919050565b600060208201905081810360008301526137a081613764565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137ce826137a7565b6137d881856137b2565b93506137e8818560208601612b0d565b6137f181612b37565b840191505092915050565b60006080820190506138116000830187612c38565b61381e6020830186612c38565b61382b6040830185612cce565b818103606083015261383d81846137c3565b905095945050505050565b60008151905061385781612a62565b92915050565b60006020828403121561387357613872612a2c565b5b600061388184828501613848565b91505092915050565b600061389582612ba3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138c7576138c66131c1565b5b600182019050919050565b60006138dd82612ba3565b91506138e883612ba3565b9250828203905081811115613900576138ff6131c1565b5b9291505056fea2646970667358221220bddd7fc4c519d51f59614c8f496146e87ded201d12b532000e626ad0145975c364736f6c63430008100033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569663578726e616c6666796b656364756d776878647434786364617a7077686a6362727165327034326661657167787462666863612f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696864646a7872636d3276717767696570376469706f6a77686d6b6e3732676864366c6c766b7a70676962656d6c676135367a63612f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063cd85cdb511610095578063f4a0a52811610064578063f4a0a52814610658578063f99031a714610681578063fa07ce1d146106be578063fc31f0bf146106e7576101d8565b8063cd85cdb5146105bd578063e20c4ec8146105e8578063e985e9c5146105f2578063f2fde38b1461062f576101d8565b8063a035b1fe116100d1578063a035b1fe14610503578063a22cb4651461052e578063b88d4fde14610557578063c87b56dd14610580576101d8565b806370a0823114610459578063715018a6146104965780638da5cb5b146104ad57806395d89b41146104d8576101d8565b806326092b831161017a57806342842e0e1161014957806342842e0e146103b157806360d8d3d9146103da5780636352211e146103f1578063648e3c261461042e576101d8565b806326092b831461032a5780632c88af5e1461033457806330cc7ae0146103715780633ccfd60b1461039a576101d8565b8063095ea7b3116101b6578063095ea7b3146102825780631581b600146102ab57806318160ddd146102d657806323b872dd14610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612a8e565b610710565b6040516102119190612ad6565b60405180910390f35b34801561022657600080fd5b5061022f6107f2565b60405161023c9190612b81565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612bd9565b610884565b6040516102799190612c47565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612c8e565b610900565b005b3480156102b757600080fd5b506102c0610a0a565b6040516102cd9190612c47565b60405180910390f35b3480156102e257600080fd5b506102eb610a30565b6040516102f89190612cdd565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612cf8565b610a47565b005b610332610a57565b005b34801561034057600080fd5b5061035b60048036038101906103569190612bd9565b610ce3565b6040516103689190612ad6565b60405180910390f35b34801561037d57600080fd5b5061039860048036038101906103939190612d4b565b610d55565b005b3480156103a657600080fd5b506103af610db8565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612cf8565b610e22565b005b3480156103e657600080fd5b506103ef610e42565b005b3480156103fd57600080fd5b5061041860048036038101906104139190612bd9565b610e76565b6040516104259190612c47565b60405180910390f35b34801561043a57600080fd5b50610443610e8c565b6040516104509190612cdd565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612d4b565b610e92565b60405161048d9190612cdd565b60405180910390f35b3480156104a257600080fd5b506104ab610f61565b005b3480156104b957600080fd5b506104c2610f75565b6040516104cf9190612c47565b60405180910390f35b3480156104e457600080fd5b506104ed610f9f565b6040516104fa9190612b81565b60405180910390f35b34801561050f57600080fd5b50610518611031565b6040516105259190612cdd565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190612da4565b611037565b005b34801561056357600080fd5b5061057e60048036038101906105799190612f19565b6111ae565b005b34801561058c57600080fd5b506105a760048036038101906105a29190612bd9565b61122a565b6040516105b49190612b81565b60405180910390f35b3480156105c957600080fd5b506105d26112ff565b6040516105df9190612ad6565b60405180910390f35b6105f0611312565b005b3480156105fe57600080fd5b5061061960048036038101906106149190612f9c565b611314565b6040516106269190612ad6565b60405180910390f35b34801561063b57600080fd5b5061065660048036038101906106519190612d4b565b6113a8565b005b34801561066457600080fd5b5061067f600480360381019061067a9190612bd9565b61142b565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612d4b565b61143d565b6040516106b59190612ad6565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190612d4b565b611493565b005b3480156106f357600080fd5b5061070e6004803603810190610709919061303c565b6117bf565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107db57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107eb57506107ea8261187e565b5b9050919050565b606060028054610801906130b8565b80601f016020809104026020016040519081016040528092919081815260200182805461082d906130b8565b801561087a5780601f1061084f5761010080835404028352916020019161087a565b820191906000526020600020905b81548152906001019060200180831161085d57829003601f168201915b5050505050905090565b600061088f826118e8565b6108c5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090b82610e76565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610972576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610991611936565b73ffffffffffffffffffffffffffffffffffffffff16141580156109c357506109c1816109bc611936565b611314565b155b156109fa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a0583838361193e565b505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a3a6119f0565b6001546000540303905090565b610a528383836119f9565b505050565b6000610a61610a30565b9050600b60149054906101000a900460ff1615610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90613135565b60405180910390fd5b600c54341015610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef906131a1565b60405180910390fd5b6103e8600182610b0891906131f0565b1115610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090613270565b60405180910390fd5b610b54336001611ead565b6000610b5e611ecb565b90506000610b6a611f5a565b90507f6dd0b1196e80c465d51f2d7a9488c932354b5b80e48a0e074a1e964081efcc908183604051610b9d929190613290565b60405180910390a1600b60159054906101000a900460ff16600e600083815260200190815260200160002060006101000a81548160ff02191690831515021790555060011515600e600083815260200190815260200160002060009054906101000a900460ff16151503610cde573373ffffffffffffffffffffffffffffffffffffffff166108fc606460be600c54610c3691906132b9565b610c409190613342565b9081150290604051600060405180830381858888f19350505050610c6357600080fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a600c54610cb091906132b9565b610cba9190613342565b9081150290604051600060405180830381858888f19350505050610cdd57600080fd5b5b505050565b6000610cee826118e8565b610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d24906133e5565b60405180910390fd5b600e600083815260200190815260200160002060009054906101000a900460ff169050919050565b610d5d611f6d565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610dc0611f6d565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610e2057600080fd5b565b610e3d838383604051806020016040528060008152506111ae565b505050565b610e4a611f6d565b600b60149054906101000a900460ff1615600b60146101000a81548160ff021916908315150217905550565b6000610e8182611feb565b600001519050919050565b6103e881565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f69611f6d565b610f73600061227a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fae906130b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610fda906130b8565b80156110275780601f10610ffc57610100808354040283529160200191611027565b820191906000526020600020905b81548152906001019060200180831161100a57829003601f168201915b5050505050905090565b600c5481565b61103f611936565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110b0611936565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661115d611936565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111a29190612ad6565b60405180910390a35050565b6111b98484846119f9565b6111d88373ffffffffffffffffffffffffffffffffffffffff16612340565b80156111ed57506111eb84848484612363565b155b15611224576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611235826118e8565b611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b906133e5565b60405180910390fd5b600e600083815260200190815260200160002060009054906101000a900460ff16156112cc5760096112a5836124b3565b6040516020016112b6929190613525565b60405160208183030381529060405290506112fa565b600a6112d7836124b3565b6040516020016112e8929190613525565b60405160208183030381529060405290505b919050565b600b60149054906101000a900460ff1681565b565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113b0611f6d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361141f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611416906135c6565b60405180910390fd5b6114288161227a565b50565b611433611f6d565b80600c8190555050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061149d610a30565b9050600b60149054906101000a900460ff16156114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e690613135565b60405180910390fd5b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290613632565b60405180910390fd5b6103e860018261158b91906131f0565b11156115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390613270565b60405180910390fd5b6115d7336001611ead565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000611639611ecb565b90506000611645611f5a565b90507f6dd0b1196e80c465d51f2d7a9488c932354b5b80e48a0e074a1e964081efcc908183604051611678929190613290565b60405180910390a1600b60159054906101000a900460ff16600e600083815260200190815260200160002060006101000a81548160ff02191690831515021790555060011515600e600083815260200190815260200160002060009054906101000a900460ff161515036117b9573373ffffffffffffffffffffffffffffffffffffffff166108fc6064605f600c5461171191906132b9565b61171b9190613342565b9081150290604051600060405180830381858888f1935050505061173e57600080fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646005600c5461178b91906132b9565b6117959190613342565b9081150290604051600060405180830381858888f193505050506117b857600080fd5b5b50505050565b6117c7611f6d565b60005b828290508163ffffffff16101561187957600083838363ffffffff168181106117f6576117f5613652565b5b905060200201602081019061180b9190612d4b565b90506001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061187190613691565b9150506117ca565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118f36119f0565b11158015611902575060005482105b801561192f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611a0482611feb565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a6f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a90611936565b73ffffffffffffffffffffffffffffffffffffffff161480611abf5750611abe85611ab9611936565b611314565b5b80611b045750611acd611936565b73ffffffffffffffffffffffffffffffffffffffff16611aec84610884565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b3d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ba3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bb08585856001612613565b611bbc6000848761193e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611e3b576000548214611e3a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ea68585856001612619565b5050505050565b611ec782826040518060200160405280600081525061261f565b5050565b6000804442604051602001611ee19291906136de565b6040516020818303038152906040528051906020012060001c90506000600282611f0b919061370a565b905060008103611f38576000600b60156101000a81548160ff021916908315150217905592505050611f57565b6001600b60156101000a81548160ff0219169083151502179055925050505b90565b6000611f646119f0565b60005403905090565b611f75611936565b73ffffffffffffffffffffffffffffffffffffffff16611f93610f75565b73ffffffffffffffffffffffffffffffffffffffff1614611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090613787565b60405180910390fd5b565b611ff36129df565b6000829050806120016119f0565b11158015612010575060005481105b15612243576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161224157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612125578092505050612275565b5b60011561224057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461223b578092505050612275565b612126565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612389611936565b8786866040518563ffffffff1660e01b81526004016123ab94939291906137fc565b6020604051808303816000875af19250505080156123e757506040513d601f19601f820116820180604052508101906123e4919061385d565b60015b612460573d8060008114612417576040519150601f19603f3d011682016040523d82523d6000602084013e61241c565b606091505b506000815103612458576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036124fa576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061260e565b600082905060005b6000821461252c5780806125159061388a565b915050600a826125259190613342565b9150612502565b60008167ffffffffffffffff81111561254857612547612dee565b5b6040519080825280601f01601f19166020018201604052801561257a5781602001600182028036833780820191505090505b5090505b600085146126075760018261259391906138d2565b9150600a856125a2919061370a565b60306125ae91906131f0565b60f81b8183815181106125c4576125c3613652565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126009190613342565b945061257e565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361268b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036126c5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126d26000858386612613565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506128938673ffffffffffffffffffffffffffffffffffffffff16612340565b15612958575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129086000878480600101955087612363565b61293e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361289957826000541461295357600080fd5b6129c3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612959575b8160008190555050506129d96000858386612619565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a6b81612a36565b8114612a7657600080fd5b50565b600081359050612a8881612a62565b92915050565b600060208284031215612aa457612aa3612a2c565b5b6000612ab284828501612a79565b91505092915050565b60008115159050919050565b612ad081612abb565b82525050565b6000602082019050612aeb6000830184612ac7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b2b578082015181840152602081019050612b10565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b5382612af1565b612b5d8185612afc565b9350612b6d818560208601612b0d565b612b7681612b37565b840191505092915050565b60006020820190508181036000830152612b9b8184612b48565b905092915050565b6000819050919050565b612bb681612ba3565b8114612bc157600080fd5b50565b600081359050612bd381612bad565b92915050565b600060208284031215612bef57612bee612a2c565b5b6000612bfd84828501612bc4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c3182612c06565b9050919050565b612c4181612c26565b82525050565b6000602082019050612c5c6000830184612c38565b92915050565b612c6b81612c26565b8114612c7657600080fd5b50565b600081359050612c8881612c62565b92915050565b60008060408385031215612ca557612ca4612a2c565b5b6000612cb385828601612c79565b9250506020612cc485828601612bc4565b9150509250929050565b612cd781612ba3565b82525050565b6000602082019050612cf26000830184612cce565b92915050565b600080600060608486031215612d1157612d10612a2c565b5b6000612d1f86828701612c79565b9350506020612d3086828701612c79565b9250506040612d4186828701612bc4565b9150509250925092565b600060208284031215612d6157612d60612a2c565b5b6000612d6f84828501612c79565b91505092915050565b612d8181612abb565b8114612d8c57600080fd5b50565b600081359050612d9e81612d78565b92915050565b60008060408385031215612dbb57612dba612a2c565b5b6000612dc985828601612c79565b9250506020612dda85828601612d8f565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e2682612b37565b810181811067ffffffffffffffff82111715612e4557612e44612dee565b5b80604052505050565b6000612e58612a22565b9050612e648282612e1d565b919050565b600067ffffffffffffffff821115612e8457612e83612dee565b5b612e8d82612b37565b9050602081019050919050565b82818337600083830152505050565b6000612ebc612eb784612e69565b612e4e565b905082815260208101848484011115612ed857612ed7612de9565b5b612ee3848285612e9a565b509392505050565b600082601f830112612f0057612eff612de4565b5b8135612f10848260208601612ea9565b91505092915050565b60008060008060808587031215612f3357612f32612a2c565b5b6000612f4187828801612c79565b9450506020612f5287828801612c79565b9350506040612f6387828801612bc4565b925050606085013567ffffffffffffffff811115612f8457612f83612a31565b5b612f9087828801612eeb565b91505092959194509250565b60008060408385031215612fb357612fb2612a2c565b5b6000612fc185828601612c79565b9250506020612fd285828601612c79565b9150509250929050565b600080fd5b600080fd5b60008083601f840112612ffc57612ffb612de4565b5b8235905067ffffffffffffffff81111561301957613018612fdc565b5b60208301915083602082028301111561303557613034612fe1565b5b9250929050565b6000806020838503121561305357613052612a2c565b5b600083013567ffffffffffffffff81111561307157613070612a31565b5b61307d85828601612fe6565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130d057607f821691505b6020821081036130e3576130e2613089565b5b50919050565b7f5061757365206d696e7400000000000000000000000000000000000000000000600082015250565b600061311f600a83612afc565b915061312a826130e9565b602082019050919050565b6000602082019050818103600083015261314e81613112565b9050919050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b600061318b601983612afc565b915061319682613155565b602082019050919050565b600060208201905081810360008301526131ba8161317e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131fb82612ba3565b915061320683612ba3565b925082820190508082111561321e5761321d6131c1565b5b92915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b600061325a601683612afc565b915061326582613224565b602082019050919050565b600060208201905081810360008301526132898161324d565b9050919050565b60006040820190506132a56000830185612cce565b6132b26020830184612ac7565b9392505050565b60006132c482612ba3565b91506132cf83612ba3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613308576133076131c1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061334d82612ba3565b915061335883612ba3565b92508261336857613367613313565b5b828204905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133cf602f83612afc565b91506133da82613373565b604082019050919050565b600060208201905081810360008301526133fe816133c2565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613432816130b8565b61343c8186613405565b94506001821660008114613457576001811461346c5761349f565b60ff198316865281151582028601935061349f565b61347585613410565b60005b8381101561349757815481890152600182019150602081019050613478565b838801955050505b50505092915050565b60006134b382612af1565b6134bd8185613405565b93506134cd818560208601612b0d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061350f600583613405565b915061351a826134d9565b600582019050919050565b60006135318285613425565b915061353d82846134a8565b915061354882613502565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135b0602683612afc565b91506135bb82613554565b604082019050919050565b600060208201905081810360008301526135df816135a3565b9050919050565b7f4e6f742077686974654c69737473207573657200000000000000000000000000600082015250565b600061361c601383612afc565b9150613627826135e6565b602082019050919050565b6000602082019050818103600083015261364b8161360f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600063ffffffff82169050919050565b600061369c82613681565b915063ffffffff82036136b2576136b16131c1565b5b600182019050919050565b6000819050919050565b6136d86136d382612ba3565b6136bd565b82525050565b60006136ea82856136c7565b6020820191506136fa82846136c7565b6020820191508190509392505050565b600061371582612ba3565b915061372083612ba3565b9250826137305761372f613313565b5b828206905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613771602083612afc565b915061377c8261373b565b602082019050919050565b600060208201905081810360008301526137a081613764565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137ce826137a7565b6137d881856137b2565b93506137e8818560208601612b0d565b6137f181612b37565b840191505092915050565b60006080820190506138116000830187612c38565b61381e6020830186612c38565b61382b6040830185612cce565b818103606083015261383d81846137c3565b905095945050505050565b60008151905061385781612a62565b92915050565b60006020828403121561387357613872612a2c565b5b600061388184828501613848565b91505092915050565b600061389582612ba3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138c7576138c66131c1565b5b600182019050919050565b60006138dd82612ba3565b91506138e883612ba3565b9250828203905081811115613900576138ff6131c1565b5b9291505056fea2646970667358221220bddd7fc4c519d51f59614c8f496146e87ded201d12b532000e626ad0145975c364736f6c63430008100033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569663578726e616c6666796b656364756d776878647434786364617a7077686a6362727165327034326661657167787462666863612f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696864646a7872636d3276717767696570376469706f6a77686d6b6e3732676864366c6c766b7a70676962656d6c676135367a63612f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _prizeTokenURI (string): ipfs://bafybeif5xrnalffykecdumwhxdt4xcdazpwhjcbrqe2p42faeqgxtbfhca/
Arg [1] : _baseTokenURI (string): ipfs://bafybeihddjxrcm2vqwgiep7dipojwhmkn72ghd6llvkzpgibemlga56zca/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 697066733a2f2f62616679626569663578726e616c6666796b656364756d7768
Arg [4] : 78647434786364617a7077686a63627271653270343266616571677874626668
Arg [5] : 63612f0000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [7] : 697066733a2f2f626166796265696864646a7872636d32767177676965703764
Arg [8] : 69706f6a77686d6b6e3732676864366c6c766b7a70676962656d6c676135367a
Arg [9] : 63612f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46586:4790:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24892:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28005:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29508:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29071:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46718:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24141:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30373:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49457:650;;;:::i;:::-;;48354:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47686:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50220:117;;;;;;;;;;;;;:::i;:::-;;30614:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48108:82;;;;;;;;;;;;;:::i;:::-;;27813:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46890:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25261:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45593:103;;;;;;;;;;;;;:::i;:::-;;44945:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28174:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46845:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29784:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30870:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50842:424;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46800:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48303:45;;;:::i;:::-;;30142:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45851:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48013:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47797:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48663:681;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47489:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24892:305;24994:4;25046:25;25031:40;;;:11;:40;;;;:105;;;;25103:33;25088:48;;;:11;:48;;;;25031:105;:158;;;;25153:36;25177:11;25153:23;:36::i;:::-;25031:158;25011:178;;24892:305;;;:::o;28005:100::-;28059:13;28092:5;28085:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28005:100;:::o;29508:204::-;29576:7;29601:16;29609:7;29601;:16::i;:::-;29596:64;;29626:34;;;;;;;;;;;;;;29596:64;29680:15;:24;29696:7;29680:24;;;;;;;;;;;;;;;;;;;;;29673:31;;29508:204;;;:::o;29071:371::-;29144:13;29160:24;29176:7;29160:15;:24::i;:::-;29144:40;;29205:5;29199:11;;:2;:11;;;29195:48;;29219:24;;;;;;;;;;;;;;29195:48;29276:5;29260:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;29286:37;29303:5;29310:12;:10;:12::i;:::-;29286:16;:37::i;:::-;29285:38;29260:63;29256:138;;;29347:35;;;;;;;;;;;;;;29256:138;29406:28;29415:2;29419:7;29428:5;29406:8;:28::i;:::-;29133:309;29071:371;;:::o;46718:75::-;;;;;;;;;;;;;:::o;24141:303::-;24185:7;24410:15;:13;:15::i;:::-;24395:12;;24379:13;;:28;:46;24372:53;;24141:303;:::o;30373:170::-;30507:28;30517:4;30523:2;30527:7;30507:9;:28::i;:::-;30373:170;;;:::o;49457:650::-;49505:14;49522:13;:11;:13::i;:::-;49505:30;;49555:9;;;;;;;;;;;49554:10;49546:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;49611:5;;49598:9;:18;;49590:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;46922:4;49674:1;49665:6;:10;;;;:::i;:::-;:22;;49657:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49725:24;49735:10;49747:1;49725:9;:24::i;:::-;49760:14;49777:12;:10;:12::i;:::-;49760:29;;49800:15;49818:14;:12;:14::i;:::-;49800:32;;49848:28;49857:7;49866:9;49848:28;;;;;;;:::i;:::-;;;;;;;;49913:5;;;;;;;;;;;49887:14;:23;49902:7;49887:23;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;49959:4;49932:31;;:14;:23;49947:7;49932:23;;;;;;;;;;;;;;;;;;;;;:31;;;49929:171;;49991:10;49983:24;;:45;50024:3;50017;50009:5;;:11;;;;:::i;:::-;50008:19;;;;:::i;:::-;49983:45;;;;;;;;;;;;;;;;;;;;;;;49975:54;;;;;;50056:15;;;;;;;;;;;50048:29;;:49;50093:3;50087:2;50079:5;;:10;;;;:::i;:::-;50078:18;;;;:::i;:::-;50048:49;;;;;;;;;;;;;;;;;;;;;;;50040:58;;;;;;49929:171;49494:613;;;49457:650::o;48354:196::-;48409:4;48433:16;48441:7;48433;:16::i;:::-;48425:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48519:14;:23;48534:7;48519:23;;;;;;;;;;;;;;;;;;;;;48512:30;;48354:196;;;:::o;47686:105::-;44831:13;:11;:13::i;:::-;47778:5:::1;47758:10;:17;47769:5;47758:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;47686:105:::0;:::o;50220:117::-;44831:13;:11;:13::i;:::-;50284:15:::1;;;;;;;;;;;50276:29;;:52;50306:21;50276:52;;;;;;;;;;;;;;;;;;;;;;;50268:61;;;::::0;::::1;;50220:117::o:0;30614:185::-;30752:39;30769:4;30775:2;30779:7;30752:39;;;;;;;;;;;;:16;:39::i;:::-;30614:185;;;:::o;48108:82::-;44831:13;:11;:13::i;:::-;48173:9:::1;;;;;;;;;;;48172:10;48160:9;;:22;;;;;;;;;;;;;;;;;;48108:82::o:0;27813:125::-;27877:7;27904:21;27917:7;27904:12;:21::i;:::-;:26;;;27897:33;;27813:125;;;:::o;46890:36::-;46922:4;46890:36;:::o;25261:206::-;25325:7;25366:1;25349:19;;:5;:19;;;25345:60;;25377:28;;;;;;;;;;;;;;25345:60;25431:12;:19;25444:5;25431:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25423:36;;25416:43;;25261:206;;;:::o;45593:103::-;44831:13;:11;:13::i;:::-;45658:30:::1;45685:1;45658:18;:30::i;:::-;45593:103::o:0;44945:87::-;44991:7;45018:6;;;;;;;;;;;45011:13;;44945:87;:::o;28174:104::-;28230:13;28263:7;28256:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28174:104;:::o;46845:38::-;;;;:::o;29784:287::-;29895:12;:10;:12::i;:::-;29883:24;;:8;:24;;;29879:54;;29916:17;;;;;;;;;;;;;;29879:54;29991:8;29946:18;:32;29965:12;:10;:12::i;:::-;29946:32;;;;;;;;;;;;;;;:42;29979:8;29946:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30044:8;30015:48;;30030:12;:10;:12::i;:::-;30015:48;;;30054:8;30015:48;;;;;;:::i;:::-;;;;;;;;29784:287;;:::o;30870:369::-;31037:28;31047:4;31053:2;31057:7;31037:9;:28::i;:::-;31080:15;:2;:13;;;:15::i;:::-;:76;;;;;31100:56;31131:4;31137:2;31141:7;31150:5;31100:30;:56::i;:::-;31099:57;31080:76;31076:156;;;31180:40;;;;;;;;;;;;;;31076:156;30870:369;;;;:::o;50842:424::-;50915:13;50946:16;50954:7;50946;:16::i;:::-;50938:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;51026:14;:23;51041:7;51026:23;;;;;;;;;;;;;;;;;;;;;51023:236;;;51097:13;51112:25;51129:7;51112:16;:25::i;:::-;51080:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51066:82;;;;51023:236;51207:12;51221:25;51238:7;51221:16;:25::i;:::-;51190:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51176:81;;50842:424;;;;:::o;46800:21::-;;;;;;;;;;;;;:::o;48303:45::-;:::o;30142:164::-;30239:4;30263:18;:25;30282:5;30263:25;;;;;;;;;;;;;;;:35;30289:8;30263:35;;;;;;;;;;;;;;;;;;;;;;;;;30256:42;;30142:164;;;;:::o;45851:201::-;44831:13;:11;:13::i;:::-;45960:1:::1;45940:22;;:8;:22;;::::0;45932:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;46016:28;46035:8;46016:18;:28::i;:::-;45851:201:::0;:::o;48013:88::-;44831:13;:11;:13::i;:::-;48087:6:::1;48079:5;:14;;;;48013:88:::0;:::o;47797:103::-;47852:4;47875:10;:17;47886:5;47875:17;;;;;;;;;;;;;;;;;;;;;;;;;47868:24;;47797:103;;;:::o;48663:681::-;48714:14;48731:13;:11;:13::i;:::-;48714:30;;48765:9;;;;;;;;;;;48764:10;48756:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;48808:10;:17;48819:5;48808:17;;;;;;;;;;;;;;;;;;;;;;;;;48800:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;46922:4;48877:1;48868:6;:10;;;;:::i;:::-;:22;;48860:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;48928:24;48938:10;48950:1;48928:9;:24::i;:::-;48983:5;48963:10;:17;48974:5;48963:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;48999:14;49016:12;:10;:12::i;:::-;48999:29;;49039:15;49057:14;:12;:14::i;:::-;49039:32;;49087:28;49096:7;49105:9;49087:28;;;;;;;:::i;:::-;;;;;;;;49152:5;;;;;;;;;;;49126:14;:23;49141:7;49126:23;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;49198:4;49171:31;;:14;:23;49186:7;49171:23;;;;;;;;;;;;;;;;;;;;;:31;;;49168:169;;49230:10;49222:24;;:44;49262:3;49256:2;49248:5;;:10;;;;:::i;:::-;49247:18;;;;:::i;:::-;49222:44;;;;;;;;;;;;;;;;;;;;;;;49214:53;;;;;;49294:15;;;;;;;;;;;49286:29;;:48;49330:3;49325:1;49317:5;;:9;;;;:::i;:::-;49316:17;;;;:::i;:::-;49286:48;;;;;;;;;;;;;;;;;;;;;;;49278:57;;;;;;49168:169;48703:641;;;48663:681;:::o;47489:191::-;44831:13;:11;:13::i;:::-;47565:8:::1;47561:112;47583:2;;:9;;47579:1;:13;;;47561:112;;;47612:13;47628:2;;47631:1;47628:5;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;47612:21;;47667:4;47647:10;:17;47658:5;47647:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;47598:75;47594:3;;;;;:::i;:::-;;;;47561:112;;;;47489:191:::0;;:::o;13886:157::-;13971:4;14010:25;13995:40;;;:11;:40;;;;13988:47;;13886:157;;;:::o;31494:174::-;31551:4;31594:7;31575:15;:13;:15::i;:::-;:26;;:53;;;;;31615:13;;31605:7;:23;31575:53;:85;;;;;31633:11;:20;31645:7;31633:20;;;;;;;;;;;:27;;;;;;;;;;;;31632:28;31575:85;31568:92;;31494:174;;;:::o;20416:98::-;20469:7;20496:10;20489:17;;20416:98;:::o;40720:196::-;40862:2;40835:15;:24;40851:7;40835:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40900:7;40896:2;40880:28;;40889:5;40880:28;;;;;;;;;;;;40720:196;;;:::o;23915:92::-;23971:7;23998:1;23991:8;;23915:92;:::o;35668:2130::-;35783:35;35821:21;35834:7;35821:12;:21::i;:::-;35783:59;;35881:4;35859:26;;:13;:18;;;:26;;;35855:67;;35894:28;;;;;;;;;;;;;;35855:67;35935:22;35977:4;35961:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;35998:36;36015:4;36021:12;:10;:12::i;:::-;35998:16;:36::i;:::-;35961:73;:126;;;;36075:12;:10;:12::i;:::-;36051:36;;:20;36063:7;36051:11;:20::i;:::-;:36;;;35961:126;35935:153;;36106:17;36101:66;;36132:35;;;;;;;;;;;;;;36101:66;36196:1;36182:16;;:2;:16;;;36178:52;;36207:23;;;;;;;;;;;;;;36178:52;36243:43;36265:4;36271:2;36275:7;36284:1;36243:21;:43::i;:::-;36351:35;36368:1;36372:7;36381:4;36351:8;:35::i;:::-;36712:1;36682:12;:18;36695:4;36682:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36756:1;36728:12;:16;36741:2;36728:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36774:31;36808:11;:20;36820:7;36808:20;;;;;;;;;;;36774:54;;36859:2;36843:8;:13;;;:18;;;;;;;;;;;;;;;;;;36909:15;36876:8;:23;;;:49;;;;;;;;;;;;;;;;;;37177:19;37209:1;37199:7;:11;37177:33;;37225:31;37259:11;:24;37271:11;37259:24;;;;;;;;;;;37225:58;;37327:1;37302:27;;:8;:13;;;;;;;;;;;;:27;;;37298:384;;37512:13;;37497:11;:28;37493:174;;37566:4;37550:8;:13;;;:20;;;;;;;;;;;;;;;;;;37619:13;:28;;;37593:8;:23;;;:54;;;;;;;;;;;;;;;;;;37493:174;37298:384;36657:1036;;;37729:7;37725:2;37710:27;;37719:4;37710:27;;;;;;;;;;;;37748:42;37769:4;37775:2;37779:7;37788:1;37748:20;:42::i;:::-;35772:2026;;35668:2130;;;:::o;31752:104::-;31821:27;31831:2;31835:8;31821:27;;;;;;;;;;;;:9;:27::i;:::-;31752:104;;:::o;50453:276::-;50491:4;50508:14;50560:16;50578:15;50543:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50533:62;;;;;;50525:71;;50508:88;;50607:12;50629:1;50622:6;:8;;;;:::i;:::-;50607:23;;50652:1;50644:4;:9;50641:81;;50670:5;50662;;:13;;;;;;;;;;;;;;;;;50655:20;;;;;;50641:81;50716:4;50708:5;;:12;;;;;;;;;;;;;;;;;50701:19;;;;50453:276;;:::o;24537:283::-;24584:7;24786:15;:13;:15::i;:::-;24770:13;;:31;24763:38;;24537:283;:::o;45110:132::-;45185:12;:10;:12::i;:::-;45174:23;;:7;:5;:7::i;:::-;:23;;;45166:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45110:132::o;26642:1109::-;26704:21;;:::i;:::-;26738:12;26753:7;26738:22;;26821:4;26802:15;:13;:15::i;:::-;:23;;:47;;;;;26836:13;;26829:4;:20;26802:47;26798:886;;;26870:31;26904:11;:17;26916:4;26904:17;;;;;;;;;;;26870:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26945:9;:16;;;26940:729;;27016:1;26990:28;;:9;:14;;;:28;;;26986:101;;27054:9;27047:16;;;;;;26986:101;27389:261;27396:4;27389:261;;;27429:6;;;;;;;;27474:11;:17;27486:4;27474:17;;;;;;;;;;;27462:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27548:1;27522:28;;:9;:14;;;:28;;;27518:109;;27590:9;27583:16;;;;;;27518:109;27389:261;;;26940:729;26851:833;26798:886;27712:31;;;;;;;;;;;;;;26642:1109;;;;:::o;46212:191::-;46286:16;46305:6;;;;;;;;;;;46286:25;;46331:8;46322:6;;:17;;;;;;;;;;;;;;;;;;46386:8;46355:40;;46376:8;46355:40;;;;;;;;;;;;46275:128;46212:191;:::o;3730:326::-;3790:4;4047:1;4025:7;:19;;;:23;4018:30;;3730:326;;;:::o;41408:667::-;41571:4;41608:2;41592:36;;;41629:12;:10;:12::i;:::-;41643:4;41649:7;41658:5;41592:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41588:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41843:1;41826:6;:13;:18;41822:235;;41872:40;;;;;;;;;;;;;;41822:235;42015:6;42009:13;42000:6;41996:2;41992:15;41985:38;41588:480;41721:45;;;41711:55;;;:6;:55;;;;41704:62;;;41408:667;;;;;;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;42723:159::-;;;;;:::o;43541:158::-;;;;;:::o;32230:1751::-;32353:20;32376:13;;32353:36;;32418:1;32404:16;;:2;:16;;;32400:48;;32429:19;;;;;;;;;;;;;;32400:48;32475:1;32463:8;:13;32459:44;;32485:18;;;;;;;;;;;;;;32459:44;32516:61;32546:1;32550:2;32554:12;32568:8;32516:21;:61::i;:::-;32889:8;32854:12;:16;32867:2;32854:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32953:8;32913:12;:16;32926:2;32913:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33012:2;32979:11;:25;32991:12;32979:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33079:15;33029:11;:25;33041:12;33029:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33112:20;33135:12;33112:35;;33162:11;33191:8;33176:12;:23;33162:37;;33220:15;:2;:13;;;:15::i;:::-;33216:633;;;33256:314;33312:12;33308:2;33287:38;;33304:1;33287:38;;;;;;;;;;;;33353:69;33392:1;33396:2;33400:14;;;;;;33416:5;33353:30;:69::i;:::-;33348:174;;33458:40;;;;;;;;;;;;;;33348:174;33565:3;33549:12;:19;33256:314;;33651:12;33634:13;;:29;33630:43;;33665:8;;;33630:43;33216:633;;;33714:120;33770:14;;;;;;33766:2;33745:40;;33762:1;33745:40;;;;;;;;;;;;33829:3;33813:12;:19;33714:120;;33216:633;33879:12;33863:13;:28;;;;32829:1074;;33913:60;33942:1;33946:2;33950:12;33964:8;33913:20;:60::i;:::-;32342:1639;32230:1751;;;:::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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:116::-;6272:21;6287:5;6272:21;:::i;:::-;6265:5;6262:32;6252:60;;6308:1;6305;6298:12;6252:60;6202:116;:::o;6324:133::-;6367:5;6405:6;6392:20;6383:29;;6421:30;6445:5;6421:30;:::i;:::-;6324:133;;;;:::o;6463:468::-;6528:6;6536;6585:2;6573:9;6564:7;6560:23;6556:32;6553:119;;;6591:79;;:::i;:::-;6553:119;6711:1;6736:53;6781:7;6772:6;6761:9;6757:22;6736:53;:::i;:::-;6726:63;;6682:117;6838:2;6864:50;6906:7;6897:6;6886:9;6882:22;6864:50;:::i;:::-;6854:60;;6809:115;6463:468;;;;;:::o;6937:117::-;7046:1;7043;7036:12;7060:117;7169:1;7166;7159:12;7183:180;7231:77;7228:1;7221:88;7328:4;7325:1;7318:15;7352:4;7349:1;7342:15;7369:281;7452:27;7474:4;7452:27;:::i;:::-;7444:6;7440:40;7582:6;7570:10;7567:22;7546:18;7534:10;7531:34;7528:62;7525:88;;;7593:18;;:::i;:::-;7525:88;7633:10;7629:2;7622:22;7412:238;7369:281;;:::o;7656:129::-;7690:6;7717:20;;:::i;:::-;7707:30;;7746:33;7774:4;7766:6;7746:33;:::i;:::-;7656:129;;;:::o;7791:307::-;7852:4;7942:18;7934:6;7931:30;7928:56;;;7964:18;;:::i;:::-;7928:56;8002:29;8024:6;8002:29;:::i;:::-;7994:37;;8086:4;8080;8076:15;8068:23;;7791:307;;;:::o;8104:146::-;8201:6;8196:3;8191;8178:30;8242:1;8233:6;8228:3;8224:16;8217:27;8104:146;;;:::o;8256:423::-;8333:5;8358:65;8374:48;8415:6;8374:48;:::i;:::-;8358:65;:::i;:::-;8349:74;;8446:6;8439:5;8432:21;8484:4;8477:5;8473:16;8522:3;8513:6;8508:3;8504:16;8501:25;8498:112;;;8529:79;;:::i;:::-;8498:112;8619:54;8666:6;8661:3;8656;8619:54;:::i;:::-;8339:340;8256:423;;;;;:::o;8698:338::-;8753:5;8802:3;8795:4;8787:6;8783:17;8779:27;8769:122;;8810:79;;:::i;:::-;8769:122;8927:6;8914:20;8952:78;9026:3;9018:6;9011:4;9003:6;8999:17;8952:78;:::i;:::-;8943:87;;8759:277;8698:338;;;;:::o;9042:943::-;9137:6;9145;9153;9161;9210:3;9198:9;9189:7;9185:23;9181:33;9178:120;;;9217:79;;:::i;:::-;9178:120;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:53;9535:7;9526:6;9515:9;9511:22;9490:53;:::i;:::-;9480:63;;9435:118;9592:2;9618:53;9663:7;9654:6;9643:9;9639:22;9618:53;:::i;:::-;9608:63;;9563:118;9748:2;9737:9;9733:18;9720:32;9779:18;9771:6;9768:30;9765:117;;;9801:79;;:::i;:::-;9765:117;9906:62;9960:7;9951:6;9940:9;9936:22;9906:62;:::i;:::-;9896:72;;9691:287;9042:943;;;;;;;:::o;9991:474::-;10059:6;10067;10116:2;10104:9;10095:7;10091:23;10087:32;10084:119;;;10122:79;;:::i;:::-;10084:119;10242:1;10267:53;10312:7;10303:6;10292:9;10288:22;10267:53;:::i;:::-;10257:63;;10213:117;10369:2;10395:53;10440:7;10431:6;10420:9;10416:22;10395:53;:::i;:::-;10385:63;;10340:118;9991:474;;;;;:::o;10471:117::-;10580:1;10577;10570:12;10594:117;10703:1;10700;10693:12;10734:568;10807:8;10817:6;10867:3;10860:4;10852:6;10848:17;10844:27;10834:122;;10875:79;;:::i;:::-;10834:122;10988:6;10975:20;10965:30;;11018:18;11010:6;11007:30;11004:117;;;11040:79;;:::i;:::-;11004:117;11154:4;11146:6;11142:17;11130:29;;11208:3;11200:4;11192:6;11188:17;11178:8;11174:32;11171:41;11168:128;;;11215:79;;:::i;:::-;11168:128;10734:568;;;;;:::o;11308:559::-;11394:6;11402;11451:2;11439:9;11430:7;11426:23;11422:32;11419:119;;;11457:79;;:::i;:::-;11419:119;11605:1;11594:9;11590:17;11577:31;11635:18;11627:6;11624:30;11621:117;;;11657:79;;:::i;:::-;11621:117;11770:80;11842:7;11833:6;11822:9;11818:22;11770:80;:::i;:::-;11752:98;;;;11548:312;11308:559;;;;;:::o;11873:180::-;11921:77;11918:1;11911:88;12018:4;12015:1;12008:15;12042:4;12039:1;12032:15;12059:320;12103:6;12140:1;12134:4;12130:12;12120:22;;12187:1;12181:4;12177:12;12208:18;12198:81;;12264:4;12256:6;12252:17;12242:27;;12198:81;12326:2;12318:6;12315:14;12295:18;12292:38;12289:84;;12345:18;;:::i;:::-;12289:84;12110:269;12059:320;;;:::o;12385:160::-;12525:12;12521:1;12513:6;12509:14;12502:36;12385:160;:::o;12551:366::-;12693:3;12714:67;12778:2;12773:3;12714:67;:::i;:::-;12707:74;;12790:93;12879:3;12790:93;:::i;:::-;12908:2;12903:3;12899:12;12892:19;;12551:366;;;:::o;12923:419::-;13089:4;13127:2;13116:9;13112:18;13104:26;;13176:9;13170:4;13166:20;13162:1;13151:9;13147:17;13140:47;13204:131;13330:4;13204:131;:::i;:::-;13196:139;;12923:419;;;:::o;13348:175::-;13488:27;13484:1;13476:6;13472:14;13465:51;13348:175;:::o;13529:366::-;13671:3;13692:67;13756:2;13751:3;13692:67;:::i;:::-;13685:74;;13768:93;13857:3;13768:93;:::i;:::-;13886:2;13881:3;13877:12;13870:19;;13529:366;;;:::o;13901:419::-;14067:4;14105:2;14094:9;14090:18;14082:26;;14154:9;14148:4;14144:20;14140:1;14129:9;14125:17;14118:47;14182:131;14308:4;14182:131;:::i;:::-;14174:139;;13901:419;;;:::o;14326:180::-;14374:77;14371:1;14364:88;14471:4;14468:1;14461:15;14495:4;14492:1;14485:15;14512:191;14552:3;14571:20;14589:1;14571:20;:::i;:::-;14566:25;;14605:20;14623:1;14605:20;:::i;:::-;14600:25;;14648:1;14645;14641:9;14634:16;;14669:3;14666:1;14663:10;14660:36;;;14676:18;;:::i;:::-;14660:36;14512:191;;;;:::o;14709:172::-;14849:24;14845:1;14837:6;14833:14;14826:48;14709:172;:::o;14887:366::-;15029:3;15050:67;15114:2;15109:3;15050:67;:::i;:::-;15043:74;;15126:93;15215:3;15126:93;:::i;:::-;15244:2;15239:3;15235:12;15228:19;;14887:366;;;:::o;15259:419::-;15425:4;15463:2;15452:9;15448:18;15440:26;;15512:9;15506:4;15502:20;15498:1;15487:9;15483:17;15476:47;15540:131;15666:4;15540:131;:::i;:::-;15532:139;;15259:419;;;:::o;15684:320::-;15799:4;15837:2;15826:9;15822:18;15814:26;;15850:71;15918:1;15907:9;15903:17;15894:6;15850:71;:::i;:::-;15931:66;15993:2;15982:9;15978:18;15969:6;15931:66;:::i;:::-;15684:320;;;;;:::o;16010:348::-;16050:7;16073:20;16091:1;16073:20;:::i;:::-;16068:25;;16107:20;16125:1;16107:20;:::i;:::-;16102:25;;16295:1;16227:66;16223:74;16220:1;16217:81;16212:1;16205:9;16198:17;16194:105;16191:131;;;16302:18;;:::i;:::-;16191:131;16350:1;16347;16343:9;16332:20;;16010:348;;;;:::o;16364:180::-;16412:77;16409:1;16402:88;16509:4;16506:1;16499:15;16533:4;16530:1;16523:15;16550:185;16590:1;16607:20;16625:1;16607:20;:::i;:::-;16602:25;;16641:20;16659:1;16641:20;:::i;:::-;16636:25;;16680:1;16670:35;;16685:18;;:::i;:::-;16670:35;16727:1;16724;16720:9;16715:14;;16550:185;;;;:::o;16741:234::-;16881:34;16877:1;16869:6;16865:14;16858:58;16950:17;16945:2;16937:6;16933:15;16926:42;16741:234;:::o;16981:366::-;17123:3;17144:67;17208:2;17203:3;17144:67;:::i;:::-;17137:74;;17220:93;17309:3;17220:93;:::i;:::-;17338:2;17333:3;17329:12;17322:19;;16981:366;;;:::o;17353:419::-;17519:4;17557:2;17546:9;17542:18;17534:26;;17606:9;17600:4;17596:20;17592:1;17581:9;17577:17;17570:47;17634:131;17760:4;17634:131;:::i;:::-;17626:139;;17353:419;;;:::o;17778:148::-;17880:11;17917:3;17902:18;;17778:148;;;;:::o;17932:141::-;17981:4;18004:3;17996:11;;18027:3;18024:1;18017:14;18061:4;18058:1;18048:18;18040:26;;17932:141;;;:::o;18103:874::-;18206:3;18243:5;18237:12;18272:36;18298:9;18272:36;:::i;:::-;18324:89;18406:6;18401:3;18324:89;:::i;:::-;18317:96;;18444:1;18433:9;18429:17;18460:1;18455:166;;;;18635:1;18630:341;;;;18422:549;;18455:166;18539:4;18535:9;18524;18520:25;18515:3;18508:38;18601:6;18594:14;18587:22;18579:6;18575:35;18570:3;18566:45;18559:52;;18455:166;;18630:341;18697:38;18729:5;18697:38;:::i;:::-;18757:1;18771:154;18785:6;18782:1;18779:13;18771:154;;;18859:7;18853:14;18849:1;18844:3;18840:11;18833:35;18909:1;18900:7;18896:15;18885:26;;18807:4;18804:1;18800:12;18795:17;;18771:154;;;18954:6;18949:3;18945:16;18938:23;;18637:334;;18422:549;;18210:767;;18103:874;;;;:::o;18983:390::-;19089:3;19117:39;19150:5;19117:39;:::i;:::-;19172:89;19254:6;19249:3;19172:89;:::i;:::-;19165:96;;19270:65;19328:6;19323:3;19316:4;19309:5;19305:16;19270:65;:::i;:::-;19360:6;19355:3;19351:16;19344:23;;19093:280;18983:390;;;;:::o;19379:155::-;19519:7;19515:1;19507:6;19503:14;19496:31;19379:155;:::o;19540:400::-;19700:3;19721:84;19803:1;19798:3;19721:84;:::i;:::-;19714:91;;19814:93;19903:3;19814:93;:::i;:::-;19932:1;19927:3;19923:11;19916:18;;19540:400;;;:::o;19946:695::-;20224:3;20246:92;20334:3;20325:6;20246:92;:::i;:::-;20239:99;;20355:95;20446:3;20437:6;20355:95;:::i;:::-;20348:102;;20467:148;20611:3;20467:148;:::i;:::-;20460:155;;20632:3;20625:10;;19946:695;;;;;:::o;20647:225::-;20787:34;20783:1;20775:6;20771:14;20764:58;20856:8;20851:2;20843:6;20839:15;20832:33;20647:225;:::o;20878:366::-;21020:3;21041:67;21105:2;21100:3;21041:67;:::i;:::-;21034:74;;21117:93;21206:3;21117:93;:::i;:::-;21235:2;21230:3;21226:12;21219:19;;20878:366;;;:::o;21250:419::-;21416:4;21454:2;21443:9;21439:18;21431:26;;21503:9;21497:4;21493:20;21489:1;21478:9;21474:17;21467:47;21531:131;21657:4;21531:131;:::i;:::-;21523:139;;21250:419;;;:::o;21675:169::-;21815:21;21811:1;21803:6;21799:14;21792:45;21675:169;:::o;21850:366::-;21992:3;22013:67;22077:2;22072:3;22013:67;:::i;:::-;22006:74;;22089:93;22178:3;22089:93;:::i;:::-;22207:2;22202:3;22198:12;22191:19;;21850:366;;;:::o;22222:419::-;22388:4;22426:2;22415:9;22411:18;22403:26;;22475:9;22469:4;22465:20;22461:1;22450:9;22446:17;22439:47;22503:131;22629:4;22503:131;:::i;:::-;22495:139;;22222:419;;;:::o;22647:180::-;22695:77;22692:1;22685:88;22792:4;22789:1;22782:15;22816:4;22813:1;22806:15;22833:93;22869:7;22909:10;22902:5;22898:22;22887:33;;22833:93;;;:::o;22932:175::-;22970:3;22993:23;23010:5;22993:23;:::i;:::-;22984:32;;23038:10;23031:5;23028:21;23025:47;;23052:18;;:::i;:::-;23025:47;23099:1;23092:5;23088:13;23081:20;;22932:175;;;:::o;23113:79::-;23152:7;23181:5;23170:16;;23113:79;;;:::o;23198:157::-;23303:45;23323:24;23341:5;23323:24;:::i;:::-;23303:45;:::i;:::-;23298:3;23291:58;23198:157;;:::o;23361:397::-;23501:3;23516:75;23587:3;23578:6;23516:75;:::i;:::-;23616:2;23611:3;23607:12;23600:19;;23629:75;23700:3;23691:6;23629:75;:::i;:::-;23729:2;23724:3;23720:12;23713:19;;23749:3;23742:10;;23361:397;;;;;:::o;23764:176::-;23796:1;23813:20;23831:1;23813:20;:::i;:::-;23808:25;;23847:20;23865:1;23847:20;:::i;:::-;23842:25;;23886:1;23876:35;;23891:18;;:::i;:::-;23876:35;23932:1;23929;23925:9;23920:14;;23764:176;;;;:::o;23946:182::-;24086:34;24082:1;24074:6;24070:14;24063:58;23946:182;:::o;24134:366::-;24276:3;24297:67;24361:2;24356:3;24297:67;:::i;:::-;24290:74;;24373:93;24462:3;24373:93;:::i;:::-;24491:2;24486:3;24482:12;24475:19;;24134:366;;;:::o;24506:419::-;24672:4;24710:2;24699:9;24695:18;24687:26;;24759:9;24753:4;24749:20;24745:1;24734:9;24730:17;24723:47;24787:131;24913:4;24787:131;:::i;:::-;24779:139;;24506:419;;;:::o;24931:98::-;24982:6;25016:5;25010:12;25000:22;;24931:98;;;:::o;25035:168::-;25118:11;25152:6;25147:3;25140:19;25192:4;25187:3;25183:14;25168:29;;25035:168;;;;:::o;25209:373::-;25295:3;25323:38;25355:5;25323:38;:::i;:::-;25377:70;25440:6;25435:3;25377:70;:::i;:::-;25370:77;;25456:65;25514:6;25509:3;25502:4;25495:5;25491:16;25456:65;:::i;:::-;25546:29;25568:6;25546:29;:::i;:::-;25541:3;25537:39;25530:46;;25299:283;25209:373;;;;:::o;25588:640::-;25783:4;25821:3;25810:9;25806:19;25798:27;;25835:71;25903:1;25892:9;25888:17;25879:6;25835:71;:::i;:::-;25916:72;25984:2;25973:9;25969:18;25960:6;25916:72;:::i;:::-;25998;26066:2;26055:9;26051:18;26042:6;25998:72;:::i;:::-;26117:9;26111:4;26107:20;26102:2;26091:9;26087:18;26080:48;26145:76;26216:4;26207:6;26145:76;:::i;:::-;26137:84;;25588:640;;;;;;;:::o;26234:141::-;26290:5;26321:6;26315:13;26306:22;;26337:32;26363:5;26337:32;:::i;:::-;26234:141;;;;:::o;26381:349::-;26450:6;26499:2;26487:9;26478:7;26474:23;26470:32;26467:119;;;26505:79;;:::i;:::-;26467:119;26625:1;26650:63;26705:7;26696:6;26685:9;26681:22;26650:63;:::i;:::-;26640:73;;26596:127;26381:349;;;;:::o;26736:233::-;26775:3;26798:24;26816:5;26798:24;:::i;:::-;26789:33;;26844:66;26837:5;26834:77;26831:103;;26914:18;;:::i;:::-;26831:103;26961:1;26954:5;26950:13;26943:20;;26736:233;;;:::o;26975:194::-;27015:4;27035:20;27053:1;27035:20;:::i;:::-;27030:25;;27069:20;27087:1;27069:20;:::i;:::-;27064:25;;27113:1;27110;27106:9;27098:17;;27137:1;27131:4;27128:11;27125:37;;;27142:18;;:::i;:::-;27125:37;26975:194;;;;:::o

Swarm Source

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