ETH Price: $3,378.00 (-1.92%)
Gas: 2 Gwei

Token

Gerbs (GERB)
 

Overview

Max Total Supply

4,444 GERB

Holders

1,884

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 GERB
0x41c9152a713ac2c48d650862b418a2cc767cebe2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Gerbs

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-21
*/

// SPDX-License-Identifier: MIT



// 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/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/new.sol




pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
pragma solidity ^0.8.13;



abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
pragma solidity ^0.8.13;



abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
    pragma solidity ^0.8.13;
    
    contract Gerbs is ERC721A, DefaultOperatorFilterer , Ownable {
    using Strings for uint256;


  string private uriPrefix ;
  string private uriSuffix = ".json";
  string public hiddenURL = "ipfs://QmXt2WiaYdRGji9CzdaMEZbjiuTeegi7iiYWyE5yTtJQAU";

  
  

  uint256 public cost ;
  

  uint16 public constant maxSupply = 4444;
  uint8 public maxMintAmountPerWallet = 1;
                                                             
 
  bool public paused = true;
  bool public reveal =false;
  mapping (address => uint8) public NFTPerAddress;
  
  
  
 
  

  constructor() ERC721A("Gerbs", "GERB") {
  }

  
 
  function mint(uint8 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
   uint8 _txPerAddress = NFTPerAddress[msg.sender];
    require (_txPerAddress + _mintAmount <= maxMintAmountPerWallet, "Exceeds max nft per address");

    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    NFTPerAddress[msg.sender] =_txPerAddress + _mintAmount;
    _safeMint(msg.sender , _mintAmount);
     
     delete totalSupply;
     delete _mintAmount;
  }
  
  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function burn(uint _tokenID) external onlyOwner {
      _burn(_tokenID);
  }


   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
if ( reveal == false)
{
    return hiddenURL;
}
    

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




 function setMaxNFTPerAddress(uint8 _limit) external onlyOwner{
    maxMintAmountPerWallet = _limit;
   delete _limit;

}

    
  



  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }


  function setPaused() external onlyOwner {
    paused = !paused;
  
  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }



 

  function withdraw() external onlyOwner {
  uint _balance = address(this).balance;
     payable(msg.sender).transfer(_balance ); 
       
  }


  function _baseURI() internal view  override returns (string memory) {
    return uriPrefix;
  }
  function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"NFTPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","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":"hiddenURL","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":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxNFTPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a9190620002a2565b50604051806060016040528060358152602001620028f66035913980516200005991600b91602090910190620002a2565b50600d805462ffffff19166101011790553480156200007757600080fd5b506040805180820182526005815264476572627360d81b60208083019182528351808501909452600484526323a2a92160e11b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb693600193929091620000da91600291620002a2565b508051620000f0906003906020840190620002a2565b506000805550506daaeb6d7670e522a718067333cd4e3b156200023c5780156200018a57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200016b57600080fd5b505af115801562000180573d6000803e3d6000fd5b505050506200023c565b6001600160a01b03821615620001db5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000150565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200022257600080fd5b505af115801562000237573d6000803e3d6000fd5b505050505b506200024a90503362000250565b62000384565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002b09062000348565b90600052602060002090601f016020900481019282620002d457600085556200031f565b82601f10620002ef57805160ff19168380011785556200031f565b828001600101855582156200031f579182015b828111156200031f57825182559160200191906001019062000302565b506200032d92915062000331565b5090565b5b808211156200032d576000815560010162000332565b600181811c908216806200035d57607f821691505b6020821081036200037e57634e487b7160e01b600052602260045260246000fd5b50919050565b61256280620003946000396000f3fe6080604052600436106101f95760003560e01c80636ecd23061161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610591578063dbd37cf4146105ba578063e985e9c5146105ea578063eef440af14610633578063f2fde38b1461064857600080fd5b8063b88d4fde14610505578063bc04bc7914610525578063bc951b9114610545578063c87b56dd1461057157600080fd5b80638da5cb5b116100dc5780638da5cb5b1461049257806395d89b41146104b0578063a22cb465146104c5578063a475b5dd146104e557600080fd5b80636ecd23061461042a57806370a082311461043d578063715018a61461045d5780637ec4a6591461047257600080fd5b80632f6f98e11161019057806342842e0e1161015f57806342842e0e1461038b57806342966c68146103ab57806344a0d68a146103cb5780635c975abb146103eb5780636352211e1461040a57600080fd5b80632f6f98e11461032c57806337a66d851461034c5780633bd64968146103615780633ccfd60b1461037657600080fd5b80631067fcc7116101cc5780631067fcc7146102af57806313faede6146102cf57806318160ddd146102f357806323b872dd1461030c57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611ef8565b610668565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106ba565b60405161022a9190611f6d565b34801561026157600080fd5b50610275610270366004611f80565b61074c565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611fb5565b610790565b005b3480156102bb57600080fd5b506102ad6102ca36600461206b565b61081d565b3480156102db57600080fd5b506102e5600c5481565b60405190815260200161022a565b3480156102ff57600080fd5b50600154600054036102e5565b34801561031857600080fd5b506102ad6103273660046120b4565b610867565b34801561033857600080fd5b506102ad6103473660046120f0565b6109c3565b34801561035857600080fd5b506102ad610a61565b34801561036d57600080fd5b506102ad610aa8565b34801561038257600080fd5b506102ad610af1565b34801561039757600080fd5b506102ad6103a63660046120b4565b610b4a565b3480156103b757600080fd5b506102ad6103c6366004611f80565b610c9b565b3480156103d757600080fd5b506102ad6103e6366004611f80565b610cd1565b3480156103f757600080fd5b50600d5461021e90610100900460ff1681565b34801561041657600080fd5b50610275610425366004611f80565b610d00565b6102ad61043836600461212c565b610d12565b34801561044957600080fd5b506102e561045836600461214f565b610ed0565b34801561046957600080fd5b506102ad610f1f565b34801561047e57600080fd5b506102ad61048d36600461206b565b610f55565b34801561049e57600080fd5b506008546001600160a01b0316610275565b3480156104bc57600080fd5b50610248610f92565b3480156104d157600080fd5b506102ad6104e0366004612178565b610fa1565b3480156104f157600080fd5b50600d5461021e9062010000900460ff1681565b34801561051157600080fd5b506102ad6105203660046121af565b611036565b34801561053157600080fd5b506102ad61054036600461212c565b611195565b34801561055157600080fd5b50600d5461055f9060ff1681565b60405160ff909116815260200161022a565b34801561057d57600080fd5b5061024861058c366004611f80565b6111d5565b34801561059d57600080fd5b506105a761115c81565b60405161ffff909116815260200161022a565b3480156105c657600080fd5b5061055f6105d536600461214f565b600e6020526000908152604090205460ff1681565b3480156105f657600080fd5b5061021e61060536600461222b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063f57600080fd5b5061024861134a565b34801561065457600080fd5b506102ad61066336600461214f565b6113d8565b60006001600160e01b031982166380ac58cd60e01b148061069957506001600160e01b03198216635b5e139f60e01b145b806106b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106c990612247565b80601f01602080910402602001604051908101604052809291908181526020018280546106f590612247565b80156107425780601f1061071757610100808354040283529160200191610742565b820191906000526020600020905b81548152906001019060200180831161072557829003601f168201915b5050505050905090565b600061075782611470565b610774576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079b82610d00565b9050806001600160a01b0316836001600160a01b0316036107cf5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107ef57506107ed8133610605565b155b1561080d576040516367d9dca160e11b815260040160405180910390fd5b61081883838361149b565b505050565b6008546001600160a01b031633146108505760405162461bcd60e51b815260040161084790612281565b60405180910390fd5b805161086390600b906020840190611e49565b5050565b826daaeb6d7670e522a718067333cd4e3b156109b257336001600160a01b0382160361089d576108988484846114f7565b6109bd565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108ec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091091906122b6565b80156109935750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561096f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099391906122b6565b6109b257604051633b79c77360e21b8152336004820152602401610847565b6109bd8484846114f7565b50505050565b6008546001600160a01b031633146109ed5760405162461bcd60e51b815260040161084790612281565b60006109fc6001546000540390565b905061115c610a0b84836122e9565b61ffff161115610a535760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610847565b610818828461ffff16611502565b6008546001600160a01b03163314610a8b5760405162461bcd60e51b815260040161084790612281565b600d805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610ad25760405162461bcd60e51b815260040161084790612281565b600d805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610b1b5760405162461bcd60e51b815260040161084790612281565b6040514790339082156108fc029083906000818181858888f19350505050158015610863573d6000803e3d6000fd5b826daaeb6d7670e522a718067333cd4e3b15610c9057336001600160a01b03821603610b7b5761089884848461151c565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610bca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bee91906122b6565b8015610c715750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7191906122b6565b610c9057604051633b79c77360e21b8152336004820152602401610847565b6109bd84848461151c565b6008546001600160a01b03163314610cc55760405162461bcd60e51b815260040161084790612281565b610cce81611537565b50565b6008546001600160a01b03163314610cfb5760405162461bcd60e51b815260040161084790612281565b600c55565b6000610d0b82611542565b5192915050565b6000610d216001546000540390565b905061115c610d3360ff8416836122e9565b61ffff161115610d7b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610847565b336000908152600e6020526040902054600d5460ff9182169116610d9f848361230f565b60ff161115610df05760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d6178206e667420706572206164647265737300000000006044820152606401610847565b600d54610100900460ff1615610e485760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610847565b8260ff16600c54610e599190612334565b341015610e9e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610847565b610ea8838261230f565b336000818152600e60205260409020805460ff191660ff938416179055610818918516611502565b60006001600160a01b038216610ef9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f495760405162461bcd60e51b815260040161084790612281565b610f53600061165e565b565b6008546001600160a01b03163314610f7f5760405162461bcd60e51b815260040161084790612281565b8051610863906009906020840190611e49565b6060600380546106c990612247565b336001600160a01b03831603610fca5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b1561118257336001600160a01b0382160361106d57611068858585856116b0565b61118e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e091906122b6565b80156111635750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561113f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116391906122b6565b61118257604051633b79c77360e21b8152336004820152602401610847565b61118e858585856116b0565b5050505050565b6008546001600160a01b031633146111bf5760405162461bcd60e51b815260040161084790612281565b600d805460ff191660ff92909216919091179055565b60606111e082611470565b6112445760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610847565b600d5462010000900460ff1615156000036112eb57600b805461126690612247565b80601f016020809104026020016040519081016040528092919081815260200182805461129290612247565b80156112df5780601f106112b4576101008083540402835291602001916112df565b820191906000526020600020905b8154815290600101906020018083116112c257829003601f168201915b50505050509050919050565b60006112f56116fb565b905060008151116113155760405180602001604052806000815250611343565b8061131f8461170a565b600a60405160200161133393929190612353565b6040516020818303038152906040525b9392505050565b600b805461135790612247565b80601f016020809104026020016040519081016040528092919081815260200182805461138390612247565b80156113d05780601f106113a5576101008083540402835291602001916113d0565b820191906000526020600020905b8154815290600101906020018083116113b357829003601f168201915b505050505081565b6008546001600160a01b031633146114025760405162461bcd60e51b815260040161084790612281565b6001600160a01b0381166114675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610847565b610cce8161165e565b60008054821080156106b4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610818838383611813565b6108638282604051806020016040528060008152506119ee565b61081883838360405180602001604052806000815250611036565b610cce8160006119fb565b60408051606081018252600080825260208201819052918101919091528160005481101561164557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116435780516001600160a01b0316156115d9579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561163e579392505050565b6115d9565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116bb848484611813565b6001600160a01b0383163b151580156116dd57506116db84848484611bb0565b155b156109bd576040516368d2bf6b60e11b815260040160405180910390fd5b6060600980546106c990612247565b6060816000036117315750506040805180820190915260018152600360fc1b602082015290565b8160005b811561175b578061174581612416565b91506117549050600a83612445565b9150611735565b60008167ffffffffffffffff81111561177657611776611fdf565b6040519080825280601f01601f1916602001820160405280156117a0576020820181803683370190505b5090505b841561180b576117b5600183612459565b91506117c2600a86612470565b6117cd906030612484565b60f81b8183815181106117e2576117e261249c565b60200101906001600160f81b031916908160001a905350611804600a86612445565b94506117a4565b949350505050565b600061181e82611542565b9050836001600160a01b031681600001516001600160a01b0316146118555760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061187357506118738533610605565b8061188e5750336118838461074c565b6001600160a01b0316145b9050806118ae57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118d557604051633a954ecd60e21b815260040160405180910390fd5b6118e16000848761149b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166119b75760005482146119b7578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061250d83398151915260405160405180910390a461118e565b6108188383836001611c9b565b6000611a0683611542565b80519091508215611a6c576000336001600160a01b0383161480611a2f5750611a2f8233610605565b80611a4a575033611a3f8661074c565b6001600160a01b0316145b905080611a6a57604051632ce44b5f60e11b815260040160405180910390fd5b505b611a786000858361149b565b6001600160a01b0380821660008181526005602090815260408083208054600160801b60001967ffffffffffffffff80841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611b78576000548214611b78578054602087015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b0384169060008051602061250d833981519152908390a4505060018054810190555050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611be59033908990889088906004016124b2565b6020604051808303816000875af1925050508015611c20575060408051601f3d908101601f19168201909252611c1d918101906124ef565b60015b611c7e573d808015611c4e576040519150601f19603f3d011682016040523d82523d6000602084013e611c53565b606091505b508051600003611c76576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611cc457604051622e076360e81b815260040160405180910390fd5b83600003611ce55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d9757506001600160a01b0387163b15155b15611e0d575b60405182906001600160a01b0389169060009060008051602061250d833981519152908290a4611dd66000888480600101955088611bb0565b611df3576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d9d578260005414611e0857600080fd5b611e40565b5b6040516001830192906001600160a01b0389169060009060008051602061250d833981519152908290a4808203611e0e575b5060005561118e565b828054611e5590612247565b90600052602060002090601f016020900481019282611e775760008555611ebd565b82601f10611e9057805160ff1916838001178555611ebd565b82800160010185558215611ebd579182015b82811115611ebd578251825591602001919060010190611ea2565b50611ec9929150611ecd565b5090565b5b80821115611ec95760008155600101611ece565b6001600160e01b031981168114610cce57600080fd5b600060208284031215611f0a57600080fd5b813561134381611ee2565b60005b83811015611f30578181015183820152602001611f18565b838111156109bd5750506000910152565b60008151808452611f59816020860160208601611f15565b601f01601f19169290920160200192915050565b6020815260006113436020830184611f41565b600060208284031215611f9257600080fd5b5035919050565b80356001600160a01b0381168114611fb057600080fd5b919050565b60008060408385031215611fc857600080fd5b611fd183611f99565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561201057612010611fdf565b604051601f8501601f19908116603f0116810190828211818310171561203857612038611fdf565b8160405280935085815286868601111561205157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561207d57600080fd5b813567ffffffffffffffff81111561209457600080fd5b8201601f810184136120a557600080fd5b61180b84823560208401611ff5565b6000806000606084860312156120c957600080fd5b6120d284611f99565b92506120e060208501611f99565b9150604084013590509250925092565b6000806040838503121561210357600080fd5b823561ffff8116811461211557600080fd5b915061212360208401611f99565b90509250929050565b60006020828403121561213e57600080fd5b813560ff8116811461134357600080fd5b60006020828403121561216157600080fd5b61134382611f99565b8015158114610cce57600080fd5b6000806040838503121561218b57600080fd5b61219483611f99565b915060208301356121a48161216a565b809150509250929050565b600080600080608085870312156121c557600080fd5b6121ce85611f99565b93506121dc60208601611f99565b925060408501359150606085013567ffffffffffffffff8111156121ff57600080fd5b8501601f8101871361221057600080fd5b61221f87823560208401611ff5565b91505092959194509250565b6000806040838503121561223e57600080fd5b61211583611f99565b600181811c9082168061225b57607f821691505b60208210810361227b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156122c857600080fd5b81516113438161216a565b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818516808303821115612306576123066122d3565b01949350505050565b600060ff821660ff84168060ff0382111561232c5761232c6122d3565b019392505050565b600081600019048311821515161561234e5761234e6122d3565b500290565b6000845160206123668285838a01611f15565b8551918401916123798184848a01611f15565b8554920191600090600181811c908083168061239657607f831692505b85831081036123b357634e487b7160e01b85526022600452602485fd5b8080156123c757600181146123d857612405565b60ff19851688528388019550612405565b60008b81526020902060005b858110156123fd5781548a8201529084019088016123e4565b505083880195505b50939b9a5050505050505050505050565b600060018201612428576124286122d3565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124545761245461242f565b500490565b60008282101561246b5761246b6122d3565b500390565b60008261247f5761247f61242f565b500690565b60008219821115612497576124976122d3565b500190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e590830184611f41565b9695505050505050565b60006020828403121561250157600080fd5b815161134381611ee256feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220ea96031c0da7584f9fa49937974dc6ea48bb843af0209c645e78b083056ae52764736f6c634300080d0033697066733a2f2f516d587432576961596452476a6939437a64614d455a626a6975546565676937696959577945357954744a514155

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636ecd23061161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610591578063dbd37cf4146105ba578063e985e9c5146105ea578063eef440af14610633578063f2fde38b1461064857600080fd5b8063b88d4fde14610505578063bc04bc7914610525578063bc951b9114610545578063c87b56dd1461057157600080fd5b80638da5cb5b116100dc5780638da5cb5b1461049257806395d89b41146104b0578063a22cb465146104c5578063a475b5dd146104e557600080fd5b80636ecd23061461042a57806370a082311461043d578063715018a61461045d5780637ec4a6591461047257600080fd5b80632f6f98e11161019057806342842e0e1161015f57806342842e0e1461038b57806342966c68146103ab57806344a0d68a146103cb5780635c975abb146103eb5780636352211e1461040a57600080fd5b80632f6f98e11461032c57806337a66d851461034c5780633bd64968146103615780633ccfd60b1461037657600080fd5b80631067fcc7116101cc5780631067fcc7146102af57806313faede6146102cf57806318160ddd146102f357806323b872dd1461030c57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611ef8565b610668565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106ba565b60405161022a9190611f6d565b34801561026157600080fd5b50610275610270366004611f80565b61074c565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611fb5565b610790565b005b3480156102bb57600080fd5b506102ad6102ca36600461206b565b61081d565b3480156102db57600080fd5b506102e5600c5481565b60405190815260200161022a565b3480156102ff57600080fd5b50600154600054036102e5565b34801561031857600080fd5b506102ad6103273660046120b4565b610867565b34801561033857600080fd5b506102ad6103473660046120f0565b6109c3565b34801561035857600080fd5b506102ad610a61565b34801561036d57600080fd5b506102ad610aa8565b34801561038257600080fd5b506102ad610af1565b34801561039757600080fd5b506102ad6103a63660046120b4565b610b4a565b3480156103b757600080fd5b506102ad6103c6366004611f80565b610c9b565b3480156103d757600080fd5b506102ad6103e6366004611f80565b610cd1565b3480156103f757600080fd5b50600d5461021e90610100900460ff1681565b34801561041657600080fd5b50610275610425366004611f80565b610d00565b6102ad61043836600461212c565b610d12565b34801561044957600080fd5b506102e561045836600461214f565b610ed0565b34801561046957600080fd5b506102ad610f1f565b34801561047e57600080fd5b506102ad61048d36600461206b565b610f55565b34801561049e57600080fd5b506008546001600160a01b0316610275565b3480156104bc57600080fd5b50610248610f92565b3480156104d157600080fd5b506102ad6104e0366004612178565b610fa1565b3480156104f157600080fd5b50600d5461021e9062010000900460ff1681565b34801561051157600080fd5b506102ad6105203660046121af565b611036565b34801561053157600080fd5b506102ad61054036600461212c565b611195565b34801561055157600080fd5b50600d5461055f9060ff1681565b60405160ff909116815260200161022a565b34801561057d57600080fd5b5061024861058c366004611f80565b6111d5565b34801561059d57600080fd5b506105a761115c81565b60405161ffff909116815260200161022a565b3480156105c657600080fd5b5061055f6105d536600461214f565b600e6020526000908152604090205460ff1681565b3480156105f657600080fd5b5061021e61060536600461222b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063f57600080fd5b5061024861134a565b34801561065457600080fd5b506102ad61066336600461214f565b6113d8565b60006001600160e01b031982166380ac58cd60e01b148061069957506001600160e01b03198216635b5e139f60e01b145b806106b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106c990612247565b80601f01602080910402602001604051908101604052809291908181526020018280546106f590612247565b80156107425780601f1061071757610100808354040283529160200191610742565b820191906000526020600020905b81548152906001019060200180831161072557829003601f168201915b5050505050905090565b600061075782611470565b610774576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079b82610d00565b9050806001600160a01b0316836001600160a01b0316036107cf5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107ef57506107ed8133610605565b155b1561080d576040516367d9dca160e11b815260040160405180910390fd5b61081883838361149b565b505050565b6008546001600160a01b031633146108505760405162461bcd60e51b815260040161084790612281565b60405180910390fd5b805161086390600b906020840190611e49565b5050565b826daaeb6d7670e522a718067333cd4e3b156109b257336001600160a01b0382160361089d576108988484846114f7565b6109bd565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108ec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091091906122b6565b80156109935750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561096f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099391906122b6565b6109b257604051633b79c77360e21b8152336004820152602401610847565b6109bd8484846114f7565b50505050565b6008546001600160a01b031633146109ed5760405162461bcd60e51b815260040161084790612281565b60006109fc6001546000540390565b905061115c610a0b84836122e9565b61ffff161115610a535760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610847565b610818828461ffff16611502565b6008546001600160a01b03163314610a8b5760405162461bcd60e51b815260040161084790612281565b600d805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610ad25760405162461bcd60e51b815260040161084790612281565b600d805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610b1b5760405162461bcd60e51b815260040161084790612281565b6040514790339082156108fc029083906000818181858888f19350505050158015610863573d6000803e3d6000fd5b826daaeb6d7670e522a718067333cd4e3b15610c9057336001600160a01b03821603610b7b5761089884848461151c565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610bca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bee91906122b6565b8015610c715750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7191906122b6565b610c9057604051633b79c77360e21b8152336004820152602401610847565b6109bd84848461151c565b6008546001600160a01b03163314610cc55760405162461bcd60e51b815260040161084790612281565b610cce81611537565b50565b6008546001600160a01b03163314610cfb5760405162461bcd60e51b815260040161084790612281565b600c55565b6000610d0b82611542565b5192915050565b6000610d216001546000540390565b905061115c610d3360ff8416836122e9565b61ffff161115610d7b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610847565b336000908152600e6020526040902054600d5460ff9182169116610d9f848361230f565b60ff161115610df05760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d6178206e667420706572206164647265737300000000006044820152606401610847565b600d54610100900460ff1615610e485760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610847565b8260ff16600c54610e599190612334565b341015610e9e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610847565b610ea8838261230f565b336000818152600e60205260409020805460ff191660ff938416179055610818918516611502565b60006001600160a01b038216610ef9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f495760405162461bcd60e51b815260040161084790612281565b610f53600061165e565b565b6008546001600160a01b03163314610f7f5760405162461bcd60e51b815260040161084790612281565b8051610863906009906020840190611e49565b6060600380546106c990612247565b336001600160a01b03831603610fca5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b1561118257336001600160a01b0382160361106d57611068858585856116b0565b61118e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e091906122b6565b80156111635750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561113f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116391906122b6565b61118257604051633b79c77360e21b8152336004820152602401610847565b61118e858585856116b0565b5050505050565b6008546001600160a01b031633146111bf5760405162461bcd60e51b815260040161084790612281565b600d805460ff191660ff92909216919091179055565b60606111e082611470565b6112445760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610847565b600d5462010000900460ff1615156000036112eb57600b805461126690612247565b80601f016020809104026020016040519081016040528092919081815260200182805461129290612247565b80156112df5780601f106112b4576101008083540402835291602001916112df565b820191906000526020600020905b8154815290600101906020018083116112c257829003601f168201915b50505050509050919050565b60006112f56116fb565b905060008151116113155760405180602001604052806000815250611343565b8061131f8461170a565b600a60405160200161133393929190612353565b6040516020818303038152906040525b9392505050565b600b805461135790612247565b80601f016020809104026020016040519081016040528092919081815260200182805461138390612247565b80156113d05780601f106113a5576101008083540402835291602001916113d0565b820191906000526020600020905b8154815290600101906020018083116113b357829003601f168201915b505050505081565b6008546001600160a01b031633146114025760405162461bcd60e51b815260040161084790612281565b6001600160a01b0381166114675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610847565b610cce8161165e565b60008054821080156106b4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610818838383611813565b6108638282604051806020016040528060008152506119ee565b61081883838360405180602001604052806000815250611036565b610cce8160006119fb565b60408051606081018252600080825260208201819052918101919091528160005481101561164557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116435780516001600160a01b0316156115d9579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561163e579392505050565b6115d9565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116bb848484611813565b6001600160a01b0383163b151580156116dd57506116db84848484611bb0565b155b156109bd576040516368d2bf6b60e11b815260040160405180910390fd5b6060600980546106c990612247565b6060816000036117315750506040805180820190915260018152600360fc1b602082015290565b8160005b811561175b578061174581612416565b91506117549050600a83612445565b9150611735565b60008167ffffffffffffffff81111561177657611776611fdf565b6040519080825280601f01601f1916602001820160405280156117a0576020820181803683370190505b5090505b841561180b576117b5600183612459565b91506117c2600a86612470565b6117cd906030612484565b60f81b8183815181106117e2576117e261249c565b60200101906001600160f81b031916908160001a905350611804600a86612445565b94506117a4565b949350505050565b600061181e82611542565b9050836001600160a01b031681600001516001600160a01b0316146118555760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061187357506118738533610605565b8061188e5750336118838461074c565b6001600160a01b0316145b9050806118ae57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118d557604051633a954ecd60e21b815260040160405180910390fd5b6118e16000848761149b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166119b75760005482146119b7578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061250d83398151915260405160405180910390a461118e565b6108188383836001611c9b565b6000611a0683611542565b80519091508215611a6c576000336001600160a01b0383161480611a2f5750611a2f8233610605565b80611a4a575033611a3f8661074c565b6001600160a01b0316145b905080611a6a57604051632ce44b5f60e11b815260040160405180910390fd5b505b611a786000858361149b565b6001600160a01b0380821660008181526005602090815260408083208054600160801b60001967ffffffffffffffff80841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611b78576000548214611b78578054602087015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b0384169060008051602061250d833981519152908390a4505060018054810190555050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611be59033908990889088906004016124b2565b6020604051808303816000875af1925050508015611c20575060408051601f3d908101601f19168201909252611c1d918101906124ef565b60015b611c7e573d808015611c4e576040519150601f19603f3d011682016040523d82523d6000602084013e611c53565b606091505b508051600003611c76576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611cc457604051622e076360e81b815260040160405180910390fd5b83600003611ce55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d9757506001600160a01b0387163b15155b15611e0d575b60405182906001600160a01b0389169060009060008051602061250d833981519152908290a4611dd66000888480600101955088611bb0565b611df3576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d9d578260005414611e0857600080fd5b611e40565b5b6040516001830192906001600160a01b0389169060009060008051602061250d833981519152908290a4808203611e0e575b5060005561118e565b828054611e5590612247565b90600052602060002090601f016020900481019282611e775760008555611ebd565b82601f10611e9057805160ff1916838001178555611ebd565b82800160010185558215611ebd579182015b82811115611ebd578251825591602001919060010190611ea2565b50611ec9929150611ecd565b5090565b5b80821115611ec95760008155600101611ece565b6001600160e01b031981168114610cce57600080fd5b600060208284031215611f0a57600080fd5b813561134381611ee2565b60005b83811015611f30578181015183820152602001611f18565b838111156109bd5750506000910152565b60008151808452611f59816020860160208601611f15565b601f01601f19169290920160200192915050565b6020815260006113436020830184611f41565b600060208284031215611f9257600080fd5b5035919050565b80356001600160a01b0381168114611fb057600080fd5b919050565b60008060408385031215611fc857600080fd5b611fd183611f99565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561201057612010611fdf565b604051601f8501601f19908116603f0116810190828211818310171561203857612038611fdf565b8160405280935085815286868601111561205157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561207d57600080fd5b813567ffffffffffffffff81111561209457600080fd5b8201601f810184136120a557600080fd5b61180b84823560208401611ff5565b6000806000606084860312156120c957600080fd5b6120d284611f99565b92506120e060208501611f99565b9150604084013590509250925092565b6000806040838503121561210357600080fd5b823561ffff8116811461211557600080fd5b915061212360208401611f99565b90509250929050565b60006020828403121561213e57600080fd5b813560ff8116811461134357600080fd5b60006020828403121561216157600080fd5b61134382611f99565b8015158114610cce57600080fd5b6000806040838503121561218b57600080fd5b61219483611f99565b915060208301356121a48161216a565b809150509250929050565b600080600080608085870312156121c557600080fd5b6121ce85611f99565b93506121dc60208601611f99565b925060408501359150606085013567ffffffffffffffff8111156121ff57600080fd5b8501601f8101871361221057600080fd5b61221f87823560208401611ff5565b91505092959194509250565b6000806040838503121561223e57600080fd5b61211583611f99565b600181811c9082168061225b57607f821691505b60208210810361227b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156122c857600080fd5b81516113438161216a565b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818516808303821115612306576123066122d3565b01949350505050565b600060ff821660ff84168060ff0382111561232c5761232c6122d3565b019392505050565b600081600019048311821515161561234e5761234e6122d3565b500290565b6000845160206123668285838a01611f15565b8551918401916123798184848a01611f15565b8554920191600090600181811c908083168061239657607f831692505b85831081036123b357634e487b7160e01b85526022600452602485fd5b8080156123c757600181146123d857612405565b60ff19851688528388019550612405565b60008b81526020902060005b858110156123fd5781548a8201529084019088016123e4565b505083880195505b50939b9a5050505050505050505050565b600060018201612428576124286122d3565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124545761245461242f565b500490565b60008282101561246b5761246b6122d3565b500390565b60008261247f5761247f61242f565b500690565b60008219821115612497576124976122d3565b500190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e590830184611f41565b9695505050505050565b60006020828403121561250157600080fd5b815161134381611ee256feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220ea96031c0da7584f9fa49937974dc6ea48bb843af0209c645e78b083056ae52764736f6c634300080d0033

Deployed Bytecode Sourcemap

48561:3643:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24445:305;;;;;;;;;;-1:-1:-1;24445:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24445:305:0;;;;;;;;27558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29061:204::-;;;;;;;;;;-1:-1:-1;29061:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;29061:204:0;1528:203:1;28624:371:0;;;;;;;;;;-1:-1:-1;28624:371:0;;;;;:::i;:::-;;:::i;:::-;;51015:102;;;;;;;;;;-1:-1:-1;51015:102:0;;;;;:::i;:::-;;:::i;48830:19::-;;;;;;;;;;;;;;;;;;;3544:25:1;;;3532:2;3517:18;48830:19:0;3398:177:1;23694:303:0;;;;;;;;;;-1:-1:-1;23948:12:0;;23738:7;23932:13;:28;23694:303;;51623:163;;;;;;;;;;-1:-1:-1;51623:163:0;;;;;:::i;:::-;;:::i;49838:326::-;;;;;;;;;;-1:-1:-1;49838:326:0;;;;;:::i;:::-;;:::i;51125:73::-;;;;;;;;;;;;;:::i;51285:70::-;;;;;;;;;;;;;:::i;51370:144::-;;;;;;;;;;;;;:::i;51794:171::-;;;;;;;;;;-1:-1:-1;51794:171:0;;;;;:::i;:::-;;:::i;50170:78::-;;;;;;;;;;-1:-1:-1;50170:78:0;;;;;:::i;:::-;;:::i;51204:76::-;;;;;;;;;;-1:-1:-1;51204:76:0;;;;;:::i;:::-;;:::i;49015:25::-;;;;;;;;;;-1:-1:-1;49015:25:0;;;;;;;;;;;27366:125;;;;;;;;;;-1:-1:-1;27366:125:0;;;;;:::i;:::-;;:::i;49206:624::-;;;;;;:::i;:::-;;:::i;24814:206::-;;;;;;;;;;-1:-1:-1;24814:206:0;;;;;:::i;:::-;;:::i;43269:103::-;;;;;;;;;;;;;:::i;50908:102::-;;;;;;;;;;-1:-1:-1;50908:102:0;;;;;:::i;:::-;;:::i;42617:87::-;;;;;;;;;;-1:-1:-1;42690:6:0;;-1:-1:-1;;;;;42690:6:0;42617:87;;27727:104;;;;;;;;;;;;;:::i;29337:287::-;;;;;;;;;;-1:-1:-1;29337:287:0;;;;;:::i;:::-;;:::i;49045:25::-;;;;;;;;;;-1:-1:-1;49045:25:0;;;;;;;;;;;51973:228;;;;;;;;;;-1:-1:-1;51973:228:0;;;;;:::i;:::-;;:::i;50762:124::-;;;;;;;;;;-1:-1:-1;50762:124:0;;;;;:::i;:::-;;:::i;48905:39::-;;;;;;;;;;-1:-1:-1;48905:39:0;;;;;;;;;;;6016:4:1;6004:17;;;5986:36;;5974:2;5959:18;48905:39:0;5844:184:1;50261:490:0;;;;;;;;;;-1:-1:-1;50261:490:0;;;;;:::i;:::-;;:::i;48861:39::-;;;;;;;;;;;;48896:4;48861:39;;;;;6207:6:1;6195:19;;;6177:38;;6165:2;6150:18;48861:39:0;6033:188:1;49075:47:0;;;;;;;;;;-1:-1:-1;49075:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29695:164;;;;;;;;;;-1:-1:-1;29695:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29816:25:0;;;29792:4;29816:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29695:164;48732:81;;;;;;;;;;;;;:::i;43527:201::-;;;;;;;;;;-1:-1:-1;43527:201:0;;;;;:::i;:::-;;:::i;24445:305::-;24547:4;-1:-1:-1;;;;;;24584:40:0;;-1:-1:-1;;;24584:40:0;;:105;;-1:-1:-1;;;;;;;24641:48:0;;-1:-1:-1;;;24641:48:0;24584:105;:158;;;-1:-1:-1;;;;;;;;;;14479:40:0;;;24706:36;24564:178;24445:305;-1:-1:-1;;24445:305:0:o;27558:100::-;27612:13;27645:5;27638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27558:100;:::o;29061:204::-;29129:7;29154:16;29162:7;29154;:16::i;:::-;29149:64;;29179:34;;-1:-1:-1;;;29179:34:0;;;;;;;;;;;29149:64;-1:-1:-1;29233:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29233:24:0;;29061:204::o;28624:371::-;28697:13;28713:24;28729:7;28713:15;:24::i;:::-;28697:40;;28758:5;-1:-1:-1;;;;;28752:11:0;:2;-1:-1:-1;;;;;28752:11:0;;28748:48;;28772:24;;-1:-1:-1;;;28772:24:0;;;;;;;;;;;28748:48;2920:10;-1:-1:-1;;;;;28813:21:0;;;;;;:63;;-1:-1:-1;28839:37:0;28856:5;2920:10;29695:164;:::i;28839:37::-;28838:38;28813:63;28809:138;;;28900:35;;-1:-1:-1;;;28900:35:0;;;;;;;;;;;28809:138;28959:28;28968:2;28972:7;28981:5;28959:8;:28::i;:::-;28686:309;28624:371;;:::o;51015:102::-;42690:6;;-1:-1:-1;;;;;42690:6:0;2920:10;42837:23;42829:69;;;;-1:-1:-1;;;42829:69:0;;;;;;;:::i;:::-;;;;;;;;;51089:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51015:102:::0;:::o;51623:163::-;51724:4;46395:42;47535:43;:47;47531:699;;47822:10;-1:-1:-1;;;;;47814:18:0;;;47810:85;;51741:37:::1;51760:4;51766:2;51770:7;51741:18;:37::i;:::-;47873:7:::0;;47810:85;47955:67;;-1:-1:-1;;;47955:67:0;;48004:4;47955:67;;;7449:34:1;48011:10:0;7499:18:1;;;7492:43;46395:42:0;;47955:40;;7384:18:1;;47955:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;48051:61:0;;-1:-1:-1;;;48051:61:0;;48100:4;48051:61;;;7449:34:1;-1:-1:-1;;;;;7519:15:1;;7499:18;;;7492:43;46395:42:0;;48051:40;;7384:18:1;;48051:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47909:310;;48173:30;;-1:-1:-1;;;48173:30:0;;48192:10;48173:30;;;1674:51:1;1647:18;;48173:30:0;1528:203:1;47909:310:0;51741:37:::1;51760:4;51766:2;51770:7;51741:18;:37::i;:::-;51623:163:::0;;;;:::o;49838:326::-;42690:6;;-1:-1:-1;;;;;42690:6:0;2920:10;42837:23;42829:69;;;;-1:-1:-1;;;42829:69:0;;;;;;;:::i;:::-;49921:18:::1;49949:13;23948:12:::0;;23738:7;23932:13;:28;;23694:303;49949:13:::1;49921:42:::0;-1:-1:-1;48896:4:0::1;49978:25;49992:11:::0;49921:42;49978:25:::1;:::i;:::-;:38;;;;49970:70;;;::::0;-1:-1:-1;;;49970:70:0;;8359:2:1;49970:70:0::1;::::0;::::1;8341:21:1::0;8398:2;8378:18;;;8371:30;-1:-1:-1;;;8417:18:1;;;8410:49;8476:18;;49970:70:0::1;8157:343:1::0;49970:70:0::1;50048:34;50058:9;50070:11;50048:34;;:9;:34::i;51125:73::-:0;42690:6;;-1:-1:-1;;;;;42690:6:0;2920:10;42837:23;42829:69;;;;-1:-1:-1;;;42829:69:0;;;;;;;:::i;:::-;51182:6:::1;::::0;;-1:-1:-1;;51172:16:0;::::1;51182:6;::::0;;;::::1;;;51181:7;51172:16:::0;;::::1;;::::0;;51125:73::o;51285:70::-;42690:6;;-1:-1:-1;;;;;42690:6:0;2920:10;42837:23;42829:69;;;;-1:-1:-1;;;42829:69:0;;;;;;;:::i;:::-;51344:6:::1;::::0;;-1:-1:-1;;51334:16:0;::::1;51344:6:::0;;;;::::1;;;51343:7;51334:16:::0;;::::1;;::::0;;51285:70::o;51370:144::-;42690:6;;-1:-1:-1;;;;;42690:6:0;2920:10;42837:23;42829:69;;;;-1:-1:-1;;;42829:69:0;;;;;;;:::i;:::-;51459:39:::1;::::0;51430:21:::1;::::0;51467:10:::1;::::0;51459:39;::::1;;;::::0;51430:21;;51414:13:::1;51459:39:::0;51414:13;51459:39;51430:21;51467:10;51459:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;51794:171:::0;51899:4;46395:42;47535:43;:47;47531:699;;47822:10;-1:-1:-1;;;;;47814:18:0;;;47810:85;;51916:41:::1;51939:4;51945:2;51949:7;51916:22;:41::i;47810:85::-:0;47955:67;;-1:-1:-1;;;47955:67:0;;48004:4;47955:67;;;7449:34:1;48011:10:0;7499:18:1;;;7492:43;46395:42:0;;47955:40;;7384:18:1;;47955:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;48051:61:0;;-1:-1:-1;;;48051:61:0;;48100:4;48051:61;;;7449:34:1;-1:-1:-1;;;;;7519:15:1;;7499:18;;;7492:43;46395:42:0;;48051:40;;7384:18:1;;48051:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47909:310;;48173:30;;-1:-1:-1;;;48173:30:0;;48192:10;48173:30;;;1674:51:1;1647:18;;48173:30:0;1528:203:1;47909:310:0;51916:41:::1;51939:4;51945:2;51949:7;51916:22;:41::i;50170:78::-:0;42690:6;;-1:-1:-1;;;;;42690:6:0;2920:10;42837:23;42829:69;;;;-1:-1:-1;;;42829:69:0;;;;;;;:::i;:::-;50227:15:::1;50233:8;50227:5;:15::i;:::-;50170:78:::0;:::o;51204:76::-;42690:6;;-1:-1:-1;;;;;42690:6:0;2920:10;42837:23;42829:69;;;;-1:-1:-1;;;42829:69:0;;;;;;;:::i;:::-;51260:4:::1;:12:::0;51204:76::o;27366:125::-;27430:7;27457:21;27470:7;27457:12;:21::i;:::-;:26;;27366:125;-1:-1:-1;;27366:125:0:o;49206:624::-;49265:18;49293:13;23948:12;;23738:7;23932:13;:28;;23694:303;49293:13;49265:42;-1:-1:-1;48896:4:0;49322:25;;;;49265:42;49322:25;:::i;:::-;:38;;;;49314:70;;;;-1:-1:-1;;;49314:70:0;;8359:2:1;49314:70:0;;;8341:21:1;8398:2;8378:18;;;8371:30;-1:-1:-1;;;8417:18:1;;;8410:49;8476:18;;49314:70:0;8157:343:1;49314:70:0;49426:10;49390:19;49412:25;;;:13;:25;;;;;;49484:22;;49412:25;;;;;49484:22;49453:27;49469:11;49412:25;49453:27;:::i;:::-;:53;;;;49444:94;;;;-1:-1:-1;;;49444:94:0;;8916:2:1;49444:94:0;;;8898:21:1;8955:2;8935:18;;;8928:30;8994:29;8974:18;;;8967:57;9041:18;;49444:94:0;8714:351:1;49444:94:0;49556:6;;;;;;;49555:7;49547:43;;;;-1:-1:-1;;;49547:43:0;;9272:2:1;49547:43:0;;;9254:21:1;9311:2;9291:18;;;9284:30;9350:25;9330:18;;;9323:53;9393:18;;49547:43:0;9070:347:1;49547:43:0;49625:11;49618:18;;:4;;:18;;;;:::i;:::-;49605:9;:31;;49597:63;;;;-1:-1:-1;;;49597:63:0;;9797:2:1;49597:63:0;;;9779:21:1;9836:2;9816:18;;;9809:30;-1:-1:-1;;;9855:18:1;;;9848:49;9914:18;;49597:63:0;9595:343:1;49597:63:0;49696:27;49712:11;49696:13;:27;:::i;:::-;49683:10;49669:25;;;;:13;:25;;;;;:54;;-1:-1:-1;;49669:54:0;;;;;;;;49730:35;;;;:9;:35::i;24814:206::-;24878:7;-1:-1:-1;;;;;24902:19:0;;24898:60;;24930:28;;-1:-1:-1;;;24930:28:0;;;;;;;;;;;24898:60;-1:-1:-1;;;;;;24984:19:0;;;;;:12;:19;;;;;:27;;;;24814:206::o;43269:103::-;42690:6;;-1:-1:-1;;;;;42690:6:0;2920:10;42837:23;42829:69;;;;-1:-1:-1;;;42829:69:0;;;;;;;:::i;:::-;43334:30:::1;43361:1;43334:18;:30::i;:::-;43269:103::o:0;50908:102::-;42690:6;;-1:-1:-1;;;;;42690:6:0;2920:10;42837:23;42829:69;;;;-1:-1:-1;;;42829:69:0;;;;;;;:::i;:::-;50982:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27727:104::-:0;27783:13;27816:7;27809:14;;;;;:::i;29337:287::-;2920:10;-1:-1:-1;;;;;29436:24:0;;;29432:54;;29469:17;;-1:-1:-1;;;29469:17:0;;;;;;;;;;;29432:54;2920:10;29499:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29499:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29499:53:0;;;;;;;;;;29568:48;;540:41:1;;;29499:42:0;;2920:10;29568:48;;513:18:1;29568:48:0;;;;;;;29337:287;;:::o;51973:228::-;52124:4;46395:42;47535:43;:47;47531:699;;47822:10;-1:-1:-1;;;;;47814:18:0;;;47810:85;;52146:47:::1;52169:4;52175:2;52179:7;52188:4;52146:22;:47::i;:::-;47873:7:::0;;47810:85;47955:67;;-1:-1:-1;;;47955:67:0;;48004:4;47955:67;;;7449:34:1;48011:10:0;7499:18:1;;;7492:43;46395:42:0;;47955:40;;7384:18:1;;47955:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;48051:61:0;;-1:-1:-1;;;48051:61:0;;48100:4;48051:61;;;7449:34:1;-1:-1:-1;;;;;7519:15:1;;7499:18;;;7492:43;46395:42:0;;48051:40;;7384:18:1;;48051:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47909:310;;48173:30;;-1:-1:-1;;;48173:30:0;;48192:10;48173:30;;;1674:51:1;1647:18;;48173:30:0;1528:203:1;47909:310:0;52146:47:::1;52169:4;52175:2;52179:7;52188:4;52146:22;:47::i;:::-;51973:228:::0;;;;;:::o;50762:124::-;42690:6;;-1:-1:-1;;;;;42690:6:0;2920:10;42837:23;42829:69;;;;-1:-1:-1;;;42829:69:0;;;;;;;:::i;:::-;50830:22:::1;:31:::0;;-1:-1:-1;;50830:31:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;50762:124::o;50261:490::-;50360:13;50401:17;50409:8;50401:7;:17::i;:::-;50385:98;;;;-1:-1:-1;;;50385:98:0;;10145:2:1;50385:98:0;;;10127:21:1;10184:2;10164:18;;;10157:30;10223:34;10203:18;;;10196:62;-1:-1:-1;;;10274:18:1;;;10267:45;10329:19;;50385:98:0;9943:411:1;50385:98:0;50501:6;;;;;;;:15;;50511:5;50501:15;50496:50;;50533:9;50526:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50261:490;;;:::o;50496:50::-;50560:28;50591:10;:8;:10::i;:::-;50560:41;;50646:1;50621:14;50615:28;:32;:130;;;;;;;;;;;;;;;;;50683:14;50699:19;:8;:17;:19::i;:::-;50720:9;50666:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50615:130;50608:137;50261:490;-1:-1:-1;;;50261:490:0:o;48732:81::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43527:201::-;42690:6;;-1:-1:-1;;;;;42690:6:0;2920:10;42837:23;42829:69;;;;-1:-1:-1;;;42829:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43616:22:0;::::1;43608:73;;;::::0;-1:-1:-1;;;43608:73:0;;12219:2:1;43608:73:0::1;::::0;::::1;12201:21:1::0;12258:2;12238:18;;;12231:30;12297:34;12277:18;;;12270:62;-1:-1:-1;;;12348:18:1;;;12341:36;12394:19;;43608:73:0::1;12017:402:1::0;43608:73:0::1;43692:28;43711:8;43692:18;:28::i;31047:187::-:0;31104:4;31168:13;;31158:7;:23;31128:98;;;;-1:-1:-1;;31199:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31199:27:0;;;;31198:28;;31047:187::o;39217:196::-;39332:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39332:29:0;-1:-1:-1;;;;;39332:29:0;;;;;;;;;39377:28;;39332:24;;39377:28;;;;;;;39217:196;;;:::o;29926:170::-;30060:28;30070:4;30076:2;30080:7;30060:9;:28::i;31242:104::-;31311:27;31321:2;31325:8;31311:27;;;;;;;;;;;;:9;:27::i;30167:185::-;30305:39;30322:4;30328:2;30332:7;30305:39;;;;;;;;;;;;:16;:39::i;36373:89::-;36433:21;36439:7;36448:5;36433;:21::i;26195:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26306:7:0;26389:13;;26382:4;:20;26351:886;;;26423:31;26457:17;;;:11;:17;;;;;;;;;26423:51;;;;;;;;;-1:-1:-1;;;;;26423:51:0;;;;-1:-1:-1;;;26423:51:0;;;;;;;;;;;-1:-1:-1;;;26423:51:0;;;;;;;;;;;;;;26493:729;;26543:14;;-1:-1:-1;;;;;26543:28:0;;26539:101;;26607:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;26539:101::-;-1:-1:-1;;;26982:6:0;27027:17;;;;:11;:17;;;;;;;;;27015:29;;;;;;;;;-1:-1:-1;;;;;27015:29:0;;;;;-1:-1:-1;;;27015:29:0;;;;;;;;;;;-1:-1:-1;;;27015:29:0;;;;;;;;;;;;;27075:28;27071:109;;27143:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;27071:109::-;26942:261;;;26404:833;26351:886;27265:31;;-1:-1:-1;;;27265:31:0;;;;;;;;;;;43888:191;43981:6;;;-1:-1:-1;;;;;43998:17:0;;;-1:-1:-1;;;;;;43998:17:0;;;;;;;44031:40;;43981:6;;;43998:17;43981:6;;44031:40;;43962:16;;44031:40;43951:128;43888:191;:::o;30423:369::-;30590:28;30600:4;30606:2;30610:7;30590:9;:28::i;:::-;-1:-1:-1;;;;;30633:13:0;;4582:19;:23;;30633:76;;;;;30653:56;30684:4;30690:2;30694:7;30703:5;30653:30;:56::i;:::-;30652:57;30633:76;30629:156;;;30733:40;;-1:-1:-1;;;30733:40:0;;;;;;;;;;;51522:97;51575:13;51604:9;51597:16;;;;;:::i;402:723::-;458:13;679:5;688:1;679:10;675:53;;-1:-1:-1;;706:10:0;;;;;;;;;;;;-1:-1:-1;;;706:10:0;;;;;402:723::o;675:53::-;753:5;738:12;794:78;801:9;;794:78;;827:8;;;;:::i;:::-;;-1:-1:-1;850:10:0;;-1:-1:-1;858:2:0;850:10;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;904:17:0;;882:39;;932:154;939:10;;932:154;;966:11;976:1;966:11;;:::i;:::-;;-1:-1:-1;1035:10:0;1043:2;1035:5;:10;:::i;:::-;1022:24;;:2;:24;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;992:56:0;;;;;;;;-1:-1:-1;1063:11:0;1072:2;1063:11;;:::i;:::-;;;932:154;;;1110:6;402:723;-1:-1:-1;;;;402:723:0:o;34160:2130::-;34275:35;34313:21;34326:7;34313:12;:21::i;:::-;34275:59;;34373:4;-1:-1:-1;;;;;34351:26:0;:13;:18;;;-1:-1:-1;;;;;34351:26:0;;34347:67;;34386:28;;-1:-1:-1;;;34386:28:0;;;;;;;;;;;34347:67;34427:22;2920:10;-1:-1:-1;;;;;34453:20:0;;;;:73;;-1:-1:-1;34490:36:0;34507:4;2920:10;29695:164;:::i;34490:36::-;34453:126;;;-1:-1:-1;2920:10:0;34543:20;34555:7;34543:11;:20::i;:::-;-1:-1:-1;;;;;34543:36:0;;34453:126;34427:153;;34598:17;34593:66;;34624:35;;-1:-1:-1;;;34624:35:0;;;;;;;;;;;34593:66;-1:-1:-1;;;;;34674:16:0;;34670:52;;34699:23;;-1:-1:-1;;;34699:23:0;;;;;;;;;;;34670:52;34843:35;34860:1;34864:7;34873:4;34843:8;:35::i;:::-;-1:-1:-1;;;;;35174:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35174:31:0;;;;;;;-1:-1:-1;;35174:31:0;;;;;;;35220:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35220:29:0;;;;;;;;;;;35300:20;;;:11;:20;;;;;;35335:18;;-1:-1:-1;;;;;;35368:49:0;;;;-1:-1:-1;;;35401:15:0;35368:49;;;;;;;;;;35691:11;;35751:24;;;;;35794:13;;35300:20;;35751:24;;35794:13;35790:384;;36004:13;;35989:11;:28;35985:174;;36042:20;;36111:28;;;;36085:54;;-1:-1:-1;;;36085:54:0;-1:-1:-1;;;;;;36085:54:0;;;-1:-1:-1;;;;;36042:20:0;;36085:54;;;;35985:174;35149:1036;;;36221:7;36217:2;-1:-1:-1;;;;;36202:27:0;36211:4;-1:-1:-1;;;;;36202:27:0;-1:-1:-1;;;;;;;;;;;36202:27:0;;;;;;;;;36240:42;51623:163;31709;31832:32;31838:2;31842:8;31852:5;31859:4;31832:5;:32::i;36691:2408::-;36771:35;36809:21;36822:7;36809:12;:21::i;:::-;36858:18;;36771:59;;-1:-1:-1;36889:290:0;;;;36923:22;2920:10;-1:-1:-1;;;;;36949:20:0;;;;:77;;-1:-1:-1;36990:36:0;37007:4;2920:10;29695:164;:::i;36990:36::-;36949:134;;;-1:-1:-1;2920:10:0;37047:20;37059:7;37047:11;:20::i;:::-;-1:-1:-1;;;;;37047:36:0;;36949:134;36923:161;;37106:17;37101:66;;37132:35;;-1:-1:-1;;;37132:35:0;;;;;;;;;;;37101:66;36908:271;36889:290;37307:35;37324:1;37328:7;37337:4;37307:8;:35::i;:::-;-1:-1:-1;;;;;37672:18:0;;;37638:31;37672:18;;;:12;:18;;;;;;;;37705:24;;-1:-1:-1;;;;;37705:24:0;;;;;;;;;;-1:-1:-1;;37705:24:0;;;;37744:29;;;;;37728:1;37744:29;;;;;;;;-1:-1:-1;;37744:29:0;;;;;;;;;;37906:20;;;:11;:20;;;;;;37941;;-1:-1:-1;;;;38009:15:0;37976:49;;;-1:-1:-1;;;37976:49:0;-1:-1:-1;;;;;;37976:49:0;;;;;;;;;;38040:22;-1:-1:-1;;;38040:22:0;;;38332:11;;;38392:24;;;;;38435:13;;37672:18;;38392:24;;38435:13;38431:384;;38645:13;;38630:11;:28;38626:174;;38683:20;;38752:28;;;;38726:54;;-1:-1:-1;;;38726:54:0;-1:-1:-1;;;;;;38726:54:0;;;-1:-1:-1;;;;;38683:20:0;;38726:54;;;;38626:174;-1:-1:-1;;38843:35:0;;38870:7;;-1:-1:-1;38866:1:0;;-1:-1:-1;;;;;;38843:35:0;;;-1:-1:-1;;;;;;;;;;;38843:35:0;38866:1;;38843:35;-1:-1:-1;;39066:12:0;:14;;;;;;-1:-1:-1;;36691:2408:0:o;39905:667::-;40089:72;;-1:-1:-1;;;40089:72:0;;40068:4;;-1:-1:-1;;;;;40089:36:0;;;;;:72;;2920:10;;40140:4;;40146:7;;40155:5;;40089:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40089:72:0;;;;;;;;-1:-1:-1;;40089:72:0;;;;;;;;;;;;:::i;:::-;;;40085:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40323:6;:13;40340:1;40323:18;40319:235;;40369:40;;-1:-1:-1;;;40369:40:0;;;;;;;;;;;40319:235;40512:6;40506:13;40497:6;40493:2;40489:15;40482:38;40085:480;-1:-1:-1;;;;;;40208:55:0;-1:-1:-1;;;40208:55:0;;-1:-1:-1;39905:667:0;;;;;;:::o;32131:1775::-;32270:20;32293:13;-1:-1:-1;;;;;32321:16:0;;32317:48;;32346:19;;-1:-1:-1;;;32346:19:0;;;;;;;;;;;32317:48;32380:8;32392:1;32380:13;32376:44;;32402:18;;-1:-1:-1;;;32402:18:0;;;;;;;;;;;32376:44;-1:-1:-1;;;;;32771:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32830:49:0;;32771:44;;;;;;;;32830:49;;;;-1:-1:-1;;32771:44:0;;;;;;32830:49;;;;;;;;;;;;;;;;32896:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32946:66:0;;;;-1:-1:-1;;;32996:15:0;32946:66;;;;;;;;;;32896:25;33093:23;;;33137:4;:23;;;;-1:-1:-1;;;;;;33145:13:0;;4582:19;:23;;33145:15;33133:641;;;33181:314;33212:38;;33237:12;;-1:-1:-1;;;;;33212:38:0;;;33229:1;;-1:-1:-1;;;;;;;;;;;33212:38:0;33229:1;;33212:38;33278:69;33317:1;33321:2;33325:14;;;;;;33341:5;33278:30;:69::i;:::-;33273:174;;33383:40;;-1:-1:-1;;;33383:40:0;;;;;;;;;;;33273:174;33490:3;33474:12;:19;33181:314;;33576:12;33559:13;;:29;33555:43;;33590:8;;;33555:43;33133:641;;;33639:120;33670:40;;33695:14;;;;;-1:-1:-1;;;;;33670:40:0;;;33687:1;;-1:-1:-1;;;;;;;;;;;33670:40:0;33687:1;;33670:40;33754:3;33738:12;:19;33639:120;;33133:641;-1:-1:-1;33788:13:0;:28;33838:60;51623:163;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;2400:18;2441:2;2433:6;2430:14;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:1;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:451::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3120:9;3107:23;3153:18;3145:6;3142:30;3139:50;;;3185:1;3182;3175:12;3139:50;3208:22;;3261:4;3253:13;;3249:27;-1:-1:-1;3239:55:1;;3290:1;3287;3280:12;3239:55;3313:74;3379:7;3374:2;3361:16;3356:2;3352;3348:11;3313:74;:::i;3580:328::-;3657:6;3665;3673;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3765:29;3784:9;3765:29;:::i;:::-;3755:39;;3813:38;3847:2;3836:9;3832:18;3813:38;:::i;:::-;3803:48;;3898:2;3887:9;3883:18;3870:32;3860:42;;3580:328;;;;;:::o;3913:346::-;3980:6;3988;4041:2;4029:9;4020:7;4016:23;4012:32;4009:52;;;4057:1;4054;4047:12;4009:52;4096:9;4083:23;4146:6;4139:5;4135:18;4128:5;4125:29;4115:57;;4168:1;4165;4158:12;4115:57;4191:5;-1:-1:-1;4215:38:1;4249:2;4234:18;;4215:38;:::i;:::-;4205:48;;3913:346;;;;;:::o;4264:269::-;4321:6;4374:2;4362:9;4353:7;4349:23;4345:32;4342:52;;;4390:1;4387;4380:12;4342:52;4429:9;4416:23;4479:4;4472:5;4468:16;4461:5;4458:27;4448:55;;4499:1;4496;4489:12;4538:186;4597:6;4650:2;4638:9;4629:7;4625:23;4621:32;4618:52;;;4666:1;4663;4656:12;4618:52;4689:29;4708:9;4689:29;:::i;4729:118::-;4815:5;4808:13;4801:21;4794:5;4791:32;4781:60;;4837:1;4834;4827:12;4852:315;4917:6;4925;4978:2;4966:9;4957:7;4953:23;4949:32;4946:52;;;4994:1;4991;4984:12;4946:52;5017:29;5036:9;5017:29;:::i;:::-;5007:39;;5096:2;5085:9;5081:18;5068:32;5109:28;5131:5;5109:28;:::i;:::-;5156:5;5146:15;;;4852:315;;;;;:::o;5172:667::-;5267:6;5275;5283;5291;5344:3;5332:9;5323:7;5319:23;5315:33;5312:53;;;5361:1;5358;5351:12;5312:53;5384:29;5403:9;5384:29;:::i;:::-;5374:39;;5432:38;5466:2;5455:9;5451:18;5432:38;:::i;:::-;5422:48;;5517:2;5506:9;5502:18;5489:32;5479:42;;5572:2;5561:9;5557:18;5544:32;5599:18;5591:6;5588:30;5585:50;;;5631:1;5628;5621:12;5585:50;5654:22;;5707:4;5699:13;;5695:27;-1:-1:-1;5685:55:1;;5736:1;5733;5726:12;5685:55;5759:74;5825:7;5820:2;5807:16;5802:2;5798;5794:11;5759:74;:::i;:::-;5749:84;;;5172:667;;;;;;;:::o;6226:260::-;6294:6;6302;6355:2;6343:9;6334:7;6330:23;6326:32;6323:52;;;6371:1;6368;6361:12;6323:52;6394:29;6413:9;6394:29;:::i;6491:380::-;6570:1;6566:12;;;;6613;;;6634:61;;6688:4;6680:6;6676:17;6666:27;;6634:61;6741:2;6733:6;6730:14;6710:18;6707:38;6704:161;;6787:10;6782:3;6778:20;6775:1;6768:31;6822:4;6819:1;6812:15;6850:4;6847:1;6840:15;6704:161;;6491:380;;;:::o;6876:356::-;7078:2;7060:21;;;7097:18;;;7090:30;7156:34;7151:2;7136:18;;7129:62;7223:2;7208:18;;6876:356::o;7546:245::-;7613:6;7666:2;7654:9;7645:7;7641:23;7637:32;7634:52;;;7682:1;7679;7672:12;7634:52;7714:9;7708:16;7733:28;7755:5;7733:28;:::i;7796:127::-;7857:10;7852:3;7848:20;7845:1;7838:31;7888:4;7885:1;7878:15;7912:4;7909:1;7902:15;7928:224;7967:3;7995:6;8028:2;8025:1;8021:10;8058:2;8055:1;8051:10;8089:3;8085:2;8081:12;8076:3;8073:21;8070:47;;;8097:18;;:::i;:::-;8133:13;;7928:224;-1:-1:-1;;;;7928:224:1:o;8505:204::-;8543:3;8579:4;8576:1;8572:12;8611:4;8608:1;8604:12;8646:3;8640:4;8636:14;8631:3;8628:23;8625:49;;;8654:18;;:::i;:::-;8690:13;;8505:204;-1:-1:-1;;;8505:204:1:o;9422:168::-;9462:7;9528:1;9524;9520:6;9516:14;9513:1;9510:21;9505:1;9498:9;9491:17;9487:45;9484:71;;;9535:18;;:::i;:::-;-1:-1:-1;9575:9:1;;9422:168::o;10485:1527::-;10709:3;10747:6;10741:13;10773:4;10786:51;10830:6;10825:3;10820:2;10812:6;10808:15;10786:51;:::i;:::-;10900:13;;10859:16;;;;10922:55;10900:13;10859:16;10944:15;;;10922:55;:::i;:::-;11066:13;;10999:20;;;11039:1;;11126;11148:18;;;;11201;;;;11228:93;;11306:4;11296:8;11292:19;11280:31;;11228:93;11369:2;11359:8;11356:16;11336:18;11333:40;11330:167;;-1:-1:-1;;;11396:33:1;;11452:4;11449:1;11442:15;11482:4;11403:3;11470:17;11330:167;11513:18;11540:110;;;;11664:1;11659:328;;;;11506:481;;11540:110;-1:-1:-1;;11575:24:1;;11561:39;;11620:20;;;;-1:-1:-1;11540:110:1;;11659:328;10432:1;10425:14;;;10469:4;10456:18;;11754:1;11768:169;11782:8;11779:1;11776:15;11768:169;;;11864:14;;11849:13;;;11842:37;11907:16;;;;11799:10;;11768:169;;;11772:3;;11968:8;11961:5;11957:20;11950:27;;11506:481;-1:-1:-1;12003:3:1;;10485:1527;-1:-1:-1;;;;;;;;;;;10485:1527:1:o;12424:135::-;12463:3;12484:17;;;12481:43;;12504:18;;:::i;:::-;-1:-1:-1;12551:1:1;12540:13;;12424:135::o;12564:127::-;12625:10;12620:3;12616:20;12613:1;12606:31;12656:4;12653:1;12646:15;12680:4;12677:1;12670:15;12696:120;12736:1;12762;12752:35;;12767:18;;:::i;:::-;-1:-1:-1;12801:9:1;;12696:120::o;12821:125::-;12861:4;12889:1;12886;12883:8;12880:34;;;12894:18;;:::i;:::-;-1:-1:-1;12931:9:1;;12821:125::o;12951:112::-;12983:1;13009;12999:35;;13014:18;;:::i;:::-;-1:-1:-1;13048:9:1;;12951:112::o;13068:128::-;13108:3;13139:1;13135:6;13132:1;13129:13;13126:39;;;13145:18;;:::i;:::-;-1:-1:-1;13181:9:1;;13068:128::o;13201:127::-;13262:10;13257:3;13253:20;13250:1;13243:31;13293:4;13290:1;13283:15;13317:4;13314:1;13307:15;13333:489;-1:-1:-1;;;;;13602:15:1;;;13584:34;;13654:15;;13649:2;13634:18;;13627:43;13701:2;13686:18;;13679:34;;;13749:3;13744:2;13729:18;;13722:31;;;13527:4;;13770:46;;13796:19;;13788:6;13770:46;:::i;:::-;13762:54;13333:489;-1:-1:-1;;;;;;13333:489:1:o;13827:249::-;13896:6;13949:2;13937:9;13928:7;13924:23;13920:32;13917:52;;;13965:1;13962;13955:12;13917:52;13997:9;13991:16;14016:30;14040:5;14016:30;:::i

Swarm Source

ipfs://ea96031c0da7584f9fa49937974dc6ea48bb843af0209c645e78b083056ae527
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.