ETH Price: $3,458.20 (-0.72%)
Gas: 2 Gwei

Token

Shines (SHN)
 

Overview

Max Total Supply

3,333 SHN

Holders

986

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
ferabg.eth
Balance
1 SHN
0x47597e3f4e32157fd75b13ea6c017226d3f4c7aa
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:
Shines

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-24
*/

// SPDX-License-Identifier: UNLICENSED
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public 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 (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * 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/ERC721ABurnable.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is Context, ERC721A {

    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        _burn(tokenId);
    }
}
// File: contracts/Shines.sol


pragma solidity ^0.8.4;





contract Shines is ERC721A, ERC721ABurnable, Pausable, Ownable {
    string private _shines_base_uri = "ipfs://bafybeic6ru6yhnmeiefakg3c7pj5ylskom5bpa6qhjcb2cqcig7u2ezf64/metadata/";
    string private _shines_contract_uri = "ipfs://bafkreiadqeiuvo6l76qwnteeo5ee42n6qocwncds6tlmdbk6ca5ldxw6oy";
    uint256 public constant MAX_TOKENS = 3333;
    uint256 public constant FREE_MINT_TOKENS = 555;
    uint256 public constant MAX_PER_MINT = 20;
    uint256 public constant MINT_PRICE = 0.025 ether;


    constructor() ERC721A("Shines", "SHN") {}

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }


    function safeMint(uint256 amount) public payable whenNotPaused{
        require(totalSupply() + amount <= MAX_TOKENS, "Can't mint that many tokens.");
        require(amount > 0 && amount <= MAX_PER_MINT, "Invalid amount");

        int256 chargable_amount;
        if(totalSupply() < FREE_MINT_TOKENS){
            chargable_amount = int256(amount) + int256(totalSupply()) - int256(FREE_MINT_TOKENS);
        }
        require(chargable_amount * int256(MINT_PRICE) <= int256(msg.value), "Insufficient ETH");

        _safeMint(msg.sender, amount);

    }


    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }


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

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


    function contractURI() public view returns (string memory) {
        return _shines_contract_uri;
    }

    function setContractURI(string memory URI) public onlyOwner {
        _shines_contract_uri = URI;
    }

}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"FREE_MINT_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"payable","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052604c608081815290620020cf60a03980516200002a9160099160209091019062000141565b506040518060800160405280604281526020016200208d6042913980516200005b91600a9160209091019062000141565b503480156200006957600080fd5b5060408051808201825260068152655368696e657360d01b60208083019182528351808501909452600384526229a42760e91b908401528151919291620000b39160029162000141565b508051620000c990600390602084019062000141565b50506008805460ff1916905550620000e133620000e7565b62000224565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014f90620001e7565b90600052602060002090601f016020900481019282620001735760008555620001be565b82601f106200018e57805160ff1916838001178555620001be565b82800160010185558215620001be579182015b82811115620001be578251825591602001919060010190620001a1565b50620001cc929150620001d0565b5090565b5b80821115620001cc5760008155600101620001d1565b600181811c90821680620001fc57607f821691505b602082108114156200021e57634e487b7160e01b600052602260045260246000fd5b50919050565b611e5980620002346000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146104e6578063f106be4a1461052f578063f2fde38b14610545578063f47c84c51461056557600080fd5b8063b88d4fde14610476578063c002d23d14610496578063c87b56dd146104b1578063e8a3d485146104d157600080fd5b80638da5cb5b116100d15780638da5cb5b146103fe578063938e3d7b1461042157806395d89b4114610441578063a22cb4651461045657600080fd5b806370a08231146103b4578063715018a6146103d45780638456cb59146103e957600080fd5b806331c864e81161016f57806342966c681161013e57806342966c681461033c57806355f804b31461035c5780635c975abb1461037c5780636352211e1461039457600080fd5b806331c864e8146102df5780633ccfd60b146102f25780633f4ba83a1461030757806342842e0e1461031c57600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806309d42b301461028357806318160ddd146102a657806323b872dd146102bf57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611a5b565b61057b565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105cd565b6040516101fe9190611b8f565b34801561023557600080fd5b50610249610244366004611ade565b61065f565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611a31565b6106a3565b005b34801561028f57600080fd5b50610298601481565b6040519081526020016101fe565b3480156102b257600080fd5b5060015460005403610298565b3480156102cb57600080fd5b506102816102da36600461193d565b610731565b6102816102ed366004611ade565b61073c565b3480156102fe57600080fd5b506102816108de565b34801561031357600080fd5b5061028161093d565b34801561032857600080fd5b5061028161033736600461193d565b610977565b34801561034857600080fd5b50610281610357366004611ade565b610992565b34801561036857600080fd5b50610281610377366004611a95565b610a0f565b34801561038857600080fd5b5060085460ff166101f2565b3480156103a057600080fd5b506102496103af366004611ade565b610a52565b3480156103c057600080fd5b506102986103cf3660046118ef565b610a64565b3480156103e057600080fd5b50610281610ab3565b3480156103f557600080fd5b50610281610aed565b34801561040a57600080fd5b5060085461010090046001600160a01b0316610249565b34801561042d57600080fd5b5061028161043c366004611a95565b610b25565b34801561044d57600080fd5b5061021c610b68565b34801561046257600080fd5b506102816104713660046119f5565b610b77565b34801561048257600080fd5b50610281610491366004611979565b610c0d565b3480156104a257600080fd5b506102986658d15e1762800081565b3480156104bd57600080fd5b5061021c6104cc366004611ade565b610c47565b3480156104dd57600080fd5b5061021c610ccc565b3480156104f257600080fd5b506101f261050136600461190a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561053b57600080fd5b5061029861022b81565b34801561055157600080fd5b506102816105603660046118ef565b610cdb565b34801561057157600080fd5b50610298610d0581565b60006001600160e01b031982166380ac58cd60e01b14806105ac57506001600160e01b03198216635b5e139f60e01b145b806105c757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105dc90611d4b565b80601f016020809104026020016040519081016040528092919081815260200182805461060890611d4b565b80156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b5050505050905090565b600061066a82610d7c565b610687576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ae82610a52565b9050806001600160a01b0316836001600160a01b031614156106e35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061070357506107018133610501565b155b15610721576040516367d9dca160e11b815260040160405180910390fd5b61072c838383610da7565b505050565b61072c838383610e03565b60085460ff16156107875760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064015b60405180910390fd5b610d05816107986001546000540390565b6107a29190611c18565b11156107f05760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206d696e742074686174206d616e7920746f6b656e732e00000000604482015260640161077e565b600081118015610801575060148111155b61083e5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015260640161077e565b600061022b6108506001546000540390565b101561087d5761022b6108666001546000540390565b6108709084611bd7565b61087a9190611cc9565b90505b3461088f6658d15e1762800083611c44565b13156108d05760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b604482015260640161077e565b6108da3383611019565b5050565b6008546001600160a01b0361010090910416331461090e5760405162461bcd60e51b815260040161077e90611ba2565b6040514790339082156108fc029083906000818181858888f193505050501580156108da573d6000803e3d6000fd5b6008546001600160a01b0361010090910416331461096d5760405162461bcd60e51b815260040161077e90611ba2565b610975611033565b565b61072c83838360405180602001604052806000815250610c0d565b600061099d826110c6565b80519091506000906001600160a01b0316336001600160a01b031614806109cb575081516109cb9033610501565b806109e65750336109db8461065f565b6001600160a01b0316145b905080610a0657604051632ce44b5f60e11b815260040160405180910390fd5b61072c836111e1565b6008546001600160a01b03610100909104163314610a3f5760405162461bcd60e51b815260040161077e90611ba2565b80516108da9060099060208401906117c4565b6000610a5d826110c6565b5192915050565b60006001600160a01b038216610a8d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03610100909104163314610ae35760405162461bcd60e51b815260040161077e90611ba2565b610975600061135f565b6008546001600160a01b03610100909104163314610b1d5760405162461bcd60e51b815260040161077e90611ba2565b6109756113b9565b6008546001600160a01b03610100909104163314610b555760405162461bcd60e51b815260040161077e90611ba2565b80516108da90600a9060208401906117c4565b6060600380546105dc90611d4b565b6001600160a01b038216331415610ba15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c18848484610e03565b610c2484848484611434565b610c41576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c5282610d7c565b610c6f57604051630a14c4b560e41b815260040160405180910390fd5b6000610c79611543565b9050805160001415610c9a5760405180602001604052806000815250610cc5565b80610ca484611552565b604051602001610cb5929190611b23565b6040516020818303038152906040525b9392505050565b6060600a80546105dc90611d4b565b6008546001600160a01b03610100909104163314610d0b5760405162461bcd60e51b815260040161077e90611ba2565b6001600160a01b038116610d705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077e565b610d798161135f565b50565b60008054821080156105c7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610e0e826110c6565b80519091506000906001600160a01b0316336001600160a01b03161480610e3c57508151610e3c9033610501565b80610e57575033610e4c8461065f565b6001600160a01b0316145b905080610e7757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610eac5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610ed357604051633a954ecd60e21b815260040160405180910390fd5b610ee36000848460000151610da7565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610fcf57600054811015610fcf578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6108da828260405180602001604052806000815250611650565b60085460ff1661107c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161077e565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60408051606081018252600080825260208201819052918101829052905482908110156111c857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111c65780516001600160a01b03161561115c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111c1579392505050565b61115c565b505b604051636f96cda160e11b815260040160405180910390fd5b60006111ec826110c6565b90506111fe6000838360000151610da7565b80516001600160a01b039081166000908152600560209081526040808320805467ffffffffffffffff19811667ffffffffffffffff91821660001901821617909155855185168452818420805467ffffffffffffffff60801b198116600160801b9182900484166001908101851690920217909155865188865260049094528285208054600160e01b9588166001600160e01b031990911617600160a01b42909416939093029290921760ff60e01b191693909317905590850180835291205490911661131757600054811015611317578151600082815260046020908152604090912080549185015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b03909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60085460ff16156113ff5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161077e565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110a93390565b60006001600160a01b0384163b1561153757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611478903390899088908890600401611b52565b602060405180830381600087803b15801561149257600080fd5b505af19250505080156114c2575060408051601f3d908101601f191682019092526114bf91810190611a78565b60015b61151d573d8080156114f0576040519150601f19603f3d011682016040523d82523d6000602084013e6114f5565b606091505b508051611515576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061153b565b5060015b949350505050565b6060600980546105dc90611d4b565b6060816115765750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115a0578061158a81611d86565b91506115999050600a83611c30565b915061157a565b60008167ffffffffffffffff8111156115bb576115bb611df7565b6040519080825280601f01601f1916602001820160405280156115e5576020820181803683370190505b5090505b841561153b576115fa600183611d08565b9150611607600a86611da1565b611612906030611c18565b60f81b81838151811061162757611627611de1565b60200101906001600160f81b031916908160001a905350611649600a86611c30565b94506115e9565b61072c83838360016000546001600160a01b03851661168157604051622e076360e81b815260040160405180910390fd5b8361169f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156117bb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611791575061178f6000888488611434565b155b156117af576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161173a565b50600055611012565b8280546117d090611d4b565b90600052602060002090601f0160209004810192826117f25760008555611838565b82601f1061180b57805160ff1916838001178555611838565b82800160010185558215611838579182015b8281111561183857825182559160200191906001019061181d565b50611844929150611848565b5090565b5b808211156118445760008155600101611849565b600067ffffffffffffffff8084111561187857611878611df7565b604051601f8501601f19908116603f011681019082821181831017156118a0576118a0611df7565b816040528093508581528686860111156118b957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118ea57600080fd5b919050565b60006020828403121561190157600080fd5b610cc5826118d3565b6000806040838503121561191d57600080fd5b611926836118d3565b9150611934602084016118d3565b90509250929050565b60008060006060848603121561195257600080fd5b61195b846118d3565b9250611969602085016118d3565b9150604084013590509250925092565b6000806000806080858703121561198f57600080fd5b611998856118d3565b93506119a6602086016118d3565b925060408501359150606085013567ffffffffffffffff8111156119c957600080fd5b8501601f810187136119da57600080fd5b6119e98782356020840161185d565b91505092959194509250565b60008060408385031215611a0857600080fd5b611a11836118d3565b915060208301358015158114611a2657600080fd5b809150509250929050565b60008060408385031215611a4457600080fd5b611a4d836118d3565b946020939093013593505050565b600060208284031215611a6d57600080fd5b8135610cc581611e0d565b600060208284031215611a8a57600080fd5b8151610cc581611e0d565b600060208284031215611aa757600080fd5b813567ffffffffffffffff811115611abe57600080fd5b8201601f81018413611acf57600080fd5b61153b8482356020840161185d565b600060208284031215611af057600080fd5b5035919050565b60008151808452611b0f816020860160208601611d1f565b601f01601f19169290920160200192915050565b60008351611b35818460208801611d1f565b835190830190611b49818360208801611d1f565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b8590830184611af7565b9695505050505050565b602081526000610cc56020830184611af7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600080821280156001600160ff1b0384900385131615611bf957611bf9611db5565b600160ff1b8390038412811615611c1257611c12611db5565b50500190565b60008219821115611c2b57611c2b611db5565b500190565b600082611c3f57611c3f611dcb565b500490565b60006001600160ff1b0381841382841380821686840486111615611c6a57611c6a611db5565b600160ff1b6000871282811687830589121615611c8957611c89611db5565b60008712925087820587128484161615611ca557611ca5611db5565b87850587128184161615611cbb57611cbb611db5565b505050929093029392505050565b60008083128015600160ff1b850184121615611ce757611ce7611db5565b6001600160ff1b0384018313811615611d0257611d02611db5565b50500390565b600082821015611d1a57611d1a611db5565b500390565b60005b83811015611d3a578181015183820152602001611d22565b83811115610c415750506000910152565b600181811c90821680611d5f57607f821691505b60208210811415611d8057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d9a57611d9a611db5565b5060010190565b600082611db057611db0611dcb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d7957600080fdfea26469706673582212205044faf6aad422d1708b40bf541d5c1e65a7d731026ca2c8cf235ce1d5ba25ca64736f6c63430008070033697066733a2f2f6261666b726569616471656975766f366c373671776e7465656f35656534326e36716f63776e63647336746c6d64626b366361356c647877366f79697066733a2f2f62616679626569633672753679686e6d65696566616b67336337706a35796c736b6f6d356270613671686a6362326371636967377532657a6636342f6d657461646174612f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146104e6578063f106be4a1461052f578063f2fde38b14610545578063f47c84c51461056557600080fd5b8063b88d4fde14610476578063c002d23d14610496578063c87b56dd146104b1578063e8a3d485146104d157600080fd5b80638da5cb5b116100d15780638da5cb5b146103fe578063938e3d7b1461042157806395d89b4114610441578063a22cb4651461045657600080fd5b806370a08231146103b4578063715018a6146103d45780638456cb59146103e957600080fd5b806331c864e81161016f57806342966c681161013e57806342966c681461033c57806355f804b31461035c5780635c975abb1461037c5780636352211e1461039457600080fd5b806331c864e8146102df5780633ccfd60b146102f25780633f4ba83a1461030757806342842e0e1461031c57600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806309d42b301461028357806318160ddd146102a657806323b872dd146102bf57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611a5b565b61057b565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105cd565b6040516101fe9190611b8f565b34801561023557600080fd5b50610249610244366004611ade565b61065f565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611a31565b6106a3565b005b34801561028f57600080fd5b50610298601481565b6040519081526020016101fe565b3480156102b257600080fd5b5060015460005403610298565b3480156102cb57600080fd5b506102816102da36600461193d565b610731565b6102816102ed366004611ade565b61073c565b3480156102fe57600080fd5b506102816108de565b34801561031357600080fd5b5061028161093d565b34801561032857600080fd5b5061028161033736600461193d565b610977565b34801561034857600080fd5b50610281610357366004611ade565b610992565b34801561036857600080fd5b50610281610377366004611a95565b610a0f565b34801561038857600080fd5b5060085460ff166101f2565b3480156103a057600080fd5b506102496103af366004611ade565b610a52565b3480156103c057600080fd5b506102986103cf3660046118ef565b610a64565b3480156103e057600080fd5b50610281610ab3565b3480156103f557600080fd5b50610281610aed565b34801561040a57600080fd5b5060085461010090046001600160a01b0316610249565b34801561042d57600080fd5b5061028161043c366004611a95565b610b25565b34801561044d57600080fd5b5061021c610b68565b34801561046257600080fd5b506102816104713660046119f5565b610b77565b34801561048257600080fd5b50610281610491366004611979565b610c0d565b3480156104a257600080fd5b506102986658d15e1762800081565b3480156104bd57600080fd5b5061021c6104cc366004611ade565b610c47565b3480156104dd57600080fd5b5061021c610ccc565b3480156104f257600080fd5b506101f261050136600461190a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561053b57600080fd5b5061029861022b81565b34801561055157600080fd5b506102816105603660046118ef565b610cdb565b34801561057157600080fd5b50610298610d0581565b60006001600160e01b031982166380ac58cd60e01b14806105ac57506001600160e01b03198216635b5e139f60e01b145b806105c757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105dc90611d4b565b80601f016020809104026020016040519081016040528092919081815260200182805461060890611d4b565b80156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b5050505050905090565b600061066a82610d7c565b610687576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ae82610a52565b9050806001600160a01b0316836001600160a01b031614156106e35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061070357506107018133610501565b155b15610721576040516367d9dca160e11b815260040160405180910390fd5b61072c838383610da7565b505050565b61072c838383610e03565b60085460ff16156107875760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064015b60405180910390fd5b610d05816107986001546000540390565b6107a29190611c18565b11156107f05760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206d696e742074686174206d616e7920746f6b656e732e00000000604482015260640161077e565b600081118015610801575060148111155b61083e5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015260640161077e565b600061022b6108506001546000540390565b101561087d5761022b6108666001546000540390565b6108709084611bd7565b61087a9190611cc9565b90505b3461088f6658d15e1762800083611c44565b13156108d05760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b604482015260640161077e565b6108da3383611019565b5050565b6008546001600160a01b0361010090910416331461090e5760405162461bcd60e51b815260040161077e90611ba2565b6040514790339082156108fc029083906000818181858888f193505050501580156108da573d6000803e3d6000fd5b6008546001600160a01b0361010090910416331461096d5760405162461bcd60e51b815260040161077e90611ba2565b610975611033565b565b61072c83838360405180602001604052806000815250610c0d565b600061099d826110c6565b80519091506000906001600160a01b0316336001600160a01b031614806109cb575081516109cb9033610501565b806109e65750336109db8461065f565b6001600160a01b0316145b905080610a0657604051632ce44b5f60e11b815260040160405180910390fd5b61072c836111e1565b6008546001600160a01b03610100909104163314610a3f5760405162461bcd60e51b815260040161077e90611ba2565b80516108da9060099060208401906117c4565b6000610a5d826110c6565b5192915050565b60006001600160a01b038216610a8d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03610100909104163314610ae35760405162461bcd60e51b815260040161077e90611ba2565b610975600061135f565b6008546001600160a01b03610100909104163314610b1d5760405162461bcd60e51b815260040161077e90611ba2565b6109756113b9565b6008546001600160a01b03610100909104163314610b555760405162461bcd60e51b815260040161077e90611ba2565b80516108da90600a9060208401906117c4565b6060600380546105dc90611d4b565b6001600160a01b038216331415610ba15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c18848484610e03565b610c2484848484611434565b610c41576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c5282610d7c565b610c6f57604051630a14c4b560e41b815260040160405180910390fd5b6000610c79611543565b9050805160001415610c9a5760405180602001604052806000815250610cc5565b80610ca484611552565b604051602001610cb5929190611b23565b6040516020818303038152906040525b9392505050565b6060600a80546105dc90611d4b565b6008546001600160a01b03610100909104163314610d0b5760405162461bcd60e51b815260040161077e90611ba2565b6001600160a01b038116610d705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077e565b610d798161135f565b50565b60008054821080156105c7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610e0e826110c6565b80519091506000906001600160a01b0316336001600160a01b03161480610e3c57508151610e3c9033610501565b80610e57575033610e4c8461065f565b6001600160a01b0316145b905080610e7757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610eac5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610ed357604051633a954ecd60e21b815260040160405180910390fd5b610ee36000848460000151610da7565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610fcf57600054811015610fcf578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6108da828260405180602001604052806000815250611650565b60085460ff1661107c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161077e565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60408051606081018252600080825260208201819052918101829052905482908110156111c857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111c65780516001600160a01b03161561115c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111c1579392505050565b61115c565b505b604051636f96cda160e11b815260040160405180910390fd5b60006111ec826110c6565b90506111fe6000838360000151610da7565b80516001600160a01b039081166000908152600560209081526040808320805467ffffffffffffffff19811667ffffffffffffffff91821660001901821617909155855185168452818420805467ffffffffffffffff60801b198116600160801b9182900484166001908101851690920217909155865188865260049094528285208054600160e01b9588166001600160e01b031990911617600160a01b42909416939093029290921760ff60e01b191693909317905590850180835291205490911661131757600054811015611317578151600082815260046020908152604090912080549185015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b03909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60085460ff16156113ff5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161077e565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110a93390565b60006001600160a01b0384163b1561153757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611478903390899088908890600401611b52565b602060405180830381600087803b15801561149257600080fd5b505af19250505080156114c2575060408051601f3d908101601f191682019092526114bf91810190611a78565b60015b61151d573d8080156114f0576040519150601f19603f3d011682016040523d82523d6000602084013e6114f5565b606091505b508051611515576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061153b565b5060015b949350505050565b6060600980546105dc90611d4b565b6060816115765750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115a0578061158a81611d86565b91506115999050600a83611c30565b915061157a565b60008167ffffffffffffffff8111156115bb576115bb611df7565b6040519080825280601f01601f1916602001820160405280156115e5576020820181803683370190505b5090505b841561153b576115fa600183611d08565b9150611607600a86611da1565b611612906030611c18565b60f81b81838151811061162757611627611de1565b60200101906001600160f81b031916908160001a905350611649600a86611c30565b94506115e9565b61072c83838360016000546001600160a01b03851661168157604051622e076360e81b815260040160405180910390fd5b8361169f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156117bb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611791575061178f6000888488611434565b155b156117af576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161173a565b50600055611012565b8280546117d090611d4b565b90600052602060002090601f0160209004810192826117f25760008555611838565b82601f1061180b57805160ff1916838001178555611838565b82800160010185558215611838579182015b8281111561183857825182559160200191906001019061181d565b50611844929150611848565b5090565b5b808211156118445760008155600101611849565b600067ffffffffffffffff8084111561187857611878611df7565b604051601f8501601f19908116603f011681019082821181831017156118a0576118a0611df7565b816040528093508581528686860111156118b957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118ea57600080fd5b919050565b60006020828403121561190157600080fd5b610cc5826118d3565b6000806040838503121561191d57600080fd5b611926836118d3565b9150611934602084016118d3565b90509250929050565b60008060006060848603121561195257600080fd5b61195b846118d3565b9250611969602085016118d3565b9150604084013590509250925092565b6000806000806080858703121561198f57600080fd5b611998856118d3565b93506119a6602086016118d3565b925060408501359150606085013567ffffffffffffffff8111156119c957600080fd5b8501601f810187136119da57600080fd5b6119e98782356020840161185d565b91505092959194509250565b60008060408385031215611a0857600080fd5b611a11836118d3565b915060208301358015158114611a2657600080fd5b809150509250929050565b60008060408385031215611a4457600080fd5b611a4d836118d3565b946020939093013593505050565b600060208284031215611a6d57600080fd5b8135610cc581611e0d565b600060208284031215611a8a57600080fd5b8151610cc581611e0d565b600060208284031215611aa757600080fd5b813567ffffffffffffffff811115611abe57600080fd5b8201601f81018413611acf57600080fd5b61153b8482356020840161185d565b600060208284031215611af057600080fd5b5035919050565b60008151808452611b0f816020860160208601611d1f565b601f01601f19169290920160200192915050565b60008351611b35818460208801611d1f565b835190830190611b49818360208801611d1f565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b8590830184611af7565b9695505050505050565b602081526000610cc56020830184611af7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600080821280156001600160ff1b0384900385131615611bf957611bf9611db5565b600160ff1b8390038412811615611c1257611c12611db5565b50500190565b60008219821115611c2b57611c2b611db5565b500190565b600082611c3f57611c3f611dcb565b500490565b60006001600160ff1b0381841382841380821686840486111615611c6a57611c6a611db5565b600160ff1b6000871282811687830589121615611c8957611c89611db5565b60008712925087820587128484161615611ca557611ca5611db5565b87850587128184161615611cbb57611cbb611db5565b505050929093029392505050565b60008083128015600160ff1b850184121615611ce757611ce7611db5565b6001600160ff1b0384018313811615611d0257611d02611db5565b50500390565b600082821015611d1a57611d1a611db5565b500390565b60005b83811015611d3a578181015183820152602001611d22565b83811115610c415750506000910152565b600181811c90821680611d5f57607f821691505b60208210811415611d8057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d9a57611d9a611db5565b5060010190565b600082611db057611db0611dcb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d7957600080fdfea26469706673582212205044faf6aad422d1708b40bf541d5c1e65a7d731026ca2c8cf235ce1d5ba25ca64736f6c63430008070033

Deployed Bytecode Sourcemap

47996:1888:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29847:305;;;;;;;;;;-1:-1:-1;29847:305:0;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;29847:305:0;;;;;;;;33207:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34710:204::-;;;;;;;;;;-1:-1:-1;34710:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;34710:204:0;4780:203:1;34273:371:0;;;;;;;;;;-1:-1:-1;34273:371:0;;;;;:::i;:::-;;:::i;:::-;;48399:41;;;;;;;;;;;;48438:2;48399:41;;;;;8550:25:1;;;8538:2;8523:18;48399:41:0;8404:177:1;29504:271:0;;;;;;;;;;-1:-1:-1;29740:12:0;;29548:7;29724:13;:28;29504:271;;35567:170;;;;;;;;;;-1:-1:-1;35567:170:0;;;;;:::i;:::-;;:::i;48699:567::-;;;;;;:::i;:::-;;:::i;49276:143::-;;;;;;;;;;;;;:::i;48624:65::-;;;;;;;;;;;;;:::i;35808:185::-;;;;;;;;;;-1:-1:-1;35808:185:0;;;;;:::i;:::-;;:::i;47498:423::-;;;;;;;;;;-1:-1:-1;47498:423:0;;;;;:::i;:::-;;:::i;49546:105::-;;;;;;;;;;-1:-1:-1;49546:105:0;;;;;:::i;:::-;;:::i;6719:86::-;;;;;;;;;;-1:-1:-1;6790:7:0;;;;6719:86;;33016:124;;;;;;;;;;-1:-1:-1;33016:124:0;;;;;:::i;:::-;;:::i;30216:206::-;;;;;;;;;;-1:-1:-1;30216:206:0;;;;;:::i;:::-;;:::i;4770:103::-;;;;;;;;;;;;;:::i;48555:61::-;;;;;;;;;;;;;:::i;4119:87::-;;;;;;;;;;-1:-1:-1;4192:6:0;;;;;-1:-1:-1;;;;;4192:6:0;4119:87;;49774:105;;;;;;;;;;-1:-1:-1;49774:105:0;;;;;:::i;:::-;;:::i;33376:104::-;;;;;;;;;;;;;:::i;34986:279::-;;;;;;;;;;-1:-1:-1;34986:279:0;;;;;:::i;:::-;;:::i;36064:342::-;;;;;;;;;;-1:-1:-1;36064:342:0;;;;;:::i;:::-;;:::i;48447:48::-;;;;;;;;;;;;48484:11;48447:48;;33551:318;;;;;;;;;;-1:-1:-1;33551:318:0;;;;;:::i;:::-;;:::i;49661:105::-;;;;;;;;;;;;;:::i;35336:164::-;;;;;;;;;;-1:-1:-1;35336:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35457:25:0;;;35433:4;35457:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35336:164;48346:46;;;;;;;;;;;;48389:3;48346:46;;5028:201;;;;;;;;;;-1:-1:-1;5028:201:0;;;;;:::i;:::-;;:::i;48298:41::-;;;;;;;;;;;;48335:4;48298:41;;29847:305;29949:4;-1:-1:-1;;;;;;29986:40:0;;-1:-1:-1;;;29986:40:0;;:105;;-1:-1:-1;;;;;;;30043:48:0;;-1:-1:-1;;;30043:48:0;29986:105;:158;;;-1:-1:-1;;;;;;;;;;19330:40:0;;;30108:36;29966:178;29847:305;-1:-1:-1;;29847:305:0:o;33207:100::-;33261:13;33294:5;33287:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33207:100;:::o;34710:204::-;34778:7;34803:16;34811:7;34803;:16::i;:::-;34798:64;;34828:34;;-1:-1:-1;;;34828:34:0;;;;;;;;;;;34798:64;-1:-1:-1;34882:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34882:24:0;;34710:204::o;34273:371::-;34346:13;34362:24;34378:7;34362:15;:24::i;:::-;34346:40;;34407:5;-1:-1:-1;;;;;34401:11:0;:2;-1:-1:-1;;;;;34401:11:0;;34397:48;;;34421:24;;-1:-1:-1;;;34421:24:0;;;;;;;;;;;34397:48;2923:10;-1:-1:-1;;;;;34462:21:0;;;;;;:63;;-1:-1:-1;34488:37:0;34505:5;2923:10;35336:164;:::i;34488:37::-;34487:38;34462:63;34458:138;;;34549:35;;-1:-1:-1;;;34549:35:0;;;;;;;;;;;34458:138;34608:28;34617:2;34621:7;34630:5;34608:8;:28::i;:::-;34335:309;34273:371;;:::o;35567:170::-;35701:28;35711:4;35717:2;35721:7;35701:9;:28::i;48699:567::-;6790:7;;;;7044:9;7036:38;;;;-1:-1:-1;;;7036:38:0;;7900:2:1;7036:38:0;;;7882:21:1;7939:2;7919:18;;;7912:30;-1:-1:-1;;;7958:18:1;;;7951:46;8014:18;;7036:38:0;;;;;;;;;48335:4:::1;48796:6;48780:13;29740:12:::0;;29548:7;29724:13;:28;;29504:271;48780:13:::1;:22;;;;:::i;:::-;:36;;48772:77;;;::::0;-1:-1:-1;;;48772:77:0;;6793:2:1;48772:77:0::1;::::0;::::1;6775:21:1::0;6832:2;6812:18;;;6805:30;6871;6851:18;;;6844:58;6919:18;;48772:77:0::1;6591:352:1::0;48772:77:0::1;48877:1;48868:6;:10;:36;;;;;48438:2;48882:6;:22;;48868:36;48860:63;;;::::0;-1:-1:-1;;;48860:63:0;;7557:2:1;48860:63:0::1;::::0;::::1;7539:21:1::0;7596:2;7576:18;;;7569:30;-1:-1:-1;;;7615:18:1;;;7608:44;7669:18;;48860:63:0::1;7355:338:1::0;48860:63:0::1;48936:23;48389:3;48973:13;29740:12:::0;;29548:7;29724:13;:28;;29504:271;48973:13:::1;:32;48970:147;;;48389:3;49064:13;29740:12:::0;;29548:7;29724:13;:28;;29504:271;49064:13:::1;49040:38;::::0;49047:6;49040:38:::1;:::i;:::-;:65;;;;:::i;:::-;49021:84;;48970:147;49183:9;49135:37;48484:11;49135:16:::0;:37:::1;:::i;:::-;:58;;49127:87;;;::::0;-1:-1:-1;;;49127:87:0;;6099:2:1;49127:87:0::1;::::0;::::1;6081:21:1::0;6138:2;6118:18;;;6111:30;-1:-1:-1;;;6157:18:1;;;6150:46;6213:18;;49127:87:0::1;5897:340:1::0;49127:87:0::1;49227:29;49237:10;49249:6;49227:9;:29::i;:::-;48761:505;48699:567:::0;:::o;49276:143::-;4192:6;;-1:-1:-1;;;;;4192:6:0;;;;;2923:10;4339:23;4331:68;;;;-1:-1:-1;;;4331:68:0;;;;;;;:::i;:::-;49374:37:::1;::::0;49342:21:::1;::::0;49382:10:::1;::::0;49374:37;::::1;;;::::0;49342:21;;49324:15:::1;49374:37:::0;49324:15;49374:37;49342:21;49382:10;49374:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;48624:65:::0;4192:6;;-1:-1:-1;;;;;4192:6:0;;;;;2923:10;4339:23;4331:68;;;;-1:-1:-1;;;4331:68:0;;;;;;;:::i;:::-;48671:10:::1;:8;:10::i;:::-;48624:65::o:0;35808:185::-;35946:39;35963:4;35969:2;35973:7;35946:39;;;;;;;;;;;;:16;:39::i;47498:423::-;47555:35;47593:20;47605:7;47593:11;:20::i;:::-;47668:18;;47555:58;;-1:-1:-1;47626:22:0;;-1:-1:-1;;;;;47652:34:0;2923:10;-1:-1:-1;;;;;47652:34:0;;:101;;;-1:-1:-1;47720:18:0;;47703:50;;2923:10;35336:164;:::i;47703:50::-;47652:154;;;-1:-1:-1;2923:10:0;47770:20;47782:7;47770:11;:20::i;:::-;-1:-1:-1;;;;;47770:36:0;;47652:154;47626:181;;47825:17;47820:66;;47851:35;;-1:-1:-1;;;47851:35:0;;;;;;;;;;;47820:66;47899:14;47905:7;47899:5;:14::i;49546:105::-;4192:6;;-1:-1:-1;;;;;4192:6:0;;;;;2923:10;4339:23;4331:68;;;;-1:-1:-1;;;4331:68:0;;;;;;;:::i;:::-;49617:26;;::::1;::::0;:16:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;33016:124::-:0;33080:7;33107:20;33119:7;33107:11;:20::i;:::-;:25;;33016:124;-1:-1:-1;;33016:124:0:o;30216:206::-;30280:7;-1:-1:-1;;;;;30304:19:0;;30300:60;;30332:28;;-1:-1:-1;;;30332:28:0;;;;;;;;;;;30300:60;-1:-1:-1;;;;;;30386:19:0;;;;;:12;:19;;;;;:27;;;;30216:206::o;4770:103::-;4192:6;;-1:-1:-1;;;;;4192:6:0;;;;;2923:10;4339:23;4331:68;;;;-1:-1:-1;;;4331:68:0;;;;;;;:::i;:::-;4835:30:::1;4862:1;4835:18;:30::i;48555:61::-:0;4192:6;;-1:-1:-1;;;;;4192:6:0;;;;;2923:10;4339:23;4331:68;;;;-1:-1:-1;;;4331:68:0;;;;;;;:::i;:::-;48600:8:::1;:6;:8::i;49774:105::-:0;4192:6;;-1:-1:-1;;;;;4192:6:0;;;;;2923:10;4339:23;4331:68;;;;-1:-1:-1;;;4331:68:0;;;;;;;:::i;:::-;49845:26;;::::1;::::0;:20:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;33376:104::-:0;33432:13;33465:7;33458:14;;;;;:::i;34986:279::-;-1:-1:-1;;;;;35077:24:0;;2923:10;35077:24;35073:54;;;35110:17;;-1:-1:-1;;;35110:17:0;;;;;;;;;;;35073:54;2923:10;35140:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35140:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35140:53:0;;;;;;;;;;35209:48;;5621:41:1;;;35140:42:0;;2923:10;35209:48;;5594:18:1;35209:48:0;;;;;;;34986:279;;:::o;36064:342::-;36231:28;36241:4;36247:2;36251:7;36231:9;:28::i;:::-;36275:48;36298:4;36304:2;36308:7;36317:5;36275:22;:48::i;:::-;36270:129;;36347:40;;-1:-1:-1;;;36347:40:0;;;;;;;;;;;36270:129;36064:342;;;;:::o;33551:318::-;33624:13;33655:16;33663:7;33655;:16::i;:::-;33650:59;;33680:29;;-1:-1:-1;;;33680:29:0;;;;;;;;;;;33650:59;33722:21;33746:10;:8;:10::i;:::-;33722:34;;33780:7;33774:21;33799:1;33774:26;;:87;;;;;;;;;;;;;;;;;33827:7;33836:18;:7;:16;:18::i;:::-;33810:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33774:87;33767:94;33551:318;-1:-1:-1;;;33551:318:0:o;49661:105::-;49705:13;49738:20;49731:27;;;;;:::i;5028:201::-;4192:6;;-1:-1:-1;;;;;4192:6:0;;;;;2923:10;4339:23;4331:68;;;;-1:-1:-1;;;4331:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5117:22:0;::::1;5109:73;;;::::0;-1:-1:-1;;;5109:73:0;;7150:2:1;5109:73:0::1;::::0;::::1;7132:21:1::0;7189:2;7169:18;;;7162:30;7228:34;7208:18;;;7201:62;-1:-1:-1;;;7279:18:1;;;7272:36;7325:19;;5109:73:0::1;6948:402:1::0;5109:73:0::1;5193:28;5212:8;5193:18;:28::i;:::-;5028:201:::0;:::o;36661:144::-;36718:4;36752:13;;36742:7;:23;:55;;;;-1:-1:-1;;36770:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36770:27:0;;;;36769:28;;36661:144::o;43867:196::-;43982:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43982:29:0;-1:-1:-1;;;;;43982:29:0;;;;;;;;;44027:28;;43982:24;;44027:28;;;;;;;43867:196;;;:::o;39368:2112::-;39483:35;39521:20;39533:7;39521:11;:20::i;:::-;39596:18;;39483:58;;-1:-1:-1;39554:22:0;;-1:-1:-1;;;;;39580:34:0;2923:10;-1:-1:-1;;;;;39580:34:0;;:101;;;-1:-1:-1;39648:18:0;;39631:50;;2923:10;35336:164;:::i;39631:50::-;39580:154;;;-1:-1:-1;2923:10:0;39698:20;39710:7;39698:11;:20::i;:::-;-1:-1:-1;;;;;39698:36:0;;39580:154;39554:181;;39753:17;39748:66;;39779:35;;-1:-1:-1;;;39779:35:0;;;;;;;;;;;39748:66;39851:4;-1:-1:-1;;;;;39829:26:0;:13;:18;;;-1:-1:-1;;;;;39829:26:0;;39825:67;;39864:28;;-1:-1:-1;;;39864:28:0;;;;;;;;;;;39825:67;-1:-1:-1;;;;;39907:16:0;;39903:52;;39932:23;;-1:-1:-1;;;39932:23:0;;;;;;;;;;;39903:52;40076:49;40093:1;40097:7;40106:13;:18;;;40076:8;:49::i;:::-;-1:-1:-1;;;;;40421:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40421:31:0;;;;;;;-1:-1:-1;;40421:31:0;;;;;;;40467:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40467:29:0;;;;;;;;;;;40513:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;40558:61:0;;;;-1:-1:-1;;;40603:15:0;40558:61;;;;;;;;;;;40893:11;;;40923:24;;;;;:29;40893:11;;40923:29;40919:445;;41148:13;;41134:11;:27;41130:219;;;41218:18;;;41186:24;;;:11;:24;;;;;;;;:50;;41301:28;;;;41259:70;;-1:-1:-1;;;41259:70:0;-1:-1:-1;;;;;;41259:70:0;;;-1:-1:-1;;;;;41186:50:0;;;41259:70;;;;;;;41130:219;40396:979;41411:7;41407:2;-1:-1:-1;;;;;41392:27:0;41401:4;-1:-1:-1;;;;;41392:27:0;;;;;;;;;;;41430:42;39472:2008;;39368:2112;;;:::o;36813:104::-;36882:27;36892:2;36896:8;36882:27;;;;;;;;;;;;:9;:27::i;7778:120::-;6790:7;;;;7314:41;;;;-1:-1:-1;;;7314:41:0;;6444:2:1;7314:41:0;;;6426:21:1;6483:2;6463:18;;;6456:30;-1:-1:-1;;;6502:18:1;;;6495:50;6562:18;;7314:41:0;6242:344:1;7314:41:0;7837:7:::1;:15:::0;;-1:-1:-1;;7837:15:0::1;::::0;;7868:22:::1;2923:10:::0;7877:12:::1;7868:22;::::0;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;7868:22:0::1;;;;;;;7778:120::o:0;31871:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;32037:13:0;;31981:7;;32030:20;;32026:861;;;32071:31;32105:17;;;:11;:17;;;;;;;;;32071:51;;;;;;;;;-1:-1:-1;;;;;32071:51:0;;;;-1:-1:-1;;;32071:51:0;;;;;;;;;;;-1:-1:-1;;;32071:51:0;;;;;;;;;;;;;;32141:731;;32191:14;;-1:-1:-1;;;;;32191:28:0;;32187:101;;32255:9;31871:1083;-1:-1:-1;;;31871:1083:0:o;32187:101::-;-1:-1:-1;;;32632:6:0;32677:17;;;;:11;:17;;;;;;;;;32665:29;;;;;;;;;-1:-1:-1;;;;;32665:29:0;;;;;-1:-1:-1;;;32665:29:0;;;;;;;;;;;-1:-1:-1;;;32665:29:0;;;;;;;;;;;;;32725:28;32721:109;;32793:9;31871:1083;-1:-1:-1;;;31871:1083:0:o;32721:109::-;32592:261;;;32052:835;32026:861;32915:31;;-1:-1:-1;;;32915:31:0;;;;;;;;;;;41709:2040;41769:35;41807:20;41819:7;41807:11;:20::i;:::-;41769:58;-1:-1:-1;41970:49:0;41987:1;41991:7;42000:13;:18;;;41970:8;:49::i;:::-;42328:18;;-1:-1:-1;;;;;42315:32:0;;;;;;;:12;:32;;;;;;;;:45;;-1:-1:-1;;42315:45:0;;;;;;-1:-1:-1;;42315:45:0;;;;;;;42388:18;;42375:32;;;;;;;:50;;-1:-1:-1;;;;42375:50:0;;-1:-1:-1;;;42375:50:0;;;;;;-1:-1:-1;42375:50:0;;;;;;;;;;;;42552:18;;42524:20;;;:11;:20;;;;;;:46;;-1:-1:-1;;;42524:46:0;;;-1:-1:-1;;;;;;42585:61:0;;;;-1:-1:-1;;;42630:15:0;42585:61;;;;;;;;;;;-1:-1:-1;;;;42661:34:0;;;;;;;42965:11;;;42995:24;;;;;:29;42965:11;;42995:29;42991:445;;43220:13;;43206:11;:27;43202:219;;;43290:18;;;43258:24;;;:11;:24;;;;;;;;:50;;43373:28;;;;43331:70;;-1:-1:-1;;;43331:70:0;-1:-1:-1;;;;;;43331:70:0;;;-1:-1:-1;;;;;43258:50:0;;;43331:70;;;;;;;43202:219;-1:-1:-1;43473:18:0;;43464:49;;43505:7;;43501:1;;-1:-1:-1;;;;;43464:49:0;;;;;;43501:1;;43464:49;-1:-1:-1;;43716:12:0;:14;;;;;;41709:2040::o;5389:191::-;5482:6;;;-1:-1:-1;;;;;5499:17:0;;;5482:6;5499:17;;;-1:-1:-1;;;;;;5499:17:0;;;;;;5532:40;;5482:6;;;;;;;;5532:40;;5463:16;;5532:40;5452:128;5389:191;:::o;7519:118::-;6790:7;;;;7044:9;7036:38;;;;-1:-1:-1;;;7036:38:0;;7900:2:1;7036:38:0;;;7882:21:1;7939:2;7919:18;;;7912:30;-1:-1:-1;;;7958:18:1;;;7951:46;8014:18;;7036:38:0;7698:340:1;7036:38:0;7579:7:::1;:14:::0;;-1:-1:-1;;7579:14:0::1;7589:4;7579:14;::::0;;7609:20:::1;7616:12;2923:10:::0;;2843:98;44628:790;44783:4;-1:-1:-1;;;;;44804:13:0;;9433:19;:23;44800:611;;44840:72;;-1:-1:-1;;;44840:72:0;;-1:-1:-1;;;;;44840:36:0;;;;;:72;;2923:10;;44891:4;;44897:7;;44906:5;;44840:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44840:72:0;;;;;;;;-1:-1:-1;;44840:72:0;;;;;;;;;;;;:::i;:::-;;;44836:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45086:13:0;;45082:259;;45136:40;;-1:-1:-1;;;45136:40:0;;;;;;;;;;;45082:259;45291:6;45285:13;45276:6;45272:2;45268:15;45261:38;44836:520;-1:-1:-1;;;;;;44963:55:0;-1:-1:-1;;;44963:55:0;;-1:-1:-1;44956:62:0;;44800:611;-1:-1:-1;45395:4:0;44800:611;44628:790;;;;;;:::o;49429:109::-;49481:13;49514:16;49507:23;;;;;:::i;405:723::-;461:13;682:10;678:53;;-1:-1:-1;;709:10:0;;;;;;;;;;;;-1:-1:-1;;;709:10:0;;;;;405:723::o;678:53::-;756:5;741:12;797:78;804:9;;797:78;;830:8;;;;:::i;:::-;;-1:-1:-1;853:10:0;;-1:-1:-1;861:2:0;853:10;;:::i;:::-;;;797:78;;;885:19;917:6;907:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;907:17:0;;885:39;;935:154;942:10;;935:154;;969:11;979:1;969:11;;:::i;:::-;;-1:-1:-1;1038:10:0;1046:2;1038:5;:10;:::i;:::-;1025:24;;:2;:24;:::i;:::-;1012:39;;995:6;1002;995:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;995:56:0;;;;;;;;-1:-1:-1;1066:11:0;1075:2;1066:11;;:::i;:::-;;;935:154;;37280:163;37403:32;37409:2;37413:8;37423:5;37430:4;37841:20;37864:13;-1:-1:-1;;;;;37892:16:0;;37888:48;;37917:19;;-1:-1:-1;;;37917:19:0;;;;;;;;;;;37888:48;37951:13;37947:44;;37973:18;;-1:-1:-1;;;37973:18:0;;;;;;;;;;;37947:44;-1:-1:-1;;;;;38342:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38401:49:0;;38342:44;;;;;;;;38401:49;;;;-1:-1:-1;;38342:44:0;;;;;;38401:49;;;;;;;;;;;;;;;;38467:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;38517:66:0;;;;-1:-1:-1;;;38567:15:0;38517:66;;;;;;;;;;;38467:25;;38652:328;38672:8;38668:1;:12;38652:328;;;38711:38;;38736:12;;-1:-1:-1;;;;;38711:38:0;;;38728:1;;38711:38;;38728:1;;38711:38;38772:4;:68;;;;;38781:59;38812:1;38816:2;38820:12;38834:5;38781:22;:59::i;:::-;38780:60;38772:68;38768:164;;;38872:40;;-1:-1:-1;;;38872:40:0;;;;;;;;;;;38768:164;38950:14;;;;;38682:3;38652:328;;;-1:-1:-1;38996:13:0;:28;39046:60;36064:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;4988:488;-1:-1:-1;;;;;;4988:488:1:o;5673:219::-;5822:2;5811:9;5804:21;5785:4;5842:44;5882:2;5871:9;5867:18;5859:6;5842:44;:::i;8043:356::-;8245:2;8227:21;;;8264:18;;;8257:30;8323:34;8318:2;8303:18;;8296:62;8390:2;8375:18;;8043:356::o;8586:265::-;8625:3;8653:9;;;8678:10;;-1:-1:-1;;;;;8697:27:1;;;8690:35;;8674:52;8671:78;;;8729:18;;:::i;:::-;-1:-1:-1;;;8776:19:1;;;8769:27;;8761:36;;8758:62;;;8800:18;;:::i;:::-;-1:-1:-1;;8836:9:1;;8586:265::o;8856:128::-;8896:3;8927:1;8923:6;8920:1;8917:13;8914:39;;;8933:18;;:::i;:::-;-1:-1:-1;8969:9:1;;8856:128::o;8989:120::-;9029:1;9055;9045:35;;9060:18;;:::i;:::-;-1:-1:-1;9094:9:1;;8989:120::o;9114:553::-;9153:7;-1:-1:-1;;;;;9223:9:1;;;9251;;;9276:11;;;9295:10;;;9289:17;;9272:35;9269:61;;;9310:18;;:::i;:::-;-1:-1:-1;;;9386:1:1;9379:9;;9404:11;;;9424;;;9417:19;;9400:37;9397:63;;;9440:18;;:::i;:::-;9486:1;9483;9479:9;9469:19;;9533:1;9529:2;9524:11;9521:1;9517:19;9512:2;9508;9504:11;9500:37;9497:63;;;9540:18;;:::i;:::-;9605:1;9601:2;9596:11;9593:1;9589:19;9584:2;9580;9576:11;9572:37;9569:63;;;9612:18;;:::i;:::-;-1:-1:-1;;;9652:9:1;;;;;9114:553;-1:-1:-1;;;9114:553:1:o;9672:267::-;9711:4;9740:9;;;9765:10;;-1:-1:-1;;;9784:19:1;;9777:27;;9761:44;9758:70;;;9808:18;;:::i;:::-;-1:-1:-1;;;;;9855:27:1;;9848:35;;9840:44;;9837:70;;;9887:18;;:::i;:::-;-1:-1:-1;;9924:9:1;;9672:267::o;9944:125::-;9984:4;10012:1;10009;10006:8;10003:34;;;10017:18;;:::i;:::-;-1:-1:-1;10054:9:1;;9944:125::o;10074:258::-;10146:1;10156:113;10170:6;10167:1;10164:13;10156:113;;;10246:11;;;10240:18;10227:11;;;10220:39;10192:2;10185:10;10156:113;;;10287:6;10284:1;10281:13;10278:48;;;-1:-1:-1;;10322:1:1;10304:16;;10297:27;10074:258::o;10337:380::-;10416:1;10412:12;;;;10459;;;10480:61;;10534:4;10526:6;10522:17;10512:27;;10480:61;10587:2;10579:6;10576:14;10556:18;10553:38;10550:161;;;10633:10;10628:3;10624:20;10621:1;10614:31;10668:4;10665:1;10658:15;10696:4;10693:1;10686:15;10550:161;;10337:380;;;:::o;10722:135::-;10761:3;-1:-1:-1;;10782:17:1;;10779:43;;;10802:18;;:::i;:::-;-1:-1:-1;10849:1:1;10838:13;;10722:135::o;10862:112::-;10894:1;10920;10910:35;;10925:18;;:::i;:::-;-1:-1:-1;10959:9:1;;10862:112::o;10979:127::-;11040:10;11035:3;11031:20;11028:1;11021:31;11071:4;11068:1;11061:15;11095:4;11092:1;11085:15;11111:127;11172:10;11167:3;11163:20;11160:1;11153:31;11203:4;11200:1;11193:15;11227:4;11224:1;11217:15;11243:127;11304:10;11299:3;11295:20;11292:1;11285:31;11335:4;11332:1;11325:15;11359:4;11356:1;11349:15;11375:127;11436:10;11431:3;11427:20;11424:1;11417:31;11467:4;11464:1;11457:15;11491:4;11488:1;11481:15;11507:131;-1:-1:-1;;;;;;11581:32:1;;11571:43;;11561:71;;11628:1;11625;11618:12

Swarm Source

ipfs://5044faf6aad422d1708b40bf541d5c1e65a7d731026ca2c8cf235ce1d5ba25ca
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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