ETH Price: $3,332.11 (+3.22%)

Contract

0x08718b854156F6c9588574A1502D5b7D45271532
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Cost_NFT Mys...153511532022-08-16 7:58:24888 days ago1660636704IN
0x08718b85...D45271532
0 ETH0.0003136510.91808501
Set Nft Per Addr...153007512022-08-08 9:29:35896 days ago1659950975IN
0x08718b85...D45271532
0 ETH0.0002929910.22471268
Set Approval For...152698112022-08-03 13:46:12901 days ago1659534372IN
0x08718b85...D45271532
0 ETH0.0007003815.17658611
Setmax Supply152113122022-07-25 11:07:31910 days ago1658747251IN
0x08718b85...D45271532
0 ETH0.0003559412.40555444
Set Cost_NFT Mys...152051442022-07-24 11:50:53911 days ago1658663453IN
0x08718b85...D45271532
0 ETH0.000227157.90375102
Setmax Supply150954452022-07-07 12:28:14928 days ago1657196894IN
0x08718b85...D45271532
0 ETH0.0005251418.30279516
Set Cost_NFT Mys...150954432022-07-07 12:27:36928 days ago1657196856IN
0x08718b85...D45271532
0 ETH0.0004304714.98466352
Withdraw150828532022-07-05 13:43:34930 days ago1657028614IN
0x08718b85...D45271532
0 ETH0.0009730331.87258428
Mint150737362022-07-04 3:55:40931 days ago1656906940IN
0x08718b85...D45271532
0.015 ETH0.002070912.23129099
Mint150737342022-07-04 3:55:18931 days ago1656906918IN
0x08718b85...D45271532
0.015 ETH0.0021512.69850038
Mint150737322022-07-04 3:54:34931 days ago1656906874IN
0x08718b85...D45271532
0.015 ETH0.0019682410.55859537
Set Nft Per Addr...150701362022-07-03 14:29:29932 days ago1656858569IN
0x08718b85...D45271532
0 ETH0.000552719.28767932
Setmax Mint Amou...150701332022-07-03 14:27:44932 days ago1656858464IN
0x08718b85...D45271532
0 ETH0.0005240618.31489157
Mint150700872022-07-03 14:17:22932 days ago1656857842IN
0x08718b85...D45271532
0.03 ETH0.0071687723.49594979
Setmax Free Mint...150533772022-07-01 0:30:50934 days ago1656635450IN
0x08718b85...D45271532
0 ETH0.0019638368.58147565
Setmax Free Mint...150512532022-06-30 16:13:19935 days ago1656605599IN
0x08718b85...D45271532
0 ETH0.0012415143.3567195
Mint150448922022-06-29 11:53:43936 days ago1656503623IN
0x08718b85...D45271532
0 ETH0.0070827439.09578625
Mint149911252022-06-19 13:59:09946 days ago1655647149IN
0x08718b85...D45271532
0 ETH0.0032668818.0327349
Mint149905442022-06-19 11:26:59946 days ago1655638019IN
0x08718b85...D45271532
0 ETH0.0028142715.53437967
Mint149905112022-06-19 11:19:23946 days ago1655637563IN
0x08718b85...D45271532
0 ETH0.0033814718.66527272
Mint149895642022-06-19 7:23:30946 days ago1655623410IN
0x08718b85...D45271532
0 ETH0.0039929522.04054428
Mint149886322022-06-19 3:27:19946 days ago1655609239IN
0x08718b85...D45271532
0 ETH0.0038907221.47624608
Set Approval For...149858362022-06-18 15:59:06947 days ago1655567946IN
0x08718b85...D45271532
0 ETH0.0011781844.7621488
Mint149852072022-06-18 13:25:01947 days ago1655558701IN
0x08718b85...D45271532
0 ETH0.0045146524.92023956
Mint149851832022-06-18 13:19:18947 days ago1655558358IN
0x08718b85...D45271532
0 ETH0.0050780328.03002963
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
150828532022-07-05 13:43:34930 days ago1657028614
0x08718b85...D45271532
0.075 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
QuarkArium_MysteryBox_NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: QuarkArium_MysteryBox_NFT.sol


  
pragma solidity >=0.7.0 <0.9.0;



contract QuarkArium_MysteryBox_NFT is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public uriPrefix_NFTMysteryBox;
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
   
  uint256 public cost_NFTMysteryBox = 0.015 ether;
  uint256 private cost_Mint;

  uint256 public maxSupply = 1000;
  uint256 public maxFreeMintSupply = 3;

  uint256 public maxMintAmountPerTx = 3;
  uint256 public nftPerAddressLimitFree = 1;  
  uint256 public nftPerAddressLimit = 3;
  uint256 limitPerAddress;

  bool public isFreeMint = true;
  bool public paused = false;
  bool public revealed = false;

  mapping(address => uint256) public addressMintedBalance;

  constructor(
  ) ERC721("Quark Arium Mystery Box", "NFT") {
    setHiddenMetadataUri("https://quarkarium.net/revealmysteryboxnft/hiddenBox.json"); 
    }

  // public
  function mint(uint256 _mintAmount_MysteryBox) public payable {

    require(!paused, "the contract is paused");            
    uint256 supply = totalSupply();   
    require(supply + _mintAmount_MysteryBox <= maxSupply, "max NFT limit exceeded || Free mint concluded");    
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];        
    
    if (supply >= maxFreeMintSupply) {
      isFreeMint = false;
      cost_Mint = cost_NFTMysteryBox;
      limitPerAddress = nftPerAddressLimit;
      require(msg.value >= _mintAmount_MysteryBox * cost_Mint, "insufficient funds");      
    }        
    else {
      cost_Mint = 0;
      limitPerAddress = nftPerAddressLimitFree;
    } 
    
    require((ownerMintedCount + _mintAmount_MysteryBox) <= limitPerAddress, "max NFT per address exceeded"); 
    require(_mintAmount_MysteryBox > 0 && _mintAmount_MysteryBox <= maxMintAmountPerTx, "Invalid mint amount"); 
  
    if (_mintAmount_MysteryBox > 0 && _mintAmount_MysteryBox <= limitPerAddress) {
      for (uint256 i = 1; i <= _mintAmount_MysteryBox; i++) {
        addressMintedBalance[msg.sender]++;
        _safeMint(msg.sender, supply + i);
      }          
    }
  }
    
  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;
    
    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }
      currentTokenId++;
    }
    return ownedTokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return hiddenMetadataUri;
    }
        
    string memory currentBaseURI = _uriPrefix_NFTMysteryBox();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), uriSuffix))
        : "";    
  } 
  
  // internal
  function _uriPrefix_NFTMysteryBox() internal view virtual returns (string memory) {
    return uriPrefix_NFTMysteryBox;
  }

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }

   function setFreeNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimitFree = _limit;
  }
  
  function setCost_NFTMysteryBox(uint256 _newCost) public onlyOwner {
    cost_NFTMysteryBox = _newCost;
  }


  function setmaxMintAmountPerTx(uint256 _newmaxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _newmaxMintAmountPerTx;
  }

  function seturiPrefix_NFT(string memory _newuriPrefix_NFT1x) public onlyOwner {
    uriPrefix_NFTMysteryBox = _newuriPrefix_NFT1x;
  }

  function seturiSuffix(string memory _newuriSuffix) public onlyOwner {
    uriSuffix = _newuriSuffix;
  }
  
  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

  function setmaxFreeMintSupply(uint256 _freeMintAmount) public onlyOwner {
    maxFreeMintSupply = _freeMintAmount;
  }

  function setmaxSupply (uint256 _maxSupplyAmount) public onlyOwner {
    maxSupply = _maxSupplyAmount;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost_NFTMysteryBox","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount_MysteryBox","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost_NFTMysteryBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintAmount","type":"uint256"}],"name":"setmaxFreeMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmountPerTx","type":"uint256"}],"name":"setmaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupplyAmount","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newuriPrefix_NFT1x","type":"string"}],"name":"seturiPrefix_NFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newuriSuffix","type":"string"}],"name":"seturiSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix_NFTMysteryBox","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001fb565b5066354a6ba7a18000600e556103e8601055600360118190556012819055600160138190556014919091556016805462ffffff191690911790553480156200006f57600080fd5b50604080518082018252601781527f517561726b20417269756d204d79737465727920426f7800000000000000000060208083019182528351808501909452600384526213919560ea1b908401528151919291620000d091600091620001fb565b508051620000e6906001906020840190620001fb565b50505062000103620000fd6200012d60201b60201c565b62000131565b6200012760405180606001604052806039815260200162002b796039913962000183565b620002de565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001e25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001f790600d906020840190620001fb565b5050565b8280546200020990620002a1565b90600052602060002090601f0160209004810192826200022d576000855562000278565b82601f106200024857805160ff191683800117855562000278565b8280016001018555821562000278579182015b82811115620002785782518255916020019190600101906200025b565b50620002869291506200028a565b5090565b5b808211156200028657600081556001016200028b565b600181811c90821680620002b657607f821691505b60208210811415620002d857634e487b7160e01b600052602260045260246000fd5b50919050565b61288b80620002ee6000396000f3fe60806040526004361061027d5760003560e01c806353db40731161014f578063a22cb465116100c1578063c75a5b6f1161007a578063c75a5b6f14610738578063c87b56dd1461074e578063d0eb26b01461076e578063d5abeb011461078e578063e985e9c5146107a4578063f2fde38b146107ed57600080fd5b8063a22cb4651461069e578063a45ba8e7146106be578063a475b5dd146106d3578063b88d4fde146106e8578063ba7d2c7614610708578063c2d05a6e1461071e57600080fd5b8063715018a611610113578063715018a61461060d5780637f7e7b6b146106225780638da5cb5b1461064257806394354fd01461066057806395d89b4114610676578063a0712d681461068b57600080fd5b806353db4073146105795780635503a0e8146105995780635c975abb146105ae5780636352211e146105cd57806370a08231146105ed57600080fd5b806329d0b2f7116101f357806342842e0e116101ac57806342842e0e146104ac578063438b6300146104cc5780634a01f4ac146104f95780634f6ccce7146105195780634fdd43cb14610539578063518302271461055957600080fd5b806329d0b2f71461040f5780632f745c5914610424578063305ae775146104445780633972ef14146104645780633ccfd60b146104845780633fa4e2701461048c57600080fd5b80630e1afe3f116102455780630e1afe3f1461035357806318160ddd1461037757806318cae2691461038c578063228025e8146103b957806322d59d54146103d957806323b872dd146103ef57600080fd5b806301ffc9a71461028257806302329a29146102b757806306fdde03146102d9578063081812fc146102fb578063095ea7b314610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046123e1565b61080d565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d23660046123c6565b610838565b005b3480156102e557600080fd5b506102ee610885565b6040516102ae91906125ee565b34801561030757600080fd5b5061031b610316366004612464565b610917565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102d761034e36600461239c565b6109ac565b34801561035f57600080fd5b5061036960135481565b6040519081526020016102ae565b34801561038357600080fd5b50600854610369565b34801561039857600080fd5b506103696103a736600461226c565b60176020526000908152604090205481565b3480156103c557600080fd5b506102d76103d4366004612464565b610ac2565b3480156103e557600080fd5b5061036960115481565b3480156103fb57600080fd5b506102d761040a3660046122ba565b610af1565b34801561041b57600080fd5b506102ee610b22565b34801561043057600080fd5b5061036961043f36600461239c565b610bb0565b34801561045057600080fd5b506102d761045f36600461241b565b610c46565b34801561047057600080fd5b506102d761047f366004612464565b610c87565b6102d7610cb6565b34801561049857600080fd5b506102d76104a736600461241b565b610d54565b3480156104b857600080fd5b506102d76104c73660046122ba565b610d91565b3480156104d857600080fd5b506104ec6104e736600461226c565b610dac565b6040516102ae91906125aa565b34801561050557600080fd5b506102d7610514366004612464565b610e8d565b34801561052557600080fd5b50610369610534366004612464565b610ebc565b34801561054557600080fd5b506102d761055436600461241b565b610f4f565b34801561056557600080fd5b506016546102a29062010000900460ff1681565b34801561058557600080fd5b506102d7610594366004612464565b610f8c565b3480156105a557600080fd5b506102ee610fbb565b3480156105ba57600080fd5b506016546102a290610100900460ff1681565b3480156105d957600080fd5b5061031b6105e8366004612464565b610fc8565b3480156105f957600080fd5b5061036961060836600461226c565b61103f565b34801561061957600080fd5b506102d76110c6565b34801561062e57600080fd5b506102d761063d366004612464565b6110fc565b34801561064e57600080fd5b50600a546001600160a01b031661031b565b34801561066c57600080fd5b5061036960125481565b34801561068257600080fd5b506102ee61112b565b6102d7610699366004612464565b61113a565b3480156106aa57600080fd5b506102d76106b9366004612372565b6113b6565b3480156106ca57600080fd5b506102ee6113c1565b3480156106df57600080fd5b506102d76113ce565b3480156106f457600080fd5b506102d76107033660046122f6565b61140b565b34801561071457600080fd5b5061036960145481565b34801561072a57600080fd5b506016546102a29060ff1681565b34801561074457600080fd5b50610369600e5481565b34801561075a57600080fd5b506102ee610769366004612464565b61143d565b34801561077a57600080fd5b506102d7610789366004612464565b6115bd565b34801561079a57600080fd5b5061036960105481565b3480156107b057600080fd5b506102a26107bf366004612287565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f957600080fd5b506102d761080836600461226c565b6115ec565b60006001600160e01b0319821663780e9d6360e01b1480610832575061083282611684565b92915050565b600a546001600160a01b0316331461086b5760405162461bcd60e51b815260040161086290612653565b60405180910390fd5b601680549115156101000261ff0019909216919091179055565b60606000805461089490612767565b80601f01602080910402602001604051908101604052809291908181526020018280546108c090612767565b801561090d5780601f106108e25761010080835404028352916020019161090d565b820191906000526020600020905b8154815290600101906020018083116108f057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109905760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610862565b506000908152600460205260409020546001600160a01b031690565b60006109b782610fc8565b9050806001600160a01b0316836001600160a01b03161415610a255760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610862565b336001600160a01b0382161480610a415750610a4181336107bf565b610ab35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610862565b610abd83836116d4565b505050565b600a546001600160a01b03163314610aec5760405162461bcd60e51b815260040161086290612653565b601055565b610afb3382611742565b610b175760405162461bcd60e51b815260040161086290612688565b610abd838383611839565b600b8054610b2f90612767565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5b90612767565b8015610ba85780601f10610b7d57610100808354040283529160200191610ba8565b820191906000526020600020905b815481529060010190602001808311610b8b57829003601f168201915b505050505081565b6000610bbb8361103f565b8210610c1d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610862565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c705760405162461bcd60e51b815260040161086290612653565b8051610c8390600c906020840190612131565b5050565b600a546001600160a01b03163314610cb15760405162461bcd60e51b815260040161086290612653565b600e55565b600a546001600160a01b03163314610ce05760405162461bcd60e51b815260040161086290612653565b6000610cf4600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d3e576040519150601f19603f3d011682016040523d82523d6000602084013e610d43565b606091505b5050905080610d5157600080fd5b50565b600a546001600160a01b03163314610d7e5760405162461bcd60e51b815260040161086290612653565b8051610c8390600b906020840190612131565b610abd8383836040518060200160405280600081525061140b565b60606000610db98361103f565b905060008167ffffffffffffffff811115610dd657610dd6612829565b604051908082528060200260200182016040528015610dff578160200160208202803683370190505b509050600160005b8381108015610e1857506010548211155b15610e83576000610e2883610fc8565b9050866001600160a01b0316816001600160a01b03161415610e705782848381518110610e5757610e57612813565b602090810291909101015281610e6c816127a2565b9250505b82610e7a816127a2565b93505050610e07565b5090949350505050565b600a546001600160a01b03163314610eb75760405162461bcd60e51b815260040161086290612653565b601355565b6000610ec760085490565b8210610f2a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610862565b60088281548110610f3d57610f3d612813565b90600052602060002001549050919050565b600a546001600160a01b03163314610f795760405162461bcd60e51b815260040161086290612653565b8051610c8390600d906020840190612131565b600a546001600160a01b03163314610fb65760405162461bcd60e51b815260040161086290612653565b601255565b600c8054610b2f90612767565b6000818152600260205260408120546001600160a01b0316806108325760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610862565b60006001600160a01b0382166110aa5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610862565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110f05760405162461bcd60e51b815260040161086290612653565b6110fa60006119e0565b565b600a546001600160a01b031633146111265760405162461bcd60e51b815260040161086290612653565b601155565b60606001805461089490612767565b601654610100900460ff161561118b5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610862565b600061119660085490565b6010549091506111a683836126d9565b111561120a5760405162461bcd60e51b815260206004820152602d60248201527f6d6178204e4654206c696d6974206578636565646564207c7c2046726565206d60448201526c1a5b9d0818dbdb98db1d591959609a1b6064820152608401610862565b33600090815260176020526040902054601154821061128e576016805460ff19169055600e54600f8190556014546015556112459084612705565b3410156112895760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610862565b61129a565b6000600f556013546015555b6015546112a784836126d9565b11156112f55760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610862565b60008311801561130757506012548311155b6113495760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610862565b60008311801561135b57506015548311155b15610abd5760015b8381116113b057336000908152601760205260408120805491611385836127a2565b9091555061139e90503361139983866126d9565b611a32565b806113a8816127a2565b915050611363565b50505050565b610c83338383611a4c565b600d8054610b2f90612767565b600a546001600160a01b031633146113f85760405162461bcd60e51b815260040161086290612653565b6016805462ff0000191662010000179055565b6114153383611742565b6114315760405162461bcd60e51b815260040161086290612688565b6113b084848484611b1b565b6000818152600260205260409020546060906001600160a01b03166114bc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610862565b60165462010000900460ff1661155e57600d80546114d990612767565b80601f016020809104026020016040519081016040528092919081815260200182805461150590612767565b80156115525780601f1061152757610100808354040283529160200191611552565b820191906000526020600020905b81548152906001019060200180831161153557829003601f168201915b50505050509050919050565b6000611568611b4e565b9050600081511161158857604051806020016040528060008152506115b6565b8061159284611b5d565b600c6040516020016115a6939291906124a9565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115e75760405162461bcd60e51b815260040161086290612653565b601455565b600a546001600160a01b031633146116165760405162461bcd60e51b815260040161086290612653565b6001600160a01b03811661167b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610862565b610d51816119e0565b60006001600160e01b031982166380ac58cd60e01b14806116b557506001600160e01b03198216635b5e139f60e01b145b8061083257506301ffc9a760e01b6001600160e01b0319831614610832565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061170982610fc8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610862565b60006117c683610fc8565b9050806001600160a01b0316846001600160a01b031614806118015750836001600160a01b03166117f684610917565b6001600160a01b0316145b8061183157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661184c82610fc8565b6001600160a01b0316146118b05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610862565b6001600160a01b0382166119125760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610862565b61191d838383611c5b565b6119286000826116d4565b6001600160a01b0383166000908152600360205260408120805460019290611951908490612724565b90915550506001600160a01b038216600090815260036020526040812080546001929061197f9084906126d9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c83828260405180602001604052806000815250611d13565b816001600160a01b0316836001600160a01b03161415611aae5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610862565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b26848484611839565b611b3284848484611d46565b6113b05760405162461bcd60e51b815260040161086290612601565b6060600b805461089490612767565b606081611b815750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bab5780611b95816127a2565b9150611ba49050600a836126f1565b9150611b85565b60008167ffffffffffffffff811115611bc657611bc6612829565b6040519080825280601f01601f191660200182016040528015611bf0576020820181803683370190505b5090505b841561183157611c05600183612724565b9150611c12600a866127bd565b611c1d9060306126d9565b60f81b818381518110611c3257611c32612813565b60200101906001600160f81b031916908160001a905350611c54600a866126f1565b9450611bf4565b6001600160a01b038316611cb657611cb181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cd9565b816001600160a01b0316836001600160a01b031614611cd957611cd98382611e53565b6001600160a01b038216611cf057610abd81611ef0565b826001600160a01b0316826001600160a01b031614610abd57610abd8282611f9f565b611d1d8383611fe3565b611d2a6000848484611d46565b610abd5760405162461bcd60e51b815260040161086290612601565b60006001600160a01b0384163b15611e4857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8a90339089908890889060040161256d565b602060405180830381600087803b158015611da457600080fd5b505af1925050508015611dd4575060408051601f3d908101601f19168201909252611dd1918101906123fe565b60015b611e2e573d808015611e02576040519150601f19603f3d011682016040523d82523d6000602084013e611e07565b606091505b508051611e265760405162461bcd60e51b815260040161086290612601565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611831565b506001949350505050565b60006001611e608461103f565b611e6a9190612724565b600083815260076020526040902054909150808214611ebd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f0290600190612724565b60008381526009602052604081205460088054939450909284908110611f2a57611f2a612813565b906000526020600020015490508060088381548110611f4b57611f4b612813565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f8357611f836127fd565b6001900381819060005260206000200160009055905550505050565b6000611faa8361103f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120395760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610862565b6000818152600260205260409020546001600160a01b03161561209e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610862565b6120aa60008383611c5b565b6001600160a01b03821660009081526003602052604081208054600192906120d39084906126d9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461213d90612767565b90600052602060002090601f01602090048101928261215f57600085556121a5565b82601f1061217857805160ff19168380011785556121a5565b828001600101855582156121a5579182015b828111156121a557825182559160200191906001019061218a565b506121b19291506121b5565b5090565b5b808211156121b157600081556001016121b6565b600067ffffffffffffffff808411156121e5576121e5612829565b604051601f8501601f19908116603f0116810190828211818310171561220d5761220d612829565b8160405280935085815286868601111561222657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461225757600080fd5b919050565b8035801515811461225757600080fd5b60006020828403121561227e57600080fd5b6115b682612240565b6000806040838503121561229a57600080fd5b6122a383612240565b91506122b160208401612240565b90509250929050565b6000806000606084860312156122cf57600080fd5b6122d884612240565b92506122e660208501612240565b9150604084013590509250925092565b6000806000806080858703121561230c57600080fd5b61231585612240565b935061232360208601612240565b925060408501359150606085013567ffffffffffffffff81111561234657600080fd5b8501601f8101871361235757600080fd5b612366878235602084016121ca565b91505092959194509250565b6000806040838503121561238557600080fd5b61238e83612240565b91506122b16020840161225c565b600080604083850312156123af57600080fd5b6123b883612240565b946020939093013593505050565b6000602082840312156123d857600080fd5b6115b68261225c565b6000602082840312156123f357600080fd5b81356115b68161283f565b60006020828403121561241057600080fd5b81516115b68161283f565b60006020828403121561242d57600080fd5b813567ffffffffffffffff81111561244457600080fd5b8201601f8101841361245557600080fd5b611831848235602084016121ca565b60006020828403121561247657600080fd5b5035919050565b6000815180845261249581602086016020860161273b565b601f01601f19169290920160200192915050565b6000845160206124bc8285838a0161273b565b8551918401916124cf8184848a0161273b565b8554920191600090600181811c90808316806124ec57607f831692505b85831081141561250a57634e487b7160e01b85526022600452602485fd5b80801561251e576001811461252f5761255c565b60ff1985168852838801955061255c565b60008b81526020902060005b858110156125545781548a82015290840190880161253b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125a09083018461247d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125e2578351835292840192918401916001016125c6565b50909695505050505050565b6020815260006115b6602083018461247d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156126ec576126ec6127d1565b500190565b600082612700576127006127e7565b500490565b600081600019048311821515161561271f5761271f6127d1565b500290565b600082821015612736576127366127d1565b500390565b60005b8381101561275657818101518382015260200161273e565b838111156113b05750506000910152565b600181811c9082168061277b57607f821691505b6020821081141561279c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127b6576127b66127d1565b5060010190565b6000826127cc576127cc6127e7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d5157600080fdfea26469706673582212209b5700209fff3139688a6944290a4e74e870c03b7600e8c4374ef0e9cd3f6dc064736f6c6343000807003368747470733a2f2f717561726b617269756d2e6e65742f72657665616c6d797374657279626f786e66742f68696464656e426f782e6a736f6e

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806353db40731161014f578063a22cb465116100c1578063c75a5b6f1161007a578063c75a5b6f14610738578063c87b56dd1461074e578063d0eb26b01461076e578063d5abeb011461078e578063e985e9c5146107a4578063f2fde38b146107ed57600080fd5b8063a22cb4651461069e578063a45ba8e7146106be578063a475b5dd146106d3578063b88d4fde146106e8578063ba7d2c7614610708578063c2d05a6e1461071e57600080fd5b8063715018a611610113578063715018a61461060d5780637f7e7b6b146106225780638da5cb5b1461064257806394354fd01461066057806395d89b4114610676578063a0712d681461068b57600080fd5b806353db4073146105795780635503a0e8146105995780635c975abb146105ae5780636352211e146105cd57806370a08231146105ed57600080fd5b806329d0b2f7116101f357806342842e0e116101ac57806342842e0e146104ac578063438b6300146104cc5780634a01f4ac146104f95780634f6ccce7146105195780634fdd43cb14610539578063518302271461055957600080fd5b806329d0b2f71461040f5780632f745c5914610424578063305ae775146104445780633972ef14146104645780633ccfd60b146104845780633fa4e2701461048c57600080fd5b80630e1afe3f116102455780630e1afe3f1461035357806318160ddd1461037757806318cae2691461038c578063228025e8146103b957806322d59d54146103d957806323b872dd146103ef57600080fd5b806301ffc9a71461028257806302329a29146102b757806306fdde03146102d9578063081812fc146102fb578063095ea7b314610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046123e1565b61080d565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d23660046123c6565b610838565b005b3480156102e557600080fd5b506102ee610885565b6040516102ae91906125ee565b34801561030757600080fd5b5061031b610316366004612464565b610917565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102d761034e36600461239c565b6109ac565b34801561035f57600080fd5b5061036960135481565b6040519081526020016102ae565b34801561038357600080fd5b50600854610369565b34801561039857600080fd5b506103696103a736600461226c565b60176020526000908152604090205481565b3480156103c557600080fd5b506102d76103d4366004612464565b610ac2565b3480156103e557600080fd5b5061036960115481565b3480156103fb57600080fd5b506102d761040a3660046122ba565b610af1565b34801561041b57600080fd5b506102ee610b22565b34801561043057600080fd5b5061036961043f36600461239c565b610bb0565b34801561045057600080fd5b506102d761045f36600461241b565b610c46565b34801561047057600080fd5b506102d761047f366004612464565b610c87565b6102d7610cb6565b34801561049857600080fd5b506102d76104a736600461241b565b610d54565b3480156104b857600080fd5b506102d76104c73660046122ba565b610d91565b3480156104d857600080fd5b506104ec6104e736600461226c565b610dac565b6040516102ae91906125aa565b34801561050557600080fd5b506102d7610514366004612464565b610e8d565b34801561052557600080fd5b50610369610534366004612464565b610ebc565b34801561054557600080fd5b506102d761055436600461241b565b610f4f565b34801561056557600080fd5b506016546102a29062010000900460ff1681565b34801561058557600080fd5b506102d7610594366004612464565b610f8c565b3480156105a557600080fd5b506102ee610fbb565b3480156105ba57600080fd5b506016546102a290610100900460ff1681565b3480156105d957600080fd5b5061031b6105e8366004612464565b610fc8565b3480156105f957600080fd5b5061036961060836600461226c565b61103f565b34801561061957600080fd5b506102d76110c6565b34801561062e57600080fd5b506102d761063d366004612464565b6110fc565b34801561064e57600080fd5b50600a546001600160a01b031661031b565b34801561066c57600080fd5b5061036960125481565b34801561068257600080fd5b506102ee61112b565b6102d7610699366004612464565b61113a565b3480156106aa57600080fd5b506102d76106b9366004612372565b6113b6565b3480156106ca57600080fd5b506102ee6113c1565b3480156106df57600080fd5b506102d76113ce565b3480156106f457600080fd5b506102d76107033660046122f6565b61140b565b34801561071457600080fd5b5061036960145481565b34801561072a57600080fd5b506016546102a29060ff1681565b34801561074457600080fd5b50610369600e5481565b34801561075a57600080fd5b506102ee610769366004612464565b61143d565b34801561077a57600080fd5b506102d7610789366004612464565b6115bd565b34801561079a57600080fd5b5061036960105481565b3480156107b057600080fd5b506102a26107bf366004612287565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f957600080fd5b506102d761080836600461226c565b6115ec565b60006001600160e01b0319821663780e9d6360e01b1480610832575061083282611684565b92915050565b600a546001600160a01b0316331461086b5760405162461bcd60e51b815260040161086290612653565b60405180910390fd5b601680549115156101000261ff0019909216919091179055565b60606000805461089490612767565b80601f01602080910402602001604051908101604052809291908181526020018280546108c090612767565b801561090d5780601f106108e25761010080835404028352916020019161090d565b820191906000526020600020905b8154815290600101906020018083116108f057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109905760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610862565b506000908152600460205260409020546001600160a01b031690565b60006109b782610fc8565b9050806001600160a01b0316836001600160a01b03161415610a255760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610862565b336001600160a01b0382161480610a415750610a4181336107bf565b610ab35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610862565b610abd83836116d4565b505050565b600a546001600160a01b03163314610aec5760405162461bcd60e51b815260040161086290612653565b601055565b610afb3382611742565b610b175760405162461bcd60e51b815260040161086290612688565b610abd838383611839565b600b8054610b2f90612767565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5b90612767565b8015610ba85780601f10610b7d57610100808354040283529160200191610ba8565b820191906000526020600020905b815481529060010190602001808311610b8b57829003601f168201915b505050505081565b6000610bbb8361103f565b8210610c1d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610862565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c705760405162461bcd60e51b815260040161086290612653565b8051610c8390600c906020840190612131565b5050565b600a546001600160a01b03163314610cb15760405162461bcd60e51b815260040161086290612653565b600e55565b600a546001600160a01b03163314610ce05760405162461bcd60e51b815260040161086290612653565b6000610cf4600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d3e576040519150601f19603f3d011682016040523d82523d6000602084013e610d43565b606091505b5050905080610d5157600080fd5b50565b600a546001600160a01b03163314610d7e5760405162461bcd60e51b815260040161086290612653565b8051610c8390600b906020840190612131565b610abd8383836040518060200160405280600081525061140b565b60606000610db98361103f565b905060008167ffffffffffffffff811115610dd657610dd6612829565b604051908082528060200260200182016040528015610dff578160200160208202803683370190505b509050600160005b8381108015610e1857506010548211155b15610e83576000610e2883610fc8565b9050866001600160a01b0316816001600160a01b03161415610e705782848381518110610e5757610e57612813565b602090810291909101015281610e6c816127a2565b9250505b82610e7a816127a2565b93505050610e07565b5090949350505050565b600a546001600160a01b03163314610eb75760405162461bcd60e51b815260040161086290612653565b601355565b6000610ec760085490565b8210610f2a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610862565b60088281548110610f3d57610f3d612813565b90600052602060002001549050919050565b600a546001600160a01b03163314610f795760405162461bcd60e51b815260040161086290612653565b8051610c8390600d906020840190612131565b600a546001600160a01b03163314610fb65760405162461bcd60e51b815260040161086290612653565b601255565b600c8054610b2f90612767565b6000818152600260205260408120546001600160a01b0316806108325760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610862565b60006001600160a01b0382166110aa5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610862565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110f05760405162461bcd60e51b815260040161086290612653565b6110fa60006119e0565b565b600a546001600160a01b031633146111265760405162461bcd60e51b815260040161086290612653565b601155565b60606001805461089490612767565b601654610100900460ff161561118b5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610862565b600061119660085490565b6010549091506111a683836126d9565b111561120a5760405162461bcd60e51b815260206004820152602d60248201527f6d6178204e4654206c696d6974206578636565646564207c7c2046726565206d60448201526c1a5b9d0818dbdb98db1d591959609a1b6064820152608401610862565b33600090815260176020526040902054601154821061128e576016805460ff19169055600e54600f8190556014546015556112459084612705565b3410156112895760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610862565b61129a565b6000600f556013546015555b6015546112a784836126d9565b11156112f55760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610862565b60008311801561130757506012548311155b6113495760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610862565b60008311801561135b57506015548311155b15610abd5760015b8381116113b057336000908152601760205260408120805491611385836127a2565b9091555061139e90503361139983866126d9565b611a32565b806113a8816127a2565b915050611363565b50505050565b610c83338383611a4c565b600d8054610b2f90612767565b600a546001600160a01b031633146113f85760405162461bcd60e51b815260040161086290612653565b6016805462ff0000191662010000179055565b6114153383611742565b6114315760405162461bcd60e51b815260040161086290612688565b6113b084848484611b1b565b6000818152600260205260409020546060906001600160a01b03166114bc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610862565b60165462010000900460ff1661155e57600d80546114d990612767565b80601f016020809104026020016040519081016040528092919081815260200182805461150590612767565b80156115525780601f1061152757610100808354040283529160200191611552565b820191906000526020600020905b81548152906001019060200180831161153557829003601f168201915b50505050509050919050565b6000611568611b4e565b9050600081511161158857604051806020016040528060008152506115b6565b8061159284611b5d565b600c6040516020016115a6939291906124a9565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115e75760405162461bcd60e51b815260040161086290612653565b601455565b600a546001600160a01b031633146116165760405162461bcd60e51b815260040161086290612653565b6001600160a01b03811661167b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610862565b610d51816119e0565b60006001600160e01b031982166380ac58cd60e01b14806116b557506001600160e01b03198216635b5e139f60e01b145b8061083257506301ffc9a760e01b6001600160e01b0319831614610832565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061170982610fc8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610862565b60006117c683610fc8565b9050806001600160a01b0316846001600160a01b031614806118015750836001600160a01b03166117f684610917565b6001600160a01b0316145b8061183157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661184c82610fc8565b6001600160a01b0316146118b05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610862565b6001600160a01b0382166119125760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610862565b61191d838383611c5b565b6119286000826116d4565b6001600160a01b0383166000908152600360205260408120805460019290611951908490612724565b90915550506001600160a01b038216600090815260036020526040812080546001929061197f9084906126d9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c83828260405180602001604052806000815250611d13565b816001600160a01b0316836001600160a01b03161415611aae5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610862565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b26848484611839565b611b3284848484611d46565b6113b05760405162461bcd60e51b815260040161086290612601565b6060600b805461089490612767565b606081611b815750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bab5780611b95816127a2565b9150611ba49050600a836126f1565b9150611b85565b60008167ffffffffffffffff811115611bc657611bc6612829565b6040519080825280601f01601f191660200182016040528015611bf0576020820181803683370190505b5090505b841561183157611c05600183612724565b9150611c12600a866127bd565b611c1d9060306126d9565b60f81b818381518110611c3257611c32612813565b60200101906001600160f81b031916908160001a905350611c54600a866126f1565b9450611bf4565b6001600160a01b038316611cb657611cb181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cd9565b816001600160a01b0316836001600160a01b031614611cd957611cd98382611e53565b6001600160a01b038216611cf057610abd81611ef0565b826001600160a01b0316826001600160a01b031614610abd57610abd8282611f9f565b611d1d8383611fe3565b611d2a6000848484611d46565b610abd5760405162461bcd60e51b815260040161086290612601565b60006001600160a01b0384163b15611e4857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8a90339089908890889060040161256d565b602060405180830381600087803b158015611da457600080fd5b505af1925050508015611dd4575060408051601f3d908101601f19168201909252611dd1918101906123fe565b60015b611e2e573d808015611e02576040519150601f19603f3d011682016040523d82523d6000602084013e611e07565b606091505b508051611e265760405162461bcd60e51b815260040161086290612601565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611831565b506001949350505050565b60006001611e608461103f565b611e6a9190612724565b600083815260076020526040902054909150808214611ebd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f0290600190612724565b60008381526009602052604081205460088054939450909284908110611f2a57611f2a612813565b906000526020600020015490508060088381548110611f4b57611f4b612813565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f8357611f836127fd565b6001900381819060005260206000200160009055905550505050565b6000611faa8361103f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120395760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610862565b6000818152600260205260409020546001600160a01b03161561209e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610862565b6120aa60008383611c5b565b6001600160a01b03821660009081526003602052604081208054600192906120d39084906126d9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461213d90612767565b90600052602060002090601f01602090048101928261215f57600085556121a5565b82601f1061217857805160ff19168380011785556121a5565b828001600101855582156121a5579182015b828111156121a557825182559160200191906001019061218a565b506121b19291506121b5565b5090565b5b808211156121b157600081556001016121b6565b600067ffffffffffffffff808411156121e5576121e5612829565b604051601f8501601f19908116603f0116810190828211818310171561220d5761220d612829565b8160405280935085815286868601111561222657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461225757600080fd5b919050565b8035801515811461225757600080fd5b60006020828403121561227e57600080fd5b6115b682612240565b6000806040838503121561229a57600080fd5b6122a383612240565b91506122b160208401612240565b90509250929050565b6000806000606084860312156122cf57600080fd5b6122d884612240565b92506122e660208501612240565b9150604084013590509250925092565b6000806000806080858703121561230c57600080fd5b61231585612240565b935061232360208601612240565b925060408501359150606085013567ffffffffffffffff81111561234657600080fd5b8501601f8101871361235757600080fd5b612366878235602084016121ca565b91505092959194509250565b6000806040838503121561238557600080fd5b61238e83612240565b91506122b16020840161225c565b600080604083850312156123af57600080fd5b6123b883612240565b946020939093013593505050565b6000602082840312156123d857600080fd5b6115b68261225c565b6000602082840312156123f357600080fd5b81356115b68161283f565b60006020828403121561241057600080fd5b81516115b68161283f565b60006020828403121561242d57600080fd5b813567ffffffffffffffff81111561244457600080fd5b8201601f8101841361245557600080fd5b611831848235602084016121ca565b60006020828403121561247657600080fd5b5035919050565b6000815180845261249581602086016020860161273b565b601f01601f19169290920160200192915050565b6000845160206124bc8285838a0161273b565b8551918401916124cf8184848a0161273b565b8554920191600090600181811c90808316806124ec57607f831692505b85831081141561250a57634e487b7160e01b85526022600452602485fd5b80801561251e576001811461252f5761255c565b60ff1985168852838801955061255c565b60008b81526020902060005b858110156125545781548a82015290840190880161253b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125a09083018461247d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125e2578351835292840192918401916001016125c6565b50909695505050505050565b6020815260006115b6602083018461247d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156126ec576126ec6127d1565b500190565b600082612700576127006127e7565b500490565b600081600019048311821515161561271f5761271f6127d1565b500290565b600082821015612736576127366127d1565b500390565b60005b8381101561275657818101518382015260200161273e565b838111156113b05750506000910152565b600181811c9082168061277b57607f821691505b6020821081141561279c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127b6576127b66127d1565b5060010190565b6000826127cc576127cc6127e7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d5157600080fdfea26469706673582212209b5700209fff3139688a6944290a4e74e870c03b7600e8c4374ef0e9cd3f6dc064736f6c63430008070033

Deployed Bytecode Sourcemap

45549:4863:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39314:224;;;;;;;;;;-1:-1:-1;39314:224:0;;;;;:::i;:::-;;:::i;:::-;;;7807:14:1;;7800:22;7782:41;;7770:2;7755:18;39314:224:0;;;;;;;;49945:73;;;;;;;;;;-1:-1:-1;49945:73:0;;;;;:::i;:::-;;:::i;:::-;;26134:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27693:221::-;;;;;;;;;;-1:-1:-1;27693:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:1;;;6450:51;;6438:2;6423:18;27693:221:0;6304:203:1;27216:411:0;;;;;;;;;;-1:-1:-1;27216:411:0;;;;;:::i;:::-;;:::i;45976:41::-;;;;;;;;;;;;;;;;;;;17224:25:1;;;17212:2;17197:18;45976:41:0;17078:177:1;39954:113:0;;;;;;;;;;-1:-1:-1;40042:10:0;:17;39954:113;;46196:55;;;;;;;;;;-1:-1:-1;46196:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;50150:107;;;;;;;;;;-1:-1:-1;50150:107:0;;;;;:::i;:::-;;:::i;45891:36::-;;;;;;;;;;;;;;;;28443:339;;;;;;;;;;-1:-1:-1;28443:339:0;;;;;:::i;:::-;;:::i;45650:37::-;;;;;;;;;;;;;:::i;39622:256::-;;;;;;;;;;-1:-1:-1;39622:256:0;;;;;:::i;:::-;;:::i;49693:106::-;;;;;;;;;;-1:-1:-1;49693:106:0;;;;;:::i;:::-;;:::i;49293:108::-;;;;;;;;;;-1:-1:-1;49293:108:0;;;;;:::i;:::-;;:::i;50264:145::-;;;:::i;49551:136::-;;;;;;;;;;-1:-1:-1;49551:136:0;;;;;:::i;:::-;;:::i;28853:185::-;;;;;;;;;;-1:-1:-1;28853:185:0;;;;;:::i;:::-;;:::i;47653:635::-;;;;;;;;;;-1:-1:-1;47653:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49173:112::-;;;;;;;;;;-1:-1:-1;49173:112:0;;;;;:::i;:::-;;:::i;40144:233::-;;;;;;;;;;-1:-1:-1;40144:233:0;;;;;:::i;:::-;;:::i;49807:132::-;;;;;;;;;;-1:-1:-1;49807:132:0;;;;;:::i;:::-;;:::i;46161:28::-;;;;;;;;;;-1:-1:-1;46161:28:0;;;;;;;;;;;49409:136;;;;;;;;;;-1:-1:-1;49409:136:0;;;;;:::i;:::-;;:::i;45692:33::-;;;;;;;;;;;;;:::i;46130:26::-;;;;;;;;;;-1:-1:-1;46130:26:0;;;;;;;;;;;25828:239;;;;;;;;;;-1:-1:-1;25828:239:0;;;;;:::i;:::-;;:::i;25558:208::-;;;;;;;;;;-1:-1:-1;25558:208:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;50024:120::-;;;;;;;;;;-1:-1:-1;50024:120:0;;;;;:::i;:::-;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;45934:37;;;;;;;;;;;;;;;;26303:104;;;;;;;;;;;;;:::i;46433:1210::-;;;;;;:::i;:::-;;:::i;27986:155::-;;;;;;;;;;-1:-1:-1;27986:155:0;;;;;:::i;:::-;;:::i;45730:31::-;;;;;;;;;;;;;:::i;48989:65::-;;;;;;;;;;;;;:::i;29109:328::-;;;;;;;;;;-1:-1:-1;29109:328:0;;;;;:::i;:::-;;:::i;46024:37::-;;;;;;;;;;;;;;;;46096:29;;;;;;;;;;-1:-1:-1;46096:29:0;;;;;;;;45771:47;;;;;;;;;;;;;;;;48294:524;;;;;;;;;;-1:-1:-1;48294:524:0;;;;;:::i;:::-;;:::i;49062:104::-;;;;;;;;;;-1:-1:-1;49062:104:0;;;;;:::i;:::-;;:::i;45855:31::-;;;;;;;;;;;;;;;;28212:164;;;;;;;;;;-1:-1:-1;28212:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28333:25:0;;;28309:4;28333:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28212:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;39314:224::-;39416:4;-1:-1:-1;;;;;;39440:50:0;;-1:-1:-1;;;39440:50:0;;:90;;;39494:36;39518:11;39494:23;:36::i;:::-;39433:97;39314:224;-1:-1:-1;;39314:224:0:o;49945:73::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;49997:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;49997:15:0;;::::1;::::0;;;::::1;::::0;;49945:73::o;26134:100::-;26188:13;26221:5;26214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26134:100;:::o;27693:221::-;27769:7;31036:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31036:16:0;27789:73;;;;-1:-1:-1;;;27789:73:0;;13397:2:1;27789:73:0;;;13379:21:1;13436:2;13416:18;;;13409:30;13475:34;13455:18;;;13448:62;-1:-1:-1;;;13526:18:1;;;13519:42;13578:19;;27789:73:0;13195:408:1;27789:73:0;-1:-1:-1;27882:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27882:24:0;;27693:221::o;27216:411::-;27297:13;27313:23;27328:7;27313:14;:23::i;:::-;27297:39;;27361:5;-1:-1:-1;;;;;27355:11:0;:2;-1:-1:-1;;;;;27355:11:0;;;27347:57;;;;-1:-1:-1;;;27347:57:0;;14938:2:1;27347:57:0;;;14920:21:1;14977:2;14957:18;;;14950:30;15016:34;14996:18;;;14989:62;-1:-1:-1;;;15067:18:1;;;15060:31;15108:19;;27347:57:0;14736:397:1;27347:57:0;2883:10;-1:-1:-1;;;;;27439:21:0;;;;:62;;-1:-1:-1;27464:37:0;27481:5;2883:10;28212:164;:::i;27464:37::-;27417:168;;;;-1:-1:-1;;;27417:168:0;;11790:2:1;27417:168:0;;;11772:21:1;11829:2;11809:18;;;11802:30;11868:34;11848:18;;;11841:62;11939:26;11919:18;;;11912:54;11983:19;;27417:168:0;11588:420:1;27417:168:0;27598:21;27607:2;27611:7;27598:8;:21::i;:::-;27286:341;27216:411;;:::o;50150:107::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50223:9:::1;:28:::0;50150:107::o;28443:339::-;28638:41;2883:10;28671:7;28638:18;:41::i;:::-;28630:103;;;;-1:-1:-1;;;28630:103:0;;;;;;;:::i;:::-;28746:28;28756:4;28762:2;28766:7;28746:9;:28::i;45650:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39622:256::-;39719:7;39755:23;39772:5;39755:16;:23::i;:::-;39747:5;:31;39739:87;;;;-1:-1:-1;;;39739:87:0;;8260:2:1;39739:87:0;;;8242:21:1;8299:2;8279:18;;;8272:30;8338:34;8318:18;;;8311:62;-1:-1:-1;;;8389:18:1;;;8382:41;8440:19;;39739:87:0;8058:407:1;39739:87:0;-1:-1:-1;;;;;;39844:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39622:256::o;49693:106::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49768:25;;::::1;::::0;:9:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49693:106:::0;:::o;49293:108::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49366:18:::1;:29:::0;49293:108::o;50264:145::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50317:7:::1;50338;4152:6:::0;;-1:-1:-1;;;;;4152:6:0;;4079:87;50338:7:::1;-1:-1:-1::0;;;;;50330:21:0::1;50359;50330:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50316:69;;;50400:2;50392:11;;;::::0;::::1;;50309:100;50264:145::o:0;49551:136::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49636:45;;::::1;::::0;:23:::1;::::0;:45:::1;::::0;::::1;::::0;::::1;:::i;28853:185::-:0;28991:39;29008:4;29014:2;29018:7;28991:39;;;;;;;;;;;;:16;:39::i;47653:635::-;47728:16;47756:23;47782:17;47792:6;47782:9;:17::i;:::-;47756:43;;47806:30;47853:15;47839:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47839:30:0;-1:-1:-1;47806:63:0;-1:-1:-1;47901:1:0;47876:22;47949:307;47974:15;47956;:33;:64;;;;;48011:9;;47993:14;:27;;47956:64;47949:307;;;48031:25;48059:23;48067:14;48059:7;:23::i;:::-;48031:51;;48118:6;-1:-1:-1;;;;;48097:27:0;:17;-1:-1:-1;;;;;48097:27:0;;48093:131;;;48170:14;48137:13;48151:15;48137:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;48197:17;;;;:::i;:::-;;;;48093:131;48232:16;;;;:::i;:::-;;;;48022:234;47949:307;;;-1:-1:-1;48269:13:0;;47653:635;-1:-1:-1;;;;47653:635:0:o;49173:112::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49248:22:::1;:31:::0;49173:112::o;40144:233::-;40219:7;40255:30;40042:10;:17;;39954:113;40255:30;40247:5;:38;40239:95;;;;-1:-1:-1;;;40239:95:0;;16867:2:1;40239:95:0;;;16849:21:1;16906:2;16886:18;;;16879:30;16945:34;16925:18;;;16918:62;-1:-1:-1;;;16996:18:1;;;16989:42;17048:19;;40239:95:0;16665:408:1;40239:95:0;40352:10;40363:5;40352:17;;;;;;;;:::i;:::-;;;;;;;;;40345:24;;40144:233;;;:::o;49807:132::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49895:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;49409:136::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49496:18:::1;:43:::0;49409:136::o;45692:33::-;;;;;;;:::i;25828:239::-;25900:7;25936:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25936:16:0;25971:19;25963:73;;;;-1:-1:-1;;;25963:73:0;;12626:2:1;25963:73:0;;;12608:21:1;12665:2;12645:18;;;12638:30;12704:34;12684:18;;;12677:62;-1:-1:-1;;;12755:18:1;;;12748:39;12804:19;;25963:73:0;12424:405:1;25558:208:0;25630:7;-1:-1:-1;;;;;25658:19:0;;25650:74;;;;-1:-1:-1;;;25650:74:0;;12215:2:1;25650:74:0;;;12197:21:1;12254:2;12234:18;;;12227:30;12293:34;12273:18;;;12266:62;-1:-1:-1;;;12344:18:1;;;12337:40;12394:19;;25650:74:0;12013:406:1;25650:74:0;-1:-1:-1;;;;;;25742:16:0;;;;;:9;:16;;;;;;;25558:208::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;50024:120::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50103:17:::1;:35:::0;50024:120::o;26303:104::-;26359:13;26392:7;26385:14;;;;;:::i;46433:1210::-;46512:6;;;;;;;46511:7;46503:42;;;;-1:-1:-1;;;46503:42:0;;14171:2:1;46503:42:0;;;14153:21:1;14210:2;14190:18;;;14183:30;-1:-1:-1;;;14229:18:1;;;14222:52;14291:18;;46503:42:0;13969:346:1;46503:42:0;46564:14;46581:13;40042:10;:17;;39954:113;46581:13;46647:9;;46564:30;;-1:-1:-1;46612:31:0;46621:22;46564:30;46612:31;:::i;:::-;:44;;46604:102;;;;-1:-1:-1;;;46604:102:0;;15340:2:1;46604:102:0;;;15322:21:1;15379:2;15359:18;;;15352:30;15418:34;15398:18;;;15391:62;-1:-1:-1;;;15469:18:1;;;15462:43;15522:19;;46604:102:0;15138:409:1;46604:102:0;46765:10;46717:24;46744:32;;;:20;:32;;;;;;46811:17;;46801:27;;46797:343;;46839:10;:18;;-1:-1:-1;;46839:18:0;;;46878;;46866:9;:30;;;46923:18;;46905:15;:36;46971:34;;:22;:34;:::i;:::-;46958:9;:47;;46950:78;;;;-1:-1:-1;;;46950:78:0;;15754:2:1;46950:78:0;;;15736:21:1;15793:2;15773:18;;;15766:30;-1:-1:-1;;;15812:18:1;;;15805:48;15870:18;;46950:78:0;15552:342:1;46950:78:0;46797:343;;;47082:1;47070:9;:13;47110:22;;47092:15;:40;46797:343;47208:15;;47162:41;47181:22;47162:16;:41;:::i;:::-;47161:62;;47153:103;;;;-1:-1:-1;;;47153:103:0;;10261:2:1;47153:103:0;;;10243:21:1;10300:2;10280:18;;;10273:30;10339;10319:18;;;10312:58;10387:18;;47153:103:0;10059:352:1;47153:103:0;47297:1;47272:22;:26;:74;;;;;47328:18;;47302:22;:44;;47272:74;47264:106;;;;-1:-1:-1;;;47264:106:0;;16519:2:1;47264:106:0;;;16501:21:1;16558:2;16538:18;;;16531:30;-1:-1:-1;;;16577:18:1;;;16570:49;16636:18;;47264:106:0;16317:343:1;47264:106:0;47411:1;47386:22;:26;:71;;;;;47442:15;;47416:22;:41;;47386:71;47382:256;;;47485:1;47468:153;47493:22;47488:1;:27;47468:153;;47554:10;47533:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;47578:33:0;;-1:-1:-1;47588:10:0;47600;47609:1;47600:6;:10;:::i;:::-;47578:9;:33::i;:::-;47517:3;;;;:::i;:::-;;;;47468:153;;;;46494:1149;;46433:1210;:::o;27986:155::-;28081:52;2883:10;28114:8;28124;28081:18;:52::i;45730:31::-;;;;;;;:::i;48989:65::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49033:8:::1;:15:::0;;-1:-1:-1;;49033:15:0::1;::::0;::::1;::::0;;48989:65::o;29109:328::-;29284:41;2883:10;29317:7;29284:18;:41::i;:::-;29276:103;;;;-1:-1:-1;;;29276:103:0;;;;;;;:::i;:::-;29390:39;29404:4;29410:2;29414:7;29423:5;29390:13;:39::i;48294:524::-;31012:4;31036:16;;;:7;:16;;;;;;48392:13;;-1:-1:-1;;;;;31036:16:0;48417:97;;;;-1:-1:-1;;;48417:97:0;;14522:2:1;48417:97:0;;;14504:21:1;14561:2;14541:18;;;14534:30;14600:34;14580:18;;;14573:62;-1:-1:-1;;;14651:18:1;;;14644:45;14706:19;;48417:97:0;14320:411:1;48417:97:0;48530:8;;;;;;;48527:65;;48567:17;48560:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48294:524;;;:::o;48527:65::-;48608:28;48639:26;:24;:26::i;:::-;48608:57;;48710:1;48685:14;48679:28;:32;:129;;;;;;;;;;;;;;;;;48747:14;48763:18;:7;:16;:18::i;:::-;48783:9;48730:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48679:129;48672:136;48294:524;-1:-1:-1;;;48294:524:0:o;49062:104::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49133:18:::1;:27:::0;49062:104::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;9091:2:1;5069:73:0::1;::::0;::::1;9073:21:1::0;9130:2;9110:18;;;9103:30;9169:34;9149:18;;;9142:62;-1:-1:-1;;;9220:18:1;;;9213:36;9266:19;;5069:73:0::1;8889:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;25189:305::-:0;25291:4;-1:-1:-1;;;;;;25328:40:0;;-1:-1:-1;;;25328:40:0;;:105;;-1:-1:-1;;;;;;;25385:48:0;;-1:-1:-1;;;25385:48:0;25328:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;25450:36;16863:157;35093:174;35168:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35168:29:0;-1:-1:-1;;;;;35168:29:0;;;;;;;;:24;;35222:23;35168:24;35222:14;:23::i;:::-;-1:-1:-1;;;;;35213:46:0;;;;;;;;;;;35093:174;;:::o;31241:348::-;31334:4;31036:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31036:16:0;31351:73;;;;-1:-1:-1;;;31351:73:0;;11377:2:1;31351:73:0;;;11359:21:1;11416:2;11396:18;;;11389:30;11455:34;11435:18;;;11428:62;-1:-1:-1;;;11506:18:1;;;11499:42;11558:19;;31351:73:0;11175:408:1;31351:73:0;31435:13;31451:23;31466:7;31451:14;:23::i;:::-;31435:39;;31504:5;-1:-1:-1;;;;;31493:16:0;:7;-1:-1:-1;;;;;31493:16:0;;:51;;;;31537:7;-1:-1:-1;;;;;31513:31:0;:20;31525:7;31513:11;:20::i;:::-;-1:-1:-1;;;;;31513:31:0;;31493:51;:87;;;-1:-1:-1;;;;;;28333:25:0;;;28309:4;28333:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31548:32;31485:96;31241:348;-1:-1:-1;;;;31241:348:0:o;34350:625::-;34509:4;-1:-1:-1;;;;;34482:31:0;:23;34497:7;34482:14;:23::i;:::-;-1:-1:-1;;;;;34482:31:0;;34474:81;;;;-1:-1:-1;;;34474:81:0;;9498:2:1;34474:81:0;;;9480:21:1;9537:2;9517:18;;;9510:30;9576:34;9556:18;;;9549:62;-1:-1:-1;;;9627:18:1;;;9620:35;9672:19;;34474:81:0;9296:401:1;34474:81:0;-1:-1:-1;;;;;34574:16:0;;34566:65;;;;-1:-1:-1;;;34566:65:0;;10618:2:1;34566:65:0;;;10600:21:1;10657:2;10637:18;;;10630:30;10696:34;10676:18;;;10669:62;-1:-1:-1;;;10747:18:1;;;10740:34;10791:19;;34566:65:0;10416:400:1;34566:65:0;34644:39;34665:4;34671:2;34675:7;34644:20;:39::i;:::-;34748:29;34765:1;34769:7;34748:8;:29::i;:::-;-1:-1:-1;;;;;34790:15:0;;;;;;:9;:15;;;;;:20;;34809:1;;34790:15;:20;;34809:1;;34790:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34821:13:0;;;;;;:9;:13;;;;;:18;;34838:1;;34821:13;:18;;34838:1;;34821:18;:::i;:::-;;;;-1:-1:-1;;34850:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34850:21:0;-1:-1:-1;;;;;34850:21:0;;;;;;;;;34889:27;;34850:16;;34889:27;;;;;;;27286:341;27216:411;;:::o;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;31931:110::-;32007:26;32017:2;32021:7;32007:26;;;;;;;;;;;;:9;:26::i;35409:315::-;35564:8;-1:-1:-1;;;;;35555:17:0;:5;-1:-1:-1;;;;;35555:17:0;;;35547:55;;;;-1:-1:-1;;;35547:55:0;;11023:2:1;35547:55:0;;;11005:21:1;11062:2;11042:18;;;11035:30;11101:27;11081:18;;;11074:55;11146:18;;35547:55:0;10821:349:1;35547:55:0;-1:-1:-1;;;;;35613:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35613:46:0;;;;;;;;;;35675:41;;7782::1;;;35675::0;;7755:18:1;35675:41:0;;;;;;;35409:315;;;:::o;30319:::-;30476:28;30486:4;30492:2;30496:7;30476:9;:28::i;:::-;30523:48;30546:4;30552:2;30556:7;30565:5;30523:22;:48::i;:::-;30515:111;;;;-1:-1:-1;;;30515:111:0;;;;;;;:::i;48842:125::-;48909:13;48938:23;48931:30;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;40990:589;-1:-1:-1;;;;;41196:18:0;;41192:187;;41231:40;41263:7;42406:10;:17;;42379:24;;;;:15;:24;;;;;:44;;;42434:24;;;;;;;;;;;;42302:164;41231:40;41192:187;;;41301:2;-1:-1:-1;;;;;41293:10:0;:4;-1:-1:-1;;;;;41293:10:0;;41289:90;;41320:47;41353:4;41359:7;41320:32;:47::i;:::-;-1:-1:-1;;;;;41393:16:0;;41389:183;;41426:45;41463:7;41426:36;:45::i;41389:183::-;41499:4;-1:-1:-1;;;;;41493:10:0;:2;-1:-1:-1;;;;;41493:10:0;;41489:83;;41520:40;41548:2;41552:7;41520:27;:40::i;32268:321::-;32398:18;32404:2;32408:7;32398:5;:18::i;:::-;32449:54;32480:1;32484:2;32488:7;32497:5;32449:22;:54::i;:::-;32427:154;;;;-1:-1:-1;;;32427:154:0;;;;;;;:::i;36289:799::-;36444:4;-1:-1:-1;;;;;36465:13:0;;7075:19;:23;36461:620;;36501:72;;-1:-1:-1;;;36501:72:0;;-1:-1:-1;;;;;36501:36:0;;;;;:72;;2883:10;;36552:4;;36558:7;;36567:5;;36501:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36501:72:0;;;;;;;;-1:-1:-1;;36501:72:0;;;;;;;;;;;;:::i;:::-;;;36497:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36743:13:0;;36739:272;;36786:60;;-1:-1:-1;;;36786:60:0;;;;;;;:::i;36739:272::-;36961:6;36955:13;36946:6;36942:2;36938:15;36931:38;36497:529;-1:-1:-1;;;;;;36624:51:0;-1:-1:-1;;;36624:51:0;;-1:-1:-1;36617:58:0;;36461:620;-1:-1:-1;37065:4:0;36289:799;;;;;;:::o;43093:988::-;43359:22;43409:1;43384:22;43401:4;43384:16;:22::i;:::-;:26;;;;:::i;:::-;43421:18;43442:26;;;:17;:26;;;;;;43359:51;;-1:-1:-1;43575:28:0;;;43571:328;;-1:-1:-1;;;;;43642:18:0;;43620:19;43642:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43693:30;;;;;;:44;;;43810:30;;:17;:30;;;;;:43;;;43571:328;-1:-1:-1;43995:26:0;;;;:17;:26;;;;;;;;43988:33;;;-1:-1:-1;;;;;44039:18:0;;;;;:12;:18;;;;;:34;;;;;;;44032:41;43093:988::o;44376:1079::-;44654:10;:17;44629:22;;44654:21;;44674:1;;44654:21;:::i;:::-;44686:18;44707:24;;;:15;:24;;;;;;45080:10;:26;;44629:46;;-1:-1:-1;44707:24:0;;44629:46;;45080:26;;;;;;:::i;:::-;;;;;;;;;45058:48;;45144:11;45119:10;45130;45119:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45224:28;;;:15;:28;;;;;;;:41;;;45396:24;;;;;45389:31;45431:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44447:1008;;;44376:1079;:::o;41880:221::-;41965:14;41982:20;41999:2;41982:16;:20::i;:::-;-1:-1:-1;;;;;42013:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42058:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41880:221:0:o;32925:439::-;-1:-1:-1;;;;;33005:16:0;;32997:61;;;;-1:-1:-1;;;32997:61:0;;13036:2:1;32997:61:0;;;13018:21:1;;;13055:18;;;13048:30;13114:34;13094:18;;;13087:62;13166:18;;32997:61:0;12834:356:1;32997:61:0;31012:4;31036:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31036:16:0;:30;33069:58;;;;-1:-1:-1;;;33069:58:0;;9904:2:1;33069:58:0;;;9886:21:1;9943:2;9923:18;;;9916:30;9982;9962:18;;;9955:58;10030:18;;33069:58:0;9702:352:1;33069:58:0;33140:45;33169:1;33173:2;33177:7;33140:20;:45::i;:::-;-1:-1:-1;;;;;33198:13:0;;;;;;:9;:13;;;;;:18;;33215:1;;33198:13;:18;;33215:1;;33198:18;:::i;:::-;;;;-1:-1:-1;;33227:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33227:21:0;-1:-1:-1;;;;;33227:21:0;;;;;;;;33266:33;;33227:16;;;33266:33;;33227:16;;33266:33;49768:25:::1;49693:106:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;17333:1;17326:14;;;17370:4;17357:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6512:488::-;-1:-1:-1;;;;;6781:15:1;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:1:o;7005:632::-;7176:2;7228:21;;;7298:13;;7201:18;;;7320:22;;;7147:4;;7176:2;7399:15;;;;7373:2;7358:18;;;7147:4;7442:169;7456:6;7453:1;7450:13;7442:169;;;7517:13;;7505:26;;7586:15;;;;7551:12;;;;7478:1;7471:9;7442:169;;;-1:-1:-1;7628:3:1;;7005:632;-1:-1:-1;;;;;;7005:632:1:o;7834:219::-;7983:2;7972:9;7965:21;7946:4;8003:44;8043:2;8032:9;8028:18;8020:6;8003:44;:::i;8470:414::-;8672:2;8654:21;;;8711:2;8691:18;;;8684:30;8750:34;8745:2;8730:18;;8723:62;-1:-1:-1;;;8816:2:1;8801:18;;8794:48;8874:3;8859:19;;8470:414::o;13608:356::-;13810:2;13792:21;;;13829:18;;;13822:30;13888:34;13883:2;13868:18;;13861:62;13955:2;13940:18;;13608:356::o;15899:413::-;16101:2;16083:21;;;16140:2;16120:18;;;16113:30;16179:34;16174:2;16159:18;;16152:62;-1:-1:-1;;;16245:2:1;16230:18;;16223:47;16302:3;16287:19;;15899:413::o;17386:128::-;17426:3;17457:1;17453:6;17450:1;17447:13;17444:39;;;17463:18;;:::i;:::-;-1:-1:-1;17499:9:1;;17386:128::o;17519:120::-;17559:1;17585;17575:35;;17590:18;;:::i;:::-;-1:-1:-1;17624:9:1;;17519:120::o;17644:168::-;17684:7;17750:1;17746;17742:6;17738:14;17735:1;17732:21;17727:1;17720:9;17713:17;17709:45;17706:71;;;17757:18;;:::i;:::-;-1:-1:-1;17797:9:1;;17644:168::o;17817:125::-;17857:4;17885:1;17882;17879:8;17876:34;;;17890:18;;:::i;:::-;-1:-1:-1;17927:9:1;;17817:125::o;17947:258::-;18019:1;18029:113;18043:6;18040:1;18037:13;18029:113;;;18119:11;;;18113:18;18100:11;;;18093:39;18065:2;18058:10;18029:113;;;18160:6;18157:1;18154:13;18151:48;;;-1:-1:-1;;18195:1:1;18177:16;;18170:27;17947:258::o;18210:380::-;18289:1;18285:12;;;;18332;;;18353:61;;18407:4;18399:6;18395:17;18385:27;;18353:61;18460:2;18452:6;18449:14;18429:18;18426:38;18423:161;;;18506:10;18501:3;18497:20;18494:1;18487:31;18541:4;18538:1;18531:15;18569:4;18566:1;18559:15;18423:161;;18210:380;;;:::o;18595:135::-;18634:3;-1:-1:-1;;18655:17:1;;18652:43;;;18675:18;;:::i;:::-;-1:-1:-1;18722:1:1;18711:13;;18595:135::o;18735:112::-;18767:1;18793;18783:35;;18798:18;;:::i;:::-;-1:-1:-1;18832:9:1;;18735:112::o;18852:127::-;18913:10;18908:3;18904:20;18901:1;18894:31;18944:4;18941:1;18934:15;18968:4;18965:1;18958:15;18984:127;19045:10;19040:3;19036:20;19033:1;19026:31;19076:4;19073:1;19066:15;19100:4;19097:1;19090:15;19116:127;19177:10;19172:3;19168:20;19165:1;19158:31;19208:4;19205:1;19198:15;19232:4;19229:1;19222:15;19248:127;19309:10;19304:3;19300:20;19297:1;19290:31;19340:4;19337:1;19330:15;19364:4;19361:1;19354:15;19380:127;19441:10;19436:3;19432:20;19429:1;19422:31;19472:4;19469:1;19462:15;19496:4;19493:1;19486:15;19512:131;-1:-1:-1;;;;;;19586:32:1;;19576:43;;19566:71;;19633:1;19630;19623:12

Swarm Source

ipfs://9b5700209fff3139688a6944290a4e74e870c03b7600e8c4374ef0e9cd3f6dc0

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.