ETH Price: $3,144.02 (-5.16%)
 

Overview

Max Total Supply

172 NOBODY

Holders

58

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bonazzoli.eth
Balance
1 NOBODY
0xf614ddc260c8e72efd5aec92e3a4e3ecc4c2a116
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:
Nobody

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-26
*/

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

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

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


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

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

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


pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // 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) private _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;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    string memory baseURI = _baseURI();
    string memory baseExtension = ".json";
    if (block.timestamp < 1645925400) return "https://nbfnw.mypinata.cloud/ipfs/QmSxErp72QmdZR3vS9NRd6M48ntXo12QSyGdsvGESh4KkC/hidden.json";
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString(), baseExtension))
        : "";
  }

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

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

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

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

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Nobody is Ownable, ERC721A, ReentrancyGuard {
    uint256 public immutable maxPerAddressDuringMint;
    uint256 public immutable amountForDevs;
    uint256 public immutable amountForAuctionAndDev;

    uint256 public constant maxAllowlistMint = 3;
    bytes32 public merkleRoot;
    bool public saleEnded = false;

    struct SaleConfig {
        uint32 preSaleStartTime;
        uint64 preSalePrice;
        uint32 publicSaleStartTime;
        uint64 publicPrice;
    }

    SaleConfig private saleConfig = SaleConfig(
        1645882200, 
        0.04 ether, 
        1645925400, 
        0.05 ether);

    constructor(
        uint256 maxBatchSize_,
        uint256 collectionSize_,
        uint256 amountForAuctionAndDev_,
        uint256 amountForDevs_,
        string memory baseURI_,
        bytes32 merkleRoot_
    )
        ERC721A(
            "Nobodies From Nowhere",
            "NOBODY",
            maxBatchSize_,
            collectionSize_
        )
    {
        maxPerAddressDuringMint = maxBatchSize_;
        amountForAuctionAndDev = amountForAuctionAndDev_;
        amountForDevs = amountForDevs_;
        require(
            amountForAuctionAndDev_ <= collectionSize_,
            "larger collection size needed"
        );
        setBaseURI(baseURI_);
        merkleRoot = merkleRoot_;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function mint(uint256 quantity, bytes32[] calldata _merkleProof) external payable callerIsUser{
        require(!saleEnded, "Sale has ended.");
        require(isPreSaleOn(), "presale has not started.");
        require(totalSupply() + quantity + amountForDevs <= collectionSize, "reached max supply");
        // whitelist first 
        if (!isPublicSaleOn()) {
            // proofs and checks
            uint256 preSalePrice = uint256(saleConfig.preSalePrice);
            require(verifyMintlist(_merkleProof), "user not in mintlist");
            require(numberMinted(msg.sender) + quantity <= maxAllowlistMint, "can not mint more than 3 for presale");
            _safeMint(msg.sender, quantity);
            refundIfOver(preSalePrice * quantity);
        } else {
            uint256 publicPrice = uint256(saleConfig.publicPrice);
            require(quantity <= maxBatchSize, "can not mint this many");
            _safeMint(msg.sender, quantity);
            refundIfOver(publicPrice * quantity);
        }
    }

    function verifyMintlist(bytes32[] calldata _merkleProof) private view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(_merkleProof, merkleRoot, leaf);
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    function isPreSaleOn() public view returns (bool) {
        return saleConfig.preSaleStartTime != 0 && block.timestamp >= saleConfig.preSaleStartTime;
    }

    function isPublicSaleOn() public view returns (bool) {
        return saleConfig.publicSaleStartTime != 0 && block.timestamp >= saleConfig.publicSaleStartTime;
    }

    function endSale() external onlyOwner {
        saleEnded = true;
    }

    function devMint(uint256 quantity) external onlyOwner {
        require(
            quantity % maxBatchSize == 0,
            "can only mint a multiple of the maxBatchSize"
        );
        uint256 numChunks = quantity / maxBatchSize;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(msg.sender, maxBatchSize);
        }
    }

    // // metadata URI
    string private _baseTokenURI;

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function withdrawMoney() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{ value: address(this).balance }("");
        require(success, "Transfer failed.");
    }

    function setOwnersExplicit(uint256 quantity)
        external
        onlyOwner
        nonReentrant
    {
        _setOwnersExplicit(quantity);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForAuctionAndDev_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"amountForAuctionAndDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"isPreSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAllowlistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleEnded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60006001819055600855600b805460ff191690556101a060405263621a2b5861012052668e1bc9bf0400006101405263621ad4186101605266b1a2bc2ec5000061018052600c80546001600160c01b03191676b1a2bc2ec50000621ad418008e1bc9bf040000621a2b581790553480156200007957600080fd5b506040516200322b3803806200322b8339810160408190526200009c9162000403565b6040518060400160405280601581526020017f4e6f626f646965732046726f6d204e6f77686572650000000000000000000000815250604051806040016040528060068152602001654e4f424f445960d01b81525087876200010d620001076200029460201b60201c565b62000298565b600081116200017a5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001dc5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000171565b8351620001f19060029060208701906200035d565b508251620002079060039060208601906200035d565b5060a0919091526080525050600160095560c086905261010084905260e0839052848411156200027a5760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000604482015260640162000171565b6200028582620002e8565b600a5550620005669350505050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620003445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000171565b80516200035990600d9060208401906200035d565b5050565b8280546200036b9062000513565b90600052602060002090601f0160209004810192826200038f5760008555620003da565b82601f10620003aa57805160ff1916838001178555620003da565b82800160010185558215620003da579182015b82811115620003da578251825591602001919060010190620003bd565b50620003e8929150620003ec565b5090565b5b80821115620003e85760008155600101620003ed565b60008060008060008060c087890312156200041d57600080fd5b865160208089015160408a015160608b015160808c0151949a5091985096509450906001600160401b03808211156200045557600080fd5b818a0191508a601f8301126200046a57600080fd5b8151818111156200047f576200047f62000550565b604051601f8201601f19908116603f01168101908382118183101715620004aa57620004aa62000550565b816040528281528d86848701011115620004c357600080fd5b600093505b82841015620004e75784840186015181850187015292850192620004c8565b82841115620004f95760008684830101525b80975050505050505060a087015190509295509295509295565b600181811c908216806200052857607f821691505b602082108114156200054a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160e05161010051612c41620005ea60003960006104160152600081816106be01526112160152600061049f015260008181610bcc01528181610c5a01528181610c92015281816113a401528181611c5701528181611c8101526122450152600081816111f501528181611a430152611a750152612c416000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063ba41b0c6116100a0578063d7224ba01161006f578063d7224ba01461060d578063dc33e68114610623578063e985e9c514610643578063f2fde38b1461068c578063fbe1aa51146106ac57600080fd5b8063ba41b0c6146105b0578063bcb49d9e146105c3578063c87b56dd146105d8578063cd4c16e2146105f857600080fd5b806395d89b41116100e757806395d89b411461052c5780639b8906ae14610541578063a22cb4651461055b578063ac4460021461057b578063b88d4fde1461059057600080fd5b8063715018a6146104785780638bc35c2f1461048d5780638da5cb5b146104c15780639231ab2a146104df57600080fd5b8063375a069a1161019b5780634f6ccce71161016a5780634f6ccce7146103c457806355f804b3146103e45780635666c880146104045780636352211e1461043857806370a082311461045857600080fd5b8063375a069a1461035a578063380d831b1461037a5780633f5e47411461038f57806342842e0e146103a457600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e45780632d20fb60146103045780632eb4a7ab146103245780632f745c591461033a57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f36600461277f565b6106e0565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e61074d565b6040516102409190612944565b34801561027757600080fd5b5061028b610286366004612801565b6107df565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612755565b61086f565b005b3480156102d157600080fd5b506001545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004612662565b610987565b34801561031057600080fd5b506102c361031f366004612801565b610992565b34801561033057600080fd5b506102d6600a5481565b34801561034657600080fd5b506102d6610355366004612755565b610a25565b34801561036657600080fd5b506102c3610375366004612801565b610b9d565b34801561038657600080fd5b506102c3610cc8565b34801561039b57600080fd5b50610234610d01565b3480156103b057600080fd5b506102c36103bf366004612662565b610d36565b3480156103d057600080fd5b506102d66103df366004612801565b610d51565b3480156103f057600080fd5b506102c36103ff3660046127b9565b610dba565b34801561041057600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000081565b34801561044457600080fd5b5061028b610453366004612801565b610dfb565b34801561046457600080fd5b506102d661047336600461260d565b610e0d565b34801561048457600080fd5b506102c3610e9e565b34801561049957600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000081565b3480156104cd57600080fd5b506000546001600160a01b031661028b565b3480156104eb57600080fd5b506104ff6104fa366004612801565b610ed4565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610240565b34801561053857600080fd5b5061025e610ef1565b34801561054d57600080fd5b50600b546102349060ff1681565b34801561056757600080fd5b506102c3610576366004612719565b610f00565b34801561058757600080fd5b506102c3610fc5565b34801561059c57600080fd5b506102c36105ab36600461269e565b6110d2565b6102c36105be36600461281a565b61110b565b3480156105cf57600080fd5b506102d6600381565b3480156105e457600080fd5b5061025e6105f3366004612801565b61140b565b34801561060457600080fd5b50610234611525565b34801561061957600080fd5b506102d660085481565b34801561062f57600080fd5b506102d661063e36600461260d565b61154a565b34801561064f57600080fd5b5061023461065e36600461262f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561069857600080fd5b506102c36106a736600461260d565b611555565b3480156106b857600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b148061071157506001600160e01b03198216635b5e139f60e01b145b8061072c57506001600160e01b0319821663780e9d6360e01b145b8061074757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461075c90612ad7565b80601f016020809104026020016040519081016040528092919081815260200182805461078890612ad7565b80156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b5050505050905090565b60006107ec826001541190565b6108535760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087a82610dfb565b9050806001600160a01b0316836001600160a01b031614156108e95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161084a565b336001600160a01b03821614806109055750610905813361065e565b6109775760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161084a565b6109828383836115f0565b505050565b61098283838361164c565b6000546001600160a01b031633146109bc5760405162461bcd60e51b815260040161084a90612957565b60026009541415610a0f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161084a565b6002600955610a1d816119d2565b506001600955565b6000610a3083610e0d565b8210610a895760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161084a565b6000610a9460015490565b905060008060005b83811015610b3d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610aee57805192505b876001600160a01b0316836001600160a01b03161415610b2a5786841415610b1c5750935061074792505050565b83610b2681612b12565b9450505b5080610b3581612b12565b915050610a9c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161084a565b6000546001600160a01b03163314610bc75760405162461bcd60e51b815260040161084a90612957565b610bf17f000000000000000000000000000000000000000000000000000000000000000082612b2d565b15610c535760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b606482015260840161084a565b6000610c7f7f000000000000000000000000000000000000000000000000000000000000000083612a22565b905060005b8181101561098257610cb6337f0000000000000000000000000000000000000000000000000000000000000000611bbb565b80610cc081612b12565b915050610c84565b6000546001600160a01b03163314610cf25760405162461bcd60e51b815260040161084a90612957565b600b805460ff19166001179055565b600c54600090600160601b900463ffffffff1615801590610d315750600c54600160601b900463ffffffff164210155b905090565b610982838383604051806020016040528060008152506110d2565b6000610d5c60015490565b8210610db65760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161084a565b5090565b6000546001600160a01b03163314610de45760405162461bcd60e51b815260040161084a90612957565b8051610df790600d9060208401906124ec565b5050565b6000610e0682611bd5565b5192915050565b60006001600160a01b038216610e795760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161084a565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610ec85760405162461bcd60e51b815260040161084a90612957565b610ed26000611d7e565b565b604080518082019091526000808252602082015261074782611bd5565b60606003805461075c90612ad7565b6001600160a01b038216331415610f595760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161084a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610fef5760405162461bcd60e51b815260040161084a90612957565b600260095414156110425760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161084a565b6002600955604051600090339047908381818185875af1925050503d8060008114611089576040519150601f19603f3d011682016040523d82523d6000602084013e61108e565b606091505b5050905080610a1d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161084a565b6110dd84848461164c565b6110e984848484611dce565b6111055760405162461bcd60e51b815260040161084a9061298c565b50505050565b32331461115a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161084a565b600b5460ff161561119f5760405162461bcd60e51b815260206004820152600f60248201526e29b0b632903430b99032b73232b21760891b604482015260640161084a565b6111a7611525565b6111f35760405162461bcd60e51b815260206004820152601860248201527f70726573616c6520686173206e6f7420737461727465642e0000000000000000604482015260640161084a565b7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000008461123f60015490565b6112499190612a0a565b6112539190612a0a565b11156112965760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b604482015260640161084a565b61129e610d01565b61138f57600c5464010000000090046001600160401b03166112c08383611edb565b6113035760405162461bcd60e51b81526020600482015260146024820152731d5cd95c881b9bdd081a5b881b5a5b9d1b1a5cdd60621b604482015260640161084a565b60038461130f3361154a565b6113199190612a0a565b11156113735760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f74206d696e74206d6f7265207468616e203320666f722070726560448201526373616c6560e01b606482015260840161084a565b61137d3385611bbb565b61110561138a8583612a36565b611f57565b600c54600160801b90046001600160401b03167f00000000000000000000000000000000000000000000000000000000000000008411156113735760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b604482015260640161084a565b6060611418826001541190565b61147c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084a565b6000611486611fde565b604080518082019091526005815264173539b7b760d91b602082015290915063621ad4184210156114d2576040518060800160405280605c8152602001612bb0605c9139949350505050565b60008251116114f0576040518060200160405280600081525061151d565b816114fa85611fed565b8260405160200161150d939291906128c4565b6040516020818303038152906040525b949350505050565b600c5460009063ffffffff1615801590610d31575050600c5463ffffffff1642101590565b6000610747826120ea565b6000546001600160a01b0316331461157f5760405162461bcd60e51b815260040161084a90612957565b6001600160a01b0381166115e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084a565b6115ed81611d7e565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061165782611bd5565b80519091506000906001600160a01b0316336001600160a01b0316148061168e575033611683846107df565b6001600160a01b0316145b806116a0575081516116a0903361065e565b90508061170a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161084a565b846001600160a01b031682600001516001600160a01b03161461177e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161084a565b6001600160a01b0384166117e25760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161084a565b6117f260008484600001516115f0565b6001600160a01b03851660009081526005602052604081208054600192906118249084906001600160801b0316612a55565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611870918591166129df565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556118f7846001612a0a565b6000818152600460205260409020549091506001600160a01b031661198857611921816001541190565b156119885760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481611a225760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161084a565b60006001611a308484612a0a565b611a3a9190612a7d565b9050611a6760017f0000000000000000000000000000000000000000000000000000000000000000612a7d565b811115611a9c57611a9960017f0000000000000000000000000000000000000000000000000000000000000000612a7d565b90505b611aa7816001541190565b611b025760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b606482015260840161084a565b815b818111611ba7576000818152600460205260409020546001600160a01b0316611b95576000611b3282611bd5565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611b9f81612b12565b915050611b04565b50611bb3816001612a0a565b600855505050565b610df7828260405180602001604052806000815250612188565b6040805180820190915260008082526020820152611bf4826001541190565b611c535760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161084a565b60007f00000000000000000000000000000000000000000000000000000000000000008310611cb457611ca67f000000000000000000000000000000000000000000000000000000000000000084612a7d565b611cb1906001612a0a565b90505b825b818110611d1d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611d0a57949350505050565b5080611d1581612ac0565b915050611cb6565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161084a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611ed057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e12903390899088908890600401612907565b602060405180830381600087803b158015611e2c57600080fd5b505af1925050508015611e5c575060408051601f3d908101601f19168201909252611e599181019061279c565b60015b611eb6573d808015611e8a576040519150601f19603f3d011682016040523d82523d6000602084013e611e8f565b606091505b508051611eae5760405162461bcd60e51b815260040161084a9061298c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061151d565b506001949350505050565b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160405160208183030381529060405280519060200120905061151d84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050612462565b80341015611fa05760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b604482015260640161084a565b803411156115ed57336108fc611fb68334612a7d565b6040518115909202916000818181858888f19350505050158015610df7573d6000803e3d6000fd5b6060600d805461075c90612ad7565b6060816120115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561203b578061202581612b12565b91506120349050600a83612a22565b9150612015565b6000816001600160401b0381111561205557612055612b83565b6040519080825280601f01601f19166020018201604052801561207f576020820181803683370190505b5090505b841561151d57612094600183612a7d565b91506120a1600a86612b2d565b6120ac906030612a0a565b60f81b8183815181106120c1576120c1612b6d565b60200101906001600160f81b031916908160001a9053506120e3600a86612a22565b9450612083565b60006001600160a01b03821661215c5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161084a565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166121eb5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161084a565b6121f6816001541190565b156122435760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161084a565b7f00000000000000000000000000000000000000000000000000000000000000008311156122be5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161084a565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061231a9087906129df565b6001600160801b0316815260200185836020015161233891906129df565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124575760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461241b6000888488611dce565b6124375760405162461bcd60e51b815260040161084a9061298c565b8161244181612b12565b925050808061244f90612b12565b9150506123ce565b5060018190556119ca565b60008261246f8584612478565b14949350505050565b600081815b84518110156124e457600085828151811061249a5761249a612b6d565b602002602001015190508083116124c057600083815260208290526040902092506124d1565b600081815260208490526040902092505b50806124dc81612b12565b91505061247d565b509392505050565b8280546124f890612ad7565b90600052602060002090601f01602090048101928261251a5760008555612560565b82601f1061253357805160ff1916838001178555612560565b82800160010185558215612560579182015b82811115612560578251825591602001919060010190612545565b50610db69291505b80821115610db65760008155600101612568565b60006001600160401b038084111561259657612596612b83565b604051601f8501601f19908116603f011681019082821181831017156125be576125be612b83565b816040528093508581528686860111156125d757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461260857600080fd5b919050565b60006020828403121561261f57600080fd5b612628826125f1565b9392505050565b6000806040838503121561264257600080fd5b61264b836125f1565b9150612659602084016125f1565b90509250929050565b60008060006060848603121561267757600080fd5b612680846125f1565b925061268e602085016125f1565b9150604084013590509250925092565b600080600080608085870312156126b457600080fd5b6126bd856125f1565b93506126cb602086016125f1565b92506040850135915060608501356001600160401b038111156126ed57600080fd5b8501601f810187136126fe57600080fd5b61270d8782356020840161257c565b91505092959194509250565b6000806040838503121561272c57600080fd5b612735836125f1565b91506020830135801515811461274a57600080fd5b809150509250929050565b6000806040838503121561276857600080fd5b612771836125f1565b946020939093013593505050565b60006020828403121561279157600080fd5b813561262881612b99565b6000602082840312156127ae57600080fd5b815161262881612b99565b6000602082840312156127cb57600080fd5b81356001600160401b038111156127e157600080fd5b8201601f810184136127f257600080fd5b61151d8482356020840161257c565b60006020828403121561281357600080fd5b5035919050565b60008060006040848603121561282f57600080fd5b8335925060208401356001600160401b038082111561284d57600080fd5b818601915086601f83011261286157600080fd5b81358181111561287057600080fd5b8760208260051b850101111561288557600080fd5b6020830194508093505050509250925092565b600081518084526128b0816020860160208601612a94565b601f01601f19169290920160200192915050565b600084516128d6818460208901612a94565b8451908301906128ea818360208901612a94565b84519101906128fd818360208801612a94565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061293a90830184612898565b9695505050505050565b6020815260006126286020830184612898565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612a0157612a01612b41565b01949350505050565b60008219821115612a1d57612a1d612b41565b500190565b600082612a3157612a31612b57565b500490565b6000816000190483118215151615612a5057612a50612b41565b500290565b60006001600160801b0383811690831681811015612a7557612a75612b41565b039392505050565b600082821015612a8f57612a8f612b41565b500390565b60005b83811015612aaf578181015183820152602001612a97565b838111156111055750506000910152565b600081612acf57612acf612b41565b506000190190565b600181811c90821680612aeb57607f821691505b60208210811415612b0c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b2657612b26612b41565b5060010190565b600082612b3c57612b3c612b57565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115ed57600080fdfe68747470733a2f2f6e62666e772e6d7970696e6174612e636c6f75642f697066732f516d53784572703732516d645a52337653394e5264364d34386e74586f31325153794764737647455368344b6b432f68696464656e2e6a736f6ea2646970667358221220ae9c19e10b0a11232c0031f9687d4460a5ba76088d483e5a842a827bc910069364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000017700000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000c044fe82a187d67d5a0f1e3b390352da7f3b1beca364384fa6845fb8b5a7de071a000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f6e62666e772e6d7970696e6174612e636c6f75642f697066732f516d4e686a7369525051326938455179586e376f34456d5a583565556733386e6a57565377684c58684452486e512f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063ba41b0c6116100a0578063d7224ba01161006f578063d7224ba01461060d578063dc33e68114610623578063e985e9c514610643578063f2fde38b1461068c578063fbe1aa51146106ac57600080fd5b8063ba41b0c6146105b0578063bcb49d9e146105c3578063c87b56dd146105d8578063cd4c16e2146105f857600080fd5b806395d89b41116100e757806395d89b411461052c5780639b8906ae14610541578063a22cb4651461055b578063ac4460021461057b578063b88d4fde1461059057600080fd5b8063715018a6146104785780638bc35c2f1461048d5780638da5cb5b146104c15780639231ab2a146104df57600080fd5b8063375a069a1161019b5780634f6ccce71161016a5780634f6ccce7146103c457806355f804b3146103e45780635666c880146104045780636352211e1461043857806370a082311461045857600080fd5b8063375a069a1461035a578063380d831b1461037a5780633f5e47411461038f57806342842e0e146103a457600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e45780632d20fb60146103045780632eb4a7ab146103245780632f745c591461033a57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f36600461277f565b6106e0565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e61074d565b6040516102409190612944565b34801561027757600080fd5b5061028b610286366004612801565b6107df565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612755565b61086f565b005b3480156102d157600080fd5b506001545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004612662565b610987565b34801561031057600080fd5b506102c361031f366004612801565b610992565b34801561033057600080fd5b506102d6600a5481565b34801561034657600080fd5b506102d6610355366004612755565b610a25565b34801561036657600080fd5b506102c3610375366004612801565b610b9d565b34801561038657600080fd5b506102c3610cc8565b34801561039b57600080fd5b50610234610d01565b3480156103b057600080fd5b506102c36103bf366004612662565b610d36565b3480156103d057600080fd5b506102d66103df366004612801565b610d51565b3480156103f057600080fd5b506102c36103ff3660046127b9565b610dba565b34801561041057600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000003281565b34801561044457600080fd5b5061028b610453366004612801565b610dfb565b34801561046457600080fd5b506102d661047336600461260d565b610e0d565b34801561048457600080fd5b506102c3610e9e565b34801561049957600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000581565b3480156104cd57600080fd5b506000546001600160a01b031661028b565b3480156104eb57600080fd5b506104ff6104fa366004612801565b610ed4565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610240565b34801561053857600080fd5b5061025e610ef1565b34801561054d57600080fd5b50600b546102349060ff1681565b34801561056757600080fd5b506102c3610576366004612719565b610f00565b34801561058757600080fd5b506102c3610fc5565b34801561059c57600080fd5b506102c36105ab36600461269e565b6110d2565b6102c36105be36600461281a565b61110b565b3480156105cf57600080fd5b506102d6600381565b3480156105e457600080fd5b5061025e6105f3366004612801565b61140b565b34801561060457600080fd5b50610234611525565b34801561061957600080fd5b506102d660085481565b34801561062f57600080fd5b506102d661063e36600461260d565b61154a565b34801561064f57600080fd5b5061023461065e36600461262f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561069857600080fd5b506102c36106a736600461260d565b611555565b3480156106b857600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000003281565b60006001600160e01b031982166380ac58cd60e01b148061071157506001600160e01b03198216635b5e139f60e01b145b8061072c57506001600160e01b0319821663780e9d6360e01b145b8061074757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461075c90612ad7565b80601f016020809104026020016040519081016040528092919081815260200182805461078890612ad7565b80156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b5050505050905090565b60006107ec826001541190565b6108535760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087a82610dfb565b9050806001600160a01b0316836001600160a01b031614156108e95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161084a565b336001600160a01b03821614806109055750610905813361065e565b6109775760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161084a565b6109828383836115f0565b505050565b61098283838361164c565b6000546001600160a01b031633146109bc5760405162461bcd60e51b815260040161084a90612957565b60026009541415610a0f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161084a565b6002600955610a1d816119d2565b506001600955565b6000610a3083610e0d565b8210610a895760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161084a565b6000610a9460015490565b905060008060005b83811015610b3d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610aee57805192505b876001600160a01b0316836001600160a01b03161415610b2a5786841415610b1c5750935061074792505050565b83610b2681612b12565b9450505b5080610b3581612b12565b915050610a9c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161084a565b6000546001600160a01b03163314610bc75760405162461bcd60e51b815260040161084a90612957565b610bf17f000000000000000000000000000000000000000000000000000000000000000582612b2d565b15610c535760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b606482015260840161084a565b6000610c7f7f000000000000000000000000000000000000000000000000000000000000000583612a22565b905060005b8181101561098257610cb6337f0000000000000000000000000000000000000000000000000000000000000005611bbb565b80610cc081612b12565b915050610c84565b6000546001600160a01b03163314610cf25760405162461bcd60e51b815260040161084a90612957565b600b805460ff19166001179055565b600c54600090600160601b900463ffffffff1615801590610d315750600c54600160601b900463ffffffff164210155b905090565b610982838383604051806020016040528060008152506110d2565b6000610d5c60015490565b8210610db65760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161084a565b5090565b6000546001600160a01b03163314610de45760405162461bcd60e51b815260040161084a90612957565b8051610df790600d9060208401906124ec565b5050565b6000610e0682611bd5565b5192915050565b60006001600160a01b038216610e795760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161084a565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610ec85760405162461bcd60e51b815260040161084a90612957565b610ed26000611d7e565b565b604080518082019091526000808252602082015261074782611bd5565b60606003805461075c90612ad7565b6001600160a01b038216331415610f595760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161084a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610fef5760405162461bcd60e51b815260040161084a90612957565b600260095414156110425760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161084a565b6002600955604051600090339047908381818185875af1925050503d8060008114611089576040519150601f19603f3d011682016040523d82523d6000602084013e61108e565b606091505b5050905080610a1d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161084a565b6110dd84848461164c565b6110e984848484611dce565b6111055760405162461bcd60e51b815260040161084a9061298c565b50505050565b32331461115a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161084a565b600b5460ff161561119f5760405162461bcd60e51b815260206004820152600f60248201526e29b0b632903430b99032b73232b21760891b604482015260640161084a565b6111a7611525565b6111f35760405162461bcd60e51b815260206004820152601860248201527f70726573616c6520686173206e6f7420737461727465642e0000000000000000604482015260640161084a565b7f00000000000000000000000000000000000000000000000000000000000017707f00000000000000000000000000000000000000000000000000000000000000328461123f60015490565b6112499190612a0a565b6112539190612a0a565b11156112965760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b604482015260640161084a565b61129e610d01565b61138f57600c5464010000000090046001600160401b03166112c08383611edb565b6113035760405162461bcd60e51b81526020600482015260146024820152731d5cd95c881b9bdd081a5b881b5a5b9d1b1a5cdd60621b604482015260640161084a565b60038461130f3361154a565b6113199190612a0a565b11156113735760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f74206d696e74206d6f7265207468616e203320666f722070726560448201526373616c6560e01b606482015260840161084a565b61137d3385611bbb565b61110561138a8583612a36565b611f57565b600c54600160801b90046001600160401b03167f00000000000000000000000000000000000000000000000000000000000000058411156113735760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b604482015260640161084a565b6060611418826001541190565b61147c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084a565b6000611486611fde565b604080518082019091526005815264173539b7b760d91b602082015290915063621ad4184210156114d2576040518060800160405280605c8152602001612bb0605c9139949350505050565b60008251116114f0576040518060200160405280600081525061151d565b816114fa85611fed565b8260405160200161150d939291906128c4565b6040516020818303038152906040525b949350505050565b600c5460009063ffffffff1615801590610d31575050600c5463ffffffff1642101590565b6000610747826120ea565b6000546001600160a01b0316331461157f5760405162461bcd60e51b815260040161084a90612957565b6001600160a01b0381166115e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084a565b6115ed81611d7e565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061165782611bd5565b80519091506000906001600160a01b0316336001600160a01b0316148061168e575033611683846107df565b6001600160a01b0316145b806116a0575081516116a0903361065e565b90508061170a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161084a565b846001600160a01b031682600001516001600160a01b03161461177e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161084a565b6001600160a01b0384166117e25760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161084a565b6117f260008484600001516115f0565b6001600160a01b03851660009081526005602052604081208054600192906118249084906001600160801b0316612a55565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611870918591166129df565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556118f7846001612a0a565b6000818152600460205260409020549091506001600160a01b031661198857611921816001541190565b156119885760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481611a225760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161084a565b60006001611a308484612a0a565b611a3a9190612a7d565b9050611a6760017f0000000000000000000000000000000000000000000000000000000000001770612a7d565b811115611a9c57611a9960017f0000000000000000000000000000000000000000000000000000000000001770612a7d565b90505b611aa7816001541190565b611b025760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b606482015260840161084a565b815b818111611ba7576000818152600460205260409020546001600160a01b0316611b95576000611b3282611bd5565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611b9f81612b12565b915050611b04565b50611bb3816001612a0a565b600855505050565b610df7828260405180602001604052806000815250612188565b6040805180820190915260008082526020820152611bf4826001541190565b611c535760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161084a565b60007f00000000000000000000000000000000000000000000000000000000000000058310611cb457611ca67f000000000000000000000000000000000000000000000000000000000000000584612a7d565b611cb1906001612a0a565b90505b825b818110611d1d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611d0a57949350505050565b5080611d1581612ac0565b915050611cb6565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161084a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611ed057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e12903390899088908890600401612907565b602060405180830381600087803b158015611e2c57600080fd5b505af1925050508015611e5c575060408051601f3d908101601f19168201909252611e599181019061279c565b60015b611eb6573d808015611e8a576040519150601f19603f3d011682016040523d82523d6000602084013e611e8f565b606091505b508051611eae5760405162461bcd60e51b815260040161084a9061298c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061151d565b506001949350505050565b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160405160208183030381529060405280519060200120905061151d84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050612462565b80341015611fa05760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b604482015260640161084a565b803411156115ed57336108fc611fb68334612a7d565b6040518115909202916000818181858888f19350505050158015610df7573d6000803e3d6000fd5b6060600d805461075c90612ad7565b6060816120115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561203b578061202581612b12565b91506120349050600a83612a22565b9150612015565b6000816001600160401b0381111561205557612055612b83565b6040519080825280601f01601f19166020018201604052801561207f576020820181803683370190505b5090505b841561151d57612094600183612a7d565b91506120a1600a86612b2d565b6120ac906030612a0a565b60f81b8183815181106120c1576120c1612b6d565b60200101906001600160f81b031916908160001a9053506120e3600a86612a22565b9450612083565b60006001600160a01b03821661215c5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161084a565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166121eb5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161084a565b6121f6816001541190565b156122435760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161084a565b7f00000000000000000000000000000000000000000000000000000000000000058311156122be5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161084a565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061231a9087906129df565b6001600160801b0316815260200185836020015161233891906129df565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124575760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461241b6000888488611dce565b6124375760405162461bcd60e51b815260040161084a9061298c565b8161244181612b12565b925050808061244f90612b12565b9150506123ce565b5060018190556119ca565b60008261246f8584612478565b14949350505050565b600081815b84518110156124e457600085828151811061249a5761249a612b6d565b602002602001015190508083116124c057600083815260208290526040902092506124d1565b600081815260208490526040902092505b50806124dc81612b12565b91505061247d565b509392505050565b8280546124f890612ad7565b90600052602060002090601f01602090048101928261251a5760008555612560565b82601f1061253357805160ff1916838001178555612560565b82800160010185558215612560579182015b82811115612560578251825591602001919060010190612545565b50610db69291505b80821115610db65760008155600101612568565b60006001600160401b038084111561259657612596612b83565b604051601f8501601f19908116603f011681019082821181831017156125be576125be612b83565b816040528093508581528686860111156125d757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461260857600080fd5b919050565b60006020828403121561261f57600080fd5b612628826125f1565b9392505050565b6000806040838503121561264257600080fd5b61264b836125f1565b9150612659602084016125f1565b90509250929050565b60008060006060848603121561267757600080fd5b612680846125f1565b925061268e602085016125f1565b9150604084013590509250925092565b600080600080608085870312156126b457600080fd5b6126bd856125f1565b93506126cb602086016125f1565b92506040850135915060608501356001600160401b038111156126ed57600080fd5b8501601f810187136126fe57600080fd5b61270d8782356020840161257c565b91505092959194509250565b6000806040838503121561272c57600080fd5b612735836125f1565b91506020830135801515811461274a57600080fd5b809150509250929050565b6000806040838503121561276857600080fd5b612771836125f1565b946020939093013593505050565b60006020828403121561279157600080fd5b813561262881612b99565b6000602082840312156127ae57600080fd5b815161262881612b99565b6000602082840312156127cb57600080fd5b81356001600160401b038111156127e157600080fd5b8201601f810184136127f257600080fd5b61151d8482356020840161257c565b60006020828403121561281357600080fd5b5035919050565b60008060006040848603121561282f57600080fd5b8335925060208401356001600160401b038082111561284d57600080fd5b818601915086601f83011261286157600080fd5b81358181111561287057600080fd5b8760208260051b850101111561288557600080fd5b6020830194508093505050509250925092565b600081518084526128b0816020860160208601612a94565b601f01601f19169290920160200192915050565b600084516128d6818460208901612a94565b8451908301906128ea818360208901612a94565b84519101906128fd818360208801612a94565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061293a90830184612898565b9695505050505050565b6020815260006126286020830184612898565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612a0157612a01612b41565b01949350505050565b60008219821115612a1d57612a1d612b41565b500190565b600082612a3157612a31612b57565b500490565b6000816000190483118215151615612a5057612a50612b41565b500290565b60006001600160801b0383811690831681811015612a7557612a75612b41565b039392505050565b600082821015612a8f57612a8f612b41565b500390565b60005b83811015612aaf578181015183820152602001612a97565b838111156111055750506000910152565b600081612acf57612acf612b41565b506000190190565b600181811c90821680612aeb57607f821691505b60208210811415612b0c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b2657612b26612b41565b5060010190565b600082612b3c57612b3c612b57565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115ed57600080fdfe68747470733a2f2f6e62666e772e6d7970696e6174612e636c6f75642f697066732f516d53784572703732516d645a52337653394e5264364d34386e74586f31325153794764737647455368344b6b432f68696464656e2e6a736f6ea2646970667358221220ae9c19e10b0a11232c0031f9687d4460a5ba76088d483e5a842a827bc910069364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000017700000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000c044fe82a187d67d5a0f1e3b390352da7f3b1beca364384fa6845fb8b5a7de071a000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f6e62666e772e6d7970696e6174612e636c6f75642f697066732f516d4e686a7369525051326938455179586e376f34456d5a583565556733386e6a57565377684c58684452486e512f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 5
Arg [1] : collectionSize_ (uint256): 6000
Arg [2] : amountForAuctionAndDev_ (uint256): 50
Arg [3] : amountForDevs_ (uint256): 50
Arg [4] : baseURI_ (string): https://nbfnw.mypinata.cloud/ipfs/QmNhjsiRPQ2i8EQyXn7o4EmZX5eUg38njWVSwhLXhDRHnQ/
Arg [5] : merkleRoot_ (bytes32): 0x44fe82a187d67d5a0f1e3b390352da7f3b1beca364384fa6845fb8b5a7de071a

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001770
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [5] : 44fe82a187d67d5a0f1e3b390352da7f3b1beca364384fa6845fb8b5a7de071a
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [7] : 68747470733a2f2f6e62666e772e6d7970696e6174612e636c6f75642f697066
Arg [8] : 732f516d4e686a7369525051326938455179586e376f34456d5a583565556733
Arg [9] : 386e6a57565377684c58684452486e512f000000000000000000000000000000


Deployed Bytecode Sourcemap

57905:4762:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35170:370;;;;;;;;;;-1:-1:-1;35170:370:0;;;;;:::i;:::-;;:::i;:::-;;;6972:14:1;;6965:22;6947:41;;6935:2;6920:18;35170:370:0;;;;;;;;36896:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38620:204::-;;;;;;;;;;-1:-1:-1;38620:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6270:32:1;;;6252:51;;6240:2;6225:18;38620:204:0;6106:203:1;38183:379:0;;;;;;;;;;-1:-1:-1;38183:379:0;;;;;:::i;:::-;;:::i;:::-;;33731:94;;;;;;;;;;-1:-1:-1;33807:12:0;;33731:94;;;7145:25:1;;;7133:2;7118:18;33731:94:0;6999:177:1;39470:142:0;;;;;;;;;;-1:-1:-1;39470:142:0;;;;;:::i;:::-;;:::i;62212:156::-;;;;;;;;;;-1:-1:-1;62212:156:0;;;;;:::i;:::-;;:::i;58172:25::-;;;;;;;;;;;;;;;;34362:744;;;;;;;;;;-1:-1:-1;34362:744:0;;;;;:::i;:::-;;:::i;61349:361::-;;;;;;;;;;-1:-1:-1;61349:361:0;;;;;:::i;:::-;;:::i;61268:73::-;;;;;;;;;;;;;:::i;61093:167::-;;;;;;;;;;;;;:::i;39675:157::-;;;;;;;;;;-1:-1:-1;39675:157:0;;;;;:::i;:::-;;:::i;33894:177::-;;;;;;;;;;-1:-1:-1;33894:177:0;;;;;:::i;:::-;;:::i;61901:102::-;;;;;;;;;;-1:-1:-1;61901:102:0;;;;;:::i;:::-;;:::i;58065:47::-;;;;;;;;;;;;;;;36719:118;;;;;;;;;;-1:-1:-1;36719:118:0;;;;;:::i;:::-;;:::i;35596:211::-;;;;;;;;;;-1:-1:-1;35596:211:0;;;;;:::i;:::-;;:::i;52387:103::-;;;;;;;;;;;;;:::i;57965:48::-;;;;;;;;;;;;;;;51736:87;;;;;;;;;;-1:-1:-1;51782:7:0;51809:6;-1:-1:-1;;;;;51809:6:0;51736:87;;62497:167;;;;;;;;;;-1:-1:-1;62497:167:0;;;;;:::i;:::-;;:::i;:::-;;;;20850:13:1;;-1:-1:-1;;;;;20846:39:1;20828:58;;20946:4;20934:17;;;20928:24;-1:-1:-1;;;;;20924:49:1;20902:20;;;20895:79;;;;20801:18;62497:167:0;20618:362:1;37051:98:0;;;;;;;;;;;;;:::i;58204:29::-;;;;;;;;;;-1:-1:-1;58204:29:0;;;;;;;;38888:274;;;;;;;;;;-1:-1:-1;38888:274:0;;;;;:::i;:::-;;:::i;62011:193::-;;;;;;;;;;;;;:::i;39895:311::-;;;;;;;;;;-1:-1:-1;39895:311:0;;;;;:::i;:::-;;:::i;59413:1040::-;;;;;;:::i;:::-;;:::i;58121:44::-;;;;;;;;;;;;58164:1;58121:44;;37212:593;;;;;;;;;;-1:-1:-1;37212:593:0;;;;;:::i;:::-;;:::i;60927:158::-;;;;;;;;;;;;;:::i;44310:43::-;;;;;;;;;;;;;;;;62376:113;;;;;;;;;;-1:-1:-1;62376:113:0;;;;;:::i;:::-;;:::i;39225:186::-;;;;;;;;;;-1:-1:-1;39225:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;39370:25:0;;;39347:4;39370:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39225:186;52645:201;;;;;;;;;;-1:-1:-1;52645:201:0;;;;;:::i;:::-;;:::i;58020:38::-;;;;;;;;;;;;;;;35170:370;35297:4;-1:-1:-1;;;;;;35327:40:0;;-1:-1:-1;;;35327:40:0;;:99;;-1:-1:-1;;;;;;;35378:48:0;;-1:-1:-1;;;35378:48:0;35327:99;:160;;;-1:-1:-1;;;;;;;35437:50:0;;-1:-1:-1;;;35437:50:0;35327:160;:207;;;-1:-1:-1;;;;;;;;;;10768:40:0;;;35498:36;35313:221;35170:370;-1:-1:-1;;35170:370:0:o;36896:94::-;36950:13;36979:5;36972:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36896:94;:::o;38620:204::-;38688:7;38712:16;38720:7;40532:12;;-1:-1:-1;40522:22:0;40445:105;38712:16;38704:74;;;;-1:-1:-1;;;38704:74:0;;20003:2:1;38704:74:0;;;19985:21:1;20042:2;20022:18;;;20015:30;20081:34;20061:18;;;20054:62;-1:-1:-1;;;20132:18:1;;;20125:43;20185:19;;38704:74:0;;;;;;;;;-1:-1:-1;38794:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38794:24:0;;38620:204::o;38183:379::-;38252:13;38268:24;38284:7;38268:15;:24::i;:::-;38252:40;;38313:5;-1:-1:-1;;;;;38307:11:0;:2;-1:-1:-1;;;;;38307:11:0;;;38299:58;;;;-1:-1:-1;;;38299:58:0;;15775:2:1;38299:58:0;;;15757:21:1;15814:2;15794:18;;;15787:30;15853:34;15833:18;;;15826:62;-1:-1:-1;;;15904:18:1;;;15897:32;15946:19;;38299:58:0;15573:398:1;38299:58:0;647:10;-1:-1:-1;;;;;38382:21:0;;;;:62;;-1:-1:-1;38407:37:0;38424:5;647:10;39225:186;:::i;38407:37::-;38366:153;;;;-1:-1:-1;;;38366:153:0;;11525:2:1;38366:153:0;;;11507:21:1;11564:2;11544:18;;;11537:30;11603:34;11583:18;;;11576:62;11674:27;11654:18;;;11647:55;11719:19;;38366:153:0;11323:421:1;38366:153:0;38528:28;38537:2;38541:7;38550:5;38528:8;:28::i;:::-;38245:317;38183:379;;:::o;39470:142::-;39578:28;39588:4;39594:2;39598:7;39578:9;:28::i;62212:156::-;51782:7;51809:6;-1:-1:-1;;;;;51809:6:0;647:10;51956:23;51948:68;;;;-1:-1:-1;;;51948:68:0;;;;;;;:::i;:::-;54882:1:::1;55480:7;;:19;;55472:63;;;::::0;-1:-1:-1;;;55472:63:0;;19227:2:1;55472:63:0::1;::::0;::::1;19209:21:1::0;19266:2;19246:18;;;19239:30;19305:33;19285:18;;;19278:61;19356:18;;55472:63:0::1;19025:355:1::0;55472:63:0::1;54882:1;55613:7;:18:::0;62332:28:::2;62351:8:::0;62332:18:::2;:28::i;:::-;-1:-1:-1::0;54838:1:0::1;55792:7;:22:::0;62212:156::o;34362:744::-;34471:7;34506:16;34516:5;34506:9;:16::i;:::-;34498:5;:24;34490:71;;;;-1:-1:-1;;;34490:71:0;;7607:2:1;34490:71:0;;;7589:21:1;7646:2;7626:18;;;7619:30;7685:34;7665:18;;;7658:62;-1:-1:-1;;;7736:18:1;;;7729:32;7778:19;;34490:71:0;7405:398:1;34490:71:0;34568:22;34593:13;33807:12;;;33731:94;34593:13;34568:38;;34613:19;34643:25;34693:9;34688:350;34712:14;34708:1;:18;34688:350;;;34742:31;34776:14;;;:11;:14;;;;;;;;;34742:48;;;;;;;;;-1:-1:-1;;;;;34742:48:0;;;;;-1:-1:-1;;;34742:48:0;;;-1:-1:-1;;;;;34742:48:0;;;;;;;;34803:28;34799:89;;34864:14;;;-1:-1:-1;34799:89:0;34921:5;-1:-1:-1;;;;;34900:26:0;:17;-1:-1:-1;;;;;34900:26:0;;34896:135;;;34958:5;34943:11;:20;34939:59;;;-1:-1:-1;34985:1:0;-1:-1:-1;34978:8:0;;-1:-1:-1;;;34978:8:0;34939:59;35008:13;;;;:::i;:::-;;;;34896:135;-1:-1:-1;34728:3:0;;;;:::i;:::-;;;;34688:350;;;-1:-1:-1;35044:56:0;;-1:-1:-1;;;35044:56:0;;18405:2:1;35044:56:0;;;18387:21:1;18444:2;18424:18;;;18417:30;18483:34;18463:18;;;18456:62;-1:-1:-1;;;18534:18:1;;;18527:44;18588:19;;35044:56:0;18203:410:1;61349:361:0;51782:7;51809:6;-1:-1:-1;;;;;51809:6:0;647:10;51956:23;51948:68;;;;-1:-1:-1;;;51948:68:0;;;;;;;:::i;:::-;61436:23:::1;61447:12;61436:8:::0;:23:::1;:::i;:::-;:28:::0;61414:122:::1;;;::::0;-1:-1:-1;;;61414:122:0;;8828:2:1;61414:122:0::1;::::0;::::1;8810:21:1::0;8867:2;8847:18;;;8840:30;8906:34;8886:18;;;8879:62;-1:-1:-1;;;8957:18:1;;;8950:42;9009:19;;61414:122:0::1;8626:408:1::0;61414:122:0::1;61547:17;61567:23;61578:12;61567:8:::0;:23:::1;:::i;:::-;61547:43;;61606:9;61601:102;61625:9;61621:1;:13;61601:102;;;61656:35;61666:10;61678:12;61656:9;:35::i;:::-;61636:3:::0;::::1;::::0;::::1;:::i;:::-;;;;61601:102;;61268:73:::0;51782:7;51809:6;-1:-1:-1;;;;;51809:6:0;647:10;51956:23;51948:68;;;;-1:-1:-1;;;51948:68:0;;;;;;;:::i;:::-;61317:9:::1;:16:::0;;-1:-1:-1;;61317:16:0::1;61329:4;61317:16;::::0;;61268:73::o;61093:167::-;61164:10;:30;61140:4;;-1:-1:-1;;;61164:30:0;;;;:35;;;;:88;;-1:-1:-1;61222:10:0;:30;-1:-1:-1;;;61222:30:0;;;;61203:15;:49;;61164:88;61157:95;;61093:167;:::o;39675:157::-;39787:39;39804:4;39810:2;39814:7;39787:39;;;;;;;;;;;;:16;:39::i;33894:177::-;33961:7;33993:13;33807:12;;;33731:94;33993:13;33985:5;:21;33977:69;;;;-1:-1:-1;;;33977:69:0;;9241:2:1;33977:69:0;;;9223:21:1;9280:2;9260:18;;;9253:30;9319:34;9299:18;;;9292:62;-1:-1:-1;;;9370:18:1;;;9363:33;9413:19;;33977:69:0;9039:399:1;33977:69:0;-1:-1:-1;34060:5:0;33894:177::o;61901:102::-;51782:7;51809:6;-1:-1:-1;;;;;51809:6:0;647:10;51956:23;51948:68;;;;-1:-1:-1;;;51948:68:0;;;;;;;:::i;:::-;61972:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;61901:102:::0;:::o;36719:118::-;36783:7;36806:20;36818:7;36806:11;:20::i;:::-;:25;;36719:118;-1:-1:-1;;36719:118:0:o;35596:211::-;35660:7;-1:-1:-1;;;;;35684:19:0;;35676:75;;;;-1:-1:-1;;;35676:75:0;;12304:2:1;35676:75:0;;;12286:21:1;12343:2;12323:18;;;12316:30;12382:34;12362:18;;;12355:62;-1:-1:-1;;;12433:18:1;;;12426:41;12484:19;;35676:75:0;12102:407:1;35676:75:0;-1:-1:-1;;;;;;35773:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;35773:27:0;;35596:211::o;52387:103::-;51782:7;51809:6;-1:-1:-1;;;;;51809:6:0;647:10;51956:23;51948:68;;;;-1:-1:-1;;;51948:68:0;;;;;;;:::i;:::-;52452:30:::1;52479:1;52452:18;:30::i;:::-;52387:103::o:0;62497:167::-;-1:-1:-1;;;;;;;;;;;;;;;;;62636:20:0;62648:7;62636:11;:20::i;37051:98::-;37107:13;37136:7;37129:14;;;;;:::i;38888:274::-;-1:-1:-1;;;;;38979:24:0;;647:10;38979:24;;38971:63;;;;-1:-1:-1;;;38971:63:0;;14247:2:1;38971:63:0;;;14229:21:1;14286:2;14266:18;;;14259:30;14325:28;14305:18;;;14298:56;14371:18;;38971:63:0;14045:350:1;38971:63:0;647:10;39043:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39043:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39043:53:0;;;;;;;;;;39108:48;;6947:41:1;;;39043:42:0;;647:10;39108:48;;6920:18:1;39108:48:0;;;;;;;38888:274;;:::o;62011:193::-;51782:7;51809:6;-1:-1:-1;;;;;51809:6:0;647:10;51956:23;51948:68;;;;-1:-1:-1;;;51948:68:0;;;;;;;:::i;:::-;54882:1:::1;55480:7;;:19;;55472:63;;;::::0;-1:-1:-1;;;55472:63:0;;19227:2:1;55472:63:0::1;::::0;::::1;19209:21:1::0;19266:2;19246:18;;;19239:30;19305:33;19285:18;;;19278:61;19356:18;;55472:63:0::1;19025:355:1::0;55472:63:0::1;54882:1;55613:7;:18:::0;62098:51:::2;::::0;62080:12:::2;::::0;62098:10:::2;::::0;62122:21:::2;::::0;62080:12;62098:51;62080:12;62098:51;62122:21;62098:10;:51:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62079:70;;;62168:7;62160:36;;;::::0;-1:-1:-1;;;62160:36:0;;16178:2:1;62160:36:0::2;::::0;::::2;16160:21:1::0;16217:2;16197:18;;;16190:30;-1:-1:-1;;;16236:18:1;;;16229:46;16292:18;;62160:36:0::2;15976:340:1::0;39895:311:0;40032:28;40042:4;40048:2;40052:7;40032:9;:28::i;:::-;40083:48;40106:4;40112:2;40116:7;40125:5;40083:22;:48::i;:::-;40067:133;;;;-1:-1:-1;;;40067:133:0;;;;;;;:::i;:::-;39895:311;;;;:::o;59413:1040::-;59327:9;59340:10;59327:23;59319:66;;;;-1:-1:-1;;;59319:66:0;;11166:2:1;59319:66:0;;;11148:21:1;11205:2;11185:18;;;11178:30;11244:32;11224:18;;;11217:60;11294:18;;59319:66:0;10964:354:1;59319:66:0;59527:9:::1;::::0;::::1;;59526:10;59518:38;;;::::0;-1:-1:-1;;;59518:38:0;;9645:2:1;59518:38:0::1;::::0;::::1;9627:21:1::0;9684:2;9664:18;;;9657:30;-1:-1:-1;;;9703:18:1;;;9696:45;9758:18;;59518:38:0::1;9443:339:1::0;59518:38:0::1;59575:13;:11;:13::i;:::-;59567:50;;;::::0;-1:-1:-1;;;59567:50:0;;10395:2:1;59567:50:0::1;::::0;::::1;10377:21:1::0;10434:2;10414:18;;;10407:30;10473:26;10453:18;;;10446:54;10517:18;;59567:50:0::1;10193:348:1::0;59567:50:0::1;59680:14;59663:13;59652:8;59636:13;33807:12:::0;;;33731:94;59636:13:::1;:24;;;;:::i;:::-;:40;;;;:::i;:::-;:58;;59628:89;;;::::0;-1:-1:-1;;;59628:89:0;;12716:2:1;59628:89:0::1;::::0;::::1;12698:21:1::0;12755:2;12735:18;;;12728:30;-1:-1:-1;;;12774:18:1;;;12767:48;12832:18;;59628:89:0::1;12514:342:1::0;59628:89:0::1;59762:16;:14;:16::i;:::-;59757:689;;59860:10;:23:::0;;;::::1;-1:-1:-1::0;;;;;59860:23:0::1;59907:28;59922:12:::0;;59907:14:::1;:28::i;:::-;59899:61;;;::::0;-1:-1:-1;;;59899:61:0;;15426:2:1;59899:61:0::1;::::0;::::1;15408:21:1::0;15465:2;15445:18;;;15438:30;-1:-1:-1;;;15484:18:1;;;15477:50;15544:18;;59899:61:0::1;15224:344:1::0;59899:61:0::1;58164:1;60010:8;59983:24;59996:10;59983:12;:24::i;:::-;:35;;;;:::i;:::-;:55;;59975:104;;;::::0;-1:-1:-1;;;59975:104:0;;15021:2:1;59975:104:0::1;::::0;::::1;15003:21:1::0;15060:2;15040:18;;;15033:30;15099:34;15079:18;;;15072:62;-1:-1:-1;;;15150:18:1;;;15143:34;15194:19;;59975:104:0::1;14819:400:1::0;59975:104:0::1;60094:31;60104:10;60116:8;60094:9;:31::i;:::-;60140:37;60153:23;60168:8:::0;60153:12;:23:::1;:::i;:::-;60140:12;:37::i;59757:689::-;60240:10;:22:::0;-1:-1:-1;;;60240:22:0;::::1;-1:-1:-1::0;;;;;60240:22:0::1;60298:12;60286:24:::0;::::1;;60278:59;;;::::0;-1:-1:-1;;;60278:59:0;;18054:2:1;60278:59:0::1;::::0;::::1;18036:21:1::0;18093:2;18073:18;;;18066:30;-1:-1:-1;;;18112:18:1;;;18105:52;18174:18;;60278:59:0::1;17852:346:1::0;37212:593:0;37310:13;37351:16;37359:7;40532:12;;-1:-1:-1;40522:22:0;40445:105;37351:16;37335:97;;;;-1:-1:-1;;;37335:97:0;;13831:2:1;37335:97:0;;;13813:21:1;13870:2;13850:18;;;13843:30;13909:34;13889:18;;;13882:62;-1:-1:-1;;;13960:18:1;;;13953:45;14015:19;;37335:97:0;13629:411:1;37335:97:0;37439:21;37463:10;:8;:10::i;:::-;37480:37;;;;;;;;;;;;-1:-1:-1;;;37480:37:0;;;;37439:34;;-1:-1:-1;37546:10:0;37528:15;:28;37524:135;;;37558:101;;;;;;;;;;;;;;;;;;37212:593;-1:-1:-1;;;;37212:593:0:o;37524:135::-;37704:1;37686:7;37680:21;:25;:119;;;;;;;;;;;;;;;;;37741:7;37750:18;:7;:16;:18::i;:::-;37770:13;37724:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37680:119;37666:133;37212:593;-1:-1:-1;;;;37212:593:0:o;60927:158::-;60995:10;:27;60971:4;;60995:27;;:32;;;;:82;;-1:-1:-1;;61050:10:0;:27;;;61031:15;:46;;;60927:158::o;62376:113::-;62434:7;62461:20;62475:5;62461:13;:20::i;52645:201::-;51782:7;51809:6;-1:-1:-1;;;;;51809:6:0;647:10;51956:23;51948:68;;;;-1:-1:-1;;;51948:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52734:22:0;::::1;52726:73;;;::::0;-1:-1:-1;;;52726:73:0;;8010:2:1;52726:73:0::1;::::0;::::1;7992:21:1::0;8049:2;8029:18;;;8022:30;8088:34;8068:18;;;8061:62;-1:-1:-1;;;8139:18:1;;;8132:36;8185:19;;52726:73:0::1;7808:402:1::0;52726:73:0::1;52810:28;52829:8;52810:18;:28::i;:::-;52645:201:::0;:::o;44132:172::-;44229:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44229:29:0;-1:-1:-1;;;;;44229:29:0;;;;;;;;;44270:28;;44229:24;;44270:28;;;;;;;44132:172;;;:::o;42497:1529::-;42594:35;42632:20;42644:7;42632:11;:20::i;:::-;42703:18;;42594:58;;-1:-1:-1;42661:22:0;;-1:-1:-1;;;;;42687:34:0;647:10;-1:-1:-1;;;;;42687:34:0;;:81;;;-1:-1:-1;647:10:0;42732:20;42744:7;42732:11;:20::i;:::-;-1:-1:-1;;;;;42732:36:0;;42687:81;:142;;;-1:-1:-1;42796:18:0;;42779:50;;647:10;39225:186;:::i;42779:50::-;42661:169;;42855:17;42839:101;;;;-1:-1:-1;;;42839:101:0;;14602:2:1;42839:101:0;;;14584:21:1;14641:2;14621:18;;;14614:30;14680:34;14660:18;;;14653:62;-1:-1:-1;;;14731:18:1;;;14724:48;14789:19;;42839:101:0;14400:414:1;42839:101:0;42987:4;-1:-1:-1;;;;;42965:26:0;:13;:18;;;-1:-1:-1;;;;;42965:26:0;;42949:98;;;;-1:-1:-1;;;42949:98:0;;13063:2:1;42949:98:0;;;13045:21:1;13102:2;13082:18;;;13075:30;13141:34;13121:18;;;13114:62;-1:-1:-1;;;13192:18:1;;;13185:36;13238:19;;42949:98:0;12861:402:1;42949:98:0;-1:-1:-1;;;;;43062:16:0;;43054:66;;;;-1:-1:-1;;;43054:66:0;;9989:2:1;43054:66:0;;;9971:21:1;10028:2;10008:18;;;10001:30;10067:34;10047:18;;;10040:62;-1:-1:-1;;;10118:18:1;;;10111:35;10163:19;;43054:66:0;9787:401:1;43054:66:0;43229:49;43246:1;43250:7;43259:13;:18;;;43229:8;:49::i;:::-;-1:-1:-1;;;;;43287:18:0;;;;;;:12;:18;;;;;:31;;43317:1;;43287:18;:31;;43317:1;;-1:-1:-1;;;;;43287:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;43287:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43325:16:0;;-1:-1:-1;43325:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;43325:16:0;;:29;;-1:-1:-1;;43325:29:0;;:::i;:::-;;;-1:-1:-1;;;;;43325:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43384:43:0;;;;;;;;-1:-1:-1;;;;;43384:43:0;;;;;-1:-1:-1;;;;;43410:15:0;43384:43;;;;;;;;;-1:-1:-1;43361:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;43361:66:0;-1:-1:-1;;;;;;43361:66:0;;;;;;;;;;;43677:11;43373:7;-1:-1:-1;43677:11:0;:::i;:::-;43740:1;43699:24;;;:11;:24;;;;;:29;43655:33;;-1:-1:-1;;;;;;43699:29:0;43695:236;;43757:20;43765:11;40532:12;;-1:-1:-1;40522:22:0;40445:105;43757:20;43753:171;;;43817:97;;;;;;;;43844:18;;-1:-1:-1;;;;;43817:97:0;;;;;;43875:28;;;;-1:-1:-1;;;;;43817:97:0;;;;;;;;;-1:-1:-1;43790:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;43790:124:0;-1:-1:-1;;;;;;43790:124:0;;;;;;;;;;;;43753:171;43963:7;43959:2;-1:-1:-1;;;;;43944:27:0;43953:4;-1:-1:-1;;;;;43944:27:0;;;;;;;;;;;43978:42;42587:1439;;;42497:1529;;;:::o;44458:846::-;44548:24;;44587:12;44579:49;;;;-1:-1:-1;;;44579:49:0;;11951:2:1;44579:49:0;;;11933:21:1;11990:2;11970:18;;;11963:30;12029:26;12009:18;;;12002:54;12073:18;;44579:49:0;11749:348:1;44579:49:0;44635:16;44685:1;44654:28;44674:8;44654:17;:28;:::i;:::-;:32;;;;:::i;:::-;44635:51;-1:-1:-1;44708:18:0;44725:1;44708:14;:18;:::i;:::-;44697:8;:29;44693:81;;;44748:18;44765:1;44748:14;:18;:::i;:::-;44737:29;;44693:81;44889:17;44897:8;40532:12;;-1:-1:-1;40522:22:0;40445:105;44889:17;44881:68;;;;-1:-1:-1;;;44881:68:0;;18820:2:1;44881:68:0;;;18802:21:1;18859:2;18839:18;;;18832:30;18898:34;18878:18;;;18871:62;-1:-1:-1;;;18949:18:1;;;18942:36;18995:19;;44881:68:0;18618:402:1;44881:68:0;44973:17;44956:297;44997:8;44992:1;:13;44956:297;;45056:1;45025:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;45025:19:0;45021:225;;45071:31;45105:14;45117:1;45105:11;:14::i;:::-;45147:89;;;;;;;;45174:14;;-1:-1:-1;;;;;45147:89:0;;;;;;45201:24;;;;-1:-1:-1;;;;;45147:89:0;;;;;;;;;-1:-1:-1;45130:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;45130:106:0;-1:-1:-1;;;;;;45130:106:0;;;;;;;;;;;;-1:-1:-1;45021:225:0;45007:3;;;;:::i;:::-;;;;44956:297;;;-1:-1:-1;45286:12:0;:8;45297:1;45286:12;:::i;:::-;45259:24;:39;-1:-1:-1;;;44458:846:0:o;40556:98::-;40621:27;40631:2;40635:8;40621:27;;;;;;;;;;;;:9;:27::i;36059:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;36176:16:0;36184:7;40532:12;;-1:-1:-1;40522:22:0;40445:105;36176:16;36168:71;;;;-1:-1:-1;;;36168:71:0;;8417:2:1;36168:71:0;;;8399:21:1;8456:2;8436:18;;;8429:30;8495:34;8475:18;;;8468:62;-1:-1:-1;;;8546:18:1;;;8539:40;8596:19;;36168:71:0;8215:406:1;36168:71:0;36248:26;36296:12;36285:7;:23;36281:93;;36340:22;36350:12;36340:7;:22;:::i;:::-;:26;;36365:1;36340:26;:::i;:::-;36319:47;;36281:93;36402:7;36382:212;36419:18;36411:4;:26;36382:212;;36456:31;36490:17;;;:11;:17;;;;;;;;;36456:51;;;;;;;;;-1:-1:-1;;;;;36456:51:0;;;;;-1:-1:-1;;;36456:51:0;;;-1:-1:-1;;;;;36456:51:0;;;;;;;;36520:28;36516:71;;36568:9;36059:606;-1:-1:-1;;;;36059:606:0:o;36516:71::-;-1:-1:-1;36439:6:0;;;;:::i;:::-;;;;36382:212;;;-1:-1:-1;36602:57:0;;-1:-1:-1;;;36602:57:0;;19587:2:1;36602:57:0;;;19569:21:1;19626:2;19606:18;;;19599:30;19665:34;19645:18;;;19638:62;-1:-1:-1;;;19716:18:1;;;19709:45;19771:19;;36602:57:0;19385:411:1;53006:191:0;53080:16;53099:6;;-1:-1:-1;;;;;53116:17:0;;;-1:-1:-1;;;;;;53116:17:0;;;;;;53149:40;;53099:6;;;;;;;53149:40;;53080:16;53149:40;53069:128;53006:191;:::o;45847:690::-;45984:4;-1:-1:-1;;;;;46001:13:0;;2182:19;:23;45997:535;;46040:72;;-1:-1:-1;;;46040:72:0;;-1:-1:-1;;;;;46040:36:0;;;;;:72;;647:10;;46091:4;;46097:7;;46106:5;;46040:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46040:72:0;;;;;;;;-1:-1:-1;;46040:72:0;;;;;;;;;;;;:::i;:::-;;;46027:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46271:13:0;;46267:215;;46304:61;;-1:-1:-1;;;46304:61:0;;;;;;;:::i;46267:215::-;46450:6;46444:13;46435:6;46431:2;46427:15;46420:38;46027:464;-1:-1:-1;;;;;;46162:55:0;-1:-1:-1;;;46162:55:0;;-1:-1:-1;46155:62:0;;45997:535;-1:-1:-1;46520:4:0;45847:690;;;;;;:::o;60461:226::-;60582:28;;-1:-1:-1;;60599:10:0;5142:2:1;5138:15;5134:53;60582:28:0;;;5122:66:1;60540:4:0;;;;5204:12:1;;60582:28:0;;;;;;;;;;;;60572:39;;;;;;60557:54;;60629:50;60648:12;;60629:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;60662:10:0;;;-1:-1:-1;60674:4:0;;-1:-1:-1;60629:18:0;:50::i;60695:224::-;60772:5;60759:9;:18;;60751:53;;;;-1:-1:-1;;;60751:53:0;;16943:2:1;60751:53:0;;;16925:21:1;16982:2;16962:18;;;16955:30;-1:-1:-1;;;17001:18:1;;;16994:52;17063:18;;60751:53:0;16741:346:1;60751:53:0;60831:5;60819:9;:17;60815:97;;;60861:10;60853:47;60882:17;60894:5;60882:9;:17;:::i;:::-;60853:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61779:114;61839:13;61872;61865:20;;;;;:::i;56082:723::-;56138:13;56359:10;56355:53;;-1:-1:-1;;56386:10:0;;;;;;;;;;;;-1:-1:-1;;;56386:10:0;;;;;56082:723::o;56355:53::-;56433:5;56418:12;56474:78;56481:9;;56474:78;;56507:8;;;;:::i;:::-;;-1:-1:-1;56530:10:0;;-1:-1:-1;56538:2:0;56530:10;;:::i;:::-;;;56474:78;;;56562:19;56594:6;-1:-1:-1;;;;;56584:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56584:17:0;;56562:39;;56612:154;56619:10;;56612:154;;56646:11;56656:1;56646:11;;:::i;:::-;;-1:-1:-1;56715:10:0;56723:2;56715:5;:10;:::i;:::-;56702:24;;:2;:24;:::i;:::-;56689:39;;56672:6;56679;56672:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;56672:56:0;;;;;;;;-1:-1:-1;56743:11:0;56752:2;56743:11;;:::i;:::-;;;56612:154;;35813:240;35874:7;-1:-1:-1;;;;;35906:19:0;;35890:102;;;;-1:-1:-1;;;35890:102:0;;10748:2:1;35890:102:0;;;10730:21:1;10787:2;10767:18;;;10760:30;10826:34;10806:18;;;10799:62;-1:-1:-1;;;10877:18:1;;;10870:47;10934:19;;35890:102:0;10546:413:1;35890:102:0;-1:-1:-1;;;;;;36014:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;36014:32:0;;-1:-1:-1;;;;;36014:32:0;;35813:240::o;40993:1272::-;41121:12;;-1:-1:-1;;;;;41148:16:0;;41140:62;;;;-1:-1:-1;;;41140:62:0;;17652:2:1;41140:62:0;;;17634:21:1;17691:2;17671:18;;;17664:30;17730:34;17710:18;;;17703:62;-1:-1:-1;;;17781:18:1;;;17774:31;17822:19;;41140:62:0;17450:397:1;41140:62:0;41339:21;41347:12;40532;;-1:-1:-1;40522:22:0;40445:105;41339:21;41338:22;41330:64;;;;-1:-1:-1;;;41330:64:0;;17294:2:1;41330:64:0;;;17276:21:1;17333:2;17313:18;;;17306:30;17372:31;17352:18;;;17345:59;17421:18;;41330:64:0;17092:353:1;41330:64:0;41421:12;41409:8;:24;;41401:71;;;;-1:-1:-1;;;41401:71:0;;20417:2:1;41401:71:0;;;20399:21:1;20456:2;20436:18;;;20429:30;20495:34;20475:18;;;20468:62;-1:-1:-1;;;20546:18:1;;;20539:32;20588:19;;41401:71:0;20215:398:1;41401:71:0;-1:-1:-1;;;;;41584:16:0;;41551:30;41584:16;;;:12;:16;;;;;;;;;41551:49;;;;;;;;;-1:-1:-1;;;;;41551:49:0;;;;;-1:-1:-1;;;41551:49:0;;;;;;;;;;;41626:119;;;;;;;;41646:19;;41551:49;;41626:119;;;41646:39;;41676:8;;41646:39;:::i;:::-;-1:-1:-1;;;;;41626:119:0;;;;;41729:8;41694:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;41626:119:0;;;;;;-1:-1:-1;;;;;41607:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;41607:138:0;;;;;;;;;;;;41780:43;;;;;;;;;;-1:-1:-1;;;;;41806:15:0;41780:43;;;;;;;;41752:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;41752:71:0;-1:-1:-1;;;;;;41752:71:0;;;;;;;;;;;;;;;;;;41764:12;;41876:281;41900:8;41896:1;:12;41876:281;;;41929:38;;41954:12;;-1:-1:-1;;;;;41929:38:0;;;41946:1;;41929:38;;41946:1;;41929:38;41994:59;42025:1;42029:2;42033:12;42047:5;41994:22;:59::i;:::-;41976:150;;;;-1:-1:-1;;;41976:150:0;;;;;;;:::i;:::-;42135:14;;;;:::i;:::-;;;;41910:3;;;;;:::i;:::-;;;;41876:281;;;-1:-1:-1;42165:12:0;:27;;;42199:60;39895:311;49324:190;49449:4;49502;49473:25;49486:5;49493:4;49473:12;:25::i;:::-;:33;;49324:190;-1:-1:-1;;;;49324:190:0:o;49876:675::-;49959:7;50002:4;49959:7;50017:497;50041:5;:12;50037:1;:16;50017:497;;;50075:20;50098:5;50104:1;50098:8;;;;;;;;:::i;:::-;;;;;;;50075:31;;50141:12;50125;:28;50121:382;;50627:13;50677:15;;;50713:4;50706:15;;;50760:4;50744:21;;50253:57;;50121:382;;;50627:13;50677:15;;;50713:4;50706:15;;;50760:4;50744:21;;50430:57;;50121:382;-1:-1:-1;50055:3:0;;;;:::i;:::-;;;;50017:497;;;-1:-1:-1;50531:12:0;49876:675;-1:-1:-1;;;49876:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;-1:-1:-1;;;;;2036:6:1;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;-1:-1:-1;;;;;3606:6:1;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:683::-;4138:6;4146;4154;4207:2;4195:9;4186:7;4182:23;4178:32;4175:52;;;4223:1;4220;4213:12;4175:52;4259:9;4246:23;4236:33;;4320:2;4309:9;4305:18;4292:32;-1:-1:-1;;;;;4384:2:1;4376:6;4373:14;4370:34;;;4400:1;4397;4390:12;4370:34;4438:6;4427:9;4423:22;4413:32;;4483:7;4476:4;4472:2;4468:13;4464:27;4454:55;;4505:1;4502;4495:12;4454:55;4545:2;4532:16;4571:2;4563:6;4560:14;4557:34;;;4587:1;4584;4577:12;4557:34;4640:7;4635:2;4625:6;4622:1;4618:14;4614:2;4610:23;4606:32;4603:45;4600:65;;;4661:1;4658;4651:12;4600:65;4692:2;4688;4684:11;4674:21;;4714:6;4704:16;;;;;4043:683;;;;;:::o;4731:257::-;4772:3;4810:5;4804:12;4837:6;4832:3;4825:19;4853:63;4909:6;4902:4;4897:3;4893:14;4886:4;4879:5;4875:16;4853:63;:::i;:::-;4970:2;4949:15;-1:-1:-1;;4945:29:1;4936:39;;;;4977:4;4932:50;;4731:257;-1:-1:-1;;4731:257:1:o;5227:664::-;5454:3;5492:6;5486:13;5508:53;5554:6;5549:3;5542:4;5534:6;5530:17;5508:53;:::i;:::-;5624:13;;5583:16;;;;5646:57;5624:13;5583:16;5680:4;5668:17;;5646:57;:::i;:::-;5770:13;;5725:20;;;5792:57;5770:13;5725:20;5826:4;5814:17;;5792:57;:::i;:::-;5865:20;;5227:664;-1:-1:-1;;;;;5227:664:1:o;6314:488::-;-1:-1:-1;;;;;6583:15:1;;;6565:34;;6635:15;;6630:2;6615:18;;6608:43;6682:2;6667:18;;6660:34;;;6730:3;6725:2;6710:18;;6703:31;;;6508:4;;6751:45;;6776:19;;6768:6;6751:45;:::i;:::-;6743:53;6314:488;-1:-1:-1;;;;;;6314:488:1:o;7181:219::-;7330:2;7319:9;7312:21;7293:4;7350:44;7390:2;7379:9;7375:18;7367:6;7350:44;:::i;13268:356::-;13470:2;13452:21;;;13489:18;;;13482:30;13548:34;13543:2;13528:18;;13521:62;13615:2;13600:18;;13268:356::o;16321:415::-;16523:2;16505:21;;;16562:2;16542:18;;;16535:30;16601:34;16596:2;16581:18;;16574:62;-1:-1:-1;;;16667:2:1;16652:18;;16645:49;16726:3;16711:19;;16321:415::o;21167:253::-;21207:3;-1:-1:-1;;;;;21296:2:1;21293:1;21289:10;21326:2;21323:1;21319:10;21357:3;21353:2;21349:12;21344:3;21341:21;21338:47;;;21365:18;;:::i;:::-;21401:13;;21167:253;-1:-1:-1;;;;21167:253:1:o;21425:128::-;21465:3;21496:1;21492:6;21489:1;21486:13;21483:39;;;21502:18;;:::i;:::-;-1:-1:-1;21538:9:1;;21425:128::o;21558:120::-;21598:1;21624;21614:35;;21629:18;;:::i;:::-;-1:-1:-1;21663:9:1;;21558:120::o;21683:168::-;21723:7;21789:1;21785;21781:6;21777:14;21774:1;21771:21;21766:1;21759:9;21752:17;21748:45;21745:71;;;21796:18;;:::i;:::-;-1:-1:-1;21836:9:1;;21683:168::o;21856:246::-;21896:4;-1:-1:-1;;;;;22009:10:1;;;;21979;;22031:12;;;22028:38;;;22046:18;;:::i;:::-;22083:13;;21856:246;-1:-1:-1;;;21856:246:1:o;22107:125::-;22147:4;22175:1;22172;22169:8;22166:34;;;22180:18;;:::i;:::-;-1:-1:-1;22217:9:1;;22107:125::o;22237:258::-;22309:1;22319:113;22333:6;22330:1;22327:13;22319:113;;;22409:11;;;22403:18;22390:11;;;22383:39;22355:2;22348:10;22319:113;;;22450:6;22447:1;22444:13;22441:48;;;-1:-1:-1;;22485:1:1;22467:16;;22460:27;22237:258::o;22500:136::-;22539:3;22567:5;22557:39;;22576:18;;:::i;:::-;-1:-1:-1;;;22612:18:1;;22500:136::o;22641:380::-;22720:1;22716:12;;;;22763;;;22784:61;;22838:4;22830:6;22826:17;22816:27;;22784:61;22891:2;22883:6;22880:14;22860:18;22857:38;22854:161;;;22937:10;22932:3;22928:20;22925:1;22918:31;22972:4;22969:1;22962:15;23000:4;22997:1;22990:15;22854:161;;22641:380;;;:::o;23026:135::-;23065:3;-1:-1:-1;;23086:17:1;;23083:43;;;23106:18;;:::i;:::-;-1:-1:-1;23153:1:1;23142:13;;23026:135::o;23166:112::-;23198:1;23224;23214:35;;23229:18;;:::i;:::-;-1:-1:-1;23263:9:1;;23166:112::o;23283:127::-;23344:10;23339:3;23335:20;23332:1;23325:31;23375:4;23372:1;23365:15;23399:4;23396:1;23389:15;23415:127;23476:10;23471:3;23467:20;23464:1;23457:31;23507:4;23504:1;23497:15;23531:4;23528:1;23521:15;23547:127;23608:10;23603:3;23599:20;23596:1;23589:31;23639:4;23636:1;23629:15;23663:4;23660:1;23653:15;23679:127;23740:10;23735:3;23731:20;23728:1;23721:31;23771:4;23768:1;23761:15;23795:4;23792:1;23785:15;23811:131;-1:-1:-1;;;;;;23885:32:1;;23875:43;;23865:71;;23932:1;23929;23922:12

Swarm Source

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