ETH Price: $2,387.25 (+2.38%)

OSRelistGodjira (OSRelistGodjira)
 

Overview

TokenID

108

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
OpenseaRelistGodjira

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-13
*/

// SPDX-License-Identifier: MIT
//******************************************************************************
//     ____  ________    _______________   __________  ____      __________  ___ 
//    / __ \/ ____/ /   /  _/ ___/_  __/  / ____/ __ \/ __ \    / /  _/ __ \/   |
//   / /_/ / __/ / /    / / \__ \ / /    / / __/ / / / / / /_  / // // /_/ / /| |
//  / _, _/ /___/ /____/ / ___/ // /    / /_/ / /_/ / /_/ / /_/ // // _, _/ ___ |
// /_/ |_/_____/_____/___//____//_/     \____/\____/_____/\____/___/_/ |_/_/  |_|
//
//******************************************************************************
//   Smart Contract Code Built by:
/*
  ▓██   ██▓▓█████  ███▄ ▄███▓ ▄▄▄       ██▀███  
   ▒██  ██▒▓█   ▀ ▓██▒▀█▀ ██▒▒████▄    ▓██ ▒ ██▒
    ▒██ ██░▒███   ▓██    ▓██░▒██  ▀█▄  ▓██ ░▄█ ▒
    ░ ▐██▓░▒▓█  ▄ ▒██    ▒██ ░██▄▄▄▄██ ▒██▀▀█▄  
    ░ ██▒▓░░▒████▒▒██▒   ░██▒ ▓█   ▓██▒░██▓ ▒██▒
     ██▒▒▒ ░░ ▒░ ░░ ▒░   ░  ░ ▒▒   ▓▒█░░ ▒▓ ░▒▓░
   ▓██ ░▒░  ░ ░  ░░  ░      ░  ▒   ▒▒ ░  ░▒ ░ ▒░
   ▒ ▒ ░░     ░   ░      ░     ░   ▒     ░░   ░ 
   ░ ░        ░  ░       ░         ░  ░   ░     
   ░ ░                                          
*/
// 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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

    /**
     * @dev 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) 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

pragma solidity >=0.7.0 <0.9.0;

contract OpenseaRelistGodjira is ERC721A, Ownable {
    using Strings for uint256;

    string baseURI;
    string public baseExtension = ".json";
    uint256 public mintRate = 0.0 ether;
    uint256 public maxSupply = 3331;
    uint256 public maxMintPerWallet = 10;
    bool public paused = true;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721A(_name, _symbol) {
        setBaseURI(_initBaseURI);
    }

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

    function mint(uint256 quantity) external payable {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(quantity + _numberMinted(msg.sender) <= maxMintPerWallet, "Exceeded the limit");
        require(totalSupply() + quantity <= maxSupply, "Not enough tokens left");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        uint256 trueId = tokenId + 1;

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

    function setMintRate(uint256 _newMintRate) public onlyOwner {
        mintRate = _newMintRate;
    }

    function setMaxMintPerWallet(uint256 _newMaxMintPerWallet) public onlyOwner {
        maxMintPerWallet = _newMaxMintPerWallet;
    }

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

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function withdraw() public payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","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":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"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":"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintPerWallet","type":"uint256"}],"name":"setMaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintRate","type":"uint256"}],"name":"setMintRate","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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000195565b506000600b55610d03600c55600a600d55600e805460ff191660011790553480156200005357600080fd5b5060405162001e4138038062001e418339810160408190526200007691620002f2565b8251839083906200008f90600290602085019062000195565b508051620000a590600390602084019062000195565b50506000805550620000b733620000cb565b620000c2816200011d565b505050620003d6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200017c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200019190600990602084019062000195565b5050565b828054620001a39062000383565b90600052602060002090601f016020900481019282620001c7576000855562000212565b82601f10620001e257805160ff191683800117855562000212565b8280016001018555821562000212579182015b8281111562000212578251825591602001919060010190620001f5565b506200022092915062000224565b5090565b5b8082111562000220576000815560010162000225565b600082601f8301126200024d57600080fd5b81516001600160401b03808211156200026a576200026a620003c0565b604051601f8301601f19908116603f01168101908282118183101715620002955762000295620003c0565b81604052838152602092508683858801011115620002b257600080fd5b600091505b83821015620002d65785820183015181830184015290820190620002b7565b83821115620002e85760008385830101525b9695505050505050565b6000806000606084860312156200030857600080fd5b83516001600160401b03808211156200032057600080fd5b6200032e878388016200023b565b945060208601519150808211156200034557600080fd5b62000353878388016200023b565b935060408601519150808211156200036a57600080fd5b5062000379868287016200023b565b9150509250925092565b600181811c908216806200039857607f821691505b60208210811415620003ba57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611a5b80620003e66000396000f3fe6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063c668286211610095578063da3ef23f11610064578063da3ef23f146104af578063dbe2193f146104cf578063e985e9c5146104ef578063f2fde38b1461053857600080fd5b8063c66828621461044e578063c87b56dd14610463578063ca0dcf1614610483578063d5abeb011461049957600080fd5b8063a22cb465116100d1578063a22cb465146103d8578063afdf6134146103f8578063b228d92514610418578063b88d4fde1461042e57600080fd5b80638da5cb5b1461039257806395d89b41146103b0578063a0712d68146103c557600080fd5b80633ccfd60b116101645780635c975abb1161013e5780635c975abb146103235780636352211e1461033d57806370a082311461035d578063715018a61461037d57600080fd5b80633ccfd60b146102db57806342842e0e146102e357806355f804b31461030357600080fd5b8063081812fc116101a0578063081812fc14610240578063095ea7b31461027857806318160ddd1461029857806323b872dd146102bb57600080fd5b806301ffc9a7146101c757806302329a29146101fc57806306fdde031461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461169b565b610558565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021c610217366004611680565b6105aa565b005b34801561022a57600080fd5b506102336105f0565b6040516101f39190611877565b34801561024c57600080fd5b5061026061025b36600461171e565b610682565b6040516001600160a01b0390911681526020016101f3565b34801561028457600080fd5b5061021c610293366004611656565b6106c6565b3480156102a457600080fd5b50600154600054035b6040519081526020016101f3565b3480156102c757600080fd5b5061021c6102d6366004611574565b610799565b61021c6107a9565b3480156102ef57600080fd5b5061021c6102fe366004611574565b610847565b34801561030f57600080fd5b5061021c61031e3660046116d5565b610862565b34801561032f57600080fd5b50600e546101e79060ff1681565b34801561034957600080fd5b5061026061035836600461171e565b6108a3565b34801561036957600080fd5b506102ad610378366004611526565b6108ae565b34801561038957600080fd5b5061021c6108fd565b34801561039e57600080fd5b506008546001600160a01b0316610260565b3480156103bc57600080fd5b50610233610933565b61021c6103d336600461171e565b610942565b3480156103e457600080fd5b5061021c6103f336600461162c565b610a70565b34801561040457600080fd5b5061021c61041336600461171e565b610b06565b34801561042457600080fd5b506102ad600d5481565b34801561043a57600080fd5b5061021c6104493660046115b0565b610b35565b34801561045a57600080fd5b50610233610b7f565b34801561046f57600080fd5b5061023361047e36600461171e565b610c0d565b34801561048f57600080fd5b506102ad600b5481565b3480156104a557600080fd5b506102ad600c5481565b3480156104bb57600080fd5b5061021c6104ca3660046116d5565b610ce9565b3480156104db57600080fd5b5061021c6104ea36600461171e565b610d26565b3480156104fb57600080fd5b506101e761050a366004611541565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561054457600080fd5b5061021c610553366004611526565b610d55565b60006301ffc9a760e01b6001600160e01b03198316148061058957506380ac58cd60e01b6001600160e01b03198316145b806105a45750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146105dd5760405162461bcd60e51b81526004016105d49061188a565b60405180910390fd5b600e805460ff1916911515919091179055565b6060600280546105ff9061194d565b80601f016020809104026020016040519081016040528092919081815260200182805461062b9061194d565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b600061068d82610ded565b6106aa576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106d182610e14565b9050806001600160a01b0316836001600160a01b031614156107065760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461073d57610720813361050a565b61073d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107a4838383610e75565b505050565b6008546001600160a01b031633146107d35760405162461bcd60e51b81526004016105d49061188a565b60006107e76008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610831576040519150601f19603f3d011682016040523d82523d6000602084013e610836565b606091505b505090508061084457600080fd5b50565b6107a483838360405180602001604052806000815250610b35565b6008546001600160a01b0316331461088c5760405162461bcd60e51b81526004016105d49061188a565b805161089f9060099060208401906113eb565b5050565b60006105a482610e14565b60006001600160a01b0382166108d7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109275760405162461bcd60e51b81526004016105d49061188a565b6109316000611018565b565b6060600380546105ff9061194d565b600d5433600090815260056020526040908190205461096c911c67ffffffffffffffff16836118bf565b11156109af5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064016105d4565b600c54816109c06001546000540390565b6109ca91906118bf565b1115610a115760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016105d4565b80600b54610a1f91906118eb565b341015610a665760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064016105d4565b610844338261106a565b6001600160a01b038216331415610a9a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610b305760405162461bcd60e51b81526004016105d49061188a565b600d55565b610b40848484610e75565b6001600160a01b0383163b15610b7957610b5c84848484611084565b610b79576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600a8054610b8c9061194d565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb89061194d565b8015610c055780601f10610bda57610100808354040283529160200191610c05565b820191906000526020600020905b815481529060010190602001808311610be857829003601f168201915b505050505081565b6060610c1882610ded565b610c7c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105d4565b6000610c898360016118bf565b9050600060098054610c9a9061194d565b905011610cb65760405180602001604052806000815250610ce2565b6009610cc18261117c565b604051602001610cd292919061177f565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610d135760405162461bcd60e51b81526004016105d49061188a565b805161089f90600a9060208401906113eb565b6008546001600160a01b03163314610d505760405162461bcd60e51b81526004016105d49061188a565b600b55565b6008546001600160a01b03163314610d7f5760405162461bcd60e51b81526004016105d49061188a565b6001600160a01b038116610de45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d4565b61084481611018565b60008054821080156105a4575050600090815260046020526040902054600160e01b161590565b600081600054811015610e5c57600081815260046020526040902054600160e01b8116610e5a575b80610ce2575060001901600081815260046020526040902054610e3c565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e8082610e14565b9050836001600160a01b0316816001600160a01b031614610eb35760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610ed15750610ed1853361050a565b80610eec575033610ee184610682565b6001600160a01b0316145b905080610f0c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f3357604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216610fd05760018301600081815260046020526040902054610fce576000548114610fce5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61089f82826040518060200160405280600081525061127a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110b990339089908890889060040161183a565b602060405180830381600087803b1580156110d357600080fd5b505af1925050508015611103575060408051601f3d908101601f19168201909252611100918101906116b8565b60015b61115e573d808015611131576040519150601f19603f3d011682016040523d82523d6000602084013e611136565b606091505b508051611156576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816111a05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111ca57806111b481611988565b91506111c39050600a836118d7565b91506111a4565b60008167ffffffffffffffff8111156111e5576111e56119f9565b6040519080825280601f01601f19166020018201604052801561120f576020820181803683370190505b5090505b84156111745761122460018361190a565b9150611231600a866119a3565b61123c9060306118bf565b60f81b818381518110611251576112516119e3565b60200101906001600160f81b031916908160001a905350611273600a866118d7565b9450611213565b6000546001600160a01b0384166112a357604051622e076360e81b815260040160405180910390fd5b826112c15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611396575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461135f6000878480600101955087611084565b61137c576040516368d2bf6b60e11b815260040160405180910390fd5b80821061131457826000541461139157600080fd5b6113db565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611397575b506000908155610b799085838684565b8280546113f79061194d565b90600052602060002090601f016020900481019282611419576000855561145f565b82601f1061143257805160ff191683800117855561145f565b8280016001018555821561145f579182015b8281111561145f578251825591602001919060010190611444565b5061146b92915061146f565b5090565b5b8082111561146b5760008155600101611470565b600067ffffffffffffffff8084111561149f5761149f6119f9565b604051601f8501601f19908116603f011681019082821181831017156114c7576114c76119f9565b816040528093508581528686860111156114e057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461151157600080fd5b919050565b8035801515811461151157600080fd5b60006020828403121561153857600080fd5b610ce2826114fa565b6000806040838503121561155457600080fd5b61155d836114fa565b915061156b602084016114fa565b90509250929050565b60008060006060848603121561158957600080fd5b611592846114fa565b92506115a0602085016114fa565b9150604084013590509250925092565b600080600080608085870312156115c657600080fd5b6115cf856114fa565b93506115dd602086016114fa565b925060408501359150606085013567ffffffffffffffff81111561160057600080fd5b8501601f8101871361161157600080fd5b61162087823560208401611484565b91505092959194509250565b6000806040838503121561163f57600080fd5b611648836114fa565b915061156b60208401611516565b6000806040838503121561166957600080fd5b611672836114fa565b946020939093013593505050565b60006020828403121561169257600080fd5b610ce282611516565b6000602082840312156116ad57600080fd5b8135610ce281611a0f565b6000602082840312156116ca57600080fd5b8151610ce281611a0f565b6000602082840312156116e757600080fd5b813567ffffffffffffffff8111156116fe57600080fd5b8201601f8101841361170f57600080fd5b61117484823560208401611484565b60006020828403121561173057600080fd5b5035919050565b6000815180845261174f816020860160208601611921565b601f01601f19169290920160200192915050565b60008151611775818560208601611921565b9290920192915050565b600080845481600182811c91508083168061179b57607f831692505b60208084108214156117bb57634e487b7160e01b86526022600452602486fd5b8180156117cf57600181146117e05761180d565b60ff1986168952848901965061180d565b60008b81526020902060005b868110156118055781548b8201529085019083016117ec565b505084890196505b5050505050506118316118208286611763565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061186d90830184611737565b9695505050505050565b602081526000610ce26020830184611737565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156118d2576118d26119b7565b500190565b6000826118e6576118e66119cd565b500490565b6000816000190483118215151615611905576119056119b7565b500290565b60008282101561191c5761191c6119b7565b500390565b60005b8381101561193c578181015183820152602001611924565b83811115610b795750506000910152565b600181811c9082168061196157607f821691505b6020821081141561198257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561199c5761199c6119b7565b5060010190565b6000826119b2576119b26119cd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461084457600080fdfea264697066735822122081855cac9d43329e3c392e13ec8f10161dc871941b716a7d24ac94e1fbba452c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f4f5352656c697374476f646a6972610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4f5352656c697374476f646a69726100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d515a544e3335594d516a777553537a5a714b6568537048325472776b5655734e4a34564e44533745384e39732f00000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063c668286211610095578063da3ef23f11610064578063da3ef23f146104af578063dbe2193f146104cf578063e985e9c5146104ef578063f2fde38b1461053857600080fd5b8063c66828621461044e578063c87b56dd14610463578063ca0dcf1614610483578063d5abeb011461049957600080fd5b8063a22cb465116100d1578063a22cb465146103d8578063afdf6134146103f8578063b228d92514610418578063b88d4fde1461042e57600080fd5b80638da5cb5b1461039257806395d89b41146103b0578063a0712d68146103c557600080fd5b80633ccfd60b116101645780635c975abb1161013e5780635c975abb146103235780636352211e1461033d57806370a082311461035d578063715018a61461037d57600080fd5b80633ccfd60b146102db57806342842e0e146102e357806355f804b31461030357600080fd5b8063081812fc116101a0578063081812fc14610240578063095ea7b31461027857806318160ddd1461029857806323b872dd146102bb57600080fd5b806301ffc9a7146101c757806302329a29146101fc57806306fdde031461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461169b565b610558565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021c610217366004611680565b6105aa565b005b34801561022a57600080fd5b506102336105f0565b6040516101f39190611877565b34801561024c57600080fd5b5061026061025b36600461171e565b610682565b6040516001600160a01b0390911681526020016101f3565b34801561028457600080fd5b5061021c610293366004611656565b6106c6565b3480156102a457600080fd5b50600154600054035b6040519081526020016101f3565b3480156102c757600080fd5b5061021c6102d6366004611574565b610799565b61021c6107a9565b3480156102ef57600080fd5b5061021c6102fe366004611574565b610847565b34801561030f57600080fd5b5061021c61031e3660046116d5565b610862565b34801561032f57600080fd5b50600e546101e79060ff1681565b34801561034957600080fd5b5061026061035836600461171e565b6108a3565b34801561036957600080fd5b506102ad610378366004611526565b6108ae565b34801561038957600080fd5b5061021c6108fd565b34801561039e57600080fd5b506008546001600160a01b0316610260565b3480156103bc57600080fd5b50610233610933565b61021c6103d336600461171e565b610942565b3480156103e457600080fd5b5061021c6103f336600461162c565b610a70565b34801561040457600080fd5b5061021c61041336600461171e565b610b06565b34801561042457600080fd5b506102ad600d5481565b34801561043a57600080fd5b5061021c6104493660046115b0565b610b35565b34801561045a57600080fd5b50610233610b7f565b34801561046f57600080fd5b5061023361047e36600461171e565b610c0d565b34801561048f57600080fd5b506102ad600b5481565b3480156104a557600080fd5b506102ad600c5481565b3480156104bb57600080fd5b5061021c6104ca3660046116d5565b610ce9565b3480156104db57600080fd5b5061021c6104ea36600461171e565b610d26565b3480156104fb57600080fd5b506101e761050a366004611541565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561054457600080fd5b5061021c610553366004611526565b610d55565b60006301ffc9a760e01b6001600160e01b03198316148061058957506380ac58cd60e01b6001600160e01b03198316145b806105a45750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146105dd5760405162461bcd60e51b81526004016105d49061188a565b60405180910390fd5b600e805460ff1916911515919091179055565b6060600280546105ff9061194d565b80601f016020809104026020016040519081016040528092919081815260200182805461062b9061194d565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b600061068d82610ded565b6106aa576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106d182610e14565b9050806001600160a01b0316836001600160a01b031614156107065760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461073d57610720813361050a565b61073d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107a4838383610e75565b505050565b6008546001600160a01b031633146107d35760405162461bcd60e51b81526004016105d49061188a565b60006107e76008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610831576040519150601f19603f3d011682016040523d82523d6000602084013e610836565b606091505b505090508061084457600080fd5b50565b6107a483838360405180602001604052806000815250610b35565b6008546001600160a01b0316331461088c5760405162461bcd60e51b81526004016105d49061188a565b805161089f9060099060208401906113eb565b5050565b60006105a482610e14565b60006001600160a01b0382166108d7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109275760405162461bcd60e51b81526004016105d49061188a565b6109316000611018565b565b6060600380546105ff9061194d565b600d5433600090815260056020526040908190205461096c911c67ffffffffffffffff16836118bf565b11156109af5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064016105d4565b600c54816109c06001546000540390565b6109ca91906118bf565b1115610a115760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016105d4565b80600b54610a1f91906118eb565b341015610a665760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064016105d4565b610844338261106a565b6001600160a01b038216331415610a9a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610b305760405162461bcd60e51b81526004016105d49061188a565b600d55565b610b40848484610e75565b6001600160a01b0383163b15610b7957610b5c84848484611084565b610b79576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600a8054610b8c9061194d565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb89061194d565b8015610c055780601f10610bda57610100808354040283529160200191610c05565b820191906000526020600020905b815481529060010190602001808311610be857829003601f168201915b505050505081565b6060610c1882610ded565b610c7c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105d4565b6000610c898360016118bf565b9050600060098054610c9a9061194d565b905011610cb65760405180602001604052806000815250610ce2565b6009610cc18261117c565b604051602001610cd292919061177f565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610d135760405162461bcd60e51b81526004016105d49061188a565b805161089f90600a9060208401906113eb565b6008546001600160a01b03163314610d505760405162461bcd60e51b81526004016105d49061188a565b600b55565b6008546001600160a01b03163314610d7f5760405162461bcd60e51b81526004016105d49061188a565b6001600160a01b038116610de45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d4565b61084481611018565b60008054821080156105a4575050600090815260046020526040902054600160e01b161590565b600081600054811015610e5c57600081815260046020526040902054600160e01b8116610e5a575b80610ce2575060001901600081815260046020526040902054610e3c565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e8082610e14565b9050836001600160a01b0316816001600160a01b031614610eb35760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610ed15750610ed1853361050a565b80610eec575033610ee184610682565b6001600160a01b0316145b905080610f0c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f3357604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216610fd05760018301600081815260046020526040902054610fce576000548114610fce5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61089f82826040518060200160405280600081525061127a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110b990339089908890889060040161183a565b602060405180830381600087803b1580156110d357600080fd5b505af1925050508015611103575060408051601f3d908101601f19168201909252611100918101906116b8565b60015b61115e573d808015611131576040519150601f19603f3d011682016040523d82523d6000602084013e611136565b606091505b508051611156576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816111a05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111ca57806111b481611988565b91506111c39050600a836118d7565b91506111a4565b60008167ffffffffffffffff8111156111e5576111e56119f9565b6040519080825280601f01601f19166020018201604052801561120f576020820181803683370190505b5090505b84156111745761122460018361190a565b9150611231600a866119a3565b61123c9060306118bf565b60f81b818381518110611251576112516119e3565b60200101906001600160f81b031916908160001a905350611273600a866118d7565b9450611213565b6000546001600160a01b0384166112a357604051622e076360e81b815260040160405180910390fd5b826112c15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611396575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461135f6000878480600101955087611084565b61137c576040516368d2bf6b60e11b815260040160405180910390fd5b80821061131457826000541461139157600080fd5b6113db565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611397575b506000908155610b799085838684565b8280546113f79061194d565b90600052602060002090601f016020900481019282611419576000855561145f565b82601f1061143257805160ff191683800117855561145f565b8280016001018555821561145f579182015b8281111561145f578251825591602001919060010190611444565b5061146b92915061146f565b5090565b5b8082111561146b5760008155600101611470565b600067ffffffffffffffff8084111561149f5761149f6119f9565b604051601f8501601f19908116603f011681019082821181831017156114c7576114c76119f9565b816040528093508581528686860111156114e057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461151157600080fd5b919050565b8035801515811461151157600080fd5b60006020828403121561153857600080fd5b610ce2826114fa565b6000806040838503121561155457600080fd5b61155d836114fa565b915061156b602084016114fa565b90509250929050565b60008060006060848603121561158957600080fd5b611592846114fa565b92506115a0602085016114fa565b9150604084013590509250925092565b600080600080608085870312156115c657600080fd5b6115cf856114fa565b93506115dd602086016114fa565b925060408501359150606085013567ffffffffffffffff81111561160057600080fd5b8501601f8101871361161157600080fd5b61162087823560208401611484565b91505092959194509250565b6000806040838503121561163f57600080fd5b611648836114fa565b915061156b60208401611516565b6000806040838503121561166957600080fd5b611672836114fa565b946020939093013593505050565b60006020828403121561169257600080fd5b610ce282611516565b6000602082840312156116ad57600080fd5b8135610ce281611a0f565b6000602082840312156116ca57600080fd5b8151610ce281611a0f565b6000602082840312156116e757600080fd5b813567ffffffffffffffff8111156116fe57600080fd5b8201601f8101841361170f57600080fd5b61117484823560208401611484565b60006020828403121561173057600080fd5b5035919050565b6000815180845261174f816020860160208601611921565b601f01601f19169290920160200192915050565b60008151611775818560208601611921565b9290920192915050565b600080845481600182811c91508083168061179b57607f831692505b60208084108214156117bb57634e487b7160e01b86526022600452602486fd5b8180156117cf57600181146117e05761180d565b60ff1986168952848901965061180d565b60008b81526020902060005b868110156118055781548b8201529085019083016117ec565b505084890196505b5050505050506118316118208286611763565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061186d90830184611737565b9695505050505050565b602081526000610ce26020830184611737565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156118d2576118d26119b7565b500190565b6000826118e6576118e66119cd565b500490565b6000816000190483118215151615611905576119056119b7565b500290565b60008282101561191c5761191c6119b7565b500390565b60005b8381101561193c578181015183820152602001611924565b83811115610b795750506000910152565b600181811c9082168061196157607f821691505b6020821081141561198257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561199c5761199c6119b7565b5060010190565b6000826119b2576119b26119cd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461084457600080fdfea264697066735822122081855cac9d43329e3c392e13ec8f10161dc871941b716a7d24ac94e1fbba452c64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f4f5352656c697374476f646a6972610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4f5352656c697374476f646a69726100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d515a544e3335594d516a777553537a5a714b6568537048325472776b5655734e4a34564e44533745384e39732f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): OSRelistGodjira
Arg [1] : _symbol (string): OSRelistGodjira
Arg [2] : _initBaseURI (string): ipfs://QmQZTN35YMQjwuSSzZqKehSpH2TrwkVUsNJ4VNDS7E8N9s/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 4f5352656c697374476f646a6972610000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [6] : 4f5352656c697374476f646a6972610000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d515a544e3335594d516a777553537a5a714b6568537048
Arg [9] : 325472776b5655734e4a34564e44533745384e39732f00000000000000000000


Deployed Bytecode Sourcemap

45545:2224:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20236:615;;;;;;;;;;-1:-1:-1;20236:615:0;;;;;:::i;:::-;;:::i;:::-;;;7252:14:1;;7245:22;7227:41;;7215:2;7200:18;20236:615:0;;;;;;;;47524:79;;;;;;;;;;-1:-1:-1;47524:79:0;;;;;:::i;:::-;;:::i;:::-;;25249:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27317:204::-;;;;;;;;;;-1:-1:-1;27317:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6550:32:1;;;6532:51;;6520:2;6505:18;27317:204:0;6386:203:1;26777:474:0;;;;;;;;;;-1:-1:-1;26777:474:0;;;;;:::i;:::-;;:::i;19290:315::-;;;;;;;;;;-1:-1:-1;19556:12:0;;19343:7;19540:13;:28;19290:315;;;9881:25:1;;;9869:2;9854:18;19290:315:0;9735:177:1;28203:170:0;;;;;;;;;;-1:-1:-1;28203:170:0;;;;;:::i;:::-;;:::i;47611:155::-;;;:::i;28444:185::-;;;;;;;;;;-1:-1:-1;28444:185:0;;;;;:::i;:::-;;:::i;47276:104::-;;;;;;;;;;-1:-1:-1;47276:104:0;;;;;:::i;:::-;;:::i;45824:25::-;;;;;;;;;;-1:-1:-1;45824:25:0;;;;;;;;25038:144;;;;;;;;;;-1:-1:-1;25038:144:0;;;;;:::i;:::-;;:::i;20915:224::-;;;;;;;;;;-1:-1:-1;20915:224:0;;;;;:::i;:::-;;:::i;6346:103::-;;;;;;;;;;;;;:::i;5695:87::-;;;;;;;;;;-1:-1:-1;5768:6:0;;-1:-1:-1;;;;;5768:6:0;5695:87;;25418:104;;;;;;;;;;;;;:::i;46184:439::-;;;;;;:::i;:::-;;:::i;27593:308::-;;;;;;;;;;-1:-1:-1;27593:308:0;;;;;:::i;:::-;;:::i;47134:134::-;;;;;;;;;;-1:-1:-1;47134:134:0;;;;;:::i;:::-;;:::i;45781:36::-;;;;;;;;;;;;;;;;28700:396;;;;;;;;;;-1:-1:-1;28700:396:0;;;;;:::i;:::-;;:::i;45657:37::-;;;;;;;;;;;;;:::i;46631:385::-;;;;;;;;;;-1:-1:-1;46631:385:0;;;;;:::i;:::-;;:::i;45701:35::-;;;;;;;;;;;;;;;;45743:31;;;;;;;;;;;;;;;;47388:128;;;;;;;;;;-1:-1:-1;47388:128:0;;;;;:::i;:::-;;:::i;47024:102::-;;;;;;;;;;-1:-1:-1;47024:102:0;;;;;:::i;:::-;;:::i;27972:164::-;;;;;;;;;;-1:-1:-1;27972:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28093:25:0;;;28069:4;28093:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27972:164;6604:201;;;;;;;;;;-1:-1:-1;6604:201:0;;;;;:::i;:::-;;:::i;20236:615::-;20321:4;-1:-1:-1;;;;;;;;;20621:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;20698:25:0;;;20621:102;:179;;;-1:-1:-1;;;;;;;;;;20775:25:0;;;20621:179;20601:199;20236:615;-1:-1:-1;;20236:615:0:o;47524:79::-;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;;;;;;;;;47580:6:::1;:15:::0;;-1:-1:-1;;47580:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47524:79::o;25249:100::-;25303:13;25336:5;25329:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25249:100;:::o;27317:204::-;27385:7;27410:16;27418:7;27410;:16::i;:::-;27405:64;;27435:34;;-1:-1:-1;;;27435:34:0;;;;;;;;;;;27405:64;-1:-1:-1;27489:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27489:24:0;;27317:204::o;26777:474::-;26850:13;26882:27;26901:7;26882:18;:27::i;:::-;26850:61;;26932:5;-1:-1:-1;;;;;26926:11:0;:2;-1:-1:-1;;;;;26926:11:0;;26922:48;;;26946:24;;-1:-1:-1;;;26946:24:0;;;;;;;;;;;26922:48;4499:10;-1:-1:-1;;;;;26987:28:0;;;26983:175;;27035:44;27052:5;4499:10;27972:164;:::i;27035:44::-;27030:128;;27107:35;;-1:-1:-1;;;27107:35:0;;;;;;;;;;;27030:128;27170:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;27170:29:0;-1:-1:-1;;;;;27170:29:0;;;;;;;;;27215:28;;27170:24;;27215:28;;;;;;;26839:412;26777:474;;:::o;28203:170::-;28337:28;28347:4;28353:2;28357:7;28337:9;:28::i;:::-;28203:170;;;:::o;47611:155::-;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;47668:7:::1;47689;5768:6:::0;;-1:-1:-1;;;;;5768:6:0;;5695:87;47689:7:::1;-1:-1:-1::0;;;;;47681:21:0::1;47710;47681:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47667:69;;;47755:2;47747:11;;;::::0;::::1;;47656:110;47611:155::o:0;28444:185::-;28582:39;28599:4;28605:2;28609:7;28582:39;;;;;;;;;;;;:16;:39::i;47276:104::-;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;47351:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47276:104:::0;:::o;25038:144::-;25102:7;25145:27;25164:7;25145:18;:27::i;20915:224::-;20979:7;-1:-1:-1;;;;;21003:19:0;;20999:60;;21031:28;;-1:-1:-1;;;21031:28:0;;;;;;;;;;;20999:60;-1:-1:-1;;;;;;21077:25:0;;;;;:18;:25;;;;;;16254:13;21077:54;;20915:224::o;6346:103::-;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;6411:30:::1;6438:1;6411:18;:30::i;:::-;6346:103::o:0;25418:104::-;25474:13;25507:7;25500:14;;;;;:::i;46184:439::-;46372:16;;46357:10;21282:7;21310:25;;;:18;:25;;16391:2;21310:25;;;;;46332:36;;21310:49;16254:13;21309:80;46332:8;:36;:::i;:::-;:56;;46324:87;;;;-1:-1:-1;;;46324:87:0;;8112:2:1;46324:87:0;;;8094:21:1;8151:2;8131:18;;;8124:30;-1:-1:-1;;;8170:18:1;;;8163:48;8228:18;;46324:87:0;7910:342:1;46324:87:0;46458:9;;46446:8;46430:13;19556:12;;19343:7;19540:13;:28;;19290:315;46430:13;:24;;;;:::i;:::-;:37;;46422:72;;;;-1:-1:-1;;;46422:72:0;;8459:2:1;46422:72:0;;;8441:21:1;8498:2;8478:18;;;8471:30;-1:-1:-1;;;8517:18:1;;;8510:52;8579:18;;46422:72:0;8257:346:1;46422:72:0;46538:8;46527;;:19;;;;:::i;:::-;46513:9;:34;;46505:68;;;;-1:-1:-1;;;46505:68:0;;9587:2:1;46505:68:0;;;9569:21:1;9626:2;9606:18;;;9599:30;-1:-1:-1;;;9645:18:1;;;9638:51;9706:18;;46505:68:0;9385:345:1;46505:68:0;46584:31;46594:10;46606:8;46584:9;:31::i;27593:308::-;-1:-1:-1;;;;;27692:31:0;;4499:10;27692:31;27688:61;;;27732:17;;-1:-1:-1;;;27732:17:0;;;;;;;;;;;27688:61;4499:10;27762:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;27762:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;27762:60:0;;;;;;;;;;27838:55;;7227:41:1;;;27762:49:0;;4499:10;27838:55;;7200:18:1;27838:55:0;;;;;;;27593:308;;:::o;47134:134::-;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;47221:16:::1;:39:::0;47134:134::o;28700:396::-;28867:28;28877:4;28883:2;28887:7;28867:9;:28::i;:::-;-1:-1:-1;;;;;28910:14:0;;;:19;28906:183;;28949:56;28980:4;28986:2;28990:7;28999:5;28949:30;:56::i;:::-;28944:145;;29033:40;;-1:-1:-1;;;29033:40:0;;;;;;;;;;;28944:145;28700:396;;;;:::o;45657:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46631:385::-;46704:13;46738:16;46746:7;46738;:16::i;:::-;46730:76;;;;-1:-1:-1;;;46730:76:0;;9171:2:1;46730:76:0;;;9153:21:1;9210:2;9190:18;;;9183:30;9249:34;9229:18;;;9222:62;-1:-1:-1;;;9300:18:1;;;9293:45;9355:19;;46730:76:0;8969:411:1;46730:76:0;46819:14;46836:11;:7;46846:1;46836:11;:::i;:::-;46819:28;;46938:1;46920:7;46914:21;;;;;:::i;:::-;;;:25;:94;;;;;;;;;;;;;;;;;46966:7;46975:17;:6;:15;:17::i;:::-;46949:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46914:94;46907:101;46631:385;-1:-1:-1;;;46631:385:0:o;47388:128::-;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;47475:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;47024:102::-:0;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;47095:8:::1;:23:::0;47024:102::o;6604:201::-;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6693:22:0;::::1;6685:73;;;::::0;-1:-1:-1;;;6685:73:0;;7705:2:1;6685:73:0::1;::::0;::::1;7687:21:1::0;7744:2;7724:18;;;7717:30;7783:34;7763:18;;;7756:62;-1:-1:-1;;;7834:18:1;;;7827:36;7880:19;;6685:73:0::1;7503:402:1::0;6685:73:0::1;6769:28;6788:8;6769:18;:28::i;29351:273::-:0;29408:4;29498:13;;29488:7;:23;29445:152;;;;-1:-1:-1;;29549:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;29549:43:0;:48;;29351:273::o;22553:1129::-;22620:7;22655;22757:13;;22750:4;:20;22746:869;;;22795:14;22812:23;;;:17;:23;;;;;;-1:-1:-1;;;22901:23:0;;22897:699;;23420:113;23427:11;23420:113;;-1:-1:-1;;;23498:6:0;23480:25;;;;:17;:25;;;;;;23420:113;;22897:699;22772:843;22746:869;23643:31;;-1:-1:-1;;;23643:31:0;;;;;;;;;;;34590:2515;34705:27;34735;34754:7;34735:18;:27::i;:::-;34705:57;;34820:4;-1:-1:-1;;;;;34779:45:0;34795:19;-1:-1:-1;;;;;34779:45:0;;34775:86;;34833:28;;-1:-1:-1;;;34833:28:0;;;;;;;;;;;34775:86;34874:22;4499:10;-1:-1:-1;;;;;34900:27:0;;;;:87;;-1:-1:-1;34944:43:0;34961:4;4499:10;27972:164;:::i;34944:43::-;34900:147;;;-1:-1:-1;4499:10:0;35004:20;35016:7;35004:11;:20::i;:::-;-1:-1:-1;;;;;35004:43:0;;34900:147;34874:174;;35066:17;35061:66;;35092:35;;-1:-1:-1;;;35092:35:0;;;;;;;;;;;35061:66;-1:-1:-1;;;;;35142:16:0;;35138:52;;35167:23;;-1:-1:-1;;;35167:23:0;;;;;;;;;;;35138:52;35319:24;;;;:15;:24;;;;;;;;35312:31;;-1:-1:-1;;;;;;35312:31:0;;;-1:-1:-1;;;;;35711:24:0;;;;;:18;:24;;;;;35709:26;;-1:-1:-1;;35709:26:0;;;35780:22;;;;;;;35778:24;;-1:-1:-1;35778:24:0;;;36073:26;;;:17;:26;;;;;-1:-1:-1;;;36161:15:0;16908:3;36161:41;36119:84;;:128;;36073:174;;;36367:46;;36363:626;;36471:1;36461:11;;36439:19;36594:30;;;:17;:30;;;;;;36590:384;;36732:13;;36717:11;:28;36713:242;;36879:30;;;;:17;:30;;;;;:52;;;36713:242;36420:569;36363:626;37036:7;37032:2;-1:-1:-1;;;;;37017:27:0;37026:4;-1:-1:-1;;;;;37017:27:0;;;;;;;;;;;34694:2411;;34590:2515;;;:::o;6965:191::-;7058:6;;;-1:-1:-1;;;;;7075:17:0;;;-1:-1:-1;;;;;;7075:17:0;;;;;;;7108:40;;7058:6;;;7075:17;7058:6;;7108:40;;7039:16;;7108:40;7028:128;6965:191;:::o;29708:104::-;29777:27;29787:2;29791:8;29777:27;;;;;;;;;;;;:9;:27::i;40802:716::-;40986:88;;-1:-1:-1;;;40986:88:0;;40965:4;;-1:-1:-1;;;;;40986:45:0;;;;;:88;;4499:10;;41053:4;;41059:7;;41068:5;;40986:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40986:88:0;;;;;;;;-1:-1:-1;;40986:88:0;;;;;;;;;;;;:::i;:::-;;;40982:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41269:13:0;;41265:235;;41315:40;;-1:-1:-1;;;41315:40:0;;;;;;;;;;;41265:235;41458:6;41452:13;41443:6;41439:2;41435:15;41428:38;40982:529;-1:-1:-1;;;;;;41145:64:0;-1:-1:-1;;;41145:64:0;;-1:-1:-1;40982:529:0;40802:716;;;;;;:::o;1981:723::-;2037:13;2258:10;2254:53;;-1:-1:-1;;2285:10:0;;;;;;;;;;;;-1:-1:-1;;;2285:10:0;;;;;1981:723::o;2254:53::-;2332:5;2317:12;2373:78;2380:9;;2373:78;;2406:8;;;;:::i;:::-;;-1:-1:-1;2429:10:0;;-1:-1:-1;2437:2:0;2429:10;;:::i;:::-;;;2373:78;;;2461:19;2493:6;2483:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2483:17:0;;2461:39;;2511:154;2518:10;;2511:154;;2545:11;2555:1;2545:11;;:::i;:::-;;-1:-1:-1;2614:10:0;2622:2;2614:5;:10;:::i;:::-;2601:24;;:2;:24;:::i;:::-;2588:39;;2571:6;2578;2571:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2571:56:0;;;;;;;;-1:-1:-1;2642:11:0;2651:2;2642:11;;:::i;:::-;;;2511:154;;30185:2236;30308:20;30331:13;-1:-1:-1;;;;;30359:16:0;;30355:48;;30384:19;;-1:-1:-1;;;30384:19:0;;;;;;;;;;;30355:48;30418:13;30414:44;;30440:18;;-1:-1:-1;;;30440:18:0;;;;;;;;;;;30414:44;-1:-1:-1;;;;;31007:22:0;;;;;;:18;:22;;;;16391:2;31007:22;;;:70;;31045:31;31033:44;;31007:70;;;31320:31;;;:17;:31;;;;;31413:15;16908:3;31413:41;31371:84;;-1:-1:-1;31491:13:0;;17171:3;31476:56;31371:162;31320:213;;:31;;31614:23;;;;31658:14;:19;31654:635;;31698:313;31729:38;;31754:12;;-1:-1:-1;;;;;31729:38:0;;;31746:1;;31729:38;;31746:1;;31729:38;31795:69;31834:1;31838:2;31842:14;;;;;;31858:5;31795:30;:69::i;:::-;31790:174;;31900:40;;-1:-1:-1;;;31900:40:0;;;;;;;;;;;31790:174;32006:3;31991:12;:18;31698:313;;32092:12;32075:13;;:29;32071:43;;32106:8;;;32071:43;31654:635;;;32155:119;32186:40;;32211:14;;;;;-1:-1:-1;;;;;32186:40:0;;;32203:1;;32186:40;;32203:1;;32186:40;32269:3;32254:12;:18;32155:119;;31654:635;-1:-1:-1;32303:13:0;:28;;;32353:60;;32386:2;32390:12;32404:8;32353:60;:::i;-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:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:185::-;4604:3;4642:5;4636:12;4657:52;4702:6;4697:3;4690:4;4683:5;4679:16;4657:52;:::i;:::-;4725:16;;;;;4562:185;-1:-1:-1;;4562:185:1:o;4870:1301::-;5147:3;5176:1;5209:6;5203:13;5239:3;5261:1;5289:9;5285:2;5281:18;5271:28;;5349:2;5338:9;5334:18;5371;5361:61;;5415:4;5407:6;5403:17;5393:27;;5361:61;5441:2;5489;5481:6;5478:14;5458:18;5455:38;5452:165;;;-1:-1:-1;;;5516:33:1;;5572:4;5569:1;5562:15;5602:4;5523:3;5590:17;5452:165;5633:18;5660:104;;;;5778:1;5773:320;;;;5626:467;;5660:104;-1:-1:-1;;5693:24:1;;5681:37;;5738:16;;;;-1:-1:-1;5660:104:1;;5773:320;9990:1;9983:14;;;10027:4;10014:18;;5868:1;5882:165;5896:6;5893:1;5890:13;5882:165;;;5974:14;;5961:11;;;5954:35;6017:16;;;;5911:10;;5882:165;;;5886:3;;6076:6;6071:3;6067:16;6060:23;;5626:467;;;;;;;6109:56;6134:30;6160:3;6152:6;6134:30;:::i;:::-;-1:-1:-1;;;4812:20:1;;4857:1;4848:11;;4752:113;6109:56;6102:63;4870:1301;-1:-1:-1;;;;;4870:1301:1:o;6594:488::-;-1:-1:-1;;;;;6863:15:1;;;6845:34;;6915:15;;6910:2;6895:18;;6888:43;6962:2;6947:18;;6940:34;;;7010:3;7005:2;6990:18;;6983:31;;;6788:4;;7031:45;;7056:19;;7048:6;7031:45;:::i;:::-;7023:53;6594:488;-1:-1:-1;;;;;;6594:488:1:o;7279:219::-;7428:2;7417:9;7410:21;7391:4;7448:44;7488:2;7477:9;7473:18;7465:6;7448:44;:::i;8608:356::-;8810:2;8792:21;;;8829:18;;;8822:30;8888:34;8883:2;8868:18;;8861:62;8955:2;8940:18;;8608:356::o;10043:128::-;10083:3;10114:1;10110:6;10107:1;10104:13;10101:39;;;10120:18;;:::i;:::-;-1:-1:-1;10156:9:1;;10043:128::o;10176:120::-;10216:1;10242;10232:35;;10247:18;;:::i;:::-;-1:-1:-1;10281:9:1;;10176:120::o;10301:168::-;10341:7;10407:1;10403;10399:6;10395:14;10392:1;10389:21;10384:1;10377:9;10370:17;10366:45;10363:71;;;10414:18;;:::i;:::-;-1:-1:-1;10454:9:1;;10301:168::o;10474:125::-;10514:4;10542:1;10539;10536:8;10533:34;;;10547:18;;:::i;:::-;-1:-1:-1;10584:9:1;;10474:125::o;10604:258::-;10676:1;10686:113;10700:6;10697:1;10694:13;10686:113;;;10776:11;;;10770:18;10757:11;;;10750:39;10722:2;10715:10;10686:113;;;10817:6;10814:1;10811:13;10808:48;;;-1:-1:-1;;10852:1:1;10834:16;;10827:27;10604:258::o;10867:380::-;10946:1;10942:12;;;;10989;;;11010:61;;11064:4;11056:6;11052:17;11042:27;;11010:61;11117:2;11109:6;11106:14;11086:18;11083:38;11080:161;;;11163:10;11158:3;11154:20;11151:1;11144:31;11198:4;11195:1;11188:15;11226:4;11223:1;11216:15;11080:161;;10867:380;;;:::o;11252:135::-;11291:3;-1:-1:-1;;11312:17:1;;11309:43;;;11332:18;;:::i;:::-;-1:-1:-1;11379:1:1;11368:13;;11252:135::o;11392:112::-;11424:1;11450;11440:35;;11455:18;;:::i;:::-;-1:-1:-1;11489:9:1;;11392:112::o;11509:127::-;11570:10;11565:3;11561:20;11558:1;11551:31;11601:4;11598:1;11591:15;11625:4;11622:1;11615:15;11641:127;11702:10;11697:3;11693:20;11690:1;11683:31;11733:4;11730:1;11723:15;11757:4;11754:1;11747:15;11773:127;11834:10;11829:3;11825:20;11822:1;11815:31;11865:4;11862:1;11855:15;11889:4;11886:1;11879:15;11905:127;11966:10;11961:3;11957:20;11954:1;11947:31;11997:4;11994:1;11987:15;12021:4;12018:1;12011:15;12037:131;-1:-1:-1;;;;;;12111:32:1;;12101:43;;12091:71;;12158:1;12155;12148:12

Swarm Source

ipfs://81855cac9d43329e3c392e13ec8f10161dc871941b716a7d24ac94e1fbba452c
Loading...
Loading
Loading...
Loading
[ 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.