ETH Price: $3,258.49 (+2.63%)
Gas: 4 Gwei

Token

SuperJuice (SPRJ)
 

Overview

Max Total Supply

1,000 SPRJ

Holders

162

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SPRJ
0x00aa0901456090851c617b7c65d7351f64ebf8e2
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:
SuperJuice

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
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();

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}
// File: contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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`
    // - [232..255] `extraData`
    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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 auxiliary 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 auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev 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;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

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

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // 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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}
// File: contracts/SuperJuice.sol


pragma solidity ^0.8.4;




contract SuperJuice is ERC721A, Ownable {
   
    string metadataPath;

  constructor(string memory _metadataPath) ERC721A("SuperJuice", "SPRJ") {
      metadataPath = _metadataPath;
  }
    
    /**
    * Mint a token
    */
    function mint(uint _amount) external onlyOwner{
      _mint(msg.sender, _amount);
    }

    /**
    * Update the base URI for metadata
    */
    function updateBaseURI(string memory baseURI) external onlyOwner{
         metadataPath = baseURI;
    }


    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
         return bytes(metadataPath).length != 0 ? string(abi.encodePacked(metadataPath, Strings.toString(_tokenId),'.json')) : '';
    }


    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_metadataPath","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[{"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620028f0380380620028f083398181016040528101906200003791906200032e565b6040518060400160405280600a81526020017f53757065724a75696365000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5350524a000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bb92919062000200565b508060039080519060200190620000d492919062000200565b50620000e56200012d60201b60201c565b60008190555050506200010d620001016200013260201b60201c565b6200013a60201b60201c565b80600990805190602001906200012592919062000200565b505062000503565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020e9062000414565b90600052602060002090601f0160209004810192826200023257600085556200027e565b82601f106200024d57805160ff19168380011785556200027e565b828001600101855582156200027e579182015b828111156200027d57825182559160200191906001019062000260565b5b5090506200028d919062000291565b5090565b5b80821115620002ac57600081600090555060010162000292565b5090565b6000620002c7620002c184620003a8565b6200037f565b905082815260208101848484011115620002e657620002e5620004e3565b5b620002f3848285620003de565b509392505050565b600082601f830112620003135762000312620004de565b5b815162000325848260208601620002b0565b91505092915050565b600060208284031215620003475762000346620004ed565b5b600082015167ffffffffffffffff811115620003685762000367620004e8565b5b6200037684828501620002fb565b91505092915050565b60006200038b6200039e565b90506200039982826200044a565b919050565b6000604051905090565b600067ffffffffffffffff821115620003c657620003c5620004af565b5b620003d182620004f2565b9050602081019050919050565b60005b83811015620003fe578082015181840152602081019050620003e1565b838111156200040e576000848401525b50505050565b600060028204905060018216806200042d57607f821691505b6020821081141562000444576200044362000480565b5b50919050565b6200045582620004f2565b810181811067ffffffffffffffff82111715620004775762000476620004af565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6123dd80620005136000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a22cb46511610071578063a22cb465146102f4578063b88d4fde14610310578063c87b56dd1461032c578063e985e9c51461035c578063f2fde38b1461038c57610121565b8063715018a6146102765780638da5cb5b14610280578063931688cb1461029e57806395d89b41146102ba578063a0712d68146102d857610121565b806318160ddd116100f457806318160ddd146101c057806323b872dd146101de57806342842e0e146101fa5780636352211e1461021657806370a082311461024657610121565b806301ffc9a71461012657806306fdde0314610156578063081812fc14610174578063095ea7b3146101a4575b600080fd5b610140600480360381019061013b9190611ab7565b6103a8565b60405161014d9190611dd5565b60405180910390f35b61015e61043a565b60405161016b9190611df0565b60405180910390f35b61018e60048036038101906101899190611b5a565b6104cc565b60405161019b9190611d6e565b60405180910390f35b6101be60048036038101906101b99190611a77565b61054b565b005b6101c861068f565b6040516101d59190611e52565b60405180910390f35b6101f860048036038101906101f39190611961565b6106a6565b005b610214600480360381019061020f9190611961565b6109cb565b005b610230600480360381019061022b9190611b5a565b6109eb565b60405161023d9190611d6e565b60405180910390f35b610260600480360381019061025b91906118f4565b6109fd565b60405161026d9190611e52565b60405180910390f35b61027e610ab6565b005b610288610aca565b6040516102959190611d6e565b60405180910390f35b6102b860048036038101906102b39190611b11565b610af4565b005b6102c2610b16565b6040516102cf9190611df0565b60405180910390f35b6102f260048036038101906102ed9190611b5a565b610ba8565b005b61030e60048036038101906103099190611a37565b610bbd565b005b61032a600480360381019061032591906119b4565b610d35565b005b61034660048036038101906103419190611b5a565b610da8565b6040516103539190611df0565b60405180910390f35b61037660048036038101906103719190611921565b610e09565b6040516103839190611dd5565b60405180910390f35b6103a660048036038101906103a191906118f4565b610e9d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061040357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104335750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610449906120bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610475906120bd565b80156104c25780601f10610497576101008083540402835291602001916104c2565b820191906000526020600020905b8154815290600101906020018083116104a557829003601f168201915b5050505050905090565b60006104d782610f21565b61050d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610556826109eb565b90508073ffffffffffffffffffffffffffffffffffffffff16610577610f80565b73ffffffffffffffffffffffffffffffffffffffff16146105da576105a38161059e610f80565b610e09565b6105d9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610699610f88565b6001546000540303905090565b60006106b182610f8d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610718576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806107248461105b565b9150915061073a8187610735610f80565b611082565b6107865761074f8661074a610f80565b610e09565b610785576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156107ed576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107fa86868660016110c6565b801561080557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506108d3856108af8888876110cc565b7c0200000000000000000000000000000000000000000000000000000000176110f4565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561095b576000600185019050600060046000838152602001908152602001600020541415610959576000548114610958578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46109c3868686600161111f565b505050505050565b6109e683838360405180602001604052806000815250610d35565b505050565b60006109f682610f8d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a65576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610abe611125565b610ac860006111a3565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610afc611125565b8060099080519060200190610b12929190611708565b5050565b606060038054610b25906120bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b51906120bd565b8015610b9e5780601f10610b7357610100808354040283529160200191610b9e565b820191906000526020600020905b815481529060010190602001808311610b8157829003601f168201915b5050505050905090565b610bb0611125565b610bba3382611269565b50565b610bc5610f80565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c2a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610c37610f80565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ce4610f80565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d299190611dd5565b60405180910390a35050565b610d408484846106a6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610da257610d6b84848484611426565b610da1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600060098054610db9906120bd565b90501415610dd65760405180602001604052806000815250610e02565b6009610de183611586565b604051602001610df2929190611d3f565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ea5611125565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90611e12565b60405180910390fd5b610f1e816111a3565b50565b600081610f2c610f88565b11158015610f3b575060005482105b8015610f79575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080610f9c610f88565b11611024576000548110156110235760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611021575b6000811415611017576004600083600190039350838152602001908152602001600020549050610fec565b8092505050611056565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86110e38686846116e7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61112d6116f0565b73ffffffffffffffffffffffffffffffffffffffff1661114b610aca565b73ffffffffffffffffffffffffffffffffffffffff16146111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890611e32565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905060008214156112aa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112b760008483856110c6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061132e8361131f60008660006110cc565b611328856116f8565b176110f4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146113cf57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611394565b50600082141561140b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611421600084838561111f565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261144c610f80565b8786866040518563ffffffff1660e01b815260040161146e9493929190611d89565b602060405180830381600087803b15801561148857600080fd5b505af19250505080156114b957506040513d601f19601f820116820180604052508101906114b69190611ae4565b60015b611533573d80600081146114e9576040519150601f19603f3d011682016040523d82523d6000602084013e6114ee565b606091505b5060008151141561152b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156115ce576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506116e2565b600082905060005b600082146116005780806115e990612120565b915050600a826115f99190611fa2565b91506115d6565b60008167ffffffffffffffff81111561161c5761161b612256565b5b6040519080825280601f01601f19166020018201604052801561164e5781602001600182028036833780820191505090505b5090505b600085146116db576001826116679190611fd3565b9150600a856116769190612169565b60306116829190611f4c565b60f81b81838151811061169857611697612227565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856116d49190611fa2565b9450611652565b8093505050505b919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b828054611714906120bd565b90600052602060002090601f016020900481019282611736576000855561177d565b82601f1061174f57805160ff191683800117855561177d565b8280016001018555821561177d579182015b8281111561177c578251825591602001919060010190611761565b5b50905061178a919061178e565b5090565b5b808211156117a757600081600090555060010161178f565b5090565b60006117be6117b984611e92565b611e6d565b9050828152602081018484840111156117da576117d961228a565b5b6117e584828561207b565b509392505050565b60006118006117fb84611ec3565b611e6d565b90508281526020810184848401111561181c5761181b61228a565b5b61182784828561207b565b509392505050565b60008135905061183e8161234b565b92915050565b60008135905061185381612362565b92915050565b60008135905061186881612379565b92915050565b60008151905061187d81612379565b92915050565b600082601f83011261189857611897612285565b5b81356118a88482602086016117ab565b91505092915050565b600082601f8301126118c6576118c5612285565b5b81356118d68482602086016117ed565b91505092915050565b6000813590506118ee81612390565b92915050565b60006020828403121561190a57611909612294565b5b60006119188482850161182f565b91505092915050565b6000806040838503121561193857611937612294565b5b60006119468582860161182f565b92505060206119578582860161182f565b9150509250929050565b60008060006060848603121561197a57611979612294565b5b60006119888682870161182f565b93505060206119998682870161182f565b92505060406119aa868287016118df565b9150509250925092565b600080600080608085870312156119ce576119cd612294565b5b60006119dc8782880161182f565b94505060206119ed8782880161182f565b93505060406119fe878288016118df565b925050606085013567ffffffffffffffff811115611a1f57611a1e61228f565b5b611a2b87828801611883565b91505092959194509250565b60008060408385031215611a4e57611a4d612294565b5b6000611a5c8582860161182f565b9250506020611a6d85828601611844565b9150509250929050565b60008060408385031215611a8e57611a8d612294565b5b6000611a9c8582860161182f565b9250506020611aad858286016118df565b9150509250929050565b600060208284031215611acd57611acc612294565b5b6000611adb84828501611859565b91505092915050565b600060208284031215611afa57611af9612294565b5b6000611b088482850161186e565b91505092915050565b600060208284031215611b2757611b26612294565b5b600082013567ffffffffffffffff811115611b4557611b4461228f565b5b611b51848285016118b1565b91505092915050565b600060208284031215611b7057611b6f612294565b5b6000611b7e848285016118df565b91505092915050565b611b9081612007565b82525050565b611b9f81612019565b82525050565b6000611bb082611f09565b611bba8185611f1f565b9350611bca81856020860161208a565b611bd381612299565b840191505092915050565b6000611be982611f14565b611bf38185611f30565b9350611c0381856020860161208a565b611c0c81612299565b840191505092915050565b6000611c2282611f14565b611c2c8185611f41565b9350611c3c81856020860161208a565b80840191505092915050565b60008154611c55816120bd565b611c5f8186611f41565b94506001821660008114611c7a5760018114611c8b57611cbe565b60ff19831686528186019350611cbe565b611c9485611ef4565b60005b83811015611cb657815481890152600182019150602081019050611c97565b838801955050505b50505092915050565b6000611cd4602683611f30565b9150611cdf826122aa565b604082019050919050565b6000611cf7600583611f41565b9150611d02826122f9565b600582019050919050565b6000611d1a602083611f30565b9150611d2582612322565b602082019050919050565b611d3981612071565b82525050565b6000611d4b8285611c48565b9150611d578284611c17565b9150611d6282611cea565b91508190509392505050565b6000602082019050611d836000830184611b87565b92915050565b6000608082019050611d9e6000830187611b87565b611dab6020830186611b87565b611db86040830185611d30565b8181036060830152611dca8184611ba5565b905095945050505050565b6000602082019050611dea6000830184611b96565b92915050565b60006020820190508181036000830152611e0a8184611bde565b905092915050565b60006020820190508181036000830152611e2b81611cc7565b9050919050565b60006020820190508181036000830152611e4b81611d0d565b9050919050565b6000602082019050611e676000830184611d30565b92915050565b6000611e77611e88565b9050611e8382826120ef565b919050565b6000604051905090565b600067ffffffffffffffff821115611ead57611eac612256565b5b611eb682612299565b9050602081019050919050565b600067ffffffffffffffff821115611ede57611edd612256565b5b611ee782612299565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611f5782612071565b9150611f6283612071565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f9757611f9661219a565b5b828201905092915050565b6000611fad82612071565b9150611fb883612071565b925082611fc857611fc76121c9565b5b828204905092915050565b6000611fde82612071565b9150611fe983612071565b925082821015611ffc57611ffb61219a565b5b828203905092915050565b600061201282612051565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156120a857808201518184015260208101905061208d565b838111156120b7576000848401525b50505050565b600060028204905060018216806120d557607f821691505b602082108114156120e9576120e86121f8565b5b50919050565b6120f882612299565b810181811067ffffffffffffffff8211171561211757612116612256565b5b80604052505050565b600061212b82612071565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561215e5761215d61219a565b5b600182019050919050565b600061217482612071565b915061217f83612071565b92508261218f5761218e6121c9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61235481612007565b811461235f57600080fd5b50565b61236b81612019565b811461237657600080fd5b50565b61238281612025565b811461238d57600080fd5b50565b61239981612071565b81146123a457600080fd5b5056fea26469706673582212209775454e022cf3d3ea89403d8e3016a865e74ca347b5516a344b88252926dbea64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f746865626c696e6b6c6573732e73332e616d617a6f6e6177732e636f6d2f736a6a736f6e2f00000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a22cb46511610071578063a22cb465146102f4578063b88d4fde14610310578063c87b56dd1461032c578063e985e9c51461035c578063f2fde38b1461038c57610121565b8063715018a6146102765780638da5cb5b14610280578063931688cb1461029e57806395d89b41146102ba578063a0712d68146102d857610121565b806318160ddd116100f457806318160ddd146101c057806323b872dd146101de57806342842e0e146101fa5780636352211e1461021657806370a082311461024657610121565b806301ffc9a71461012657806306fdde0314610156578063081812fc14610174578063095ea7b3146101a4575b600080fd5b610140600480360381019061013b9190611ab7565b6103a8565b60405161014d9190611dd5565b60405180910390f35b61015e61043a565b60405161016b9190611df0565b60405180910390f35b61018e60048036038101906101899190611b5a565b6104cc565b60405161019b9190611d6e565b60405180910390f35b6101be60048036038101906101b99190611a77565b61054b565b005b6101c861068f565b6040516101d59190611e52565b60405180910390f35b6101f860048036038101906101f39190611961565b6106a6565b005b610214600480360381019061020f9190611961565b6109cb565b005b610230600480360381019061022b9190611b5a565b6109eb565b60405161023d9190611d6e565b60405180910390f35b610260600480360381019061025b91906118f4565b6109fd565b60405161026d9190611e52565b60405180910390f35b61027e610ab6565b005b610288610aca565b6040516102959190611d6e565b60405180910390f35b6102b860048036038101906102b39190611b11565b610af4565b005b6102c2610b16565b6040516102cf9190611df0565b60405180910390f35b6102f260048036038101906102ed9190611b5a565b610ba8565b005b61030e60048036038101906103099190611a37565b610bbd565b005b61032a600480360381019061032591906119b4565b610d35565b005b61034660048036038101906103419190611b5a565b610da8565b6040516103539190611df0565b60405180910390f35b61037660048036038101906103719190611921565b610e09565b6040516103839190611dd5565b60405180910390f35b6103a660048036038101906103a191906118f4565b610e9d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061040357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104335750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610449906120bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610475906120bd565b80156104c25780601f10610497576101008083540402835291602001916104c2565b820191906000526020600020905b8154815290600101906020018083116104a557829003601f168201915b5050505050905090565b60006104d782610f21565b61050d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610556826109eb565b90508073ffffffffffffffffffffffffffffffffffffffff16610577610f80565b73ffffffffffffffffffffffffffffffffffffffff16146105da576105a38161059e610f80565b610e09565b6105d9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610699610f88565b6001546000540303905090565b60006106b182610f8d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610718576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806107248461105b565b9150915061073a8187610735610f80565b611082565b6107865761074f8661074a610f80565b610e09565b610785576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156107ed576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107fa86868660016110c6565b801561080557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506108d3856108af8888876110cc565b7c0200000000000000000000000000000000000000000000000000000000176110f4565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561095b576000600185019050600060046000838152602001908152602001600020541415610959576000548114610958578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46109c3868686600161111f565b505050505050565b6109e683838360405180602001604052806000815250610d35565b505050565b60006109f682610f8d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a65576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610abe611125565b610ac860006111a3565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610afc611125565b8060099080519060200190610b12929190611708565b5050565b606060038054610b25906120bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b51906120bd565b8015610b9e5780601f10610b7357610100808354040283529160200191610b9e565b820191906000526020600020905b815481529060010190602001808311610b8157829003601f168201915b5050505050905090565b610bb0611125565b610bba3382611269565b50565b610bc5610f80565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c2a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610c37610f80565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ce4610f80565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d299190611dd5565b60405180910390a35050565b610d408484846106a6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610da257610d6b84848484611426565b610da1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600060098054610db9906120bd565b90501415610dd65760405180602001604052806000815250610e02565b6009610de183611586565b604051602001610df2929190611d3f565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ea5611125565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90611e12565b60405180910390fd5b610f1e816111a3565b50565b600081610f2c610f88565b11158015610f3b575060005482105b8015610f79575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080610f9c610f88565b11611024576000548110156110235760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611021575b6000811415611017576004600083600190039350838152602001908152602001600020549050610fec565b8092505050611056565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86110e38686846116e7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61112d6116f0565b73ffffffffffffffffffffffffffffffffffffffff1661114b610aca565b73ffffffffffffffffffffffffffffffffffffffff16146111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890611e32565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905060008214156112aa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112b760008483856110c6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061132e8361131f60008660006110cc565b611328856116f8565b176110f4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146113cf57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611394565b50600082141561140b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611421600084838561111f565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261144c610f80565b8786866040518563ffffffff1660e01b815260040161146e9493929190611d89565b602060405180830381600087803b15801561148857600080fd5b505af19250505080156114b957506040513d601f19601f820116820180604052508101906114b69190611ae4565b60015b611533573d80600081146114e9576040519150601f19603f3d011682016040523d82523d6000602084013e6114ee565b606091505b5060008151141561152b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156115ce576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506116e2565b600082905060005b600082146116005780806115e990612120565b915050600a826115f99190611fa2565b91506115d6565b60008167ffffffffffffffff81111561161c5761161b612256565b5b6040519080825280601f01601f19166020018201604052801561164e5781602001600182028036833780820191505090505b5090505b600085146116db576001826116679190611fd3565b9150600a856116769190612169565b60306116829190611f4c565b60f81b81838151811061169857611697612227565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856116d49190611fa2565b9450611652565b8093505050505b919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b828054611714906120bd565b90600052602060002090601f016020900481019282611736576000855561177d565b82601f1061174f57805160ff191683800117855561177d565b8280016001018555821561177d579182015b8281111561177c578251825591602001919060010190611761565b5b50905061178a919061178e565b5090565b5b808211156117a757600081600090555060010161178f565b5090565b60006117be6117b984611e92565b611e6d565b9050828152602081018484840111156117da576117d961228a565b5b6117e584828561207b565b509392505050565b60006118006117fb84611ec3565b611e6d565b90508281526020810184848401111561181c5761181b61228a565b5b61182784828561207b565b509392505050565b60008135905061183e8161234b565b92915050565b60008135905061185381612362565b92915050565b60008135905061186881612379565b92915050565b60008151905061187d81612379565b92915050565b600082601f83011261189857611897612285565b5b81356118a88482602086016117ab565b91505092915050565b600082601f8301126118c6576118c5612285565b5b81356118d68482602086016117ed565b91505092915050565b6000813590506118ee81612390565b92915050565b60006020828403121561190a57611909612294565b5b60006119188482850161182f565b91505092915050565b6000806040838503121561193857611937612294565b5b60006119468582860161182f565b92505060206119578582860161182f565b9150509250929050565b60008060006060848603121561197a57611979612294565b5b60006119888682870161182f565b93505060206119998682870161182f565b92505060406119aa868287016118df565b9150509250925092565b600080600080608085870312156119ce576119cd612294565b5b60006119dc8782880161182f565b94505060206119ed8782880161182f565b93505060406119fe878288016118df565b925050606085013567ffffffffffffffff811115611a1f57611a1e61228f565b5b611a2b87828801611883565b91505092959194509250565b60008060408385031215611a4e57611a4d612294565b5b6000611a5c8582860161182f565b9250506020611a6d85828601611844565b9150509250929050565b60008060408385031215611a8e57611a8d612294565b5b6000611a9c8582860161182f565b9250506020611aad858286016118df565b9150509250929050565b600060208284031215611acd57611acc612294565b5b6000611adb84828501611859565b91505092915050565b600060208284031215611afa57611af9612294565b5b6000611b088482850161186e565b91505092915050565b600060208284031215611b2757611b26612294565b5b600082013567ffffffffffffffff811115611b4557611b4461228f565b5b611b51848285016118b1565b91505092915050565b600060208284031215611b7057611b6f612294565b5b6000611b7e848285016118df565b91505092915050565b611b9081612007565b82525050565b611b9f81612019565b82525050565b6000611bb082611f09565b611bba8185611f1f565b9350611bca81856020860161208a565b611bd381612299565b840191505092915050565b6000611be982611f14565b611bf38185611f30565b9350611c0381856020860161208a565b611c0c81612299565b840191505092915050565b6000611c2282611f14565b611c2c8185611f41565b9350611c3c81856020860161208a565b80840191505092915050565b60008154611c55816120bd565b611c5f8186611f41565b94506001821660008114611c7a5760018114611c8b57611cbe565b60ff19831686528186019350611cbe565b611c9485611ef4565b60005b83811015611cb657815481890152600182019150602081019050611c97565b838801955050505b50505092915050565b6000611cd4602683611f30565b9150611cdf826122aa565b604082019050919050565b6000611cf7600583611f41565b9150611d02826122f9565b600582019050919050565b6000611d1a602083611f30565b9150611d2582612322565b602082019050919050565b611d3981612071565b82525050565b6000611d4b8285611c48565b9150611d578284611c17565b9150611d6282611cea565b91508190509392505050565b6000602082019050611d836000830184611b87565b92915050565b6000608082019050611d9e6000830187611b87565b611dab6020830186611b87565b611db86040830185611d30565b8181036060830152611dca8184611ba5565b905095945050505050565b6000602082019050611dea6000830184611b96565b92915050565b60006020820190508181036000830152611e0a8184611bde565b905092915050565b60006020820190508181036000830152611e2b81611cc7565b9050919050565b60006020820190508181036000830152611e4b81611d0d565b9050919050565b6000602082019050611e676000830184611d30565b92915050565b6000611e77611e88565b9050611e8382826120ef565b919050565b6000604051905090565b600067ffffffffffffffff821115611ead57611eac612256565b5b611eb682612299565b9050602081019050919050565b600067ffffffffffffffff821115611ede57611edd612256565b5b611ee782612299565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611f5782612071565b9150611f6283612071565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f9757611f9661219a565b5b828201905092915050565b6000611fad82612071565b9150611fb883612071565b925082611fc857611fc76121c9565b5b828204905092915050565b6000611fde82612071565b9150611fe983612071565b925082821015611ffc57611ffb61219a565b5b828203905092915050565b600061201282612051565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156120a857808201518184015260208101905061208d565b838111156120b7576000848401525b50505050565b600060028204905060018216806120d557607f821691505b602082108114156120e9576120e86121f8565b5b50919050565b6120f882612299565b810181811067ffffffffffffffff8211171561211757612116612256565b5b80604052505050565b600061212b82612071565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561215e5761215d61219a565b5b600182019050919050565b600061217482612071565b915061217f83612071565b92508261218f5761218e6121c9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61235481612007565b811461235f57600080fd5b50565b61236b81612019565b811461237657600080fd5b50565b61238281612025565b811461238d57600080fd5b50565b61239981612071565b81146123a457600080fd5b5056fea26469706673582212209775454e022cf3d3ea89403d8e3016a865e74ca347b5516a344b88252926dbea64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f746865626c696e6b6c6573732e73332e616d617a6f6e6177732e636f6d2f736a6a736f6e2f00000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _metadataPath (string): https://theblinkless.s3.amazonaws.com/sjjson/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [2] : 68747470733a2f2f746865626c696e6b6c6573732e73332e616d617a6f6e6177
Arg [3] : 732e636f6d2f736a6a736f6e2f00000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56974:816:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24507:639;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25409:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31892:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31333:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21160:323;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35605:2817;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38518:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26802:152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22344:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;:::i;:::-;;4625:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57369:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25585:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57215:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32450:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39301:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57548:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32915:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24507:639;24592:4;24931:10;24916:25;;:11;:25;;;;:102;;;;25008:10;24993:25;;:11;:25;;;;24916:102;:179;;;;25085:10;25070:25;;:11;:25;;;;24916:179;24896:199;;24507:639;;;:::o;25409:100::-;25463:13;25496:5;25489:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25409:100;:::o;31892:218::-;31968:7;31993:16;32001:7;31993;:16::i;:::-;31988:64;;32018:34;;;;;;;;;;;;;;31988:64;32072:15;:24;32088:7;32072:24;;;;;;;;;;;:30;;;;;;;;;;;;32065:37;;31892:218;;;:::o;31333:400::-;31414:13;31430:16;31438:7;31430;:16::i;:::-;31414:32;;31486:5;31463:28;;:19;:17;:19::i;:::-;:28;;;31459:175;;31511:44;31528:5;31535:19;:17;:19::i;:::-;31511:16;:44::i;:::-;31506:128;;31583:35;;;;;;;;;;;;;;31506:128;31459:175;31679:2;31646:15;:24;31662:7;31646:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31717:7;31713:2;31697:28;;31706:5;31697:28;;;;;;;;;;;;31403:330;31333:400;;:::o;21160:323::-;21221:7;21449:15;:13;:15::i;:::-;21434:12;;21418:13;;:28;:46;21411:53;;21160:323;:::o;35605:2817::-;35739:27;35769;35788:7;35769:18;:27::i;:::-;35739:57;;35854:4;35813:45;;35829:19;35813:45;;;35809:86;;35867:28;;;;;;;;;;;;;;35809:86;35909:27;35938:23;35965:35;35992:7;35965:26;:35::i;:::-;35908:92;;;;36100:68;36125:15;36142:4;36148:19;:17;:19::i;:::-;36100:24;:68::i;:::-;36095:180;;36188:43;36205:4;36211:19;:17;:19::i;:::-;36188:16;:43::i;:::-;36183:92;;36240:35;;;;;;;;;;;;;;36183:92;36095:180;36306:1;36292:16;;:2;:16;;;36288:52;;;36317:23;;;;;;;;;;;;;;36288:52;36353:43;36375:4;36381:2;36385:7;36394:1;36353:21;:43::i;:::-;36489:15;36486:160;;;36629:1;36608:19;36601:30;36486:160;37026:18;:24;37045:4;37026:24;;;;;;;;;;;;;;;;37024:26;;;;;;;;;;;;37095:18;:22;37114:2;37095:22;;;;;;;;;;;;;;;;37093:24;;;;;;;;;;;37417:146;37454:2;37503:45;37518:4;37524:2;37528:19;37503:14;:45::i;:::-;17559:8;37475:73;37417:18;:146::i;:::-;37388:17;:26;37406:7;37388:26;;;;;;;;;;;:175;;;;37734:1;17559:8;37683:19;:47;:52;37679:627;;;37756:19;37788:1;37778:7;:11;37756:33;;37945:1;37911:17;:30;37929:11;37911:30;;;;;;;;;;;;:35;37907:384;;;38049:13;;38034:11;:28;38030:242;;38229:19;38196:17;:30;38214:11;38196:30;;;;;;;;;;;:52;;;;38030:242;37907:384;37737:569;37679:627;38353:7;38349:2;38334:27;;38343:4;38334:27;;;;;;;;;;;;38372:42;38393:4;38399:2;38403:7;38412:1;38372:20;:42::i;:::-;35728:2694;;;35605:2817;;;:::o;38518:185::-;38656:39;38673:4;38679:2;38683:7;38656:39;;;;;;;;;;;;:16;:39::i;:::-;38518:185;;;:::o;26802:152::-;26874:7;26917:27;26936:7;26917:18;:27::i;:::-;26894:52;;26802:152;;;:::o;22344:233::-;22416:7;22457:1;22440:19;;:5;:19;;;22436:60;;;22468:28;;;;;;;;;;;;;;22436:60;16503:13;22514:18;:25;22533:5;22514:25;;;;;;;;;;;;;;;;:55;22507:62;;22344:233;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;57369:106::-;4511:13;:11;:13::i;:::-;57460:7:::1;57445:12;:22;;;;;;;;;;;;:::i;:::-;;57369:106:::0;:::o;25585:104::-;25641:13;25674:7;25667:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25585:104;:::o;57215:89::-;4511:13;:11;:13::i;:::-;57270:26:::1;57276:10;57288:7;57270:5;:26::i;:::-;57215:89:::0;:::o;32450:308::-;32561:19;:17;:19::i;:::-;32549:31;;:8;:31;;;32545:61;;;32589:17;;;;;;;;;;;;;;32545:61;32671:8;32619:18;:39;32638:19;:17;:19::i;:::-;32619:39;;;;;;;;;;;;;;;:49;32659:8;32619:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32731:8;32695:55;;32710:19;:17;:19::i;:::-;32695:55;;;32741:8;32695:55;;;;;;:::i;:::-;;;;;;;;32450:308;;:::o;39301:399::-;39468:31;39481:4;39487:2;39491:7;39468:12;:31::i;:::-;39532:1;39514:2;:14;;;:19;39510:183;;39553:56;39584:4;39590:2;39594:7;39603:5;39553:30;:56::i;:::-;39548:145;;39637:40;;;;;;;;;;;;;;39548:145;39510:183;39301:399;;;;:::o;57548:229::-;57622:13;57686:1;57662:12;57656:26;;;;;:::i;:::-;;;:31;;:113;;;;;;;;;;;;;;;;;57714:12;57728:26;57745:8;57728:16;:26::i;:::-;57697:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57656:113;57649:120;;57548:229;;;:::o;32915:164::-;33012:4;33036:18;:25;33055:5;33036:25;;;;;;;;;;;;;;;:35;33062:8;33036:35;;;;;;;;;;;;;;;;;;;;;;;;;33029:42;;32915:164;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;33337:282::-;33402:4;33458:7;33439:15;:13;:15::i;:::-;:26;;:66;;;;;33492:13;;33482:7;:23;33439:66;:153;;;;;33591:1;17279:8;33543:17;:26;33561:7;33543:26;;;;;;;;;;;;:44;:49;33439:153;33419:173;;33337:282;;;:::o;55109:105::-;55169:7;55196:10;55189:17;;55109:105;:::o;20676:92::-;20732:7;20676:92;:::o;27957:1275::-;28024:7;28044:12;28059:7;28044:22;;28127:4;28108:15;:13;:15::i;:::-;:23;28104:1061;;28161:13;;28154:4;:20;28150:1015;;;28199:14;28216:17;:23;28234:4;28216:23;;;;;;;;;;;;28199:40;;28333:1;17279:8;28305:6;:24;:29;28301:845;;;28970:113;28987:1;28977:6;:11;28970:113;;;29030:17;:25;29048:6;;;;;;;29030:25;;;;;;;;;;;;29021:34;;28970:113;;;29116:6;29109:13;;;;;;28301:845;28176:989;28150:1015;28104:1061;29193:31;;;;;;;;;;;;;;27957:1275;;;;:::o;34500:485::-;34602:27;34631:23;34672:38;34713:15;:24;34729:7;34713:24;;;;;;;;;;;34672:65;;34890:18;34867:41;;34947:19;34941:26;34922:45;;34852:126;34500:485;;;:::o;33728:659::-;33877:11;34042:16;34035:5;34031:28;34022:37;;34202:16;34191:9;34187:32;34174:45;;34352:15;34341:9;34338:30;34330:5;34319:9;34316:20;34313:56;34303:66;;33728:659;;;;;:::o;40362:159::-;;;;;:::o;54418:311::-;54553:7;54573:16;17683:3;54599:19;:41;;54573:68;;17683:3;54667:31;54678:4;54684:2;54688:9;54667:10;:31::i;:::-;54659:40;;:62;;54652:69;;;54418:311;;;;;:::o;29780:450::-;29860:14;30028:16;30021:5;30017:28;30008:37;;30205:5;30191:11;30166:23;30162:41;30159:52;30152:5;30149:63;30139:73;;29780:450;;;;:::o;41186:158::-;;;;;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;42962:2454::-;43035:20;43058:13;;43035:36;;43098:1;43086:8;:13;43082:44;;;43108:18;;;;;;;;;;;;;;43082:44;43139:61;43169:1;43173:2;43177:12;43191:8;43139:21;:61::i;:::-;43683:1;16641:2;43653:1;:26;;43652:32;43640:8;:45;43614:18;:22;43633:2;43614:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43962:139;43999:2;44053:33;44076:1;44080:2;44084:1;44053:14;:33::i;:::-;44020:30;44041:8;44020:20;:30::i;:::-;:66;43962:18;:139::i;:::-;43928:17;:31;43946:12;43928:31;;;;;;;;;;;:173;;;;44118:16;44149:11;44178:8;44163:12;:23;44149:37;;44433:16;44429:2;44425:25;44413:37;;44805:12;44765:8;44724:1;44662:25;44603:1;44542;44515:335;44930:1;44916:12;44912:20;44870:346;44971:3;44962:7;44959:16;44870:346;;45189:7;45179:8;45176:1;45149:25;45146:1;45143;45138:59;45024:1;45015:7;45011:15;45000:26;;44870:346;;;44874:77;45261:1;45249:8;:13;45245:45;;;45271:19;;;;;;;;;;;;;;45245:45;45323:3;45307:13;:19;;;;43388:1950;;45348:60;45377:1;45381:2;45385:12;45399:8;45348:20;:60::i;:::-;43024:2392;42962:2454;;:::o;41784:716::-;41947:4;41993:2;41968:45;;;42014:19;:17;:19::i;:::-;42035:4;42041:7;42050:5;41968:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41964:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42268:1;42251:6;:13;:18;42247:235;;;42297:40;;;;;;;;;;;;;;42247:235;42440:6;42434:13;42425:6;42421:2;42417:15;42410:38;41964:529;42137:54;;;42127:64;;;:6;:64;;;;42120:71;;;41784:716;;;;;;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;54119:147::-;54256:6;54119:147;;;;;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;30332:324::-;30402:14;30635:1;30625:8;30622:15;30596:24;30592:46;30582:56;;30332:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:400::-;9923:3;9944:84;10026:1;10021:3;9944:84;:::i;:::-;9937:91;;10037:93;10126:3;10037:93;:::i;:::-;10155:1;10150:3;10146:11;10139:18;;9763:400;;;:::o;10169:366::-;10311:3;10332:67;10396:2;10391:3;10332:67;:::i;:::-;10325:74;;10408:93;10497:3;10408:93;:::i;:::-;10526:2;10521:3;10517:12;10510:19;;10169:366;;;:::o;10541:118::-;10628:24;10646:5;10628:24;:::i;:::-;10623:3;10616:37;10541:118;;:::o;10665:695::-;10943:3;10965:92;11053:3;11044:6;10965:92;:::i;:::-;10958:99;;11074:95;11165:3;11156:6;11074:95;:::i;:::-;11067:102;;11186:148;11330:3;11186:148;:::i;:::-;11179:155;;11351:3;11344:10;;10665:695;;;;;:::o;11366:222::-;11459:4;11497:2;11486:9;11482:18;11474:26;;11510:71;11578:1;11567:9;11563:17;11554:6;11510:71;:::i;:::-;11366:222;;;;:::o;11594:640::-;11789:4;11827:3;11816:9;11812:19;11804:27;;11841:71;11909:1;11898:9;11894:17;11885:6;11841:71;:::i;:::-;11922:72;11990:2;11979:9;11975:18;11966:6;11922:72;:::i;:::-;12004;12072:2;12061:9;12057:18;12048:6;12004:72;:::i;:::-;12123:9;12117:4;12113:20;12108:2;12097:9;12093:18;12086:48;12151:76;12222:4;12213:6;12151:76;:::i;:::-;12143:84;;11594:640;;;;;;;:::o;12240:210::-;12327:4;12365:2;12354:9;12350:18;12342:26;;12378:65;12440:1;12429:9;12425:17;12416:6;12378:65;:::i;:::-;12240:210;;;;:::o;12456:313::-;12569:4;12607:2;12596:9;12592:18;12584:26;;12656:9;12650:4;12646:20;12642:1;12631:9;12627:17;12620:47;12684:78;12757:4;12748:6;12684:78;:::i;:::-;12676:86;;12456:313;;;;:::o;12775:419::-;12941:4;12979:2;12968:9;12964:18;12956:26;;13028:9;13022:4;13018:20;13014:1;13003:9;12999:17;12992:47;13056:131;13182:4;13056:131;:::i;:::-;13048:139;;12775:419;;;:::o;13200:::-;13366:4;13404:2;13393:9;13389:18;13381:26;;13453:9;13447:4;13443:20;13439:1;13428:9;13424:17;13417:47;13481:131;13607:4;13481:131;:::i;:::-;13473:139;;13200:419;;;:::o;13625:222::-;13718:4;13756:2;13745:9;13741:18;13733:26;;13769:71;13837:1;13826:9;13822:17;13813:6;13769:71;:::i;:::-;13625:222;;;;:::o;13853:129::-;13887:6;13914:20;;:::i;:::-;13904:30;;13943:33;13971:4;13963:6;13943:33;:::i;:::-;13853:129;;;:::o;13988:75::-;14021:6;14054:2;14048:9;14038:19;;13988:75;:::o;14069:307::-;14130:4;14220:18;14212:6;14209:30;14206:56;;;14242:18;;:::i;:::-;14206:56;14280:29;14302:6;14280:29;:::i;:::-;14272:37;;14364:4;14358;14354:15;14346:23;;14069:307;;;:::o;14382:308::-;14444:4;14534:18;14526:6;14523:30;14520:56;;;14556:18;;:::i;:::-;14520:56;14594:29;14616:6;14594:29;:::i;:::-;14586:37;;14678:4;14672;14668:15;14660:23;;14382:308;;;:::o;14696:141::-;14745:4;14768:3;14760:11;;14791:3;14788:1;14781:14;14825:4;14822:1;14812:18;14804:26;;14696:141;;;:::o;14843:98::-;14894:6;14928:5;14922:12;14912:22;;14843:98;;;:::o;14947:99::-;14999:6;15033:5;15027:12;15017:22;;14947:99;;;:::o;15052:168::-;15135:11;15169:6;15164:3;15157:19;15209:4;15204:3;15200:14;15185:29;;15052:168;;;;:::o;15226:169::-;15310:11;15344:6;15339:3;15332:19;15384:4;15379:3;15375:14;15360:29;;15226:169;;;;:::o;15401:148::-;15503:11;15540:3;15525:18;;15401:148;;;;:::o;15555:305::-;15595:3;15614:20;15632:1;15614:20;:::i;:::-;15609:25;;15648:20;15666:1;15648:20;:::i;:::-;15643:25;;15802:1;15734:66;15730:74;15727:1;15724:81;15721:107;;;15808:18;;:::i;:::-;15721:107;15852:1;15849;15845:9;15838:16;;15555:305;;;;:::o;15866:185::-;15906:1;15923:20;15941:1;15923:20;:::i;:::-;15918:25;;15957:20;15975:1;15957:20;:::i;:::-;15952:25;;15996:1;15986:35;;16001:18;;:::i;:::-;15986:35;16043:1;16040;16036:9;16031:14;;15866:185;;;;:::o;16057:191::-;16097:4;16117:20;16135:1;16117:20;:::i;:::-;16112:25;;16151:20;16169:1;16151:20;:::i;:::-;16146:25;;16190:1;16187;16184:8;16181:34;;;16195:18;;:::i;:::-;16181:34;16240:1;16237;16233:9;16225:17;;16057:191;;;;:::o;16254:96::-;16291:7;16320:24;16338:5;16320:24;:::i;:::-;16309:35;;16254:96;;;:::o;16356:90::-;16390:7;16433:5;16426:13;16419:21;16408:32;;16356:90;;;:::o;16452:149::-;16488:7;16528:66;16521:5;16517:78;16506:89;;16452:149;;;:::o;16607:126::-;16644:7;16684:42;16677:5;16673:54;16662:65;;16607:126;;;:::o;16739:77::-;16776:7;16805:5;16794:16;;16739:77;;;:::o;16822:154::-;16906:6;16901:3;16896;16883:30;16968:1;16959:6;16954:3;16950:16;16943:27;16822:154;;;:::o;16982:307::-;17050:1;17060:113;17074:6;17071:1;17068:13;17060:113;;;17159:1;17154:3;17150:11;17144:18;17140:1;17135:3;17131:11;17124:39;17096:2;17093:1;17089:10;17084:15;;17060:113;;;17191:6;17188:1;17185:13;17182:101;;;17271:1;17262:6;17257:3;17253:16;17246:27;17182:101;17031:258;16982:307;;;:::o;17295:320::-;17339:6;17376:1;17370:4;17366:12;17356:22;;17423:1;17417:4;17413:12;17444:18;17434:81;;17500:4;17492:6;17488:17;17478:27;;17434:81;17562:2;17554:6;17551:14;17531:18;17528:38;17525:84;;;17581:18;;:::i;:::-;17525:84;17346:269;17295:320;;;:::o;17621:281::-;17704:27;17726:4;17704:27;:::i;:::-;17696:6;17692:40;17834:6;17822:10;17819:22;17798:18;17786:10;17783:34;17780:62;17777:88;;;17845:18;;:::i;:::-;17777:88;17885:10;17881:2;17874:22;17664:238;17621:281;;:::o;17908:233::-;17947:3;17970:24;17988:5;17970:24;:::i;:::-;17961:33;;18016:66;18009:5;18006:77;18003:103;;;18086:18;;:::i;:::-;18003:103;18133:1;18126:5;18122:13;18115:20;;17908:233;;;:::o;18147:176::-;18179:1;18196:20;18214:1;18196:20;:::i;:::-;18191:25;;18230:20;18248:1;18230:20;:::i;:::-;18225:25;;18269:1;18259:35;;18274:18;;:::i;:::-;18259:35;18315:1;18312;18308:9;18303:14;;18147:176;;;;:::o;18329:180::-;18377:77;18374:1;18367:88;18474:4;18471:1;18464:15;18498:4;18495:1;18488:15;18515:180;18563:77;18560:1;18553:88;18660:4;18657:1;18650:15;18684:4;18681:1;18674:15;18701:180;18749:77;18746:1;18739:88;18846:4;18843:1;18836:15;18870:4;18867:1;18860:15;18887:180;18935:77;18932:1;18925:88;19032:4;19029:1;19022:15;19056:4;19053:1;19046:15;19073:180;19121:77;19118:1;19111:88;19218:4;19215:1;19208:15;19242:4;19239:1;19232:15;19259:117;19368:1;19365;19358:12;19382:117;19491:1;19488;19481:12;19505:117;19614:1;19611;19604:12;19628:117;19737:1;19734;19727:12;19751:102;19792:6;19843:2;19839:7;19834:2;19827:5;19823:14;19819:28;19809:38;;19751:102;;;:::o;19859:225::-;19999:34;19995:1;19987:6;19983:14;19976:58;20068:8;20063:2;20055:6;20051:15;20044:33;19859:225;:::o;20090:155::-;20230:7;20226:1;20218:6;20214:14;20207:31;20090:155;:::o;20251:182::-;20391:34;20387:1;20379:6;20375:14;20368:58;20251:182;:::o;20439:122::-;20512:24;20530:5;20512:24;:::i;:::-;20505:5;20502:35;20492:63;;20551:1;20548;20541:12;20492:63;20439:122;:::o;20567:116::-;20637:21;20652:5;20637:21;:::i;:::-;20630:5;20627:32;20617:60;;20673:1;20670;20663:12;20617:60;20567:116;:::o;20689:120::-;20761:23;20778:5;20761:23;:::i;:::-;20754:5;20751:34;20741:62;;20799:1;20796;20789:12;20741:62;20689:120;:::o;20815:122::-;20888:24;20906:5;20888:24;:::i;:::-;20881:5;20878:35;20868:63;;20927:1;20924;20917:12;20868:63;20815:122;:::o

Swarm Source

ipfs://9775454e022cf3d3ea89403d8e3016a865e74ca347b5516a344b88252926dbea
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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