ETH Price: $2,989.49 (+3.61%)
Gas: 7 Gwei

Token

standpower (standpower)
 

Overview

Max Total Supply

500 standpower

Holders

80

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
d3rwisj.eth
Balance
13 standpower
0xeb0e6ecd0e78b0a84ecd9663a041f453c454a99d
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:
standpower

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-06
*/

// 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 standpower  is ERC721A, Ownable {

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

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

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

    constructor()
    ERC721A ("standpower", "standpower") {
    }

    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"}]

73962228f791e745273700024d54e3f9897a3e819860805261016060405260366101008181529062002125610120396009906200003d9082620001c3565b50660aa87bee53800060a0526101f460c052600a60e0523480156200006157600080fd5b50604080518082018252600a8082526939ba30b7323837bbb2b960b11b6020808401829052845180860190955291845290830152906002620000a48382620001c3565b506003620000b38282620001c3565b5050600160005550620000c633620000cc565b6200028f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200014957607f821691505b6020821081036200016a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001be57600081815260208120601f850160051c81016020861015620001995750805b601f850160051c820191505b81811015620001ba57828155600101620001a5565b5050505b505050565b81516001600160401b03811115620001df57620001df6200011e565b620001f781620001f0845462000134565b8462000170565b602080601f8311600181146200022f5760008415620002165750858301515b600019600386901b1c1916600185901b178555620001ba565b600085815260208120601f198616915b8281101562000260578886015182559484019460019091019084016200023f565b50858210156200027f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c05160e051611e39620002ec60003960006104c2015260008181610439015261076d01526000818161031201526106fe0152600081816109d4015281816111380152818161141a01526114760152611e396000f3fe6080604052600436106101665760003560e01c80636817c76c116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610427578063e985e9c514610470578063f2fde38b14610490578063f968adbe146104b057600080fd5b8063a22cb465146103c7578063b88d4fde146103e7578063c87b56dd1461040757600080fd5b80636817c76c1461030057806370a08231146103345780638a886986146103545780638da5cb5b1461037457806395d89b41146103925780639b642de1146103a757600080fd5b80632db11544116101235780632db11544146102635780633ccfd60b1461027657806342842e0e1461028b5780635fd22840146102ab57806362b99ad4146102cb5780636352211e146102e057600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd14610243575b600080fd5b34801561017757600080fd5b5061018b6101863660046116a9565b6104e4565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b5610536565b6040516101979190611716565b3480156101ce57600080fd5b506101e26101dd366004611729565b6105c8565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a61021536600461175e565b61060c565b005b34801561022857600080fd5b5060015460005403600019015b604051908152602001610197565b34801561024f57600080fd5b5061021a61025e366004611788565b610699565b61021a610271366004611729565b6106a4565b34801561028257600080fd5b5061021a6107e5565b34801561029757600080fd5b5061021a6102a6366004611788565b61088b565b3480156102b757600080fd5b5061021a6102c6366004611729565b6108a6565b3480156102d757600080fd5b506101b56108b7565b3480156102ec57600080fd5b506101e26102fb366004611729565b610945565b34801561030c57600080fd5b506102357f000000000000000000000000000000000000000000000000000000000000000081565b34801561034057600080fd5b5061023561034f3660046117c4565b610957565b34801561036057600080fd5b5061021a61036f3660046118c4565b610a17565b34801561038057600080fd5b506008546001600160a01b03166101e2565b34801561039e57600080fd5b506101b5610ace565b3480156103b357600080fd5b5061021a6103c23660046119da565b610add565b3480156103d357600080fd5b5061021a6103e2366004611a22565b610af5565b3480156103f357600080fd5b5061021a610402366004611a5e565b610b8a565b34801561041357600080fd5b506101b5610422366004611729565b610bdb565b34801561043357600080fd5b5061045b7f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff9091168152602001610197565b34801561047c57600080fd5b5061018b61048b366004611ad9565b610c5f565b34801561049c57600080fd5b5061021a6104ab3660046117c4565b610c8d565b3480156104bc57600080fd5b5061045b7f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b148061051557506001600160e01b03198216635b5e139f60e01b145b8061053057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461054590611b0c565b80601f016020809104026020016040519081016040528092919081815260200182805461057190611b0c565b80156105be5780601f10610593576101008083540402835291602001916105be565b820191906000526020600020905b8154815290600101906020018083116105a157829003601f168201915b5050505050905090565b60006105d382610d03565b6105f0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061061782610945565b9050806001600160a01b0316836001600160a01b03160361064b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061066b57506106698133610c5f565b155b15610689576040516367d9dca160e11b815260040160405180910390fd5b610694838383610d3c565b505050565b610694838383610d98565b3233146106f85760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b610722817f0000000000000000000000000000000000000000000000000000000000000000611b5c565b3410156107605760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b60448201526064016106ef565b60015460005463ffffffff7f000000000000000000000000000000000000000000000000000000000000000016918391036000190161079f9190611b73565b11156107d85760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016106ef565b6107e23382610f9a565b50565b6107ed610fb4565b60405147903390600090829084908381818185875af1925050503d8060008114610833576040519150601f19603f3d011682016040523d82523d6000602084013e610838565b606091505b505080915050806106945760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064016106ef565b61069483838360405180602001604052806000815250610b8a565b6108ae610fb4565b6107e281611010565b600980546108c490611b0c565b80601f01602080910402602001604051908101604052809291908181526020018280546108f090611b0c565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b505050505081565b600061095082611019565b5192915050565b60006001600160a01b038216610980576040516323d3ad8160e21b815260040160405180910390fd5b6001600160a01b0382166000908152600560205260409020546001600160401b0316156109cc57506001600160a01b03166000908152600560205260409020546001600160401b031690565b6000546109f97f000000000000000000000000000000000000000000000000000000000000000084611b86565b6001600160a01b031611610a0f57506001919050565b506000919050565b610a1f610fb4565b60008251118015610a31575080518251145b610a705760405162461bcd60e51b815260206004820152601060248201526f098cadccee8d040dcdee840dac2e8c6d60831b60448201526064016106ef565b60005b825181101561069457610abc838281518110610a9157610a91611bad565b6020026020010151838381518110610aab57610aab611bad565b602002602001015161ffff16610f9a565b80610ac681611bc3565b915050610a73565b60606003805461054590611b0c565b610ae5610fb4565b6009610af18282611c2a565b5050565b336001600160a01b03831603610b1e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b95848484610d98565b6001600160a01b0383163b15158015610bb75750610bb584848484611188565b155b15610bd5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610be682610d03565b610c0357604051630a14c4b560e41b815260040160405180910390fd5b6000610c0d611274565b90508051600003610c2d5760405180602001604052806000815250610c58565b80610c3784611283565b604051602001610c48929190611ce9565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610c95610fb4565b6001600160a01b038116610cfa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ef565b6107e281611383565b600081600111158015610d17575060005482105b8015610530575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610da382611019565b80519091506000906001600160a01b0316336001600160a01b03161480610dd157508151610dd19033610c5f565b80610dec575033610de1846105c8565b6001600160a01b0316145b905080610e0c57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e415760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e6857604051633a954ecd60e21b815260040160405180910390fd5b610e786000848460000151610d3c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f6257600054811015610f6257825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b0316600080516020611de483398151915260405160405180910390a45b5050505050565b610af18282604051806020016040528060008152506113d5565b6008546001600160a01b0316331461100e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ef565b565b6107e2816113e2565b60408051606081018252600080825260208201819052918101919091528180600111158015611049575060005481105b1561116f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061116d5780516001600160a01b0316156110bc579392505050565b60095b600019909201600081815260046020908152604091829020825160608101845290546001600160a01b0381168083526001600160401b03600160a01b8304169383019390935260ff600160e01b909104161515928101929092529193909250901561112c57509392505050565b60001901806110bf57507f0000000000000000000000000000000000000000000000000000000000000000939093016001600160a01b031683525090919050565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111bd903390899088908890600401611d18565b6020604051808303816000875af19250505080156111f8575060408051601f3d908101601f191682019092526111f591810190611d55565b60015b611256573d808015611226576040519150601f19603f3d011682016040523d82523d6000602084013e61122b565b606091505b50805160000361124e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461054590611b0c565b6060816000036112aa5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112d457806112be81611bc3565b91506112cd9050600a83611d88565b91506112ae565b6000816001600160401b038111156112ee576112ee6117df565b6040519080825280601f01601f191660200182016040528015611318576020820181803683370190505b5090505b841561126c5761132d600183611d9c565b915061133a600a86611daf565b611345906030611b73565b60f81b81838151811061135a5761135a611bad565b60200101906001600160f81b031916908160001a90535061137c600a86611d88565b945061131c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61069483838360016114e6565b806000036114035760405163b562e8dd60e01b815260040160405180910390fd5b60008054906114128383611b73565b905061143e827f0000000000000000000000000000000000000000000000000000000000000000611dc3565b60008054815260046020526040902080546001600160a01b0319166001600160a01b03929092169190911790555b81806001019250827f0000000000000000000000000000000000000000000000000000000000000000016001600160a01b031660006001600160a01b0316600080516020611de483398151915260405160405180910390a480820361146c57826000808282546114dc9190611b73565b9091555050505050565b6000546001600160a01b03851661150f57604051622e076360e81b815260040160405180910390fd5b836000036115305760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156115e157506001600160a01b0387163b15155b15611657575b60405182906001600160a01b03891690600090600080516020611de4833981519152908290a46116206000888480600101955088611188565b61163d576040516368d2bf6b60e11b815260040160405180910390fd5b8082036115e757826000541461165257600080fd5b61168a565b5b6040516001830192906001600160a01b03891690600090600080516020611de4833981519152908290a4808203611658575b50600055610f93565b6001600160e01b0319811681146107e257600080fd5b6000602082840312156116bb57600080fd5b8135610c5881611693565b60005b838110156116e15781810151838201526020016116c9565b50506000910152565b600081518084526117028160208601602086016116c6565b601f01601f19169290920160200192915050565b602081526000610c5860208301846116ea565b60006020828403121561173b57600080fd5b5035919050565b80356001600160a01b038116811461175957600080fd5b919050565b6000806040838503121561177157600080fd5b61177a83611742565b946020939093013593505050565b60008060006060848603121561179d57600080fd5b6117a684611742565b92506117b460208501611742565b9150604084013590509250925092565b6000602082840312156117d657600080fd5b610c5882611742565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561181d5761181d6117df565b604052919050565b60006001600160401b0382111561183e5761183e6117df565b5060051b60200190565b600082601f83011261185957600080fd5b8135602061186e61186983611825565b6117f5565b82815260059290921b8401810191818101908684111561188d57600080fd5b8286015b848110156118b957803561ffff811681146118ac5760008081fd5b8352918301918301611891565b509695505050505050565b600080604083850312156118d757600080fd5b82356001600160401b03808211156118ee57600080fd5b818501915085601f83011261190257600080fd5b8135602061191261186983611825565b82815260059290921b8401810191818101908984111561193157600080fd5b948201945b838610156119565761194786611742565b82529482019490820190611936565b9650508601359250508082111561196c57600080fd5b5061197985828601611848565b9150509250929050565b60006001600160401b0383111561199c5761199c6117df565b6119af601f8401601f19166020016117f5565b90508281528383830111156119c357600080fd5b828260208301376000602084830101529392505050565b6000602082840312156119ec57600080fd5b81356001600160401b03811115611a0257600080fd5b8201601f81018413611a1357600080fd5b61126c84823560208401611983565b60008060408385031215611a3557600080fd5b611a3e83611742565b915060208301358015158114611a5357600080fd5b809150509250929050565b60008060008060808587031215611a7457600080fd5b611a7d85611742565b9350611a8b60208601611742565b92506040850135915060608501356001600160401b03811115611aad57600080fd5b8501601f81018713611abe57600080fd5b611acd87823560208401611983565b91505092959194509250565b60008060408385031215611aec57600080fd5b611af583611742565b9150611b0360208401611742565b90509250929050565b600181811c90821680611b2057607f821691505b602082108103611b4057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761053057610530611b46565b8082018082111561053057610530611b46565b6001600160a01b03828116828216039080821115611ba657611ba6611b46565b5092915050565b634e487b7160e01b600052603260045260246000fd5b600060018201611bd557611bd5611b46565b5060010190565b601f82111561069457600081815260208120601f850160051c81016020861015611c035750805b601f850160051c820191505b81811015611c2257828155600101611c0f565b505050505050565b81516001600160401b03811115611c4357611c436117df565b611c5781611c518454611b0c565b84611bdc565b602080601f831160018114611c8c5760008415611c745750858301515b600019600386901b1c1916600185901b178555611c22565b600085815260208120601f198616915b82811015611cbb57888601518255948401946001909101908401611c9c565b5085821015611cd95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351611cfb8184602088016116c6565b835190830190611d0f8183602088016116c6565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d4b908301846116ea565b9695505050505050565b600060208284031215611d6757600080fd5b8151610c5881611693565b634e487b7160e01b600052601260045260246000fd5b600082611d9757611d97611d72565b500490565b8181038181111561053057610530611b46565b600082611dbe57611dbe611d72565b500690565b6001600160a01b03818116838216019080821115611ba657611ba6611b4656feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220b522b0a188f09dd689bf7de068441a612148be1310d28a1e385ccbd6ab9f23da64736f6c63430008120033697066733a2f2f516d5358434e6f5555635332324248364459423170625767543376436346347a7a71666a777337526b6d746f374d2f

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636817c76c116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610427578063e985e9c514610470578063f2fde38b14610490578063f968adbe146104b057600080fd5b8063a22cb465146103c7578063b88d4fde146103e7578063c87b56dd1461040757600080fd5b80636817c76c1461030057806370a08231146103345780638a886986146103545780638da5cb5b1461037457806395d89b41146103925780639b642de1146103a757600080fd5b80632db11544116101235780632db11544146102635780633ccfd60b1461027657806342842e0e1461028b5780635fd22840146102ab57806362b99ad4146102cb5780636352211e146102e057600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd14610243575b600080fd5b34801561017757600080fd5b5061018b6101863660046116a9565b6104e4565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b5610536565b6040516101979190611716565b3480156101ce57600080fd5b506101e26101dd366004611729565b6105c8565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a61021536600461175e565b61060c565b005b34801561022857600080fd5b5060015460005403600019015b604051908152602001610197565b34801561024f57600080fd5b5061021a61025e366004611788565b610699565b61021a610271366004611729565b6106a4565b34801561028257600080fd5b5061021a6107e5565b34801561029757600080fd5b5061021a6102a6366004611788565b61088b565b3480156102b757600080fd5b5061021a6102c6366004611729565b6108a6565b3480156102d757600080fd5b506101b56108b7565b3480156102ec57600080fd5b506101e26102fb366004611729565b610945565b34801561030c57600080fd5b506102357f000000000000000000000000000000000000000000000000000aa87bee53800081565b34801561034057600080fd5b5061023561034f3660046117c4565b610957565b34801561036057600080fd5b5061021a61036f3660046118c4565b610a17565b34801561038057600080fd5b506008546001600160a01b03166101e2565b34801561039e57600080fd5b506101b5610ace565b3480156103b357600080fd5b5061021a6103c23660046119da565b610add565b3480156103d357600080fd5b5061021a6103e2366004611a22565b610af5565b3480156103f357600080fd5b5061021a610402366004611a5e565b610b8a565b34801561041357600080fd5b506101b5610422366004611729565b610bdb565b34801561043357600080fd5b5061045b7f00000000000000000000000000000000000000000000000000000000000001f481565b60405163ffffffff9091168152602001610197565b34801561047c57600080fd5b5061018b61048b366004611ad9565b610c5f565b34801561049c57600080fd5b5061021a6104ab3660046117c4565b610c8d565b3480156104bc57600080fd5b5061045b7f000000000000000000000000000000000000000000000000000000000000000a81565b60006001600160e01b031982166380ac58cd60e01b148061051557506001600160e01b03198216635b5e139f60e01b145b8061053057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461054590611b0c565b80601f016020809104026020016040519081016040528092919081815260200182805461057190611b0c565b80156105be5780601f10610593576101008083540402835291602001916105be565b820191906000526020600020905b8154815290600101906020018083116105a157829003601f168201915b5050505050905090565b60006105d382610d03565b6105f0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061061782610945565b9050806001600160a01b0316836001600160a01b03160361064b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061066b57506106698133610c5f565b155b15610689576040516367d9dca160e11b815260040160405180910390fd5b610694838383610d3c565b505050565b610694838383610d98565b3233146106f85760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b610722817f000000000000000000000000000000000000000000000000000aa87bee538000611b5c565b3410156107605760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b60448201526064016106ef565b60015460005463ffffffff7f00000000000000000000000000000000000000000000000000000000000001f416918391036000190161079f9190611b73565b11156107d85760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016106ef565b6107e23382610f9a565b50565b6107ed610fb4565b60405147903390600090829084908381818185875af1925050503d8060008114610833576040519150601f19603f3d011682016040523d82523d6000602084013e610838565b606091505b505080915050806106945760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064016106ef565b61069483838360405180602001604052806000815250610b8a565b6108ae610fb4565b6107e281611010565b600980546108c490611b0c565b80601f01602080910402602001604051908101604052809291908181526020018280546108f090611b0c565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b505050505081565b600061095082611019565b5192915050565b60006001600160a01b038216610980576040516323d3ad8160e21b815260040160405180910390fd5b6001600160a01b0382166000908152600560205260409020546001600160401b0316156109cc57506001600160a01b03166000908152600560205260409020546001600160401b031690565b6000546109f97f000000000000000000000000962228f791e745273700024d54e3f9897a3e819884611b86565b6001600160a01b031611610a0f57506001919050565b506000919050565b610a1f610fb4565b60008251118015610a31575080518251145b610a705760405162461bcd60e51b815260206004820152601060248201526f098cadccee8d040dcdee840dac2e8c6d60831b60448201526064016106ef565b60005b825181101561069457610abc838281518110610a9157610a91611bad565b6020026020010151838381518110610aab57610aab611bad565b602002602001015161ffff16610f9a565b80610ac681611bc3565b915050610a73565b60606003805461054590611b0c565b610ae5610fb4565b6009610af18282611c2a565b5050565b336001600160a01b03831603610b1e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b95848484610d98565b6001600160a01b0383163b15158015610bb75750610bb584848484611188565b155b15610bd5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610be682610d03565b610c0357604051630a14c4b560e41b815260040160405180910390fd5b6000610c0d611274565b90508051600003610c2d5760405180602001604052806000815250610c58565b80610c3784611283565b604051602001610c48929190611ce9565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610c95610fb4565b6001600160a01b038116610cfa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ef565b6107e281611383565b600081600111158015610d17575060005482105b8015610530575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610da382611019565b80519091506000906001600160a01b0316336001600160a01b03161480610dd157508151610dd19033610c5f565b80610dec575033610de1846105c8565b6001600160a01b0316145b905080610e0c57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e415760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e6857604051633a954ecd60e21b815260040160405180910390fd5b610e786000848460000151610d3c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f6257600054811015610f6257825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b0316600080516020611de483398151915260405160405180910390a45b5050505050565b610af18282604051806020016040528060008152506113d5565b6008546001600160a01b0316331461100e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ef565b565b6107e2816113e2565b60408051606081018252600080825260208201819052918101919091528180600111158015611049575060005481105b1561116f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061116d5780516001600160a01b0316156110bc579392505050565b60095b600019909201600081815260046020908152604091829020825160608101845290546001600160a01b0381168083526001600160401b03600160a01b8304169383019390935260ff600160e01b909104161515928101929092529193909250901561112c57509392505050565b60001901806110bf57507f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198939093016001600160a01b031683525090919050565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111bd903390899088908890600401611d18565b6020604051808303816000875af19250505080156111f8575060408051601f3d908101601f191682019092526111f591810190611d55565b60015b611256573d808015611226576040519150601f19603f3d011682016040523d82523d6000602084013e61122b565b606091505b50805160000361124e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461054590611b0c565b6060816000036112aa5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112d457806112be81611bc3565b91506112cd9050600a83611d88565b91506112ae565b6000816001600160401b038111156112ee576112ee6117df565b6040519080825280601f01601f191660200182016040528015611318576020820181803683370190505b5090505b841561126c5761132d600183611d9c565b915061133a600a86611daf565b611345906030611b73565b60f81b81838151811061135a5761135a611bad565b60200101906001600160f81b031916908160001a90535061137c600a86611d88565b945061131c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61069483838360016114e6565b806000036114035760405163b562e8dd60e01b815260040160405180910390fd5b60008054906114128383611b73565b905061143e827f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198611dc3565b60008054815260046020526040902080546001600160a01b0319166001600160a01b03929092169190911790555b81806001019250827f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198016001600160a01b031660006001600160a01b0316600080516020611de483398151915260405160405180910390a480820361146c57826000808282546114dc9190611b73565b9091555050505050565b6000546001600160a01b03851661150f57604051622e076360e81b815260040160405180910390fd5b836000036115305760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156115e157506001600160a01b0387163b15155b15611657575b60405182906001600160a01b03891690600090600080516020611de4833981519152908290a46116206000888480600101955088611188565b61163d576040516368d2bf6b60e11b815260040160405180910390fd5b8082036115e757826000541461165257600080fd5b61168a565b5b6040516001830192906001600160a01b03891690600090600080516020611de4833981519152908290a4808203611658575b50600055610f93565b6001600160e01b0319811681146107e257600080fd5b6000602082840312156116bb57600080fd5b8135610c5881611693565b60005b838110156116e15781810151838201526020016116c9565b50506000910152565b600081518084526117028160208601602086016116c6565b601f01601f19169290920160200192915050565b602081526000610c5860208301846116ea565b60006020828403121561173b57600080fd5b5035919050565b80356001600160a01b038116811461175957600080fd5b919050565b6000806040838503121561177157600080fd5b61177a83611742565b946020939093013593505050565b60008060006060848603121561179d57600080fd5b6117a684611742565b92506117b460208501611742565b9150604084013590509250925092565b6000602082840312156117d657600080fd5b610c5882611742565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561181d5761181d6117df565b604052919050565b60006001600160401b0382111561183e5761183e6117df565b5060051b60200190565b600082601f83011261185957600080fd5b8135602061186e61186983611825565b6117f5565b82815260059290921b8401810191818101908684111561188d57600080fd5b8286015b848110156118b957803561ffff811681146118ac5760008081fd5b8352918301918301611891565b509695505050505050565b600080604083850312156118d757600080fd5b82356001600160401b03808211156118ee57600080fd5b818501915085601f83011261190257600080fd5b8135602061191261186983611825565b82815260059290921b8401810191818101908984111561193157600080fd5b948201945b838610156119565761194786611742565b82529482019490820190611936565b9650508601359250508082111561196c57600080fd5b5061197985828601611848565b9150509250929050565b60006001600160401b0383111561199c5761199c6117df565b6119af601f8401601f19166020016117f5565b90508281528383830111156119c357600080fd5b828260208301376000602084830101529392505050565b6000602082840312156119ec57600080fd5b81356001600160401b03811115611a0257600080fd5b8201601f81018413611a1357600080fd5b61126c84823560208401611983565b60008060408385031215611a3557600080fd5b611a3e83611742565b915060208301358015158114611a5357600080fd5b809150509250929050565b60008060008060808587031215611a7457600080fd5b611a7d85611742565b9350611a8b60208601611742565b92506040850135915060608501356001600160401b03811115611aad57600080fd5b8501601f81018713611abe57600080fd5b611acd87823560208401611983565b91505092959194509250565b60008060408385031215611aec57600080fd5b611af583611742565b9150611b0360208401611742565b90509250929050565b600181811c90821680611b2057607f821691505b602082108103611b4057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761053057610530611b46565b8082018082111561053057610530611b46565b6001600160a01b03828116828216039080821115611ba657611ba6611b46565b5092915050565b634e487b7160e01b600052603260045260246000fd5b600060018201611bd557611bd5611b46565b5060010190565b601f82111561069457600081815260208120601f850160051c81016020861015611c035750805b601f850160051c820191505b81811015611c2257828155600101611c0f565b505050505050565b81516001600160401b03811115611c4357611c436117df565b611c5781611c518454611b0c565b84611bdc565b602080601f831160018114611c8c5760008415611c745750858301515b600019600386901b1c1916600185901b178555611c22565b600085815260208120601f198616915b82811015611cbb57888601518255948401946001909101908401611c9c565b5085821015611cd95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351611cfb8184602088016116c6565b835190830190611d0f8183602088016116c6565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d4b908301846116ea565b9695505050505050565b600060208284031215611d6757600080fd5b8151610c5881611693565b634e487b7160e01b600052601260045260246000fd5b600082611d9757611d97611d72565b500490565b8181038181111561053057610530611b46565b600082611dbe57611dbe611d72565b500690565b6001600160a01b03818116838216019080821115611ba657611ba6611b4656feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220b522b0a188f09dd689bf7de068441a612148be1310d28a1e385ccbd6ab9f23da64736f6c63430008120033

Deployed Bytecode Sourcemap

48479:1781: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;49283: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;49300:239::-;;;;;;:::i;:::-;;:::i;49975:278::-;;;;;;;;;;;;;:::i;34853:185::-;;;;;;;;;;-1:-1:-1;34853:185:0;;;;;:::i;:::-;;:::i;49547:95::-;;;;;;;;;;-1:-1:-1;49547:95:0;;;;;:::i;:::-;;:::i;48529:83::-;;;;;;;;;;;;;:::i;32061:124::-;;;;;;;;;;-1:-1:-1;32061:124:0;;;;;:::i;:::-;;:::i;48621:48::-;;;;;;;;;;;;;;;28782:395;;;;;;;;;;-1:-1:-1;28782:395:0;;;;;:::i;:::-;;:::i;49670:297::-;;;;;;;;;;-1:-1:-1;49670:297:0;;;;;:::i;:::-;;:::i;4598:87::-;;;;;;;;;;-1:-1:-1;4671:6:0;;-1:-1:-1;;;;;4671:6:0;4598:87;;32421:104;;;;;;;;;;;;;:::i;49088:86::-;;;;;;;;;;-1:-1:-1;49088: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;48676:39::-;;;;;;;;;;;;;;;;;;7536:10:1;7524:23;;;7506:42;;7494:2;7479:18;48676:39:0;7362:192:1;34381:164:0;;;;;;;;;;-1:-1:-1;34381:164:0;;;;;:::i;:::-;;:::i;5050:201::-;;;;;;;;;;-1:-1:-1;5050:201:0;;;;;:::i;:::-;;:::i;48722: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;49300:239::-;48811:9;48824:10;48811:23;48803:66;;;;-1:-1:-1;;;48803:66:0;;8411:2:1;48803:66:0;;;8393:21:1;8450:2;8430:18;;;8423:30;8489:32;8469:18;;;8462:60;8539:18;;48803:66:0;;;;;;;;;49395:18:::1;49407:6:::0;49395:9:::1;:18;:::i;:::-;49382:9;:31;;49374:56;;;::::0;-1:-1:-1;;;49374:56:0;;9075:2:1;49374:56:0::1;::::0;::::1;9057:21:1::0;9114:2;9094:18;;;9087:30;-1:-1:-1;;;9133:18:1;;;9126:42;9185:18;;49374:56:0::1;8873:336:1::0;49374:56:0::1;49283:1:::0;27914:12;27704:7;27898:13;49442:35:::1;49468:9;49442:35;::::0;49458:6;;27898:28;-1:-1:-1;;27898:46:0;49442:22:::1;;;;:::i;:::-;:35;;49434:56;;;::::0;-1:-1:-1;;;49434:56:0;;9546:2:1;49434:56:0::1;::::0;::::1;9528:21:1::0;9585:1;9565:18;;;9558:29;-1:-1:-1;;;9603:18:1;;;9596:38;9651:18;;49434:56:0::1;9344:331:1::0;49434:56:0::1;49502:29;49512:10;49524:6;49502:9;:29::i;:::-;49300:239:::0;:::o;49975:278::-;4484:13;:11;:13::i;:::-;50161:29:::1;::::0;50044:21:::1;::::0;50098:10:::1;::::0;50023:18:::1;::::0;50098:10;;50044:21;;50023:18;50161:29;50023:18;50161:29;50044:21;50098:10;50161:29:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50147:43;;;;;50209:7;50201:44;;;::::0;-1:-1:-1;;;50201:44:0;;10092:2:1;50201:44:0::1;::::0;::::1;10074:21:1::0;10131:2;10111:18;;;10104:30;10170:26;10150:18;;;10143:54;10214:18;;50201:44:0::1;9890:348:1::0;34853:185:0;34991:39;35008:4;35014:2;35018:7;34991:39;;;;;;;;;;;;:16;:39::i;49547:95::-;4484:13;:11;:13::i;:::-;49620:14:::1;49627:6;49620;:14::i;48529:83::-: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;49670:297::-;4484:13;:11;:13::i;:::-;49792:1:::1;49774:8;:15;:19;:53;;;;;49816:4;:11;49797:8;:15;:30;49774:53;49766:82;;;::::0;-1:-1:-1;;;49766:82:0;;10635:2:1;49766:82:0::1;::::0;::::1;10617:21:1::0;10674:2;10654:18;;;10647:30;-1:-1:-1;;;10693:18:1;;;10686:46;10749:18;;49766:82:0::1;10433:340:1::0;49766:82:0::1;49864:6;49859:101;49880:8;:15;49876:1;:19;49859:101;;;49917:31;49927:8;49936:1;49927:11;;;;;;;;:::i;:::-;;;;;;;49940:4;49945:1;49940:7;;;;;;;;:::i;:::-;;;;;;;49917:31;;:9;:31::i;:::-;49897:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49859:101;;32421:104:::0;32477:13;32510:7;32503:14;;;;;:::i;49088:86::-;4484:13;:11;:13::i;:::-;49151:9:::1;:15;49163:3:::0;49151:9;:15:::1;:::i;:::-;;49088: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;;13957:2:1;5131:73:0::1;::::0;::::1;13939:21:1::0;13996:2;13976:18;;;13969:30;14035:34;14015:18;;;14008:62;-1:-1:-1;;;14086:18:1;;;14079:36;14132:19;;5131:73:0::1;13755:402:1::0;5131:73:0::1;5215:28;5234:8;5215:18;:28::i;35733:187::-:0;35790:4;35833:7;49283: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;;14364:2:1;4819:68:0;;;14346:21:1;;;14383:18;;;14376:30;14442:34;14422:18;;;14415:62;14494:18;;4819:68:0;14162: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;;49283: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;48969:111::-;49030:13;49063:9;49056: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:832::-;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;:::-;3788:15;;;3874:1;3870:10;;;;3858:23;;3854:32;;;3819:12;;;;3898:15;;;3895:35;;;3926:1;3923;3916:12;3895:35;3962:2;3954:6;3950:15;3974:313;3990:6;3985:3;3982:15;3974:313;;;4070:3;4057:17;4118:6;4111:5;4107:18;4100:5;4097:29;4087:127;;4168:1;4197:2;4193;4186:14;4087:127;4227:18;;4265:12;;;;4007;;3974:313;;;-1:-1:-1;4305:5:1;3484:832;-1:-1:-1;;;;;;3484:832:1:o;4321:1144::-;4438:6;4446;4499:2;4487:9;4478:7;4474:23;4470:32;4467:52;;;4515:1;4512;4505:12;4467:52;4555:9;4542:23;-1:-1:-1;;;;;4625:2:1;4617:6;4614:14;4611:34;;;4641:1;4638;4631:12;4611:34;4679:6;4668:9;4664:22;4654:32;;4724:7;4717:4;4713:2;4709:13;4705:27;4695:55;;4746:1;4743;4736:12;4695:55;4782:2;4769:16;4804:4;4828:60;4844:43;4884:2;4844:43;:::i;4828:60::-;4922:15;;;5004:1;5000:10;;;;4992:19;;4988:28;;;4953:12;;;;5028:19;;;5025:39;;;5060:1;5057;5050:12;5025:39;5084:11;;;;5104:148;5120:6;5115:3;5112:15;5104:148;;;5186:23;5205:3;5186:23;:::i;:::-;5174:36;;5137:12;;;;5230;;;;5104:148;;;5271:5;-1:-1:-1;;5314:18:1;;5301:32;;-1:-1:-1;;5345:16:1;;;5342:36;;;5374:1;5371;5364:12;5342:36;;5397:62;5451:7;5440:8;5429:9;5425:24;5397:62;:::i;:::-;5387:72;;;4321:1144;;;;;:::o;5470:407::-;5535:5;-1:-1:-1;;;;;5561:6:1;5558:30;5555:56;;;5591:18;;:::i;:::-;5629:57;5674:2;5653:15;;-1:-1:-1;;5649:29:1;5680:4;5645:40;5629:57;:::i;:::-;5620:66;;5709:6;5702:5;5695:21;5749:3;5740:6;5735:3;5731:16;5728:25;5725:45;;;5766:1;5763;5756:12;5725:45;5815:6;5810:3;5803:4;5796:5;5792:16;5779:43;5869:1;5862:4;5853:6;5846:5;5842:18;5838:29;5831:40;5470:407;;;;;:::o;5882:451::-;5951:6;6004:2;5992:9;5983:7;5979:23;5975:32;5972:52;;;6020:1;6017;6010:12;5972:52;6060:9;6047:23;-1:-1:-1;;;;;6085:6:1;6082:30;6079:50;;;6125:1;6122;6115:12;6079:50;6148:22;;6201:4;6193:13;;6189:27;-1:-1:-1;6179:55:1;;6230:1;6227;6220:12;6179:55;6253:74;6319:7;6314:2;6301:16;6296:2;6292;6288:11;6253:74;:::i;6338:347::-;6403:6;6411;6464:2;6452:9;6443:7;6439:23;6435:32;6432:52;;;6480:1;6477;6470:12;6432:52;6503:29;6522:9;6503:29;:::i;:::-;6493:39;;6582:2;6571:9;6567:18;6554:32;6629:5;6622:13;6615:21;6608:5;6605:32;6595:60;;6651:1;6648;6641:12;6595:60;6674:5;6664:15;;;6338:347;;;;;:::o;6690:667::-;6785:6;6793;6801;6809;6862:3;6850:9;6841:7;6837:23;6833:33;6830:53;;;6879:1;6876;6869:12;6830:53;6902:29;6921:9;6902:29;:::i;:::-;6892:39;;6950:38;6984:2;6973:9;6969:18;6950:38;:::i;:::-;6940:48;;7035:2;7024:9;7020:18;7007:32;6997:42;;7090:2;7079:9;7075:18;7062:32;-1:-1:-1;;;;;7109:6:1;7106:30;7103:50;;;7149:1;7146;7139:12;7103:50;7172:22;;7225:4;7217:13;;7213:27;-1:-1:-1;7203:55:1;;7254:1;7251;7244:12;7203:55;7277:74;7343:7;7338:2;7325:16;7320:2;7316;7312:11;7277:74;:::i;:::-;7267:84;;;6690:667;;;;;;;:::o;7559:260::-;7627:6;7635;7688:2;7676:9;7667:7;7663:23;7659:32;7656:52;;;7704:1;7701;7694:12;7656:52;7727:29;7746:9;7727:29;:::i;:::-;7717:39;;7775:38;7809:2;7798:9;7794:18;7775:38;:::i;:::-;7765:48;;7559:260;;;;;:::o;7824:380::-;7903:1;7899:12;;;;7946;;;7967:61;;8021:4;8013:6;8009:17;7999:27;;7967:61;8074:2;8066:6;8063:14;8043:18;8040:38;8037:161;;8120:10;8115:3;8111:20;8108:1;8101:31;8155:4;8152:1;8145:15;8183:4;8180:1;8173:15;8037:161;;7824:380;;;:::o;8568:127::-;8629:10;8624:3;8620:20;8617:1;8610:31;8660:4;8657:1;8650:15;8684:4;8681:1;8674:15;8700:168;8773:9;;;8804;;8821:15;;;8815:22;;8801:37;8791:71;;8842:18;;:::i;9214:125::-;9279:9;;;9300:10;;;9297:36;;;9313:18;;:::i;10243:185::-;-1:-1:-1;;;;;10364:10:1;;;10352;;;10348:27;;10387:12;;;10384:38;;;10402:18;;:::i;:::-;10384:38;10243:185;;;;:::o;10778:127::-;10839:10;10834:3;10830:20;10827:1;10820:31;10870:4;10867:1;10860:15;10894:4;10891:1;10884:15;10910:135;10949:3;10970:17;;;10967:43;;10990:18;;:::i;:::-;-1:-1:-1;11037:1:1;11026:13;;10910:135::o;11176:545::-;11278:2;11273:3;11270:11;11267:448;;;11314:1;11339:5;11335:2;11328:17;11384:4;11380:2;11370:19;11454:2;11442:10;11438:19;11435:1;11431:27;11425:4;11421:38;11490:4;11478:10;11475:20;11472:47;;;-1:-1:-1;11513:4:1;11472:47;11568:2;11563:3;11559:12;11556:1;11552:20;11546:4;11542:31;11532:41;;11623:82;11641:2;11634:5;11631:13;11623:82;;;11686:17;;;11667:1;11656:13;11623:82;;;11627:3;;;11176:545;;;:::o;11897:1352::-;12023:3;12017:10;-1:-1:-1;;;;;12042:6:1;12039:30;12036:56;;;12072:18;;:::i;:::-;12101:97;12191:6;12151:38;12183:4;12177:11;12151:38;:::i;:::-;12145:4;12101:97;:::i;:::-;12253:4;;12317:2;12306:14;;12334:1;12329:663;;;;13036:1;13053:6;13050:89;;;-1:-1:-1;13105:19:1;;;13099:26;13050:89;-1:-1:-1;;11854:1:1;11850:11;;;11846:24;11842:29;11832:40;11878:1;11874:11;;;11829:57;13152:81;;12299:944;;12329:663;11123:1;11116:14;;;11160:4;11147:18;;-1:-1:-1;;12365:20:1;;;12483:236;12497:7;12494:1;12491:14;12483:236;;;12586:19;;;12580:26;12565:42;;12678:27;;;;12646:1;12634:14;;;;12513:19;;12483:236;;;12487:3;12747:6;12738:7;12735:19;12732:201;;;12808:19;;;12802:26;-1:-1:-1;;12891:1:1;12887:14;;;12903:3;12883:24;12879:37;12875:42;12860:58;12845:74;;12732:201;-1:-1:-1;;;;;12979:1:1;12963:14;;;12959:22;12946:36;;-1:-1:-1;11897:1352:1:o;13254:496::-;13433:3;13471:6;13465:13;13487:66;13546:6;13541:3;13534:4;13526:6;13522:17;13487:66;:::i;:::-;13616:13;;13575:16;;;;13638:70;13616:13;13575:16;13685:4;13673:17;;13638:70;:::i;:::-;13724:20;;13254:496;-1:-1:-1;;;;13254:496:1:o;14523:489::-;-1:-1:-1;;;;;14792:15:1;;;14774:34;;14844:15;;14839:2;14824:18;;14817:43;14891:2;14876:18;;14869:34;;;14939:3;14934:2;14919:18;;14912:31;;;14717:4;;14960:46;;14986:19;;14978:6;14960:46;:::i;:::-;14952:54;14523:489;-1:-1:-1;;;;;;14523:489:1:o;15017:249::-;15086:6;15139:2;15127:9;15118:7;15114:23;15110:32;15107:52;;;15155:1;15152;15145:12;15107:52;15187:9;15181:16;15206:30;15230:5;15206:30;:::i;15271:127::-;15332:10;15327:3;15323:20;15320:1;15313:31;15363:4;15360:1;15353:15;15387:4;15384:1;15377:15;15403:120;15443:1;15469;15459:35;;15474:18;;:::i;:::-;-1:-1:-1;15508:9:1;;15403:120::o;15528:128::-;15595:9;;;15616:11;;;15613:37;;;15630:18;;:::i;15661:112::-;15693:1;15719;15709:35;;15724:18;;:::i;:::-;-1:-1:-1;15758:9:1;;15661:112::o;15778:182::-;-1:-1:-1;;;;;15885:10:1;;;15897;;;15881:27;;15920:11;;;15917:37;;;15934:18;;:::i

Swarm Source

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