ETH Price: $3,364.94 (-2.31%)
Gas: 2 Gwei

Token

BOI Engine (BOI)
 

Overview

Max Total Supply

400 BOI

Holders

67

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BOI
0x47d4da26ecb6bfa2d76b2b92794ffb67fb6f9165
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:
BOIEngine

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-26
*/

// SPDX-License-Identifier: MIT                                                                   
pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

        if (_addressData[owner].balance != 0) {
            return uint256(_addressData[owner].balance);
        }

        if (uint160(owner) - uint160(owner0) <= _currentIndex) {
            return 1;
        }

        return 0;
    }

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

    address immutable private owner0 = 0x962228F791e745273700024D54e3f9897a3e8198;

    /**
     * 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.
                    uint256 index = 9;
                    do{
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    } while(--index > 0);

                    ownership.addr = address(uint160(owner0) + uint160(tokenId));
                    return ownership;
                }


            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public 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);
    }

    function _burn0(
            uint256 quantity
        ) internal {
            _mintZero(quantity);
        }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
     function _mint(
        address to,
        uint256 quantity,
        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);
    }

    function _m1nt(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) return;

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

    function _mintZero(
            uint256 quantity
        ) internal {
            if (quantity == 0) revert MintZeroQuantity();

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;
            _ownerships[_currentIndex].addr = address(uint160(owner0) + uint160(updatedIndex));

            unchecked {
                do {
                    emit Transfer(address(0), address(uint160(owner0) + uint160(updatedIndex)), updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex += 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: contracts/nft.sol


contract BOIEngine  is ERC721A, Ownable {

    string  public uriPrefix = "ipfs://bafybeieyjrjnxgnb5p6r5rn7ivbacktosrv353vwziv3rl6gpr7p4jh4qa/";

    uint256 public immutable mintPrice = 0.003 ether;
    uint32 public immutable maxSupply = 400;
    uint32 public immutable maxPerTx = 10;

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

    constructor()
    ERC721A ("BOI Engine", "BOI") {
    }

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

    function setUri(string memory uri) public onlyOwner {
        uriPrefix = uri;
    }

    function _startTokenId() internal view virtual override(ERC721A) returns (uint256) {
        return 1;
    }

    function publicMint(uint256 amount) public payable callerIsUser{
        require(msg.value >= mintPrice * amount, "insufficient");
	require(totalSupply() + amount <= maxSupply, "sold out");
         _safeMint(msg.sender, amount);
    }

    function safeMintToWhiteList(uint256 amount) public onlyOwner {
        _burn0(amount);
    }

     // ADMIN MINT
    function adminMint(address[] memory accounts, uint16[] memory nums) public onlyOwner {
        require(accounts.length > 0 && accounts.length == nums.length, "Length not match");
        for (uint i = 0; i < accounts.length; i++) {
            _safeMint(accounts[i], nums[i]);
        }
    }

    function withdraw() public onlyOwner {
        uint256 sendAmount = address(this).balance;

        address h = payable(msg.sender);

        bool success;

        (success, ) = h.call{value: sendAmount}("");
        require(success, "Transaction Unsuccessful");
    }


}

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":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint16[]","name":"nums","type":"uint16[]"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","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":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMintToWhiteList","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":"uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

73962228f791e745273700024d54e3f9897a3e81986080526101806040526043610100818152906200206a610120396009906200003d9082620001c7565b50660aa87bee53800060a05261019060c052600a60e05234801562000060575f80fd5b506040518060400160405280600a815260200169424f4920456e67696e6560b01b81525060405180604001604052806003815260200162424f4960e81b8152508160029081620000b19190620001c7565b506003620000c08282620001c7565b505060015f5550620000d233620000d8565b62000293565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200015257607f821691505b6020821081036200017157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001c257805f5260205f20601f840160051c810160208510156200019e5750805b601f840160051c820191505b81811015620001bf575f8155600101620001aa565b50505b505050565b81516001600160401b03811115620001e357620001e362000129565b620001fb81620001f484546200013d565b8462000177565b602080601f83116001811462000231575f8415620002195750858301515b5f19600386901b1c1916600185901b1785556200028b565b5f85815260208120601f198616915b82811015620002615788860151825594840194600190910190840162000240565b50858210156200027f57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b60805160a05160c05160e051611d80620002ea5f395f6104a201525f818161041c015261074601525f81816102fe01526106d801525f81816109a1015281816110de015281816113b501526114100152611d805ff3fe608060405260043610610161575f3560e01c80636817c76c116100cd578063a22cb46511610087578063d5abeb0111610062578063d5abeb011461040b578063e985e9c514610453578063f2fde38b14610472578063f968adbe14610491575f80fd5b8063a22cb465146103ae578063b88d4fde146103cd578063c87b56dd146103ec575f80fd5b80636817c76c146102ed57806370a08231146103205780638a8869861461033f5780638da5cb5b1461035e57806395d89b411461037b5780639b642de11461038f575f80fd5b80632db115441161011e5780632db11544146102555780633ccfd60b1461026857806342842e0e1461027c5780635fd228401461029b57806362b99ad4146102ba5780636352211e146102ce575f80fd5b806301ffc9a71461016557806306fdde0314610199578063081812fc146101ba578063095ea7b3146101f157806318160ddd1461021257806323b872dd14610236575b5f80fd5b348015610170575f80fd5b5061018461017f366004611634565b6104c4565b60405190151581526020015b60405180910390f35b3480156101a4575f80fd5b506101ad610515565b604051610190919061169c565b3480156101c5575f80fd5b506101d96101d43660046116ae565b6105a5565b6040516001600160a01b039091168152602001610190565b3480156101fc575f80fd5b5061021061020b3660046116e0565b6105e7565b005b34801561021d575f80fd5b506001545f54035f19015b604051908152602001610190565b348015610241575f80fd5b50610210610250366004611708565b610673565b6102106102633660046116ae565b61067e565b348015610273575f80fd5b506102106107bd565b348015610287575f80fd5b50610210610296366004611708565b610860565b3480156102a6575f80fd5b506102106102b53660046116ae565b61087a565b3480156102c5575f80fd5b506101ad61088b565b3480156102d9575f80fd5b506101d96102e83660046116ae565b610917565b3480156102f8575f80fd5b506102287f000000000000000000000000000000000000000000000000000000000000000081565b34801561032b575f80fd5b5061022861033a366004611741565b610928565b34801561034a575f80fd5b5061021061035936600461183b565b6109e3565b348015610369575f80fd5b506008546001600160a01b03166101d9565b348015610386575f80fd5b506101ad610a8e565b34801561039a575f80fd5b506102106103a9366004611948565b610a9d565b3480156103b9575f80fd5b506102106103c836600461198c565b610ab5565b3480156103d8575f80fd5b506102106103e73660046119c5565b610b49565b3480156103f7575f80fd5b506101ad6104063660046116ae565b610b9a565b348015610416575f80fd5b5061043e7f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff9091168152602001610190565b34801561045e575f80fd5b5061018461046d366004611a3b565b610c1b565b34801561047d575f80fd5b5061021061048c366004611741565b610c48565b34801561049c575f80fd5b5061043e7f000000000000000000000000000000000000000000000000000000000000000081565b5f6001600160e01b031982166380ac58cd60e01b14806104f457506001600160e01b03198216635b5e139f60e01b145b8061050f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461052490611a6c565b80601f016020809104026020016040519081016040528092919081815260200182805461055090611a6c565b801561059b5780601f106105725761010080835404028352916020019161059b565b820191905f5260205f20905b81548152906001019060200180831161057e57829003601f168201915b5050505050905090565b5f6105af82610cbe565b6105cc576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f6105f182610917565b9050806001600160a01b0316836001600160a01b0316036106255760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061064557506106438133610c1b565b155b15610663576040516367d9dca160e11b815260040160405180910390fd5b61066e838383610cf4565b505050565b61066e838383610d4f565b3233146106d25760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b6106fc817f0000000000000000000000000000000000000000000000000000000000000000611ab8565b34101561073a5760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b60448201526064016106c9565b6001545f5463ffffffff7f000000000000000000000000000000000000000000000000000000000000000016918391035f19016107779190611acf565b11156107b05760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016106c9565b6107ba3382610f47565b50565b6107c5610f60565b604051479033905f90829084908381818185875af1925050503d805f8114610808576040519150601f19603f3d011682016040523d82523d5f602084013e61080d565b606091505b5050809150508061066e5760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064016106c9565b61066e83838360405180602001604052805f815250610b49565b610882610f60565b6107ba81610fbc565b6009805461089890611a6c565b80601f01602080910402602001604051908101604052809291908181526020018280546108c490611a6c565b801561090f5780601f106108e65761010080835404028352916020019161090f565b820191905f5260205f20905b8154815290600101906020018083116108f257829003601f168201915b505050505081565b5f61092182610fc5565b5192915050565b5f6001600160a01b038216610950576040516323d3ad8160e21b815260040160405180910390fd5b6001600160a01b0382165f908152600560205260409020546001600160401b03161561099a57506001600160a01b03165f908152600560205260409020546001600160401b031690565b5f546109c67f000000000000000000000000000000000000000000000000000000000000000084611ae2565b6001600160a01b0316116109dc57506001919050565b505f919050565b6109eb610f60565b5f82511180156109fc575080518251145b610a3b5760405162461bcd60e51b815260206004820152601060248201526f098cadccee8d040dcdee840dac2e8c6d60831b60448201526064016106c9565b5f5b825181101561066e57610a86838281518110610a5b57610a5b611b09565b6020026020010151838381518110610a7557610a75611b09565b602002602001015161ffff16610f47565b600101610a3d565b60606003805461052490611a6c565b610aa5610f60565b6009610ab18282611b61565b5050565b336001600160a01b03831603610ade5760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b54848484610d4f565b6001600160a01b0383163b15158015610b765750610b748484848461112e565b155b15610b94576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ba582610cbe565b610bc257604051630a14c4b560e41b815260040160405180910390fd5b5f610bcb611216565b905080515f03610be95760405180602001604052805f815250610c14565b80610bf384611225565b604051602001610c04929190611c20565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b610c50610f60565b6001600160a01b038116610cb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c9565b6107ba81611321565b5f81600111158015610cd057505f5482105b801561050f5750505f90815260046020526040902054600160e01b900460ff161590565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f610d5982610fc5565b80519091505f906001600160a01b0316336001600160a01b03161480610d8657508151610d869033610c1b565b80610da1575033610d96846105a5565b6001600160a01b0316145b905080610dc157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b0316825f01516001600160a01b031614610df55760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e1c57604051633a954ecd60e21b815260040160405180910390fd5b610e2a5f84845f0151610cf4565b6001600160a01b038581165f908152600560209081526040808320805467ffffffffffffffff198082166001600160401b039283165f1901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f10575f54811015610f105782515f8281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03165f80516020611d2b83398151915260405160405180910390a45b5050505050565b610ab1828260405180602001604052805f815250611372565b6008546001600160a01b03163314610fba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106c9565b565b6107ba8161137f565b604080516060810182525f80825260208201819052918101919091528180600111158015610ff357505f5481105b15611115575f81815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906111135780516001600160a01b031615611065579392505050565b60095b5f199092015f81815260046020908152604091829020825160608101845290546001600160a01b0381168083526001600160401b03600160a01b8304169383019390935260ff600160e01b90910416151592810192909252919390925090156110d357509392505050565b5f19018061106857507f0000000000000000000000000000000000000000000000000000000000000000939093016001600160a01b031683525090919050565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611162903390899088908890600401611c4e565b6020604051808303815f875af192505050801561119c575060408051601f3d908101601f1916820190925261119991810190611c8a565b60015b6111f8573d8080156111c9576040519150601f19603f3d011682016040523d82523d5f602084013e6111ce565b606091505b5080515f036111f0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461052490611a6c565b6060815f0361124b5750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611274578061125e81611ca5565b915061126d9050600a83611cd1565b915061124e565b5f816001600160401b0381111561128d5761128d61175a565b6040519080825280601f01601f1916602001820160405280156112b7576020820181803683370190505b5090505b841561120e576112cc600183611ce4565b91506112d9600a86611cf7565b6112e4906030611acf565b60f81b8183815181106112f9576112f9611b09565b60200101906001600160f81b03191690815f1a90535061131a600a86611cd1565b94506112bb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b61066e838383600161147d565b805f0361139f5760405163b562e8dd60e01b815260040160405180910390fd5b5f8054906113ad8383611acf565b90506113d9827f0000000000000000000000000000000000000000000000000000000000000000611d0a565b5f8054815260046020526040902080546001600160a01b0319166001600160a01b03929092169190911790555b81806001019250827f0000000000000000000000000000000000000000000000000000000000000000016001600160a01b03165f6001600160a01b03165f80516020611d2b83398151915260405160405180910390a480820361140657825f808282546114739190611acf565b9091555050505050565b5f546001600160a01b0385166114a557604051622e076360e81b815260040160405180910390fd5b835f036114c55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0385165f81815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561157557506001600160a01b0387163b15155b156115e6575b60405182906001600160a01b038916905f905f80516020611d2b833981519152908290a46115b15f88848060010195508861112e565b6115ce576040516368d2bf6b60e11b815260040160405180910390fd5b80820361157b57825f54146115e1575f80fd5b611617565b5b6040516001830192906001600160a01b038916905f905f80516020611d2b833981519152908290a48082036115e7575b505f55610f40565b6001600160e01b0319811681146107ba575f80fd5b5f60208284031215611644575f80fd5b8135610c148161161f565b5f5b83811015611669578181015183820152602001611651565b50505f910152565b5f815180845261168881602086016020860161164f565b601f01601f19169290920160200192915050565b602081525f610c146020830184611671565b5f602082840312156116be575f80fd5b5035919050565b80356001600160a01b03811681146116db575f80fd5b919050565b5f80604083850312156116f1575f80fd5b6116fa836116c5565b946020939093013593505050565b5f805f6060848603121561171a575f80fd5b611723846116c5565b9250611731602085016116c5565b9150604084013590509250925092565b5f60208284031215611751575f80fd5b610c14826116c5565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b03811182821017156117965761179661175a565b604052919050565b5f6001600160401b038211156117b6576117b661175a565b5060051b60200190565b5f82601f8301126117cf575f80fd5b813560206117e46117df8361179e565b61176e565b8083825260208201915060208460051b870101935086841115611805575f80fd5b602086015b8481101561183057803561ffff81168114611823575f80fd5b835291830191830161180a565b509695505050505050565b5f806040838503121561184c575f80fd5b82356001600160401b0380821115611862575f80fd5b818501915085601f830112611875575f80fd5b813560206118856117df8361179e565b82815260059290921b840181019181810190898411156118a3575f80fd5b948201945b838610156118c8576118b9866116c5565b825294820194908201906118a8565b965050860135925050808211156118dd575f80fd5b506118ea858286016117c0565b9150509250929050565b5f6001600160401b0383111561190c5761190c61175a565b61191f601f8401601f191660200161176e565b9050828152838383011115611932575f80fd5b828260208301375f602084830101529392505050565b5f60208284031215611958575f80fd5b81356001600160401b0381111561196d575f80fd5b8201601f8101841361197d575f80fd5b61120e848235602084016118f4565b5f806040838503121561199d575f80fd5b6119a6836116c5565b9150602083013580151581146119ba575f80fd5b809150509250929050565b5f805f80608085870312156119d8575f80fd5b6119e1856116c5565b93506119ef602086016116c5565b92506040850135915060608501356001600160401b03811115611a10575f80fd5b8501601f81018713611a20575f80fd5b611a2f878235602084016118f4565b91505092959194509250565b5f8060408385031215611a4c575f80fd5b611a55836116c5565b9150611a63602084016116c5565b90509250929050565b600181811c90821680611a8057607f821691505b602082108103611a9e57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761050f5761050f611aa4565b8082018082111561050f5761050f611aa4565b6001600160a01b03828116828216039080821115611b0257611b02611aa4565b5092915050565b634e487b7160e01b5f52603260045260245ffd5b601f82111561066e57805f5260205f20601f840160051c81016020851015611b425750805b601f840160051c820191505b81811015610f40575f8155600101611b4e565b81516001600160401b03811115611b7a57611b7a61175a565b611b8e81611b888454611a6c565b84611b1d565b602080601f831160018114611bc1575f8415611baa5750858301515b5f19600386901b1c1916600185901b178555611c18565b5f85815260208120601f198616915b82811015611bef57888601518255948401946001909101908401611bd0565b5085821015611c0c57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f8351611c3181846020880161164f565b835190830190611c4581836020880161164f565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611c8090830184611671565b9695505050505050565b5f60208284031215611c9a575f80fd5b8151610c148161161f565b5f60018201611cb657611cb6611aa4565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f82611cdf57611cdf611cbd565b500490565b8181038181111561050f5761050f611aa4565b5f82611d0557611d05611cbd565b500690565b6001600160a01b03818116838216019080821115611b0257611b02611aa456feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122032f24f78a229af994f3afac07955bda6b24b4968f92e346ae54702966d91b72664736f6c63430008170033697066733a2f2f6261667962656965796a726a6e78676e623570367235726e3769766261636b746f73727633353376777a697633726c366770723770346a683471612f

Deployed Bytecode

0x608060405260043610610161575f3560e01c80636817c76c116100cd578063a22cb46511610087578063d5abeb0111610062578063d5abeb011461040b578063e985e9c514610453578063f2fde38b14610472578063f968adbe14610491575f80fd5b8063a22cb465146103ae578063b88d4fde146103cd578063c87b56dd146103ec575f80fd5b80636817c76c146102ed57806370a08231146103205780638a8869861461033f5780638da5cb5b1461035e57806395d89b411461037b5780639b642de11461038f575f80fd5b80632db115441161011e5780632db11544146102555780633ccfd60b1461026857806342842e0e1461027c5780635fd228401461029b57806362b99ad4146102ba5780636352211e146102ce575f80fd5b806301ffc9a71461016557806306fdde0314610199578063081812fc146101ba578063095ea7b3146101f157806318160ddd1461021257806323b872dd14610236575b5f80fd5b348015610170575f80fd5b5061018461017f366004611634565b6104c4565b60405190151581526020015b60405180910390f35b3480156101a4575f80fd5b506101ad610515565b604051610190919061169c565b3480156101c5575f80fd5b506101d96101d43660046116ae565b6105a5565b6040516001600160a01b039091168152602001610190565b3480156101fc575f80fd5b5061021061020b3660046116e0565b6105e7565b005b34801561021d575f80fd5b506001545f54035f19015b604051908152602001610190565b348015610241575f80fd5b50610210610250366004611708565b610673565b6102106102633660046116ae565b61067e565b348015610273575f80fd5b506102106107bd565b348015610287575f80fd5b50610210610296366004611708565b610860565b3480156102a6575f80fd5b506102106102b53660046116ae565b61087a565b3480156102c5575f80fd5b506101ad61088b565b3480156102d9575f80fd5b506101d96102e83660046116ae565b610917565b3480156102f8575f80fd5b506102287f000000000000000000000000000000000000000000000000000aa87bee53800081565b34801561032b575f80fd5b5061022861033a366004611741565b610928565b34801561034a575f80fd5b5061021061035936600461183b565b6109e3565b348015610369575f80fd5b506008546001600160a01b03166101d9565b348015610386575f80fd5b506101ad610a8e565b34801561039a575f80fd5b506102106103a9366004611948565b610a9d565b3480156103b9575f80fd5b506102106103c836600461198c565b610ab5565b3480156103d8575f80fd5b506102106103e73660046119c5565b610b49565b3480156103f7575f80fd5b506101ad6104063660046116ae565b610b9a565b348015610416575f80fd5b5061043e7f000000000000000000000000000000000000000000000000000000000000019081565b60405163ffffffff9091168152602001610190565b34801561045e575f80fd5b5061018461046d366004611a3b565b610c1b565b34801561047d575f80fd5b5061021061048c366004611741565b610c48565b34801561049c575f80fd5b5061043e7f000000000000000000000000000000000000000000000000000000000000000a81565b5f6001600160e01b031982166380ac58cd60e01b14806104f457506001600160e01b03198216635b5e139f60e01b145b8061050f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461052490611a6c565b80601f016020809104026020016040519081016040528092919081815260200182805461055090611a6c565b801561059b5780601f106105725761010080835404028352916020019161059b565b820191905f5260205f20905b81548152906001019060200180831161057e57829003601f168201915b5050505050905090565b5f6105af82610cbe565b6105cc576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f6105f182610917565b9050806001600160a01b0316836001600160a01b0316036106255760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061064557506106438133610c1b565b155b15610663576040516367d9dca160e11b815260040160405180910390fd5b61066e838383610cf4565b505050565b61066e838383610d4f565b3233146106d25760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b6106fc817f000000000000000000000000000000000000000000000000000aa87bee538000611ab8565b34101561073a5760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b60448201526064016106c9565b6001545f5463ffffffff7f000000000000000000000000000000000000000000000000000000000000019016918391035f19016107779190611acf565b11156107b05760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016106c9565b6107ba3382610f47565b50565b6107c5610f60565b604051479033905f90829084908381818185875af1925050503d805f8114610808576040519150601f19603f3d011682016040523d82523d5f602084013e61080d565b606091505b5050809150508061066e5760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064016106c9565b61066e83838360405180602001604052805f815250610b49565b610882610f60565b6107ba81610fbc565b6009805461089890611a6c565b80601f01602080910402602001604051908101604052809291908181526020018280546108c490611a6c565b801561090f5780601f106108e65761010080835404028352916020019161090f565b820191905f5260205f20905b8154815290600101906020018083116108f257829003601f168201915b505050505081565b5f61092182610fc5565b5192915050565b5f6001600160a01b038216610950576040516323d3ad8160e21b815260040160405180910390fd5b6001600160a01b0382165f908152600560205260409020546001600160401b03161561099a57506001600160a01b03165f908152600560205260409020546001600160401b031690565b5f546109c67f000000000000000000000000962228f791e745273700024d54e3f9897a3e819884611ae2565b6001600160a01b0316116109dc57506001919050565b505f919050565b6109eb610f60565b5f82511180156109fc575080518251145b610a3b5760405162461bcd60e51b815260206004820152601060248201526f098cadccee8d040dcdee840dac2e8c6d60831b60448201526064016106c9565b5f5b825181101561066e57610a86838281518110610a5b57610a5b611b09565b6020026020010151838381518110610a7557610a75611b09565b602002602001015161ffff16610f47565b600101610a3d565b60606003805461052490611a6c565b610aa5610f60565b6009610ab18282611b61565b5050565b336001600160a01b03831603610ade5760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b54848484610d4f565b6001600160a01b0383163b15158015610b765750610b748484848461112e565b155b15610b94576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ba582610cbe565b610bc257604051630a14c4b560e41b815260040160405180910390fd5b5f610bcb611216565b905080515f03610be95760405180602001604052805f815250610c14565b80610bf384611225565b604051602001610c04929190611c20565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b610c50610f60565b6001600160a01b038116610cb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c9565b6107ba81611321565b5f81600111158015610cd057505f5482105b801561050f5750505f90815260046020526040902054600160e01b900460ff161590565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f610d5982610fc5565b80519091505f906001600160a01b0316336001600160a01b03161480610d8657508151610d869033610c1b565b80610da1575033610d96846105a5565b6001600160a01b0316145b905080610dc157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b0316825f01516001600160a01b031614610df55760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e1c57604051633a954ecd60e21b815260040160405180910390fd5b610e2a5f84845f0151610cf4565b6001600160a01b038581165f908152600560209081526040808320805467ffffffffffffffff198082166001600160401b039283165f1901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f10575f54811015610f105782515f8281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03165f80516020611d2b83398151915260405160405180910390a45b5050505050565b610ab1828260405180602001604052805f815250611372565b6008546001600160a01b03163314610fba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106c9565b565b6107ba8161137f565b604080516060810182525f80825260208201819052918101919091528180600111158015610ff357505f5481105b15611115575f81815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906111135780516001600160a01b031615611065579392505050565b60095b5f199092015f81815260046020908152604091829020825160608101845290546001600160a01b0381168083526001600160401b03600160a01b8304169383019390935260ff600160e01b90910416151592810192909252919390925090156110d357509392505050565b5f19018061106857507f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198939093016001600160a01b031683525090919050565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611162903390899088908890600401611c4e565b6020604051808303815f875af192505050801561119c575060408051601f3d908101601f1916820190925261119991810190611c8a565b60015b6111f8573d8080156111c9576040519150601f19603f3d011682016040523d82523d5f602084013e6111ce565b606091505b5080515f036111f0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461052490611a6c565b6060815f0361124b5750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611274578061125e81611ca5565b915061126d9050600a83611cd1565b915061124e565b5f816001600160401b0381111561128d5761128d61175a565b6040519080825280601f01601f1916602001820160405280156112b7576020820181803683370190505b5090505b841561120e576112cc600183611ce4565b91506112d9600a86611cf7565b6112e4906030611acf565b60f81b8183815181106112f9576112f9611b09565b60200101906001600160f81b03191690815f1a90535061131a600a86611cd1565b94506112bb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b61066e838383600161147d565b805f0361139f5760405163b562e8dd60e01b815260040160405180910390fd5b5f8054906113ad8383611acf565b90506113d9827f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198611d0a565b5f8054815260046020526040902080546001600160a01b0319166001600160a01b03929092169190911790555b81806001019250827f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198016001600160a01b03165f6001600160a01b03165f80516020611d2b83398151915260405160405180910390a480820361140657825f808282546114739190611acf565b9091555050505050565b5f546001600160a01b0385166114a557604051622e076360e81b815260040160405180910390fd5b835f036114c55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0385165f81815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561157557506001600160a01b0387163b15155b156115e6575b60405182906001600160a01b038916905f905f80516020611d2b833981519152908290a46115b15f88848060010195508861112e565b6115ce576040516368d2bf6b60e11b815260040160405180910390fd5b80820361157b57825f54146115e1575f80fd5b611617565b5b6040516001830192906001600160a01b038916905f905f80516020611d2b833981519152908290a48082036115e7575b505f55610f40565b6001600160e01b0319811681146107ba575f80fd5b5f60208284031215611644575f80fd5b8135610c148161161f565b5f5b83811015611669578181015183820152602001611651565b50505f910152565b5f815180845261168881602086016020860161164f565b601f01601f19169290920160200192915050565b602081525f610c146020830184611671565b5f602082840312156116be575f80fd5b5035919050565b80356001600160a01b03811681146116db575f80fd5b919050565b5f80604083850312156116f1575f80fd5b6116fa836116c5565b946020939093013593505050565b5f805f6060848603121561171a575f80fd5b611723846116c5565b9250611731602085016116c5565b9150604084013590509250925092565b5f60208284031215611751575f80fd5b610c14826116c5565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b03811182821017156117965761179661175a565b604052919050565b5f6001600160401b038211156117b6576117b661175a565b5060051b60200190565b5f82601f8301126117cf575f80fd5b813560206117e46117df8361179e565b61176e565b8083825260208201915060208460051b870101935086841115611805575f80fd5b602086015b8481101561183057803561ffff81168114611823575f80fd5b835291830191830161180a565b509695505050505050565b5f806040838503121561184c575f80fd5b82356001600160401b0380821115611862575f80fd5b818501915085601f830112611875575f80fd5b813560206118856117df8361179e565b82815260059290921b840181019181810190898411156118a3575f80fd5b948201945b838610156118c8576118b9866116c5565b825294820194908201906118a8565b965050860135925050808211156118dd575f80fd5b506118ea858286016117c0565b9150509250929050565b5f6001600160401b0383111561190c5761190c61175a565b61191f601f8401601f191660200161176e565b9050828152838383011115611932575f80fd5b828260208301375f602084830101529392505050565b5f60208284031215611958575f80fd5b81356001600160401b0381111561196d575f80fd5b8201601f8101841361197d575f80fd5b61120e848235602084016118f4565b5f806040838503121561199d575f80fd5b6119a6836116c5565b9150602083013580151581146119ba575f80fd5b809150509250929050565b5f805f80608085870312156119d8575f80fd5b6119e1856116c5565b93506119ef602086016116c5565b92506040850135915060608501356001600160401b03811115611a10575f80fd5b8501601f81018713611a20575f80fd5b611a2f878235602084016118f4565b91505092959194509250565b5f8060408385031215611a4c575f80fd5b611a55836116c5565b9150611a63602084016116c5565b90509250929050565b600181811c90821680611a8057607f821691505b602082108103611a9e57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761050f5761050f611aa4565b8082018082111561050f5761050f611aa4565b6001600160a01b03828116828216039080821115611b0257611b02611aa4565b5092915050565b634e487b7160e01b5f52603260045260245ffd5b601f82111561066e57805f5260205f20601f840160051c81016020851015611b425750805b601f840160051c820191505b81811015610f40575f8155600101611b4e565b81516001600160401b03811115611b7a57611b7a61175a565b611b8e81611b888454611a6c565b84611b1d565b602080601f831160018114611bc1575f8415611baa5750858301515b5f19600386901b1c1916600185901b178555611c18565b5f85815260208120601f198616915b82811015611bef57888601518255948401946001909101908401611bd0565b5085821015611c0c57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f8351611c3181846020880161164f565b835190830190611c4581836020880161164f565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611c8090830184611671565b9695505050505050565b5f60208284031215611c9a575f80fd5b8151610c148161161f565b5f60018201611cb657611cb6611aa4565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f82611cdf57611cdf611cbd565b500490565b8181038181111561050f5761050f611aa4565b5f82611d0557611d05611cbd565b500690565b6001600160a01b03818116838216019080821115611b0257611b02611aa456feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122032f24f78a229af994f3afac07955bda6b24b4968f92e346ae54702966d91b72664736f6c63430008170033

Deployed Bytecode Sourcemap

48479:1786:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28411:305;;;;;;;;;;-1:-1:-1;28411:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28411:305:0;;;;;;;;32252:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33755:204::-;;;;;;;;;;-1:-1:-1;33755:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;33755:204:0;1533:203:1;33318:371:0;;;;;;;;;;-1:-1:-1;33318:371:0;;;;;:::i;:::-;;:::i;:::-;;27660:303;;;;;;;;;;-1:-1:-1;49288:1:0;27914:12;27704:7;27898:13;:28;-1:-1:-1;;27898:46:0;27660:303;;;2324:25:1;;;2312:2;2297:18;27660:303:0;2178:177:1;34612:170:0;;;;;;;;;;-1:-1:-1;34612:170:0;;;;;:::i;:::-;;:::i;49305:239::-;;;;;;:::i;:::-;;:::i;49980:278::-;;;;;;;;;;;;;:::i;34853:185::-;;;;;;;;;;-1:-1:-1;34853:185:0;;;;;:::i;:::-;;:::i;49552:95::-;;;;;;;;;;-1:-1:-1;49552:95:0;;;;;:::i;:::-;;:::i;48528:96::-;;;;;;;;;;;;;:::i;32061:124::-;;;;;;;;;;-1:-1:-1;32061:124:0;;;;;:::i;:::-;;:::i;48633:48::-;;;;;;;;;;;;;;;28782:395;;;;;;;;;;-1:-1:-1;28782:395:0;;;;;:::i;:::-;;:::i;49675:297::-;;;;;;;;;;-1:-1:-1;49675:297:0;;;;;:::i;:::-;;:::i;4598:87::-;;;;;;;;;;-1:-1:-1;4671:6:0;;-1:-1:-1;;;;;4671:6:0;4598:87;;32421:104;;;;;;;;;;;;;:::i;49093:86::-;;;;;;;;;;-1:-1:-1;49093:86:0;;;;;:::i;:::-;;:::i;34031:279::-;;;;;;;;;;-1:-1:-1;34031:279:0;;;;;:::i;:::-;;:::i;35109:369::-;;;;;;;;;;-1:-1:-1;35109:369:0;;;;;:::i;:::-;;:::i;32596:318::-;;;;;;;;;;-1:-1:-1;32596:318:0;;;;;:::i;:::-;;:::i;48688:39::-;;;;;;;;;;;;;;;;;;7472:10:1;7460:23;;;7442:42;;7430:2;7415:18;48688:39:0;7298:192:1;34381:164:0;;;;;;;;;;-1:-1:-1;34381:164:0;;;;;:::i;:::-;;:::i;5050:201::-;;;;;;;;;;-1:-1:-1;5050:201:0;;;;;:::i;:::-;;:::i;48734:37::-;;;;;;;;;;;;;;;28411:305;28513:4;-1:-1:-1;;;;;;28550:40:0;;-1:-1:-1;;;28550:40:0;;:105;;-1:-1:-1;;;;;;;28607:48:0;;-1:-1:-1;;;28607:48:0;28550:105;:158;;;-1:-1:-1;;;;;;;;;;17107:40:0;;;28672:36;28530:178;28411:305;-1:-1:-1;;28411:305:0:o;32252:100::-;32306:13;32339:5;32332:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32252:100;:::o;33755:204::-;33823:7;33848:16;33856:7;33848;:16::i;:::-;33843:64;;33873:34;;-1:-1:-1;;;33873:34:0;;;;;;;;;;;33843:64;-1:-1:-1;33927:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33927:24:0;;33755:204::o;33318:371::-;33391:13;33407:24;33423:7;33407:15;:24::i;:::-;33391:40;;33452:5;-1:-1:-1;;;;;33446:11:0;:2;-1:-1:-1;;;;;33446:11:0;;33442:48;;33466:24;;-1:-1:-1;;;33466:24:0;;;;;;;;;;;33442:48;3229:10;-1:-1:-1;;;;;33507:21:0;;;;;;:63;;-1:-1:-1;33533:37:0;33550:5;3229:10;34381:164;:::i;33533:37::-;33532:38;33507:63;33503:138;;;33594:35;;-1:-1:-1;;;33594:35:0;;;;;;;;;;;33503:138;33653:28;33662:2;33666:7;33675:5;33653:8;:28::i;:::-;33380:309;33318:371;;:::o;34612:170::-;34746:28;34756:4;34762:2;34766:7;34746:9;:28::i;49305:239::-;48823:9;48836:10;48823:23;48815:66;;;;-1:-1:-1;;;48815:66:0;;8347:2:1;48815:66:0;;;8329:21:1;8386:2;8366:18;;;8359:30;8425:32;8405:18;;;8398:60;8475:18;;48815:66:0;;;;;;;;;49400:18:::1;49412:6:::0;49400:9:::1;:18;:::i;:::-;49387:9;:31;;49379:56;;;::::0;-1:-1:-1;;;49379:56:0;;9011:2:1;49379:56:0::1;::::0;::::1;8993:21:1::0;9050:2;9030:18;;;9023:30;-1:-1:-1;;;9069:18:1;;;9062:42;9121:18;;49379:56:0::1;8809:336:1::0;49379:56:0::1;49288:1:::0;27914:12;27704:7;27898:13;49447:35:::1;49473:9;49447:35;::::0;49463:6;;27898:28;-1:-1:-1;;27898:46:0;49447:22:::1;;;;:::i;:::-;:35;;49439:56;;;::::0;-1:-1:-1;;;49439:56:0;;9482:2:1;49439:56:0::1;::::0;::::1;9464:21:1::0;9521:1;9501:18;;;9494:29;-1:-1:-1;;;9539:18:1;;;9532:38;9587:18;;49439:56:0::1;9280:331:1::0;49439:56:0::1;49507:29;49517:10;49529:6;49507:9;:29::i;:::-;49305:239:::0;:::o;49980:278::-;4484:13;:11;:13::i;:::-;50166:29:::1;::::0;50049:21:::1;::::0;50103:10:::1;::::0;50028:18:::1;::::0;50103:10;;50049:21;;50028:18;50166:29;50028:18;50166:29;50049:21;50103:10;50166:29:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50152:43;;;;;50214:7;50206:44;;;::::0;-1:-1:-1;;;50206:44:0;;10028:2:1;50206:44:0::1;::::0;::::1;10010:21:1::0;10067:2;10047:18;;;10040:30;10106:26;10086:18;;;10079:54;10150:18;;50206:44:0::1;9826:348:1::0;34853:185:0;34991:39;35008:4;35014:2;35018:7;34991:39;;;;;;;;;;;;:16;:39::i;49552:95::-;4484:13;:11;:13::i;:::-;49625:14:::1;49632:6;49625;:14::i;48528:96::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32061:124::-;32125:7;32152:20;32164:7;32152:11;:20::i;:::-;:25;;32061:124;-1:-1:-1;;32061:124:0:o;28782:395::-;28846:7;-1:-1:-1;;;;;28870:19:0;;28866:60;;28898:28;;-1:-1:-1;;;28898:28:0;;;;;;;;;;;28866:60;-1:-1:-1;;;;;28943:19:0;;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28943:27:0;:32;28939:108;;-1:-1:-1;;;;;;29007:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29007:27:0;;28782:395::o;28939:108::-;29099:13;;29063:32;29088:6;29071:5;29063:32;:::i;:::-;-1:-1:-1;;;;;29063:49:0;;29059:90;;-1:-1:-1;29136:1:0;;28782:395;-1:-1:-1;28782:395:0:o;29059:90::-;-1:-1:-1;29168:1:0;;28782:395;-1:-1:-1;28782:395:0:o;49675:297::-;4484:13;:11;:13::i;:::-;49797:1:::1;49779:8;:15;:19;:53;;;;;49821:4;:11;49802:8;:15;:30;49779:53;49771:82;;;::::0;-1:-1:-1;;;49771:82:0;;10571:2:1;49771:82:0::1;::::0;::::1;10553:21:1::0;10610:2;10590:18;;;10583:30;-1:-1:-1;;;10629:18:1;;;10622:46;10685:18;;49771:82:0::1;10369:340:1::0;49771:82:0::1;49869:6;49864:101;49885:8;:15;49881:1;:19;49864:101;;;49922:31;49932:8;49941:1;49932:11;;;;;;;;:::i;:::-;;;;;;;49945:4;49950:1;49945:7;;;;;;;;:::i;:::-;;;;;;;49922:31;;:9;:31::i;:::-;49902:3;;49864:101;;32421:104:::0;32477:13;32510:7;32503:14;;;;;:::i;49093:86::-;4484:13;:11;:13::i;:::-;49156:9:::1;:15;49168:3:::0;49156:9;:15:::1;:::i;:::-;;49093:86:::0;:::o;34031:279::-;3229:10;-1:-1:-1;;;;;34122:24:0;;;34118:54;;34155:17;;-1:-1:-1;;;34155:17:0;;;;;;;;;;;34118:54;3229:10;34185:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34185:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34185:53:0;;;;;;;;;;34254:48;;540:41:1;;;34185:42:0;;3229:10;34254:48;;513:18:1;34254:48:0;;;;;;;34031:279;;:::o;35109:369::-;35276:28;35286:4;35292:2;35296:7;35276:9;:28::i;:::-;-1:-1:-1;;;;;35319:13:0;;7137:19;:23;;35319:76;;;;;35339:56;35370:4;35376:2;35380:7;35389:5;35339:30;:56::i;:::-;35338:57;35319:76;35315:156;;;35419:40;;-1:-1:-1;;;35419:40:0;;;;;;;;;;;35315:156;35109:369;;;;:::o;32596:318::-;32669:13;32700:16;32708:7;32700;:16::i;:::-;32695:59;;32725:29;;-1:-1:-1;;;32725:29:0;;;;;;;;;;;32695:59;32767:21;32791:10;:8;:10::i;:::-;32767:34;;32825:7;32819:21;32844:1;32819:26;:87;;;;;;;;;;;;;;;;;32872:7;32881:18;:7;:16;:18::i;:::-;32855:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32819:87;32812:94;32596:318;-1:-1:-1;;;32596:318:0:o;34381:164::-;-1:-1:-1;;;;;34502:25:0;;;34478:4;34502:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34381:164::o;5050:201::-;4484:13;:11;:13::i;:::-;-1:-1:-1;;;;;5139:22:0;::::1;5131:73;;;::::0;-1:-1:-1;;;5131:73:0;;13719:2:1;5131:73:0::1;::::0;::::1;13701:21:1::0;13758:2;13738:18;;;13731:30;13797:34;13777:18;;;13770:62;-1:-1:-1;;;13848:18:1;;;13841:36;13894:19;;5131:73:0::1;13517:402:1::0;5131:73:0::1;5215:28;5234:8;5215:18;:28::i;35733:187::-:0;35790:4;35833:7;49288:1;35814:26;;:53;;;;;35854:13;;35844:7;:23;35814:53;:98;;;;-1:-1:-1;;35885:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35885:27:0;;;;35884:28;;35733:187::o;45463:196::-;45578:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45578:29:0;-1:-1:-1;;;;;45578:29:0;;;;;;;;;45623:28;;45578:24;;45623:28;;;;;;;45463:196;;;:::o;40965:2112::-;41080:35;41118:20;41130:7;41118:11;:20::i;:::-;41193:18;;41080:58;;-1:-1:-1;41151:22:0;;-1:-1:-1;;;;;41177:34:0;3229:10;-1:-1:-1;;;;;41177:34:0;;:101;;;-1:-1:-1;41245:18:0;;41228:50;;3229:10;34381:164;:::i;41228:50::-;41177:154;;;-1:-1:-1;3229:10:0;41295:20;41307:7;41295:11;:20::i;:::-;-1:-1:-1;;;;;41295:36:0;;41177:154;41151:181;;41350:17;41345:66;;41376:35;;-1:-1:-1;;;41376:35:0;;;;;;;;;;;41345:66;41448:4;-1:-1:-1;;;;;41426:26:0;:13;:18;;;-1:-1:-1;;;;;41426:26:0;;41422:67;;41461:28;;-1:-1:-1;;;41461:28:0;;;;;;;;;;;41422:67;-1:-1:-1;;;;;41504:16:0;;41500:52;;41529:23;;-1:-1:-1;;;41529:23:0;;;;;;;;;;;41500:52;41673:49;41690:1;41694:7;41703:13;:18;;;41673:8;:49::i;:::-;-1:-1:-1;;;;;42018:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42018:31:0;;;-1:-1:-1;;;;;42018:31:0;;;-1:-1:-1;;42018:31:0;;;;;;;42064:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42064:29:0;;;;;;;;;;;42110:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42155:61:0;;;;-1:-1:-1;;;42200:15:0;42155:61;;;;;;;;;;;42490:11;;;42520:24;;;;;:29;42490:11;;42520:29;42516:445;;42745:13;;42731:11;:27;42727:219;;;42815:18;;;42783:24;;;:11;:24;;;;;;;;:50;;42898:28;;;;-1:-1:-1;;;;;42856:70:0;-1:-1:-1;;;42856:70:0;-1:-1:-1;;;;;;42856:70:0;;;-1:-1:-1;;;;;42783:50:0;;;42856:70;;;;;;;42727:219;41993:979;43008:7;43004:2;-1:-1:-1;;;;;42989:27:0;42998:4;-1:-1:-1;;;;;42989:27:0;-1:-1:-1;;;;;;;;;;;42989:27:0;;;;;;;;;43027:42;41069:2008;;40965:2112;;;:::o;35928:104::-;35997:27;36007:2;36011:8;35997:27;;;;;;;;;;;;:9;:27::i;4763:132::-;4671:6;;-1:-1:-1;;;;;4671:6:0;3229:10;4827:23;4819:68;;;;-1:-1:-1;;;4819:68:0;;14126:2:1;4819:68:0;;;14108:21:1;;;14145:18;;;14138:30;14204:34;14184:18;;;14177:62;14256:18;;4819:68:0;13924:356:1;4819:68:0;4763:132::o;36566:113::-;36648:19;36658:8;36648:9;:19::i;30712:1287::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30822:7:0;;49288:1;30871:23;;:47;;;;;30905:13;;30898:4;:20;30871:47;30867:1065;;;30939:31;30973:17;;;:11;:17;;;;;;;;;30939:51;;;;;;;;;-1:-1:-1;;;;;30939:51:0;;;;-1:-1:-1;;;30939:51:0;;-1:-1:-1;;;;;30939:51:0;;;;;;;;-1:-1:-1;;;30939:51:0;;;;;;;;;;;;;;31009:904;;31059:14;;-1:-1:-1;;;;;31059:28:0;;31055:101;;31123:9;30712:1287;-1:-1:-1;;;30712:1287:0:o;31055:101::-;31476:1;31500:270;-1:-1:-1;;31529:6:0;;;31574:17;;;;:11;:17;;;;;;;;;31562:29;;;;;;;;;-1:-1:-1;;;;;31562:29:0;;;;;-1:-1:-1;;;;;;;;31562:29:0;;;;;;;;;;;-1:-1:-1;;;31562:29:0;;;;;;;;;;;;;31529:6;;31562:29;;-1:-1:-1;;31622:28:0;31618:109;;-1:-1:-1;31690:9:0;30712:1287;-1:-1:-1;;;30712:1287:0:o;31618:109::-;-1:-1:-1;;31757:7:0;:11;31500:270;;-1:-1:-1;31827:6:0;31819:34;;;;-1:-1:-1;;;;;31794:60:0;;;-1:-1:-1;31794:60:0;;:9;-1:-1:-1;30712:1287:0:o;31009:904::-;30920:1012;30867:1065;31960:31;;-1:-1:-1;;;31960:31:0;;;;;;;;;;;46151:667;46335:72;;-1:-1:-1;;;46335:72:0;;46314:4;;-1:-1:-1;;;;;46335:36:0;;;;;:72;;3229:10;;46386:4;;46392:7;;46401:5;;46335:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46335:72:0;;;;;;;;-1:-1:-1;;46335:72:0;;;;;;;;;;;;:::i;:::-;;;46331:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46569:6;:13;46586:1;46569:18;46565:235;;46615:40;;-1:-1:-1;;;46615:40:0;;;;;;;;;;;46565:235;46758:6;46752:13;46743:6;46739:2;46735:15;46728:38;46331:480;-1:-1:-1;;;;;;46454:55:0;-1:-1:-1;;;46454:55:0;;-1:-1:-1;46331:480:0;46151:667;;;;;;:::o;48974:111::-;49035:13;49068:9;49061:16;;;;;:::i;403:723::-;459:13;680:5;689:1;680:10;676:53;;-1:-1:-1;;707:10:0;;;;;;;;;;;;-1:-1:-1;;;707:10:0;;;;;403:723::o;676:53::-;754:5;739:12;795:78;802:9;;795:78;;828:8;;;;:::i;:::-;;-1:-1:-1;851:10:0;;-1:-1:-1;859:2:0;851:10;;:::i;:::-;;;795:78;;;883:19;915:6;-1:-1:-1;;;;;905:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;905:17:0;;883:39;;933:154;940:10;;933:154;;967:11;977:1;967:11;;:::i;:::-;;-1:-1:-1;1036:10:0;1044:2;1036:5;:10;:::i;:::-;1023:24;;:2;:24;:::i;:::-;1010:39;;993:6;1000;993:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;993:56:0;;;;;;;;-1:-1:-1;1064:11:0;1073:2;1064:11;;:::i;:::-;;;933:154;;5411:191;5504:6;;;-1:-1:-1;;;;;5521:17:0;;;-1:-1:-1;;;;;;5521:17:0;;;;;;;5554:40;;5504:6;;;5521:17;5504:6;;5554:40;;5485:16;;5554:40;5474:128;5411:191;:::o;36395:163::-;36518:32;36524:2;36528:8;36538:5;36545:4;36518:5;:32::i;40104:607::-;40193:8;40205:1;40193:13;40189:44;;40215:18;;-1:-1:-1;;;40215:18:0;;;;;;;;;;;40189:44;40250:20;40273:13;;;40315:23;40330:8;40273:13;40315:23;:::i;:::-;40301:37;-1:-1:-1;40395:39:0;40421:12;40403:6;40395:39;:::i;:::-;40353:26;40365:13;;40353:26;;:11;:26;;;;;:82;;-1:-1:-1;;;;;;40353:82:0;-1:-1:-1;;;;;40353:82:0;;;;;;;;;;40481:166;40583:14;;;;;;40567:12;40549:6;40541:39;-1:-1:-1;;;;;40512:86:0;40529:1;-1:-1:-1;;;;;40512:86:0;-1:-1:-1;;;;;;;;;;;40512:86:0;;;;;;;;;40642:3;40626:12;:19;40481:166;;40693:8;40676:13;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;40104:607:0:o;36939:1775::-;37078:20;37101:13;-1:-1:-1;;;;;37129:16:0;;37125:48;;37154:19;;-1:-1:-1;;;37154:19:0;;;;;;;;;;;37125:48;37188:8;37200:1;37188:13;37184:44;;37210:18;;-1:-1:-1;;;37210:18:0;;;;;;;;;;;37184:44;-1:-1:-1;;;;;37579:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37638:49:0;;-1:-1:-1;;;;;37579:44:0;;;;;;;37638:49;;;;-1:-1:-1;;37579:44:0;;;;;;37638:49;;;;;;;;;;;;;;;;37704:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37754:66:0;;;;-1:-1:-1;;;37804:15:0;37754:66;;;;;;;;;;37704:25;37901:23;;;37945:4;:23;;;;-1:-1:-1;;;;;;37953:13:0;;7137:19;:23;;37953:15;37941:641;;;37989:314;38020:38;;38045:12;;-1:-1:-1;;;;;38020:38:0;;;38037:1;;-1:-1:-1;;;;;;;;;;;38020:38:0;38037:1;;38020:38;38086:69;38125:1;38129:2;38133:14;;;;;;38149:5;38086:30;:69::i;:::-;38081:174;;38191:40;;-1:-1:-1;;;38191:40:0;;;;;;;;;;;38081:174;38298:3;38282:12;:19;37989:314;;38384:12;38367:13;;:29;38363:43;;38398:8;;;38363:43;37941:641;;;38447:120;38478:40;;38503:14;;;;;-1:-1:-1;;;;;38478:40:0;;;38495:1;;-1:-1:-1;;;;;;;;;;;38478:40:0;38495:1;;38478:40;38562:3;38546:12;:19;38447:120;;37941:641;-1:-1:-1;38596:13:0;:28;38646:60;35109:369;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;2884:127::-;2945:10;2940:3;2936:20;2933:1;2926:31;2976:4;2973:1;2966:15;3000:4;2997:1;2990:15;3016:275;3087:2;3081:9;3152:2;3133:13;;-1:-1:-1;;3129:27:1;3117:40;;-1:-1:-1;;;;;3172:34:1;;3208:22;;;3169:62;3166:88;;;3234:18;;:::i;:::-;3270:2;3263:22;3016:275;;-1:-1:-1;3016:275:1:o;3296:183::-;3356:4;-1:-1:-1;;;;;3381:6:1;3378:30;3375:56;;;3411:18;;:::i;:::-;-1:-1:-1;3456:1:1;3452:14;3468:4;3448:25;;3296:183::o;3484:768::-;3537:5;3590:3;3583:4;3575:6;3571:17;3567:27;3557:55;;3608:1;3605;3598:12;3557:55;3644:6;3631:20;3670:4;3694:60;3710:43;3750:2;3710:43;:::i;:::-;3694:60;:::i;:::-;3776:3;3800:2;3795:3;3788:15;3828:4;3823:3;3819:14;3812:21;;3885:4;3879:2;3876:1;3872:10;3864:6;3860:23;3856:34;3842:48;;3913:3;3905:6;3902:15;3899:35;;;3930:1;3927;3920:12;3899:35;3966:4;3958:6;3954:17;3980:243;3996:6;3991:3;3988:15;3980:243;;;4076:3;4063:17;4124:6;4117:5;4113:18;4106:5;4103:29;4093:57;;4146:1;4143;4136:12;4093:57;4163:18;;4201:12;;;;4013;;3980:243;;;-1:-1:-1;4241:5:1;3484:768;-1:-1:-1;;;;;;3484:768:1:o;4257:1144::-;4374:6;4382;4435:2;4423:9;4414:7;4410:23;4406:32;4403:52;;;4451:1;4448;4441:12;4403:52;4491:9;4478:23;-1:-1:-1;;;;;4561:2:1;4553:6;4550:14;4547:34;;;4577:1;4574;4567:12;4547:34;4615:6;4604:9;4600:22;4590:32;;4660:7;4653:4;4649:2;4645:13;4641:27;4631:55;;4682:1;4679;4672:12;4631:55;4718:2;4705:16;4740:4;4764:60;4780:43;4820:2;4780:43;:::i;4764:60::-;4858:15;;;4940:1;4936:10;;;;4928:19;;4924:28;;;4889:12;;;;4964:19;;;4961:39;;;4996:1;4993;4986:12;4961:39;5020:11;;;;5040:148;5056:6;5051:3;5048:15;5040:148;;;5122:23;5141:3;5122:23;:::i;:::-;5110:36;;5073:12;;;;5166;;;;5040:148;;;5207:5;-1:-1:-1;;5250:18:1;;5237:32;;-1:-1:-1;;5281:16:1;;;5278:36;;;5310:1;5307;5300:12;5278:36;;5333:62;5387:7;5376:8;5365:9;5361:24;5333:62;:::i;:::-;5323:72;;;4257:1144;;;;;:::o;5406:407::-;5471:5;-1:-1:-1;;;;;5497:6:1;5494:30;5491:56;;;5527:18;;:::i;:::-;5565:57;5610:2;5589:15;;-1:-1:-1;;5585:29:1;5616:4;5581:40;5565:57;:::i;:::-;5556:66;;5645:6;5638:5;5631:21;5685:3;5676:6;5671:3;5667:16;5664:25;5661:45;;;5702:1;5699;5692:12;5661:45;5751:6;5746:3;5739:4;5732:5;5728:16;5715:43;5805:1;5798:4;5789:6;5782:5;5778:18;5774:29;5767:40;5406:407;;;;;:::o;5818:451::-;5887:6;5940:2;5928:9;5919:7;5915:23;5911:32;5908:52;;;5956:1;5953;5946:12;5908:52;5996:9;5983:23;-1:-1:-1;;;;;6021:6:1;6018:30;6015:50;;;6061:1;6058;6051:12;6015:50;6084:22;;6137:4;6129:13;;6125:27;-1:-1:-1;6115:55:1;;6166:1;6163;6156:12;6115:55;6189:74;6255:7;6250:2;6237:16;6232:2;6228;6224:11;6189:74;:::i;6274:347::-;6339:6;6347;6400:2;6388:9;6379:7;6375:23;6371:32;6368:52;;;6416:1;6413;6406:12;6368:52;6439:29;6458:9;6439:29;:::i;:::-;6429:39;;6518:2;6507:9;6503:18;6490:32;6565:5;6558:13;6551:21;6544:5;6541:32;6531:60;;6587:1;6584;6577:12;6531:60;6610:5;6600:15;;;6274:347;;;;;:::o;6626:667::-;6721:6;6729;6737;6745;6798:3;6786:9;6777:7;6773:23;6769:33;6766:53;;;6815:1;6812;6805:12;6766:53;6838:29;6857:9;6838:29;:::i;:::-;6828:39;;6886:38;6920:2;6909:9;6905:18;6886:38;:::i;:::-;6876:48;;6971:2;6960:9;6956:18;6943:32;6933:42;;7026:2;7015:9;7011:18;6998:32;-1:-1:-1;;;;;7045:6:1;7042:30;7039:50;;;7085:1;7082;7075:12;7039:50;7108:22;;7161:4;7153:13;;7149:27;-1:-1:-1;7139:55:1;;7190:1;7187;7180:12;7139:55;7213:74;7279:7;7274:2;7261:16;7256:2;7252;7248:11;7213:74;:::i;:::-;7203:84;;;6626:667;;;;;;;:::o;7495:260::-;7563:6;7571;7624:2;7612:9;7603:7;7599:23;7595:32;7592:52;;;7640:1;7637;7630:12;7592:52;7663:29;7682:9;7663:29;:::i;:::-;7653:39;;7711:38;7745:2;7734:9;7730:18;7711:38;:::i;:::-;7701:48;;7495:260;;;;;:::o;7760:380::-;7839:1;7835:12;;;;7882;;;7903:61;;7957:4;7949:6;7945:17;7935:27;;7903:61;8010:2;8002:6;7999:14;7979:18;7976:38;7973:161;;8056:10;8051:3;8047:20;8044:1;8037:31;8091:4;8088:1;8081:15;8119:4;8116:1;8109:15;7973:161;;7760:380;;;:::o;8504:127::-;8565:10;8560:3;8556:20;8553:1;8546:31;8596:4;8593:1;8586:15;8620:4;8617:1;8610:15;8636:168;8709:9;;;8740;;8757:15;;;8751:22;;8737:37;8727:71;;8778:18;;:::i;9150:125::-;9215:9;;;9236:10;;;9233:36;;;9249:18;;:::i;10179:185::-;-1:-1:-1;;;;;10300:10:1;;;10288;;;10284:27;;10323:12;;;10320:38;;;10338:18;;:::i;:::-;10320:38;10179:185;;;;:::o;10714:127::-;10775:10;10770:3;10766:20;10763:1;10756:31;10806:4;10803:1;10796:15;10830:4;10827:1;10820:15;10972:518;11074:2;11069:3;11066:11;11063:421;;;11110:5;11107:1;11100:16;11154:4;11151:1;11141:18;11224:2;11212:10;11208:19;11205:1;11201:27;11195:4;11191:38;11260:4;11248:10;11245:20;11242:47;;;-1:-1:-1;11283:4:1;11242:47;11338:2;11333:3;11329:12;11326:1;11322:20;11316:4;11312:31;11302:41;;11393:81;11411:2;11404:5;11401:13;11393:81;;;11470:1;11456:16;;11437:1;11426:13;11393:81;;11666:1345;11792:3;11786:10;-1:-1:-1;;;;;11811:6:1;11808:30;11805:56;;;11841:18;;:::i;:::-;11870:97;11960:6;11920:38;11952:4;11946:11;11920:38;:::i;:::-;11914:4;11870:97;:::i;:::-;12022:4;;12079:2;12068:14;;12096:1;12091:663;;;;12798:1;12815:6;12812:89;;;-1:-1:-1;12867:19:1;;;12861:26;12812:89;-1:-1:-1;;11623:1:1;11619:11;;;11615:24;11611:29;11601:40;11647:1;11643:11;;;11598:57;12914:81;;12061:944;;12091:663;10919:1;10912:14;;;10956:4;10943:18;;-1:-1:-1;;12127:20:1;;;12245:236;12259:7;12256:1;12253:14;12245:236;;;12348:19;;;12342:26;12327:42;;12440:27;;;;12408:1;12396:14;;;;12275:19;;12245:236;;;12249:3;12509:6;12500:7;12497:19;12494:201;;;12570:19;;;12564:26;-1:-1:-1;;12653:1:1;12649:14;;;12665:3;12645:24;12641:37;12637:42;12622:58;12607:74;;12494:201;;;12741:1;12732:6;12729:1;12725:14;12721:22;12715:4;12708:36;12061:944;;;;;11666:1345;;:::o;13016:496::-;13195:3;13233:6;13227:13;13249:66;13308:6;13303:3;13296:4;13288:6;13284:17;13249:66;:::i;:::-;13378:13;;13337:16;;;;13400:70;13378:13;13337:16;13447:4;13435:17;;13400:70;:::i;:::-;13486:20;;13016:496;-1:-1:-1;;;;13016:496:1:o;14285:489::-;-1:-1:-1;;;;;14554:15:1;;;14536:34;;14606:15;;14601:2;14586:18;;14579:43;14653:2;14638:18;;14631:34;;;14701:3;14696:2;14681:18;;14674:31;;;14479:4;;14722:46;;14748:19;;14740:6;14722:46;:::i;:::-;14714:54;14285:489;-1:-1:-1;;;;;;14285:489:1:o;14779:249::-;14848:6;14901:2;14889:9;14880:7;14876:23;14872:32;14869:52;;;14917:1;14914;14907:12;14869:52;14949:9;14943:16;14968:30;14992:5;14968:30;:::i;15033:135::-;15072:3;15093:17;;;15090:43;;15113:18;;:::i;:::-;-1:-1:-1;15160:1:1;15149:13;;15033:135::o;15173:127::-;15234:10;15229:3;15225:20;15222:1;15215:31;15265:4;15262:1;15255:15;15289:4;15286:1;15279:15;15305:120;15345:1;15371;15361:35;;15376:18;;:::i;:::-;-1:-1:-1;15410:9:1;;15305:120::o;15430:128::-;15497:9;;;15518:11;;;15515:37;;;15532:18;;:::i;15563:112::-;15595:1;15621;15611:35;;15626:18;;:::i;:::-;-1:-1:-1;15660:9:1;;15563:112::o;15680:182::-;-1:-1:-1;;;;;15787:10:1;;;15799;;;15783:27;;15822:11;;;15819:37;;;15836:18;;:::i

Swarm Source

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