ETH Price: $3,431.75 (+5.41%)
Gas: 7 Gwei

Token

thebabysaudis (babysaudi)
 

Overview

Max Total Supply

5,555 babysaudi

Holders

695

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 babysaudi
0x07b5cdfefec4cd6d38705ca2c0163bb3d9e81e53
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:
thebabysaudis

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        //

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

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

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

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


// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * [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.
     *
     *  //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
     * //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 //solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 *
 * 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
     * //eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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


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

pragma solidity ^0.8.0;

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/thebabysaudis.sol


pragma solidity ^0.8.4;

contract thebabysaudis is ERC721A, Ownable {

    uint256 constant public maxSupply = 5555;
    uint256 public mintPrice = 0.01 ether;
    uint256 constant public MaxMintPerTx = 10;
    uint256 constant public MaxMintPerWallet = 10; 
    uint256 constant public MaxFreeMintPerWallet = 3;

    bool public isSaleLive = true;
    string public baseURI = "ipfs://QmYMjXqU164CkVy5k1pTFBQaNX5GYDPVUvHjW7sMeKFGZU/";
     mapping(address => uint) public addressClaimed;

    constructor() ERC721A("thebabysaudis", "babysaudi") {}

    function mint(uint256 quantity) external payable {
        require(quantity > 0 && quantity <= MaxMintPerTx, "Invalid quantity");
        uint256 supply = totalSupply();
        require(supply + quantity <= maxSupply, "Max amount of tokens minted");
        require(addressClaimed[_msgSender()] + quantity <= MaxMintPerWallet, "You have already received your Tokens");
        require(msg.value >= quantity * mintPrice, "Insufficient value to mint");
        addressClaimed[_msgSender()] += quantity;
        _safeMint(msg.sender, quantity);
    }
    
    function freemint(uint256 quantity) external {
        require(quantity <= MaxFreeMintPerWallet, "Invalid quantity");
        uint256 supply = totalSupply();
        require(supply + quantity <= maxSupply, "Max amount of tokens minted");
        require(addressClaimed[_msgSender()] + quantity <= MaxFreeMintPerWallet, "You have already received your Tokens");
        addressClaimed[_msgSender()] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function ownerMint(address to, uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity <= maxSupply, "Minting exceeds max supply");
        require(quantity > 0, "Quantity less than 1");

        _safeMint(to, quantity);
    }

    function toggleSaleStatus() external onlyOwner {
        isSaleLive = !isSaleLive;
    }

    function setMintPrice(uint256 _MintPrice) external onlyOwner {
        mintPrice = _MintPrice;
    }

    function withdrawAll() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function setBaseURI(string calldata newURI) external onlyOwner {
        baseURI = newURI;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"MaxFreeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MintPrice","type":"uint256"}],"name":"setMintPrice","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":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

662386f26fc10000600955600a805460ff1916600117905560e0604052603660808181529062001f8e60a03980516200004191600b9160209091019062000127565b503480156200004f57600080fd5b50604080518082018252600d81526c7468656261627973617564697360981b60208083019182528351808501909452600984526862616279736175646960b81b908401528151919291620000a69160029162000127565b508051620000bc90600390602084019062000127565b5050600160005550620000cf33620000d5565b6200020a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013590620001cd565b90600052602060002090601f016020900481019282620001595760008555620001a4565b82601f106200017457805160ff1916838001178555620001a4565b82800160010185558215620001a4579182015b82811115620001a457825182559160200191906001019062000187565b50620001b2929150620001b6565b5090565b5b80821115620001b25760008155600101620001b7565b600181811c90821680620001e257607f821691505b602082108114156200020457634e487b7160e01b600052602260045260246000fd5b50919050565b611d74806200021a6000396000f3fe6080604052600436106101e35760003560e01c8063772dc32f11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c514610522578063f2fde38b1461056b578063f4a0a5281461058b578063f71143ca146105ab57600080fd5b8063a22cb465146104ac578063b88d4fde146104cc578063c87b56dd146104ec578063d5abeb011461050c57600080fd5b80638da5cb5b116100d15780638da5cb5b1461045157806393785a5f1461046f57806395d89b4114610484578063a0712d681461049957600080fd5b8063772dc32f146103fa5780637ce6edb814610427578063823903a914610427578063853828b61461043c57600080fd5b806342842e0e1161017a5780636817c76c116101495780636817c76c1461039a5780636c0360eb146103b057806370a08231146103c5578063715018a6146103e557600080fd5b806342842e0e1461031a578063484b973c1461033a57806355f804b31461035a5780636352211e1461037a57600080fd5b8063095ea7b3116101b6578063095ea7b31461028e5780630fbe4fe2146102ae57806318160ddd146102ce57806323b872dd146102fa57600080fd5b806301ffc9a7146101e8578063049c5c491461021d57806306fdde0314610234578063081812fc14610256575b600080fd5b3480156101f457600080fd5b506102086102033660046119fc565b6105c5565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610617565b005b34801561024057600080fd5b5061024961065e565b6040516102149190611b61565b34801561026257600080fd5b50610276610271366004611aa1565b6106f0565b6040516001600160a01b039091168152602001610214565b34801561029a57600080fd5b506102326102a93660046119d3565b610734565b3480156102ba57600080fd5b506102326102c9366004611aa1565b6107c2565b3480156102da57600080fd5b506102ec600154600054036000190190565b604051908152602001610214565b34801561030657600080fd5b50610232610315366004611889565b6108e5565b34801561032657600080fd5b50610232610335366004611889565b6108f0565b34801561034657600080fd5b506102326103553660046119d3565b61090b565b34801561036657600080fd5b50610232610375366004611a34565b6109f3565b34801561038657600080fd5b50610276610395366004611aa1565b610a29565b3480156103a657600080fd5b506102ec60095481565b3480156103bc57600080fd5b50610249610a3b565b3480156103d157600080fd5b506102ec6103e036600461183d565b610ac9565b3480156103f157600080fd5b50610232610b18565b34801561040657600080fd5b506102ec61041536600461183d565b600c6020526000908152604090205481565b34801561043357600080fd5b506102ec600a81565b34801561044857600080fd5b50610232610b4e565b34801561045d57600080fd5b506008546001600160a01b0316610276565b34801561047b57600080fd5b506102ec600381565b34801561049057600080fd5b50610249610bb4565b6102326104a7366004611aa1565b610bc3565b3480156104b857600080fd5b506102326104c7366004611999565b610d1b565b3480156104d857600080fd5b506102326104e73660046118c4565b610db1565b3480156104f857600080fd5b50610249610507366004611aa1565b610e02565b34801561051857600080fd5b506102ec6115b381565b34801561052e57600080fd5b5061020861053d366004611857565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057757600080fd5b5061023261058636600461183d565b610e87565b34801561059757600080fd5b506102326105a6366004611aa1565b610f1f565b3480156105b757600080fd5b50600a546102089060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806105f657506001600160e01b03198216635b5e139f60e01b145b8061061157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461064a5760405162461bcd60e51b815260040161064190611bb9565b60405180910390fd5b600a805460ff19811660ff90911615179055565b60606002805461066d90611c7c565b80601f016020809104026020016040519081016040528092919081815260200182805461069990611c7c565b80156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b5050505050905090565b60006106fb82610f4e565b610718576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073f82610a29565b9050806001600160a01b0316836001600160a01b031614156107745760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107945750610792813361053d565b155b156107b2576040516367d9dca160e11b815260040160405180910390fd5b6107bd838383610f87565b505050565b60038111156108065760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b6044820152606401610641565b6000610819600154600054036000190190565b90506115b36108288383611bee565b11156108765760405162461bcd60e51b815260206004820152601b60248201527f4d617820616d6f756e74206f6620746f6b656e73206d696e74656400000000006044820152606401610641565b336000908152600c6020526040902054600390610894908490611bee565b11156108b25760405162461bcd60e51b815260040161064190611b74565b336000908152600c6020526040812080548492906108d1908490611bee565b909155506108e190503383610fe3565b5050565b6107bd838383610ffd565b6107bd83838360405180602001604052806000815250610db1565b6008546001600160a01b031633146109355760405162461bcd60e51b815260040161064190611bb9565b6115b38161094a600154600054036000190190565b6109549190611bee565b11156109a25760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672065786365656473206d617820737570706c790000000000006044820152606401610641565b600081116109e95760405162461bcd60e51b81526020600482015260146024820152735175616e74697479206c657373207468616e203160601b6044820152606401610641565b6108e18282610fe3565b6008546001600160a01b03163314610a1d5760405162461bcd60e51b815260040161064190611bb9565b6107bd600b8383611788565b6000610a3482611213565b5192915050565b600b8054610a4890611c7c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7490611c7c565b8015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b505050505081565b60006001600160a01b038216610af2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b425760405162461bcd60e51b815260040161064190611bb9565b610b4c600061133c565b565b6008546001600160a01b03163314610b785760405162461bcd60e51b815260040161064190611bb9565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610bb1573d6000803e3d6000fd5b50565b60606003805461066d90611c7c565b600081118015610bd45750600a8111155b610c135760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b6044820152606401610641565b6000610c26600154600054036000190190565b90506115b3610c358383611bee565b1115610c835760405162461bcd60e51b815260206004820152601b60248201527f4d617820616d6f756e74206f6620746f6b656e73206d696e74656400000000006044820152606401610641565b336000908152600c6020526040902054600a90610ca1908490611bee565b1115610cbf5760405162461bcd60e51b815260040161064190611b74565b600954610ccc9083611c1a565b3410156108b25760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742076616c756520746f206d696e740000000000006044820152606401610641565b6001600160a01b038216331415610d455760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dbc848484610ffd565b6001600160a01b0383163b15158015610dde5750610ddc8484848461138e565b155b15610dfc576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e0d82610f4e565b610e2a57604051630a14c4b560e41b815260040160405180910390fd5b6000610e34611486565b9050805160001415610e555760405180602001604052806000815250610e80565b80610e5f84611495565b604051602001610e70929190611ae5565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610eb15760405162461bcd60e51b815260040161064190611bb9565b6001600160a01b038116610f165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610641565b610bb18161133c565b6008546001600160a01b03163314610f495760405162461bcd60e51b815260040161064190611bb9565b600955565b600081600111158015610f62575060005482105b8015610611575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108e18282604051806020016040528060008152506115af565b600061100882611213565b80519091506000906001600160a01b0316336001600160a01b0316148061103657508151611036903361053d565b80611051575033611046846106f0565b6001600160a01b0316145b90508061107157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110a65760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166110cd57604051633a954ecd60e21b815260040160405180910390fd5b6110dd6000848460000151610f87565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166111c9576000548110156111c9578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611243575060005481105b1561132357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113215780516001600160a01b0316156112b7579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561131c579392505050565b6112b7565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113c3903390899088908890600401611b24565b602060405180830381600087803b1580156113dd57600080fd5b505af192505050801561140d575060408051601f3d908101601f1916820190925261140a91810190611a18565b60015b611468573d80801561143b576040519150601f19603f3d011682016040523d82523d6000602084013e611440565b606091505b508051611460576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461066d90611c7c565b6060816114b95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114e357806114cd81611cb7565b91506114dc9050600a83611c06565b91506114bd565b60008167ffffffffffffffff81111561150c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611536576020820181803683370190505b5090505b841561147e5761154b600183611c39565b9150611558600a86611cd2565b611563906030611bee565b60f81b81838151811061158657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506115a8600a86611c06565b945061153a565b6107bd83838360016000546001600160a01b0385166115e057604051622e076360e81b815260040160405180910390fd5b836115fe5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156116b057506001600160a01b0387163b15155b15611739575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611701600088848060010195508861138e565b61171e576040516368d2bf6b60e11b815260040160405180910390fd5b808214156116b657826000541461173457600080fd5b61177f565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561173a575b5060005561120c565b82805461179490611c7c565b90600052602060002090601f0160209004810192826117b657600085556117fc565b82601f106117cf5782800160ff198235161785556117fc565b828001600101855582156117fc579182015b828111156117fc5782358255916020019190600101906117e1565b5061180892915061180c565b5090565b5b80821115611808576000815560010161180d565b80356001600160a01b038116811461183857600080fd5b919050565b60006020828403121561184e578081fd5b610e8082611821565b60008060408385031215611869578081fd5b61187283611821565b915061188060208401611821565b90509250929050565b60008060006060848603121561189d578081fd5b6118a684611821565b92506118b460208501611821565b9150604084013590509250925092565b600080600080608085870312156118d9578081fd5b6118e285611821565b93506118f060208601611821565b925060408501359150606085013567ffffffffffffffff80821115611913578283fd5b818701915087601f830112611926578283fd5b81358181111561193857611938611d12565b604051601f8201601f19908116603f0116810190838211818310171561196057611960611d12565b816040528281528a6020848701011115611978578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156119ab578182fd5b6119b483611821565b9150602083013580151581146119c8578182fd5b809150509250929050565b600080604083850312156119e5578182fd5b6119ee83611821565b946020939093013593505050565b600060208284031215611a0d578081fd5b8135610e8081611d28565b600060208284031215611a29578081fd5b8151610e8081611d28565b60008060208385031215611a46578182fd5b823567ffffffffffffffff80821115611a5d578384fd5b818501915085601f830112611a70578384fd5b813581811115611a7e578485fd5b866020828501011115611a8f578485fd5b60209290920196919550909350505050565b600060208284031215611ab2578081fd5b5035919050565b60008151808452611ad1816020860160208601611c50565b601f01601f19169290920160200192915050565b60008351611af7818460208801611c50565b835190830190611b0b818360208801611c50565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b5790830184611ab9565b9695505050505050565b602081526000610e806020830184611ab9565b60208082526025908201527f596f75206861766520616c726561647920726563656976656420796f757220546040820152646f6b656e7360d81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611c0157611c01611ce6565b500190565b600082611c1557611c15611cfc565b500490565b6000816000190483118215151615611c3457611c34611ce6565b500290565b600082821015611c4b57611c4b611ce6565b500390565b60005b83811015611c6b578181015183820152602001611c53565b83811115610dfc5750506000910152565b600181811c90821680611c9057607f821691505b60208210811415611cb157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ccb57611ccb611ce6565b5060010190565b600082611ce157611ce1611cfc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bb157600080fdfea264697066735822122095227ce950fa515f352e5b9e9d5ebf0857e72da6f44e5643259959ea6dde82d864736f6c63430008040033697066733a2f2f516d594d6a587155313634436b5679356b317054464251614e583547594450565576486a5737734d654b46475a552f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063772dc32f11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c514610522578063f2fde38b1461056b578063f4a0a5281461058b578063f71143ca146105ab57600080fd5b8063a22cb465146104ac578063b88d4fde146104cc578063c87b56dd146104ec578063d5abeb011461050c57600080fd5b80638da5cb5b116100d15780638da5cb5b1461045157806393785a5f1461046f57806395d89b4114610484578063a0712d681461049957600080fd5b8063772dc32f146103fa5780637ce6edb814610427578063823903a914610427578063853828b61461043c57600080fd5b806342842e0e1161017a5780636817c76c116101495780636817c76c1461039a5780636c0360eb146103b057806370a08231146103c5578063715018a6146103e557600080fd5b806342842e0e1461031a578063484b973c1461033a57806355f804b31461035a5780636352211e1461037a57600080fd5b8063095ea7b3116101b6578063095ea7b31461028e5780630fbe4fe2146102ae57806318160ddd146102ce57806323b872dd146102fa57600080fd5b806301ffc9a7146101e8578063049c5c491461021d57806306fdde0314610234578063081812fc14610256575b600080fd5b3480156101f457600080fd5b506102086102033660046119fc565b6105c5565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610617565b005b34801561024057600080fd5b5061024961065e565b6040516102149190611b61565b34801561026257600080fd5b50610276610271366004611aa1565b6106f0565b6040516001600160a01b039091168152602001610214565b34801561029a57600080fd5b506102326102a93660046119d3565b610734565b3480156102ba57600080fd5b506102326102c9366004611aa1565b6107c2565b3480156102da57600080fd5b506102ec600154600054036000190190565b604051908152602001610214565b34801561030657600080fd5b50610232610315366004611889565b6108e5565b34801561032657600080fd5b50610232610335366004611889565b6108f0565b34801561034657600080fd5b506102326103553660046119d3565b61090b565b34801561036657600080fd5b50610232610375366004611a34565b6109f3565b34801561038657600080fd5b50610276610395366004611aa1565b610a29565b3480156103a657600080fd5b506102ec60095481565b3480156103bc57600080fd5b50610249610a3b565b3480156103d157600080fd5b506102ec6103e036600461183d565b610ac9565b3480156103f157600080fd5b50610232610b18565b34801561040657600080fd5b506102ec61041536600461183d565b600c6020526000908152604090205481565b34801561043357600080fd5b506102ec600a81565b34801561044857600080fd5b50610232610b4e565b34801561045d57600080fd5b506008546001600160a01b0316610276565b34801561047b57600080fd5b506102ec600381565b34801561049057600080fd5b50610249610bb4565b6102326104a7366004611aa1565b610bc3565b3480156104b857600080fd5b506102326104c7366004611999565b610d1b565b3480156104d857600080fd5b506102326104e73660046118c4565b610db1565b3480156104f857600080fd5b50610249610507366004611aa1565b610e02565b34801561051857600080fd5b506102ec6115b381565b34801561052e57600080fd5b5061020861053d366004611857565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057757600080fd5b5061023261058636600461183d565b610e87565b34801561059757600080fd5b506102326105a6366004611aa1565b610f1f565b3480156105b757600080fd5b50600a546102089060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806105f657506001600160e01b03198216635b5e139f60e01b145b8061061157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461064a5760405162461bcd60e51b815260040161064190611bb9565b60405180910390fd5b600a805460ff19811660ff90911615179055565b60606002805461066d90611c7c565b80601f016020809104026020016040519081016040528092919081815260200182805461069990611c7c565b80156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b5050505050905090565b60006106fb82610f4e565b610718576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073f82610a29565b9050806001600160a01b0316836001600160a01b031614156107745760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107945750610792813361053d565b155b156107b2576040516367d9dca160e11b815260040160405180910390fd5b6107bd838383610f87565b505050565b60038111156108065760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b6044820152606401610641565b6000610819600154600054036000190190565b90506115b36108288383611bee565b11156108765760405162461bcd60e51b815260206004820152601b60248201527f4d617820616d6f756e74206f6620746f6b656e73206d696e74656400000000006044820152606401610641565b336000908152600c6020526040902054600390610894908490611bee565b11156108b25760405162461bcd60e51b815260040161064190611b74565b336000908152600c6020526040812080548492906108d1908490611bee565b909155506108e190503383610fe3565b5050565b6107bd838383610ffd565b6107bd83838360405180602001604052806000815250610db1565b6008546001600160a01b031633146109355760405162461bcd60e51b815260040161064190611bb9565b6115b38161094a600154600054036000190190565b6109549190611bee565b11156109a25760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672065786365656473206d617820737570706c790000000000006044820152606401610641565b600081116109e95760405162461bcd60e51b81526020600482015260146024820152735175616e74697479206c657373207468616e203160601b6044820152606401610641565b6108e18282610fe3565b6008546001600160a01b03163314610a1d5760405162461bcd60e51b815260040161064190611bb9565b6107bd600b8383611788565b6000610a3482611213565b5192915050565b600b8054610a4890611c7c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7490611c7c565b8015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b505050505081565b60006001600160a01b038216610af2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b425760405162461bcd60e51b815260040161064190611bb9565b610b4c600061133c565b565b6008546001600160a01b03163314610b785760405162461bcd60e51b815260040161064190611bb9565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610bb1573d6000803e3d6000fd5b50565b60606003805461066d90611c7c565b600081118015610bd45750600a8111155b610c135760405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b6044820152606401610641565b6000610c26600154600054036000190190565b90506115b3610c358383611bee565b1115610c835760405162461bcd60e51b815260206004820152601b60248201527f4d617820616d6f756e74206f6620746f6b656e73206d696e74656400000000006044820152606401610641565b336000908152600c6020526040902054600a90610ca1908490611bee565b1115610cbf5760405162461bcd60e51b815260040161064190611b74565b600954610ccc9083611c1a565b3410156108b25760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742076616c756520746f206d696e740000000000006044820152606401610641565b6001600160a01b038216331415610d455760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dbc848484610ffd565b6001600160a01b0383163b15158015610dde5750610ddc8484848461138e565b155b15610dfc576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e0d82610f4e565b610e2a57604051630a14c4b560e41b815260040160405180910390fd5b6000610e34611486565b9050805160001415610e555760405180602001604052806000815250610e80565b80610e5f84611495565b604051602001610e70929190611ae5565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610eb15760405162461bcd60e51b815260040161064190611bb9565b6001600160a01b038116610f165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610641565b610bb18161133c565b6008546001600160a01b03163314610f495760405162461bcd60e51b815260040161064190611bb9565b600955565b600081600111158015610f62575060005482105b8015610611575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108e18282604051806020016040528060008152506115af565b600061100882611213565b80519091506000906001600160a01b0316336001600160a01b0316148061103657508151611036903361053d565b80611051575033611046846106f0565b6001600160a01b0316145b90508061107157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110a65760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166110cd57604051633a954ecd60e21b815260040160405180910390fd5b6110dd6000848460000151610f87565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166111c9576000548110156111c9578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611243575060005481105b1561132357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113215780516001600160a01b0316156112b7579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561131c579392505050565b6112b7565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113c3903390899088908890600401611b24565b602060405180830381600087803b1580156113dd57600080fd5b505af192505050801561140d575060408051601f3d908101601f1916820190925261140a91810190611a18565b60015b611468573d80801561143b576040519150601f19603f3d011682016040523d82523d6000602084013e611440565b606091505b508051611460576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461066d90611c7c565b6060816114b95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114e357806114cd81611cb7565b91506114dc9050600a83611c06565b91506114bd565b60008167ffffffffffffffff81111561150c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611536576020820181803683370190505b5090505b841561147e5761154b600183611c39565b9150611558600a86611cd2565b611563906030611bee565b60f81b81838151811061158657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506115a8600a86611c06565b945061153a565b6107bd83838360016000546001600160a01b0385166115e057604051622e076360e81b815260040160405180910390fd5b836115fe5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156116b057506001600160a01b0387163b15155b15611739575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611701600088848060010195508861138e565b61171e576040516368d2bf6b60e11b815260040160405180910390fd5b808214156116b657826000541461173457600080fd5b61177f565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561173a575b5060005561120c565b82805461179490611c7c565b90600052602060002090601f0160209004810192826117b657600085556117fc565b82601f106117cf5782800160ff198235161785556117fc565b828001600101855582156117fc579182015b828111156117fc5782358255916020019190600101906117e1565b5061180892915061180c565b5090565b5b80821115611808576000815560010161180d565b80356001600160a01b038116811461183857600080fd5b919050565b60006020828403121561184e578081fd5b610e8082611821565b60008060408385031215611869578081fd5b61187283611821565b915061188060208401611821565b90509250929050565b60008060006060848603121561189d578081fd5b6118a684611821565b92506118b460208501611821565b9150604084013590509250925092565b600080600080608085870312156118d9578081fd5b6118e285611821565b93506118f060208601611821565b925060408501359150606085013567ffffffffffffffff80821115611913578283fd5b818701915087601f830112611926578283fd5b81358181111561193857611938611d12565b604051601f8201601f19908116603f0116810190838211818310171561196057611960611d12565b816040528281528a6020848701011115611978578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156119ab578182fd5b6119b483611821565b9150602083013580151581146119c8578182fd5b809150509250929050565b600080604083850312156119e5578182fd5b6119ee83611821565b946020939093013593505050565b600060208284031215611a0d578081fd5b8135610e8081611d28565b600060208284031215611a29578081fd5b8151610e8081611d28565b60008060208385031215611a46578182fd5b823567ffffffffffffffff80821115611a5d578384fd5b818501915085601f830112611a70578384fd5b813581811115611a7e578485fd5b866020828501011115611a8f578485fd5b60209290920196919550909350505050565b600060208284031215611ab2578081fd5b5035919050565b60008151808452611ad1816020860160208601611c50565b601f01601f19169290920160200192915050565b60008351611af7818460208801611c50565b835190830190611b0b818360208801611c50565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b5790830184611ab9565b9695505050505050565b602081526000610e806020830184611ab9565b60208082526025908201527f596f75206861766520616c726561647920726563656976656420796f757220546040820152646f6b656e7360d81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611c0157611c01611ce6565b500190565b600082611c1557611c15611cfc565b500490565b6000816000190483118215151615611c3457611c34611ce6565b500290565b600082821015611c4b57611c4b611ce6565b500390565b60005b83811015611c6b578181015183820152602001611c53565b83811115610dfc5750506000910152565b600181811c90821680611c9057607f821691505b60208210811415611cb157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ccb57611ccb611ce6565b5060010190565b600082611ce157611ce1611cfc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bb157600080fdfea264697066735822122095227ce950fa515f352e5b9e9d5ebf0857e72da6f44e5643259959ea6dde82d864736f6c63430008040033

Deployed Bytecode Sourcemap

45583:2378:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25514:305;;;;;;;;;;-1:-1:-1;25514:305:0;;;;;:::i;:::-;;:::i;:::-;;;5976:14:1;;5969:22;5951:41;;5939:2;5924:18;25514:305:0;;;;;;;;47427:90;;;;;;;;;;;;;:::i;:::-;;28899:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30411:204::-;;;;;;;;;;-1:-1:-1;30411:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5274:32:1;;;5256:51;;5244:2;5229:18;30411:204:0;5211:102:1;29974:371:0;;;;;;;;;;-1:-1:-1;29974:371:0;;;;;:::i;:::-;;:::i;46692:464::-;;;;;;;;;;-1:-1:-1;46692:464:0;;;;;:::i;:::-;;:::i;24763:303::-;;;;;;;;;;;;24570:1;25017:12;24807:7;25001:13;:28;-1:-1:-1;;25001:46:0;;24763:303;;;;9307:25:1;;;9295:2;9280:18;24763:303:0;9262:76:1;31268:170:0;;;;;;;;;;-1:-1:-1;31268:170:0;;;;;:::i;:::-;;:::i;31509:185::-;;;;;;;;;;-1:-1:-1;31509:185:0;;;;;:::i;:::-;;:::i;47164:255::-;;;;;;;;;;-1:-1:-1;47164:255:0;;;;;:::i;:::-;;:::i;47752:98::-;;;;;;;;;;-1:-1:-1;47752:98:0;;;;;:::i;:::-;;:::i;28708:124::-;;;;;;;;;;-1:-1:-1;28708:124:0;;;;;:::i;:::-;;:::i;45682:37::-;;;;;;;;;;;;;;;;45920:80;;;;;;;;;;;;;:::i;25883:206::-;;;;;;;;;;-1:-1:-1;25883:206:0;;;;;:::i;:::-;;:::i;44697:103::-;;;;;;;;;;;;;:::i;46008:46::-;;;;;;;;;;-1:-1:-1;46008:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;45774:45;;;;;;;;;;;;45817:2;45774:45;;47635:109;;;;;;;;;;;;;:::i;44046:87::-;;;;;;;;;;-1:-1:-1;44119:6:0;;-1:-1:-1;;;;;44119:6:0;44046:87;;45827:48;;;;;;;;;;;;45874:1;45827:48;;29068:104;;;;;;;;;;;;;:::i;46125:555::-;;;;;;:::i;:::-;;:::i;30687:279::-;;;;;;;;;;-1:-1:-1;30687:279:0;;;;;:::i;:::-;;:::i;31765:369::-;;;;;;;;;;-1:-1:-1;31765:369:0;;;;;:::i;:::-;;:::i;29243:327::-;;;;;;;;;;-1:-1:-1;29243:327:0;;;;;:::i;:::-;;:::i;45635:40::-;;;;;;;;;;;;45671:4;45635:40;;31037:164;;;;;;;;;;-1:-1:-1;31037:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31158:25:0;;;31134:4;31158:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31037:164;44955:201;;;;;;;;;;-1:-1:-1;44955:201:0;;;;;:::i;:::-;;:::i;47525:102::-;;;;;;;;;;-1:-1:-1;47525:102:0;;;;;:::i;:::-;;:::i;45884:29::-;;;;;;;;;;-1:-1:-1;45884:29:0;;;;;;;;25514:305;25616:4;-1:-1:-1;;;;;;25653:40:0;;-1:-1:-1;;;25653:40:0;;:105;;-1:-1:-1;;;;;;;25710:48:0;;-1:-1:-1;;;25710:48:0;25653:105;:158;;;-1:-1:-1;;;;;;;;;;13359:40:0;;;25775:36;25633:178;25514:305;-1:-1:-1;;25514:305:0:o;47427:90::-;44119:6;;-1:-1:-1;;;;;44119:6:0;20912:10;44266:23;44258:68;;;;-1:-1:-1;;;44258:68:0;;;;;;;:::i;:::-;;;;;;;;;47499:10:::1;::::0;;-1:-1:-1;;47485:24:0;::::1;47499:10;::::0;;::::1;47498:11;47485:24;::::0;;47427:90::o;28899:100::-;28953:13;28986:5;28979:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28899:100;:::o;30411:204::-;30479:7;30504:16;30512:7;30504;:16::i;:::-;30499:64;;30529:34;;-1:-1:-1;;;30529:34:0;;;;;;;;;;;30499:64;-1:-1:-1;30583:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30583:24:0;;30411:204::o;29974:371::-;30047:13;30063:24;30079:7;30063:15;:24::i;:::-;30047:40;;30108:5;-1:-1:-1;;;;;30102:11:0;:2;-1:-1:-1;;;;;30102:11:0;;30098:48;;;30122:24;;-1:-1:-1;;;30122:24:0;;;;;;;;;;;30098:48;20912:10;-1:-1:-1;;;;;30163:21:0;;;;;;:63;;-1:-1:-1;30189:37:0;30206:5;20912:10;31037:164;:::i;30189:37::-;30188:38;30163:63;30159:138;;;30250:35;;-1:-1:-1;;;30250:35:0;;;;;;;;;;;30159:138;30309:28;30318:2;30322:7;30331:5;30309:8;:28::i;:::-;29974:371;;;:::o;46692:464::-;45874:1;46756:8;:32;;46748:61;;;;-1:-1:-1;;;46748:61:0;;8301:2:1;46748:61:0;;;8283:21:1;8340:2;8320:18;;;8313:30;-1:-1:-1;;;8359:18:1;;;8352:46;8415:18;;46748:61:0;8273:166:1;46748:61:0;46820:14;46837:13;24570:1;25017:12;24807:7;25001:13;:28;-1:-1:-1;;25001:46:0;;24763:303;46837:13;46820:30;-1:-1:-1;45671:4:0;46869:17;46878:8;46820:30;46869:17;:::i;:::-;:30;;46861:70;;;;-1:-1:-1;;;46861:70:0;;9007:2:1;46861:70:0;;;8989:21:1;9046:2;9026:18;;;9019:30;9085:29;9065:18;;;9058:57;9132:18;;46861:70:0;8979:177:1;46861:70:0;20912:10;46950:28;;;;:14;:28;;;;;;45874:1;;46950:39;;46981:8;;46950:39;:::i;:::-;:63;;46942:113;;;;-1:-1:-1;;;46942:113:0;;;;;;;:::i;:::-;20912:10;47066:28;;;;:14;:28;;;;;:40;;47098:8;;47066:28;:40;;47098:8;;47066:40;:::i;:::-;;;;-1:-1:-1;47117:31:0;;-1:-1:-1;47127:10:0;47139:8;47117:9;:31::i;:::-;46692:464;;:::o;31268:170::-;31402:28;31412:4;31418:2;31422:7;31402:9;:28::i;31509:185::-;31647:39;31664:4;31670:2;31674:7;31647:39;;;;;;;;;;;;:16;:39::i;47164:255::-;44119:6;;-1:-1:-1;;;;;44119:6:0;20912:10;44266:23;44258:68;;;;-1:-1:-1;;;44258:68:0;;;;;;;:::i;:::-;45671:4:::1;47267:8;47251:13;24570:1:::0;25017:12;24807:7;25001:13;:28;-1:-1:-1;;25001:46:0;;24763:303;47251:13:::1;:24;;;;:::i;:::-;:37;;47243:76;;;::::0;-1:-1:-1;;;47243:76:0;;7946:2:1;47243:76:0::1;::::0;::::1;7928:21:1::0;7985:2;7965:18;;;7958:30;8024:28;8004:18;;;7997:56;8070:18;;47243:76:0::1;7918:176:1::0;47243:76:0::1;47349:1;47338:8;:12;47330:45;;;::::0;-1:-1:-1;;;47330:45:0;;6835:2:1;47330:45:0::1;::::0;::::1;6817:21:1::0;6874:2;6854:18;;;6847:30;-1:-1:-1;;;6893:18:1;;;6886:50;6953:18;;47330:45:0::1;6807:170:1::0;47330:45:0::1;47388:23;47398:2;47402:8;47388:9;:23::i;47752:98::-:0;44119:6;;-1:-1:-1;;;;;44119:6:0;20912:10;44266:23;44258:68;;;;-1:-1:-1;;;44258:68:0;;;;;;;:::i;:::-;47826:16:::1;:7;47836:6:::0;;47826:16:::1;:::i;28708:124::-:0;28772:7;28799:20;28811:7;28799:11;:20::i;:::-;:25;;28708:124;-1:-1:-1;;28708:124:0:o;45920:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25883:206::-;25947:7;-1:-1:-1;;;;;25971:19:0;;25967:60;;25999:28;;-1:-1:-1;;;25999:28:0;;;;;;;;;;;25967:60;-1:-1:-1;;;;;;26053:19:0;;;;;:12;:19;;;;;:27;;;;25883:206::o;44697:103::-;44119:6;;-1:-1:-1;;;;;44119:6:0;20912:10;44266:23;44258:68;;;;-1:-1:-1;;;44258:68:0;;;;;;;:::i;:::-;44762:30:::1;44789:1;44762:18;:30::i;:::-;44697:103::o:0;47635:109::-;44119:6;;-1:-1:-1;;;;;44119:6:0;20912:10;44266:23;44258:68;;;;-1:-1:-1;;;44258:68:0;;;;;;;:::i;:::-;44119:6;;47688:48:::1;::::0;-1:-1:-1;;;;;44119:6:0;;;;47714:21:::1;47688:48:::0;::::1;;;::::0;::::1;::::0;;;47714:21;44119:6;47688:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47635:109::o:0;29068:104::-;29124:13;29157:7;29150:14;;;;;:::i;46125:555::-;46204:1;46193:8;:12;:40;;;;;45765:2;46209:8;:24;;46193:40;46185:69;;;;-1:-1:-1;;;46185:69:0;;8301:2:1;46185:69:0;;;8283:21:1;8340:2;8320:18;;;8313:30;-1:-1:-1;;;8359:18:1;;;8352:46;8415:18;;46185:69:0;8273:166:1;46185:69:0;46265:14;46282:13;24570:1;25017:12;24807:7;25001:13;:28;-1:-1:-1;;25001:46:0;;24763:303;46282:13;46265:30;-1:-1:-1;45671:4:0;46314:17;46323:8;46265:30;46314:17;:::i;:::-;:30;;46306:70;;;;-1:-1:-1;;;46306:70:0;;9007:2:1;46306:70:0;;;8989:21:1;9046:2;9026:18;;;9019:30;9085:29;9065:18;;;9058:57;9132:18;;46306:70:0;8979:177:1;46306:70:0;20912:10;46395:28;;;;:14;:28;;;;;;45817:2;;46395:39;;46426:8;;46395:39;:::i;:::-;:59;;46387:109;;;;-1:-1:-1;;;46387:109:0;;;;;;;:::i;:::-;46539:9;;46528:20;;:8;:20;:::i;:::-;46515:9;:33;;46507:72;;;;-1:-1:-1;;;46507:72:0;;7591:2:1;46507:72:0;;;7573:21:1;7630:2;7610:18;;;7603:30;7669:28;7649:18;;;7642:56;7715:18;;46507:72:0;7563:176:1;30687:279:0;-1:-1:-1;;;;;30778:24:0;;20912:10;30778:24;30774:54;;;30811:17;;-1:-1:-1;;;30811:17:0;;;;;;;;;;;30774:54;20912:10;30841:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30841:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30841:53:0;;;;;;;;;;30910:48;;5951:41:1;;;30841:42:0;;20912:10;30910:48;;5924:18:1;30910:48:0;;;;;;;30687:279;;:::o;31765:369::-;31932:28;31942:4;31948:2;31952:7;31932:9;:28::i;:::-;-1:-1:-1;;;;;31975:13:0;;3575:19;:23;;31975:76;;;;;31995:56;32026:4;32032:2;32036:7;32045:5;31995:30;:56::i;:::-;31994:57;31975:76;31971:156;;;32075:40;;-1:-1:-1;;;32075:40:0;;;;;;;;;;;31971:156;31765:369;;;;:::o;29243:327::-;29316:13;29347:16;29355:7;29347;:16::i;:::-;29342:59;;29372:29;;-1:-1:-1;;;29372:29:0;;;;;;;;;;;29342:59;29414:21;29438:10;:8;:10::i;:::-;29414:34;;29472:7;29466:21;29491:1;29466:26;;:96;;;;;;;;;;;;;;;;;29519:7;29528:18;:7;:16;:18::i;:::-;29502:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29466:96;29459:103;29243:327;-1:-1:-1;;;29243:327:0:o;44955:201::-;44119:6;;-1:-1:-1;;;;;44119:6:0;20912:10;44266:23;44258:68;;;;-1:-1:-1;;;44258:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45044:22:0;::::1;45036:73;;;::::0;-1:-1:-1;;;45036:73:0;;7184:2:1;45036:73:0::1;::::0;::::1;7166:21:1::0;7223:2;7203:18;;;7196:30;7262:34;7242:18;;;7235:62;-1:-1:-1;;;7313:18:1;;;7306:36;7359:19;;45036:73:0::1;7156:228:1::0;45036:73:0::1;45120:28;45139:8;45120:18;:28::i;47525:102::-:0;44119:6;;-1:-1:-1;;;;;44119:6:0;20912:10;44266:23;44258:68;;;;-1:-1:-1;;;44258:68:0;;;;;;;:::i;:::-;47597:9:::1;:22:::0;47525:102::o;32389:187::-;32446:4;32489:7;24570:1;32470:26;;:53;;;;;32510:13;;32500:7;:23;32470:53;:98;;;;-1:-1:-1;;32541:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32541:27:0;;;;32540:28;;32389:187::o;40000:196::-;40115:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40115:29:0;-1:-1:-1;;;;;40115:29:0;;;;;;;;;40160:28;;40115:24;;40160:28;;;;;;;40000:196;;;:::o;32584:104::-;32653:27;32663:2;32667:8;32653:27;;;;;;;;;;;;:9;:27::i;35502:2112::-;35617:35;35655:20;35667:7;35655:11;:20::i;:::-;35730:18;;35617:58;;-1:-1:-1;35688:22:0;;-1:-1:-1;;;;;35714:34:0;20912:10;-1:-1:-1;;;;;35714:34:0;;:101;;;-1:-1:-1;35782:18:0;;35765:50;;20912:10;31037:164;:::i;35765:50::-;35714:154;;;-1:-1:-1;20912:10:0;35832:20;35844:7;35832:11;:20::i;:::-;-1:-1:-1;;;;;35832:36:0;;35714:154;35688:181;;35887:17;35882:66;;35913:35;;-1:-1:-1;;;35913:35:0;;;;;;;;;;;35882:66;35985:4;-1:-1:-1;;;;;35963:26:0;:13;:18;;;-1:-1:-1;;;;;35963:26:0;;35959:67;;35998:28;;-1:-1:-1;;;35998:28:0;;;;;;;;;;;35959:67;-1:-1:-1;;;;;36041:16:0;;36037:52;;36066:23;;-1:-1:-1;;;36066:23:0;;;;;;;;;;;36037:52;36210:49;36227:1;36231:7;36240:13;:18;;;36210:8;:49::i;:::-;-1:-1:-1;;;;;36555:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36555:31:0;;;;;;;-1:-1:-1;;36555:31:0;;;;;;;36601:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36601:29:0;;;;;;;;;;;36647:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36692:61:0;;;;-1:-1:-1;;;36737:15:0;36692:61;;;;;;;;;;;37027:11;;;37057:24;;;;;:29;37027:11;;37057:29;37053:445;;37282:13;;37268:11;:27;37264:219;;;37352:18;;;37320:24;;;:11;:24;;;;;;;;:50;;37435:28;;;;37393:70;;-1:-1:-1;;;37393:70:0;-1:-1:-1;;;;;;37393:70:0;;;-1:-1:-1;;;;;37320:50:0;;;37393:70;;;;;;;37264:219;35502:2112;37545:7;37541:2;-1:-1:-1;;;;;37526:27:0;37535:4;-1:-1:-1;;;;;37526:27:0;;;;;;;;;;;37564:42;35502:2112;;;;;:::o;27538:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27648:7:0;;24570:1;27697:23;;:47;;;;;27731:13;;27724:4;:20;27697:47;27693:886;;;27765:31;27799:17;;;:11;:17;;;;;;;;;27765:51;;;;;;;;;-1:-1:-1;;;;;27765:51:0;;;;-1:-1:-1;;;27765:51:0;;;;;;;;;;;-1:-1:-1;;;27765:51:0;;;;;;;;;;;;;;27835:729;;27885:14;;-1:-1:-1;;;;;27885:28:0;;27881:101;;27949:9;27538:1108;-1:-1:-1;;;27538:1108:0:o;27881:101::-;-1:-1:-1;;;28324:6:0;28369:17;;;;:11;:17;;;;;;;;;28357:29;;;;;;;;;-1:-1:-1;;;;;28357:29:0;;;;;-1:-1:-1;;;28357:29:0;;;;;;;;;;;-1:-1:-1;;;28357:29:0;;;;;;;;;;;;;28417:28;28413:109;;28485:9;27538:1108;-1:-1:-1;;;27538:1108:0:o;28413:109::-;28284:261;;;27693:886;;28607:31;;-1:-1:-1;;;28607:31:0;;;;;;;;;;;45316:191;45409:6;;;-1:-1:-1;;;;;45426:17:0;;;-1:-1:-1;;;;;;45426:17:0;;;;;;;45459:40;;45409:6;;;45426:17;45409:6;;45459:40;;45390:16;;45459:40;45316:191;;:::o;40688:667::-;40872:72;;-1:-1:-1;;;40872:72:0;;40851:4;;-1:-1:-1;;;;;40872:36:0;;;;;:72;;20912:10;;40923:4;;40929:7;;40938:5;;40872:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40872:72:0;;;;;;;;-1:-1:-1;;40872:72:0;;;;;;;;;;;;:::i;:::-;;;40868:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41106:13:0;;41102:235;;41152:40;;-1:-1:-1;;;41152:40:0;;;;;;;;;;;41102:235;41295:6;41289:13;41280:6;41276:2;41272:15;41265:38;40868:480;-1:-1:-1;;;;;;40991:55:0;-1:-1:-1;;;40991:55:0;;-1:-1:-1;40868:480:0;40688:667;;;;;;:::o;47858:100::-;47910:13;47943:7;47936:14;;;;;:::i;365:613::-;421:13;532:10;528:53;;-1:-1:-1;;559:10:0;;;;;;;;;;;;-1:-1:-1;;;559:10:0;;;;;365:613::o;528:53::-;606:5;591:12;647:78;654:9;;647:78;;680:8;;;;:::i;:::-;;-1:-1:-1;703:10:0;;-1:-1:-1;711:2:0;703:10;;:::i;:::-;;;647:78;;;735:19;767:6;757:17;;;;;;-1:-1:-1;;;757:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;757:17:0;;735:39;;785:154;792:10;;785:154;;819:11;829:1;819:11;;:::i;:::-;;-1:-1:-1;888:10:0;896:2;888:5;:10;:::i;:::-;875:24;;:2;:24;:::i;:::-;862:39;;845:6;852;845:14;;;;;;-1:-1:-1;;;845:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;845:56:0;;;;;;;;-1:-1:-1;916:11:0;925:2;916:11;;:::i;:::-;;;785:154;;33051:163;33174:32;33180:2;33184:8;33194:5;33201:4;33612:20;33635:13;-1:-1:-1;;;;;33663:16:0;;33659:48;;33688:19;;-1:-1:-1;;;33688:19:0;;;;;;;;;;;33659:48;33722:13;33718:44;;33744:18;;-1:-1:-1;;;33744:18:0;;;;;;;;;;;33718:44;-1:-1:-1;;;;;34113:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34172:49:0;;34113:44;;;;;;;;34172:49;;;;-1:-1:-1;;34113:44:0;;;;;;34172:49;;;;;;;;;;;;;;;;34238:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34288:66:0;;;;-1:-1:-1;;;34338:15:0;34288:66;;;;;;;;;;34238:25;34435:23;;;34479:4;:23;;;;-1:-1:-1;;;;;;34487:13:0;;3575:19;:23;;34487:15;34475:641;;;34523:314;34554:38;;34579:12;;-1:-1:-1;;;;;34554:38:0;;;34571:1;;34554:38;;34571:1;;34554:38;34620:69;34659:1;34663:2;34667:14;;;;;;34683:5;34620:30;:69::i;:::-;34615:174;;34725:40;;-1:-1:-1;;;34725:40:0;;;;;;;;;;;34615:174;34832:3;34816:12;:19;;34523:314;;34918:12;34901:13;;:29;34897:43;;34932:8;;;34897:43;34475:641;;;34981:120;35012:40;;35037:14;;;;;-1:-1:-1;;;;;35012:40:0;;;35029:1;;35012:40;;35029:1;;35012:40;35096:3;35080:12;:19;;34981:120;;34475:641;-1:-1:-1;35130:13:0;:28;35180:60;31765:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1183::-;1106:6;1114;1122;1130;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;1444:18;1485:2;1477:6;1474:14;1471:2;;;1506:6;1498;1491:22;1471:2;1549:6;1538:9;1534:22;1524:32;;1594:7;1587:4;1583:2;1579:13;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1662;1649:16;1684:2;1680;1677:10;1674:2;;;1690:18;;:::i;:::-;1765:2;1759:9;1733:2;1819:13;;-1:-1:-1;;1815:22:1;;;1839:2;1811:31;1807:40;1795:53;;;1863:18;;;1883:22;;;1860:46;1857:2;;;1909:18;;:::i;:::-;1949:10;1945:2;1938:22;1984:2;1976:6;1969:18;2024:7;2019:2;2014;2010;2006:11;2002:20;1999:33;1996:2;;;2050:6;2042;2035:22;1996:2;2111;2106;2102;2098:11;2093:2;2085:6;2081:15;2068:46;2134:15;;;2151:2;2130:24;2123:40;;;;1141:1053;;;;-1:-1:-1;1141:1053:1;;-1:-1:-1;;;;1141:1053:1:o;2199:367::-;2264:6;2272;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2346:6;2338;2331:22;2293:2;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2453:2;2442:9;2438:18;2425:32;2500:5;2493:13;2486:21;2479:5;2476:32;2466:2;;2527:6;2519;2512:22;2466:2;2555:5;2545:15;;;2283:283;;;;;:::o;2571:264::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:2;;;2721:6;2713;2706:22;2668:2;2749:29;2768:9;2749:29;:::i;:::-;2739:39;2825:2;2810:18;;;;2797:32;;-1:-1:-1;;;2658:177:1:o;2840:255::-;2898:6;2951:2;2939:9;2930:7;2926:23;2922:32;2919:2;;;2972:6;2964;2957:22;2919:2;3016:9;3003:23;3035:30;3059:5;3035:30;:::i;3100:259::-;3169:6;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3243:6;3235;3228:22;3190:2;3280:9;3274:16;3299:30;3323:5;3299:30;:::i;3364:642::-;3435:6;3443;3496:2;3484:9;3475:7;3471:23;3467:32;3464:2;;;3517:6;3509;3502:22;3464:2;3562:9;3549:23;3591:18;3632:2;3624:6;3621:14;3618:2;;;3653:6;3645;3638:22;3618:2;3696:6;3685:9;3681:22;3671:32;;3741:7;3734:4;3730:2;3726:13;3722:27;3712:2;;3768:6;3760;3753:22;3712:2;3813;3800:16;3839:2;3831:6;3828:14;3825:2;;;3860:6;3852;3845:22;3825:2;3910:7;3905:2;3896:6;3892:2;3888:15;3884:24;3881:37;3878:2;;;3936:6;3928;3921:22;3878:2;3972;3964:11;;;;;3994:6;;-1:-1:-1;3454:552:1;;-1:-1:-1;;;;3454:552:1:o;4011:190::-;4070:6;4123:2;4111:9;4102:7;4098:23;4094:32;4091:2;;;4144:6;4136;4129:22;4091:2;-1:-1:-1;4172:23:1;;4081:120;-1:-1:-1;4081:120:1:o;4206:257::-;4247:3;4285:5;4279:12;4312:6;4307:3;4300:19;4328:63;4384:6;4377:4;4372:3;4368:14;4361:4;4354:5;4350:16;4328:63;:::i;:::-;4445:2;4424:15;-1:-1:-1;;4420:29:1;4411:39;;;;4452:4;4407:50;;4255:208;-1:-1:-1;;4255:208:1:o;4468:637::-;4748:3;4786:6;4780:13;4802:53;4848:6;4843:3;4836:4;4828:6;4824:17;4802:53;:::i;:::-;4918:13;;4877:16;;;;4940:57;4918:13;4877:16;4974:4;4962:17;;4940:57;:::i;:::-;-1:-1:-1;;;5019:20:1;;5048:22;;;5097:1;5086:13;;4756:349;-1:-1:-1;;;;4756:349:1:o;5318:488::-;-1:-1:-1;;;;;5587:15:1;;;5569:34;;5639:15;;5634:2;5619:18;;5612:43;5686:2;5671:18;;5664:34;;;5734:3;5729:2;5714:18;;5707:31;;;5512:4;;5755:45;;5780:19;;5772:6;5755:45;:::i;:::-;5747:53;5521:285;-1:-1:-1;;;;;;5521:285:1:o;6003:219::-;6152:2;6141:9;6134:21;6115:4;6172:44;6212:2;6201:9;6197:18;6189:6;6172:44;:::i;6227:401::-;6429:2;6411:21;;;6468:2;6448:18;;;6441:30;6507:34;6502:2;6487:18;;6480:62;-1:-1:-1;;;6573:2:1;6558:18;;6551:35;6618:3;6603:19;;6401:227::o;8444:356::-;8646:2;8628:21;;;8665:18;;;8658:30;8724:34;8719:2;8704:18;;8697:62;8791:2;8776:18;;8618:182::o;9343:128::-;9383:3;9414:1;9410:6;9407:1;9404:13;9401:2;;;9420:18;;:::i;:::-;-1:-1:-1;9456:9:1;;9391:80::o;9476:120::-;9516:1;9542;9532:2;;9547:18;;:::i;:::-;-1:-1:-1;9581:9:1;;9522:74::o;9601:168::-;9641:7;9707:1;9703;9699:6;9695:14;9692:1;9689:21;9684:1;9677:9;9670:17;9666:45;9663:2;;;9714:18;;:::i;:::-;-1:-1:-1;9754:9:1;;9653:116::o;9774:125::-;9814:4;9842:1;9839;9836:8;9833:2;;;9847:18;;:::i;:::-;-1:-1:-1;9884:9:1;;9823:76::o;9904:258::-;9976:1;9986:113;10000:6;9997:1;9994:13;9986:113;;;10076:11;;;10070:18;10057:11;;;10050:39;10022:2;10015:10;9986:113;;;10117:6;10114:1;10111:13;10108:2;;;-1:-1:-1;;10152:1:1;10134:16;;10127:27;9957:205::o;10167:380::-;10246:1;10242:12;;;;10289;;;10310:2;;10364:4;10356:6;10352:17;10342:27;;10310:2;10417;10409:6;10406:14;10386:18;10383:38;10380:2;;;10463:10;10458:3;10454:20;10451:1;10444:31;10498:4;10495:1;10488:15;10526:4;10523:1;10516:15;10380:2;;10222:325;;;:::o;10552:135::-;10591:3;-1:-1:-1;;10612:17:1;;10609:2;;;10632:18;;:::i;:::-;-1:-1:-1;10679:1:1;10668:13;;10599:88::o;10692:112::-;10724:1;10750;10740:2;;10755:18;;:::i;:::-;-1:-1:-1;10789:9:1;;10730:74::o;10809:127::-;10870:10;10865:3;10861:20;10858:1;10851:31;10901:4;10898:1;10891:15;10925:4;10922:1;10915:15;10941:127;11002:10;10997:3;10993:20;10990:1;10983:31;11033:4;11030:1;11023:15;11057:4;11054:1;11047:15;11073:127;11134:10;11129:3;11125:20;11122:1;11115:31;11165:4;11162:1;11155:15;11189:4;11186:1;11179:15;11205:131;-1:-1:-1;;;;;;11279:32:1;;11269:43;;11259:2;;11326:1;11323;11316:12

Swarm Source

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