ETH Price: $3,304.97 (+0.54%)

Token

SQUADTS Early Access Pass (SPASS)
 

Overview

Max Total Supply

25 SPASS

Holders

25

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
othermom.eth
Balance
1 SPASS
0x4E0805f57fF991e0195c90Fe02f85fbE8D7C1437
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:
SquadtsEarlyAccessPass

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-26
*/

// SPDX-License-Identifier: MIT


// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)
pragma solidity ^0.8.0;

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

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

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

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

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


// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)
pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;

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


// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;

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


// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;

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


// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;

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

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

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


// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (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/token/ERC721/ERC721.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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


// File: contracts/SquadtsEarlyAccessPass.sol
pragma solidity ^0.8.13;

contract SquadtsEarlyAccessPass is ERC721, Ownable {
    using Strings for uint256;

    string private _metaDataURL = "";

    uint256 constant TOKEN_IDS_STARTS_AT = 1;
    uint256 public tokensCount = 0;

    // add "metaDataURL" to our constructor
    constructor(
        string memory name,
        string memory symbol,
        string memory metaDataURL
    ) ERC721(name, symbol) {
        setMetaDataURL(metaDataURL);
    }

    // Getters & Setters
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return _metaDataURL;
    }
    function setMetaDataURL(string memory value) public onlyOwner {
        _metaDataURL = value;
    }
    function totalSupply() public view returns (uint256) {
        return tokensCount;
    }

    // Minting
    function gift(address to, uint256 amount) external onlyOwner {
        require(amount > 0, "Need to mint at least one token");
        uint256 supply = totalSupply();
        for (uint256 i = 0; i < amount; i++) {
            tokensCount += 1;
            _safeMint(to, TOKEN_IDS_STARTS_AT + supply + i);
        }
    }

    // Withdraw
    function withdraw() external payable onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = payable(msg.sender).call{value: balance}("");
        require(success, "Transfer failed");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"metaDataURL","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"value","type":"string"}],"name":"setMetaDataURL","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":"tokensCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040819052600060808190526200001b916007916200017f565b5060006008553480156200002e57600080fd5b5060405162001c3238038062001c328339810160408190526200005191620002f2565b8251839083906200006a9060009060208501906200017f565b508051620000809060019060208401906200017f565b5050506200009d62000097620000b160201b60201c565b620000b5565b620000a88162000107565b505050620003bf565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200017b9060079060208401906200017f565b5050565b8280546200018d9062000383565b90600052602060002090601f016020900481019282620001b15760008555620001fc565b82601f10620001cc57805160ff1916838001178555620001fc565b82800160010185558215620001fc579182015b82811115620001fc578251825591602001919060010190620001df565b506200020a9291506200020e565b5090565b5b808211156200020a57600081556001016200020f565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200024d57600080fd5b81516001600160401b03808211156200026a576200026a62000225565b604051601f8301601f19908116603f0116810190828211818310171562000295576200029562000225565b81604052838152602092508683858801011115620002b257600080fd5b600091505b83821015620002d65785820183015181830184015290820190620002b7565b83821115620002e85760008385830101525b9695505050505050565b6000806000606084860312156200030857600080fd5b83516001600160401b03808211156200032057600080fd5b6200032e878388016200023b565b945060208601519150808211156200034557600080fd5b62000353878388016200023b565b935060408601519150808211156200036a57600080fd5b5062000379868287016200023b565b9150509250925092565b600181811c908216806200039857607f821691505b602082108103620003b957634e487b7160e01b600052602260045260246000fd5b50919050565b61186380620003cf6000396000f3fe60806040526004361061012a5760003560e01c8063715018a6116100ab578063a64ed8ba1161006f578063a64ed8ba1461030f578063b88d4fde14610325578063c87b56dd14610345578063cbce4c9714610365578063e985e9c514610385578063f2fde38b146103ce57600080fd5b8063715018a6146102875780638da5cb5b1461029c57806395d89b41146102ba5780639d7b9a6c146102cf578063a22cb465146102ef57600080fd5b806323b872dd116100f257806323b872dd146101ff5780633ccfd60b1461021f57806342842e0e146102275780636352211e1461024757806370a082311461026757600080fd5b806301ffc9a71461012f57806306fdde0314610164578063081812fc14610186578063095ea7b3146101be57806318160ddd146101e0575b600080fd5b34801561013b57600080fd5b5061014f61014a366004611369565b6103ee565b60405190151581526020015b60405180910390f35b34801561017057600080fd5b50610179610440565b60405161015b91906113da565b34801561019257600080fd5b506101a66101a13660046113ed565b6104d2565b6040516001600160a01b03909116815260200161015b565b3480156101ca57600080fd5b506101de6101d9366004611422565b61056c565b005b3480156101ec57600080fd5b506008545b60405190815260200161015b565b34801561020b57600080fd5b506101de61021a36600461144c565b610681565b6101de6106b2565b34801561023357600080fd5b506101de61024236600461144c565b61076c565b34801561025357600080fd5b506101a66102623660046113ed565b610787565b34801561027357600080fd5b506101f1610282366004611488565b6107fe565b34801561029357600080fd5b506101de610885565b3480156102a857600080fd5b506006546001600160a01b03166101a6565b3480156102c657600080fd5b506101796108bb565b3480156102db57600080fd5b506101de6102ea36600461152f565b6108ca565b3480156102fb57600080fd5b506101de61030a366004611578565b610907565b34801561031b57600080fd5b506101f160085481565b34801561033157600080fd5b506101de6103403660046115b4565b610912565b34801561035157600080fd5b506101796103603660046113ed565b61094a565b34801561037157600080fd5b506101de610380366004611422565b610a5b565b34801561039157600080fd5b5061014f6103a0366004611630565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156103da57600080fd5b506101de6103e9366004611488565b610b37565b60006001600160e01b031982166380ac58cd60e01b148061041f57506001600160e01b03198216635b5e139f60e01b145b8061043a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461044f90611663565b80601f016020809104026020016040519081016040528092919081815260200182805461047b90611663565b80156104c85780601f1061049d576101008083540402835291602001916104c8565b820191906000526020600020905b8154815290600101906020018083116104ab57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061057782610787565b9050806001600160a01b0316836001600160a01b0316036105e45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610547565b336001600160a01b0382161480610600575061060081336103a0565b6106725760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610547565b61067c8383610bd2565b505050565b61068b3382610c40565b6106a75760405162461bcd60e51b81526004016105479061169d565b61067c838383610d37565b6006546001600160a01b031633146106dc5760405162461bcd60e51b8152600401610547906116ee565b6040514790600090339083908381818185875af1925050503d8060008114610720576040519150601f19603f3d011682016040523d82523d6000602084013e610725565b606091505b50509050806107685760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610547565b5050565b61067c83838360405180602001604052806000815250610912565b6000818152600260205260408120546001600160a01b03168061043a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610547565b60006001600160a01b0382166108695760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610547565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108af5760405162461bcd60e51b8152600401610547906116ee565b6108b96000610ed7565b565b60606001805461044f90611663565b6006546001600160a01b031633146108f45760405162461bcd60e51b8152600401610547906116ee565b80516107689060079060208401906112ba565b610768338383610f29565b61091c3383610c40565b6109385760405162461bcd60e51b81526004016105479061169d565b61094484848484610ff7565b50505050565b6000818152600260205260409020546060906001600160a01b03166109c95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610547565b600780546109d690611663565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0290611663565b8015610a4f5780601f10610a2457610100808354040283529160200191610a4f565b820191906000526020600020905b815481529060010190602001808311610a3257829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610a855760405162461bcd60e51b8152600401610547906116ee565b60008111610ad55760405162461bcd60e51b815260206004820152601f60248201527f4e65656420746f206d696e74206174206c65617374206f6e6520746f6b656e006044820152606401610547565b6000610ae060085490565b905060005b8281101561094457600160086000828254610b009190611739565b90915550610b2590508482610b16856001611739565b610b209190611739565b61102a565b80610b2f81611751565b915050610ae5565b6006546001600160a01b03163314610b615760405162461bcd60e51b8152600401610547906116ee565b6001600160a01b038116610bc65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610547565b610bcf81610ed7565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c0782610787565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610cb95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610547565b6000610cc483610787565b9050806001600160a01b0316846001600160a01b03161480610cff5750836001600160a01b0316610cf4846104d2565b6001600160a01b0316145b80610d2f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610d4a82610787565b6001600160a01b031614610db25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610547565b6001600160a01b038216610e145760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610547565b610e1f600082610bd2565b6001600160a01b0383166000908152600360205260408120805460019290610e4890849061176a565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e76908490611739565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603610f8a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610547565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611002848484610d37565b61100e84848484611044565b6109445760405162461bcd60e51b815260040161054790611781565b610768828260405180602001604052806000815250611145565b60006001600160a01b0384163b1561113a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906110889033908990889088906004016117d3565b6020604051808303816000875af19250505080156110c3575060408051601f3d908101601f191682019092526110c091810190611810565b60015b611120573d8080156110f1576040519150601f19603f3d011682016040523d82523d6000602084013e6110f6565b606091505b5080516000036111185760405162461bcd60e51b815260040161054790611781565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d2f565b506001949350505050565b61114f8383611178565b61115c6000848484611044565b61067c5760405162461bcd60e51b815260040161054790611781565b6001600160a01b0382166111ce5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610547565b6000818152600260205260409020546001600160a01b0316156112335760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610547565b6001600160a01b038216600090815260036020526040812080546001929061125c908490611739565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546112c690611663565b90600052602060002090601f0160209004810192826112e8576000855561132e565b82601f1061130157805160ff191683800117855561132e565b8280016001018555821561132e579182015b8281111561132e578251825591602001919060010190611313565b5061133a92915061133e565b5090565b5b8082111561133a576000815560010161133f565b6001600160e01b031981168114610bcf57600080fd5b60006020828403121561137b57600080fd5b813561138681611353565b9392505050565b6000815180845260005b818110156113b357602081850181015186830182015201611397565b818111156113c5576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611386602083018461138d565b6000602082840312156113ff57600080fd5b5035919050565b80356001600160a01b038116811461141d57600080fd5b919050565b6000806040838503121561143557600080fd5b61143e83611406565b946020939093013593505050565b60008060006060848603121561146157600080fd5b61146a84611406565b925061147860208501611406565b9150604084013590509250925092565b60006020828403121561149a57600080fd5b61138682611406565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156114d4576114d46114a3565b604051601f8501601f19908116603f011681019082821181831017156114fc576114fc6114a3565b8160405280935085815286868601111561151557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561154157600080fd5b813567ffffffffffffffff81111561155857600080fd5b8201601f8101841361156957600080fd5b610d2f848235602084016114b9565b6000806040838503121561158b57600080fd5b61159483611406565b9150602083013580151581146115a957600080fd5b809150509250929050565b600080600080608085870312156115ca57600080fd5b6115d385611406565b93506115e160208601611406565b925060408501359150606085013567ffffffffffffffff81111561160457600080fd5b8501601f8101871361161557600080fd5b611624878235602084016114b9565b91505092959194509250565b6000806040838503121561164357600080fd5b61164c83611406565b915061165a60208401611406565b90509250929050565b600181811c9082168061167757607f821691505b60208210810361169757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561174c5761174c611723565b500190565b60006001820161176357611763611723565b5060010190565b60008282101561177c5761177c611723565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118069083018461138d565b9695505050505050565b60006020828403121561182257600080fd5b81516113868161135356fea26469706673582212201d1b9af80a124d1b620977795e20a01530543cf9a4b62366b0653c48922a7ce464736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001953515541445453204561726c792041636365737320506173730000000000000000000000000000000000000000000000000000000000000000000000000000055350415353000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d574d7a615251517a435556777670465337546b504e654a4b535a5a6b526f3152376d52364b656b35575433550000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061012a5760003560e01c8063715018a6116100ab578063a64ed8ba1161006f578063a64ed8ba1461030f578063b88d4fde14610325578063c87b56dd14610345578063cbce4c9714610365578063e985e9c514610385578063f2fde38b146103ce57600080fd5b8063715018a6146102875780638da5cb5b1461029c57806395d89b41146102ba5780639d7b9a6c146102cf578063a22cb465146102ef57600080fd5b806323b872dd116100f257806323b872dd146101ff5780633ccfd60b1461021f57806342842e0e146102275780636352211e1461024757806370a082311461026757600080fd5b806301ffc9a71461012f57806306fdde0314610164578063081812fc14610186578063095ea7b3146101be57806318160ddd146101e0575b600080fd5b34801561013b57600080fd5b5061014f61014a366004611369565b6103ee565b60405190151581526020015b60405180910390f35b34801561017057600080fd5b50610179610440565b60405161015b91906113da565b34801561019257600080fd5b506101a66101a13660046113ed565b6104d2565b6040516001600160a01b03909116815260200161015b565b3480156101ca57600080fd5b506101de6101d9366004611422565b61056c565b005b3480156101ec57600080fd5b506008545b60405190815260200161015b565b34801561020b57600080fd5b506101de61021a36600461144c565b610681565b6101de6106b2565b34801561023357600080fd5b506101de61024236600461144c565b61076c565b34801561025357600080fd5b506101a66102623660046113ed565b610787565b34801561027357600080fd5b506101f1610282366004611488565b6107fe565b34801561029357600080fd5b506101de610885565b3480156102a857600080fd5b506006546001600160a01b03166101a6565b3480156102c657600080fd5b506101796108bb565b3480156102db57600080fd5b506101de6102ea36600461152f565b6108ca565b3480156102fb57600080fd5b506101de61030a366004611578565b610907565b34801561031b57600080fd5b506101f160085481565b34801561033157600080fd5b506101de6103403660046115b4565b610912565b34801561035157600080fd5b506101796103603660046113ed565b61094a565b34801561037157600080fd5b506101de610380366004611422565b610a5b565b34801561039157600080fd5b5061014f6103a0366004611630565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156103da57600080fd5b506101de6103e9366004611488565b610b37565b60006001600160e01b031982166380ac58cd60e01b148061041f57506001600160e01b03198216635b5e139f60e01b145b8061043a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461044f90611663565b80601f016020809104026020016040519081016040528092919081815260200182805461047b90611663565b80156104c85780601f1061049d576101008083540402835291602001916104c8565b820191906000526020600020905b8154815290600101906020018083116104ab57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061057782610787565b9050806001600160a01b0316836001600160a01b0316036105e45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610547565b336001600160a01b0382161480610600575061060081336103a0565b6106725760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610547565b61067c8383610bd2565b505050565b61068b3382610c40565b6106a75760405162461bcd60e51b81526004016105479061169d565b61067c838383610d37565b6006546001600160a01b031633146106dc5760405162461bcd60e51b8152600401610547906116ee565b6040514790600090339083908381818185875af1925050503d8060008114610720576040519150601f19603f3d011682016040523d82523d6000602084013e610725565b606091505b50509050806107685760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610547565b5050565b61067c83838360405180602001604052806000815250610912565b6000818152600260205260408120546001600160a01b03168061043a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610547565b60006001600160a01b0382166108695760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610547565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108af5760405162461bcd60e51b8152600401610547906116ee565b6108b96000610ed7565b565b60606001805461044f90611663565b6006546001600160a01b031633146108f45760405162461bcd60e51b8152600401610547906116ee565b80516107689060079060208401906112ba565b610768338383610f29565b61091c3383610c40565b6109385760405162461bcd60e51b81526004016105479061169d565b61094484848484610ff7565b50505050565b6000818152600260205260409020546060906001600160a01b03166109c95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610547565b600780546109d690611663565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0290611663565b8015610a4f5780601f10610a2457610100808354040283529160200191610a4f565b820191906000526020600020905b815481529060010190602001808311610a3257829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610a855760405162461bcd60e51b8152600401610547906116ee565b60008111610ad55760405162461bcd60e51b815260206004820152601f60248201527f4e65656420746f206d696e74206174206c65617374206f6e6520746f6b656e006044820152606401610547565b6000610ae060085490565b905060005b8281101561094457600160086000828254610b009190611739565b90915550610b2590508482610b16856001611739565b610b209190611739565b61102a565b80610b2f81611751565b915050610ae5565b6006546001600160a01b03163314610b615760405162461bcd60e51b8152600401610547906116ee565b6001600160a01b038116610bc65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610547565b610bcf81610ed7565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c0782610787565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610cb95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610547565b6000610cc483610787565b9050806001600160a01b0316846001600160a01b03161480610cff5750836001600160a01b0316610cf4846104d2565b6001600160a01b0316145b80610d2f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610d4a82610787565b6001600160a01b031614610db25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610547565b6001600160a01b038216610e145760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610547565b610e1f600082610bd2565b6001600160a01b0383166000908152600360205260408120805460019290610e4890849061176a565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e76908490611739565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603610f8a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610547565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611002848484610d37565b61100e84848484611044565b6109445760405162461bcd60e51b815260040161054790611781565b610768828260405180602001604052806000815250611145565b60006001600160a01b0384163b1561113a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906110889033908990889088906004016117d3565b6020604051808303816000875af19250505080156110c3575060408051601f3d908101601f191682019092526110c091810190611810565b60015b611120573d8080156110f1576040519150601f19603f3d011682016040523d82523d6000602084013e6110f6565b606091505b5080516000036111185760405162461bcd60e51b815260040161054790611781565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d2f565b506001949350505050565b61114f8383611178565b61115c6000848484611044565b61067c5760405162461bcd60e51b815260040161054790611781565b6001600160a01b0382166111ce5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610547565b6000818152600260205260409020546001600160a01b0316156112335760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610547565b6001600160a01b038216600090815260036020526040812080546001929061125c908490611739565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546112c690611663565b90600052602060002090601f0160209004810192826112e8576000855561132e565b82601f1061130157805160ff191683800117855561132e565b8280016001018555821561132e579182015b8281111561132e578251825591602001919060010190611313565b5061133a92915061133e565b5090565b5b8082111561133a576000815560010161133f565b6001600160e01b031981168114610bcf57600080fd5b60006020828403121561137b57600080fd5b813561138681611353565b9392505050565b6000815180845260005b818110156113b357602081850181015186830182015201611397565b818111156113c5576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611386602083018461138d565b6000602082840312156113ff57600080fd5b5035919050565b80356001600160a01b038116811461141d57600080fd5b919050565b6000806040838503121561143557600080fd5b61143e83611406565b946020939093013593505050565b60008060006060848603121561146157600080fd5b61146a84611406565b925061147860208501611406565b9150604084013590509250925092565b60006020828403121561149a57600080fd5b61138682611406565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156114d4576114d46114a3565b604051601f8501601f19908116603f011681019082821181831017156114fc576114fc6114a3565b8160405280935085815286868601111561151557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561154157600080fd5b813567ffffffffffffffff81111561155857600080fd5b8201601f8101841361156957600080fd5b610d2f848235602084016114b9565b6000806040838503121561158b57600080fd5b61159483611406565b9150602083013580151581146115a957600080fd5b809150509250929050565b600080600080608085870312156115ca57600080fd5b6115d385611406565b93506115e160208601611406565b925060408501359150606085013567ffffffffffffffff81111561160457600080fd5b8501601f8101871361161557600080fd5b611624878235602084016114b9565b91505092959194509250565b6000806040838503121561164357600080fd5b61164c83611406565b915061165a60208401611406565b90509250929050565b600181811c9082168061167757607f821691505b60208210810361169757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561174c5761174c611723565b500190565b60006001820161176357611763611723565b5060010190565b60008282101561177c5761177c611723565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118069083018461138d565b9695505050505050565b60006020828403121561182257600080fd5b81516113868161135356fea26469706673582212201d1b9af80a124d1b620977795e20a01530543cf9a4b62366b0653c48922a7ce464736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001953515541445453204561726c792041636365737320506173730000000000000000000000000000000000000000000000000000000000000000000000000000055350415353000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d574d7a615251517a435556777670465337546b504e654a4b535a5a6b526f3152376d52364b656b35575433550000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): SQUADTS Early Access Pass
Arg [1] : symbol (string): SPASS
Arg [2] : metaDataURL (string): https://ipfs.io/ipfs/QmWMzaRQQzCUVwvpFS7TkPNeJKSZZkRo1R7mR6Kek5WT3U

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [4] : 53515541445453204561726c7920416363657373205061737300000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 5350415353000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d574d7a615251517a43
Arg [9] : 5556777670465337546b504e654a4b535a5a6b526f3152376d52364b656b3557
Arg [10] : 5433550000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36232:1502:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21191:305;;;;;;;;;;-1:-1:-1;21191:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21191:305:0;;;;;;;;22136:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23695:221::-;;;;;;;;;;-1:-1:-1;23695:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1643:32:1;;;1625:51;;1613:2;1598:18;23695:221:0;1479:203:1;23218:411:0;;;;;;;;;;-1:-1:-1;23218:411:0;;;;;:::i;:::-;;:::i;:::-;;37038:90;;;;;;;;;;-1:-1:-1;37109:11:0;;37038:90;;;2270:25:1;;;2258:2;2243:18;37038:90:0;2124:177:1;24445:339:0;;;;;;;;;;-1:-1:-1;24445:339:0;;;;;:::i;:::-;;:::i;37504:225::-;;;:::i;24855:185::-;;;;;;;;;;-1:-1:-1;24855:185:0;;;;;:::i;:::-;;:::i;21830:239::-;;;;;;;;;;-1:-1:-1;21830:239:0;;;;;:::i;:::-;;:::i;21560:208::-;;;;;;;;;;-1:-1:-1;21560:208:0;;;;;:::i;:::-;;:::i;35338:103::-;;;;;;;;;;;;;:::i;34687:87::-;;;;;;;;;;-1:-1:-1;34760:6:0;;-1:-1:-1;;;;;34760:6:0;34687:87;;22305:104;;;;;;;;;;;;;:::i;36931:101::-;;;;;;;;;;-1:-1:-1;36931:101:0;;;;;:::i;:::-;;:::i;23988:155::-;;;;;;;;;;-1:-1:-1;23988:155:0;;;;;:::i;:::-;;:::i;36412:30::-;;;;;;;;;;;;;;;;25111:328;;;;;;;;;;-1:-1:-1;25111:328:0;;;;;:::i;:::-;;:::i;36712:213::-;;;;;;;;;;-1:-1:-1;36712:213:0;;;;;:::i;:::-;;:::i;37152:327::-;;;;;;;;;;-1:-1:-1;37152:327:0;;;;;:::i;:::-;;:::i;24214:164::-;;;;;;;;;;-1:-1:-1;24214:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24335:25:0;;;24311:4;24335:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24214:164;35596:201;;;;;;;;;;-1:-1:-1;35596:201:0;;;;;:::i;:::-;;:::i;21191:305::-;21293:4;-1:-1:-1;;;;;;21330:40:0;;-1:-1:-1;;;21330:40:0;;:105;;-1:-1:-1;;;;;;;21387:48:0;;-1:-1:-1;;;21387:48:0;21330:105;:158;;;-1:-1:-1;;;;;;;;;;13210:40:0;;;21452:36;21310:178;21191:305;-1:-1:-1;;21191:305:0:o;22136:100::-;22190:13;22223:5;22216:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22136:100;:::o;23695:221::-;23771:7;27038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27038:16:0;23791:73;;;;-1:-1:-1;;;23791:73:0;;5931:2:1;23791:73:0;;;5913:21:1;5970:2;5950:18;;;5943:30;6009:34;5989:18;;;5982:62;-1:-1:-1;;;6060:18:1;;;6053:42;6112:19;;23791:73:0;;;;;;;;;-1:-1:-1;23884:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23884:24:0;;23695:221::o;23218:411::-;23299:13;23315:23;23330:7;23315:14;:23::i;:::-;23299:39;;23363:5;-1:-1:-1;;;;;23357:11:0;:2;-1:-1:-1;;;;;23357:11:0;;23349:57;;;;-1:-1:-1;;;23349:57:0;;6344:2:1;23349:57:0;;;6326:21:1;6383:2;6363:18;;;6356:30;6422:34;6402:18;;;6395:62;-1:-1:-1;;;6473:18:1;;;6466:31;6514:19;;23349:57:0;6142:397:1;23349:57:0;19683:10;-1:-1:-1;;;;;23441:21:0;;;;:62;;-1:-1:-1;23466:37:0;23483:5;19683:10;24214:164;:::i;23466:37::-;23419:168;;;;-1:-1:-1;;;23419:168:0;;6746:2:1;23419:168:0;;;6728:21:1;6785:2;6765:18;;;6758:30;6824:34;6804:18;;;6797:62;6895:26;6875:18;;;6868:54;6939:19;;23419:168:0;6544:420:1;23419:168:0;23600:21;23609:2;23613:7;23600:8;:21::i;:::-;23288:341;23218:411;;:::o;24445:339::-;24640:41;19683:10;24673:7;24640:18;:41::i;:::-;24632:103;;;;-1:-1:-1;;;24632:103:0;;;;;;;:::i;:::-;24748:28;24758:4;24764:2;24768:7;24748:9;:28::i;37504:225::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;37631:44:::1;::::0;37580:21:::1;::::0;37562:15:::1;::::0;37639:10:::1;::::0;37580:21;;37562:15;37631:44;37562:15;37631:44;37580:21;37639:10;37631:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37612:63;;;37694:7;37686:35;;;::::0;-1:-1:-1;;;37686:35:0;;8160:2:1;37686:35:0::1;::::0;::::1;8142:21:1::0;8199:2;8179:18;;;8172:30;-1:-1:-1;;;8218:18:1;;;8211:45;8273:18;;37686:35:0::1;7958:339:1::0;37686:35:0::1;37551:178;;37504:225::o:0;24855:185::-;24993:39;25010:4;25016:2;25020:7;24993:39;;;;;;;;;;;;:16;:39::i;21830:239::-;21902:7;21938:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21938:16:0;;21965:73;;;;-1:-1:-1;;;21965:73:0;;8504:2:1;21965:73:0;;;8486:21:1;8543:2;8523:18;;;8516:30;8582:34;8562:18;;;8555:62;-1:-1:-1;;;8633:18:1;;;8626:39;8682:19;;21965:73:0;8302:405:1;21560:208:0;21632:7;-1:-1:-1;;;;;21660:19:0;;21652:74;;;;-1:-1:-1;;;21652:74:0;;8914:2:1;21652:74:0;;;8896:21:1;8953:2;8933:18;;;8926:30;8992:34;8972:18;;;8965:62;-1:-1:-1;;;9043:18:1;;;9036:40;9093:19;;21652:74:0;8712:406:1;21652:74:0;-1:-1:-1;;;;;;21744:16:0;;;;;:9;:16;;;;;;;21560:208::o;35338:103::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;35403:30:::1;35430:1;35403:18;:30::i;:::-;35338:103::o:0;22305:104::-;22361:13;22394:7;22387:14;;;;;:::i;36931:101::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;37004:20;;::::1;::::0;:12:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;23988:155::-:0;24083:52;19683:10;24116:8;24126;24083:18;:52::i;25111:328::-;25286:41;19683:10;25319:7;25286:18;:41::i;:::-;25278:103;;;;-1:-1:-1;;;25278:103:0;;;;;;;:::i;:::-;25392:39;25406:4;25412:2;25416:7;25425:5;25392:13;:39::i;:::-;25111:328;;;;:::o;36712:213::-;27014:4;27038:16;;;:7;:16;;;;;;36785:13;;-1:-1:-1;;;;;27038:16:0;36811:76;;;;-1:-1:-1;;;36811:76:0;;9325:2:1;36811:76:0;;;9307:21:1;9364:2;9344:18;;;9337:30;9403:34;9383:18;;;9376:62;-1:-1:-1;;;9454:18:1;;;9447:45;9509:19;;36811:76:0;9123:411:1;36811:76:0;36905:12;36898:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36712:213;;;:::o;37152:327::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;37241:1:::1;37232:6;:10;37224:54;;;::::0;-1:-1:-1;;;37224:54:0;;9741:2:1;37224:54:0::1;::::0;::::1;9723:21:1::0;9780:2;9760:18;;;9753:30;9819:33;9799:18;;;9792:61;9870:18;;37224:54:0::1;9539:355:1::0;37224:54:0::1;37289:14;37306:13;37109:11:::0;;;37038:90;37306:13:::1;37289:30;;37335:9;37330:142;37354:6;37350:1;:10;37330:142;;;37397:1;37382:11;;:16;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;37413:47:0::1;::::0;-1:-1:-1;37423:2:0;37458:1;37427:28:::1;37449:6:::0;36404:1:::1;37427:28;:::i;:::-;:32;;;;:::i;:::-;37413:9;:47::i;:::-;37362:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37330:142;;35596:201:::0;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35685:22:0;::::1;35677:73;;;::::0;-1:-1:-1;;;35677:73:0;;10506:2:1;35677:73:0::1;::::0;::::1;10488:21:1::0;10545:2;10525:18;;;10518:30;10584:34;10564:18;;;10557:62;-1:-1:-1;;;10635:18:1;;;10628:36;10681:19;;35677:73:0::1;10304:402:1::0;35677:73:0::1;35761:28;35780:8;35761:18;:28::i;:::-;35596:201:::0;:::o;30931:174::-;31006:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31006:29:0;-1:-1:-1;;;;;31006:29:0;;;;;;;;:24;;31060:23;31006:24;31060:14;:23::i;:::-;-1:-1:-1;;;;;31051:46:0;;;;;;;;;;;30931:174;;:::o;27243:348::-;27336:4;27038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27038:16:0;27353:73;;;;-1:-1:-1;;;27353:73:0;;10913:2:1;27353:73:0;;;10895:21:1;10952:2;10932:18;;;10925:30;10991:34;10971:18;;;10964:62;-1:-1:-1;;;11042:18:1;;;11035:42;11094:19;;27353:73:0;10711:408:1;27353:73:0;27437:13;27453:23;27468:7;27453:14;:23::i;:::-;27437:39;;27506:5;-1:-1:-1;;;;;27495:16:0;:7;-1:-1:-1;;;;;27495:16:0;;:51;;;;27539:7;-1:-1:-1;;;;;27515:31:0;:20;27527:7;27515:11;:20::i;:::-;-1:-1:-1;;;;;27515:31:0;;27495:51;:87;;;-1:-1:-1;;;;;;24335:25:0;;;24311:4;24335:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27550:32;27487:96;27243:348;-1:-1:-1;;;;27243:348:0:o;30235:578::-;30394:4;-1:-1:-1;;;;;30367:31:0;:23;30382:7;30367:14;:23::i;:::-;-1:-1:-1;;;;;30367:31:0;;30359:85;;;;-1:-1:-1;;;30359:85:0;;11326:2:1;30359:85:0;;;11308:21:1;11365:2;11345:18;;;11338:30;11404:34;11384:18;;;11377:62;-1:-1:-1;;;11455:18:1;;;11448:39;11504:19;;30359:85:0;11124:405:1;30359:85:0;-1:-1:-1;;;;;30463:16:0;;30455:65;;;;-1:-1:-1;;;30455:65:0;;11736:2:1;30455:65:0;;;11718:21:1;11775:2;11755:18;;;11748:30;11814:34;11794:18;;;11787:62;-1:-1:-1;;;11865:18:1;;;11858:34;11909:19;;30455:65:0;11534:400:1;30455:65:0;30637:29;30654:1;30658:7;30637:8;:29::i;:::-;-1:-1:-1;;;;;30679:15:0;;;;;;:9;:15;;;;;:20;;30698:1;;30679:15;:20;;30698:1;;30679:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30710:13:0;;;;;;:9;:13;;;;;:18;;30727:1;;30710:13;:18;;30727:1;;30710:18;:::i;:::-;;;;-1:-1:-1;;30739:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30739:21:0;-1:-1:-1;;;;;30739:21:0;;;;;;;;;30778:27;;30739:16;;30778:27;;;;;;;30235:578;;;:::o;35957:191::-;36050:6;;;-1:-1:-1;;;;;36067:17:0;;;-1:-1:-1;;;;;;36067:17:0;;;;;;;36100:40;;36050:6;;;36067:17;36050:6;;36100:40;;36031:16;;36100:40;36020:128;35957:191;:::o;31247:315::-;31402:8;-1:-1:-1;;;;;31393:17:0;:5;-1:-1:-1;;;;;31393:17:0;;31385:55;;;;-1:-1:-1;;;31385:55:0;;12271:2:1;31385:55:0;;;12253:21:1;12310:2;12290:18;;;12283:30;12349:27;12329:18;;;12322:55;12394:18;;31385:55:0;12069:349:1;31385:55:0;-1:-1:-1;;;;;31451:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31451:46:0;;;;;;;;;;31513:41;;540::1;;;31513::0;;513:18:1;31513:41:0;;;;;;;31247:315;;;:::o;26321:::-;26478:28;26488:4;26494:2;26498:7;26478:9;:28::i;:::-;26525:48;26548:4;26554:2;26558:7;26567:5;26525:22;:48::i;:::-;26517:111;;;;-1:-1:-1;;;26517:111:0;;;;;;;:::i;27933:110::-;28009:26;28019:2;28023:7;28009:26;;;;;;;;;;;;:9;:26::i;32127:799::-;32282:4;-1:-1:-1;;;;;32303:13:0;;3294:20;3342:8;32299:620;;32339:72;;-1:-1:-1;;;32339:72:0;;-1:-1:-1;;;;;32339:36:0;;;;;:72;;19683:10;;32390:4;;32396:7;;32405:5;;32339:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32339:72:0;;;;;;;;-1:-1:-1;;32339:72:0;;;;;;;;;;;;:::i;:::-;;;32335:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32581:6;:13;32598:1;32581:18;32577:272;;32624:60;;-1:-1:-1;;;32624:60:0;;;;;;;:::i;32577:272::-;32799:6;32793:13;32784:6;32780:2;32776:15;32769:38;32335:529;-1:-1:-1;;;;;;32462:51:0;-1:-1:-1;;;32462:51:0;;-1:-1:-1;32455:58:0;;32299:620;-1:-1:-1;32903:4:0;32127:799;;;;;;:::o;28270:321::-;28400:18;28406:2;28410:7;28400:5;:18::i;:::-;28451:54;28482:1;28486:2;28490:7;28499:5;28451:22;:54::i;:::-;28429:154;;;;-1:-1:-1;;;28429:154:0;;;;;;;:::i;28927:382::-;-1:-1:-1;;;;;29007:16:0;;28999:61;;;;-1:-1:-1;;;28999:61:0;;13792:2:1;28999:61:0;;;13774:21:1;;;13811:18;;;13804:30;13870:34;13850:18;;;13843:62;13922:18;;28999:61:0;13590:356:1;28999:61:0;27014:4;27038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27038:16:0;:30;29071:58;;;;-1:-1:-1;;;29071:58:0;;14153:2:1;29071:58:0;;;14135:21:1;14192:2;14172:18;;;14165:30;14231;14211:18;;;14204:58;14279:18;;29071:58:0;13951:352:1;29071:58:0;-1:-1:-1;;;;;29200:13:0;;;;;;:9;:13;;;;;:18;;29217:1;;29200:13;:18;;29217:1;;29200:18;:::i;:::-;;;;-1:-1:-1;;29229:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29229:21:0;-1:-1:-1;;;;;29229:21:0;;;;;;;;29268:33;;29229:16;;;29268:33;;29229:16;;29268:33;28927:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:472::-;634:3;672:5;666:12;699:6;694:3;687:19;724:1;734:162;748:6;745:1;742:13;734:162;;;810:4;866:13;;;862:22;;856:29;838:11;;;834:20;;827:59;763:12;734:162;;;914:6;911:1;908:13;905:87;;;980:1;973:4;964:6;959:3;955:16;951:27;944:38;905:87;-1:-1:-1;1046:2:1;1025:15;-1:-1:-1;;1021:29:1;1012:39;;;;1053:4;1008:50;;592:472;-1:-1:-1;;592:472:1:o;1069:220::-;1218:2;1207:9;1200:21;1181:4;1238:45;1279:2;1268:9;1264:18;1256:6;1238:45;:::i;1294:180::-;1353:6;1406:2;1394:9;1385:7;1381:23;1377:32;1374:52;;;1422:1;1419;1412:12;1374:52;-1:-1:-1;1445:23:1;;1294:180;-1:-1:-1;1294:180:1:o;1687:173::-;1755:20;;-1:-1:-1;;;;;1804:31:1;;1794:42;;1784:70;;1850:1;1847;1840:12;1784:70;1687:173;;;:::o;1865:254::-;1933:6;1941;1994:2;1982:9;1973:7;1969:23;1965:32;1962:52;;;2010:1;2007;2000:12;1962:52;2033:29;2052:9;2033:29;:::i;:::-;2023:39;2109:2;2094:18;;;;2081:32;;-1:-1:-1;;;1865:254:1:o;2306:328::-;2383:6;2391;2399;2452:2;2440:9;2431:7;2427:23;2423:32;2420:52;;;2468:1;2465;2458:12;2420:52;2491:29;2510:9;2491:29;:::i;:::-;2481:39;;2539:38;2573:2;2562:9;2558:18;2539:38;:::i;:::-;2529:48;;2624:2;2613:9;2609:18;2596:32;2586:42;;2306:328;;;;;:::o;2639:186::-;2698:6;2751:2;2739:9;2730:7;2726:23;2722:32;2719:52;;;2767:1;2764;2757:12;2719:52;2790:29;2809:9;2790:29;:::i;2830:127::-;2891:10;2886:3;2882:20;2879:1;2872:31;2922:4;2919:1;2912:15;2946:4;2943:1;2936:15;2962:632;3027:5;3057:18;3098:2;3090:6;3087:14;3084:40;;;3104:18;;:::i;:::-;3179:2;3173:9;3147:2;3233:15;;-1:-1:-1;;3229:24:1;;;3255:2;3225:33;3221:42;3209:55;;;3279:18;;;3299:22;;;3276:46;3273:72;;;3325:18;;:::i;:::-;3365:10;3361:2;3354:22;3394:6;3385:15;;3424:6;3416;3409:22;3464:3;3455:6;3450:3;3446:16;3443:25;3440:45;;;3481:1;3478;3471:12;3440:45;3531:6;3526:3;3519:4;3511:6;3507:17;3494:44;3586:1;3579:4;3570:6;3562;3558:19;3554:30;3547:41;;;;2962:632;;;;;:::o;3599:451::-;3668:6;3721:2;3709:9;3700:7;3696:23;3692:32;3689:52;;;3737:1;3734;3727:12;3689:52;3777:9;3764:23;3810:18;3802:6;3799:30;3796:50;;;3842:1;3839;3832:12;3796:50;3865:22;;3918:4;3910:13;;3906:27;-1:-1:-1;3896:55:1;;3947:1;3944;3937:12;3896:55;3970:74;4036:7;4031:2;4018:16;4013:2;4009;4005:11;3970:74;:::i;4055:347::-;4120:6;4128;4181:2;4169:9;4160:7;4156:23;4152:32;4149:52;;;4197:1;4194;4187:12;4149:52;4220:29;4239:9;4220:29;:::i;:::-;4210:39;;4299:2;4288:9;4284:18;4271:32;4346:5;4339:13;4332:21;4325:5;4322:32;4312:60;;4368:1;4365;4358:12;4312:60;4391:5;4381:15;;;4055:347;;;;;:::o;4407:667::-;4502:6;4510;4518;4526;4579:3;4567:9;4558:7;4554:23;4550:33;4547:53;;;4596:1;4593;4586:12;4547:53;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:38;4701:2;4690:9;4686:18;4667:38;:::i;:::-;4657:48;;4752:2;4741:9;4737:18;4724:32;4714:42;;4807:2;4796:9;4792:18;4779:32;4834:18;4826:6;4823:30;4820:50;;;4866:1;4863;4856:12;4820:50;4889:22;;4942:4;4934:13;;4930:27;-1:-1:-1;4920:55:1;;4971:1;4968;4961:12;4920:55;4994:74;5060:7;5055:2;5042:16;5037:2;5033;5029:11;4994:74;:::i;:::-;4984:84;;;4407:667;;;;;;;:::o;5079:260::-;5147:6;5155;5208:2;5196:9;5187:7;5183:23;5179:32;5176:52;;;5224:1;5221;5214:12;5176:52;5247:29;5266:9;5247:29;:::i;:::-;5237:39;;5295:38;5329:2;5318:9;5314:18;5295:38;:::i;:::-;5285:48;;5079:260;;;;;:::o;5344:380::-;5423:1;5419:12;;;;5466;;;5487:61;;5541:4;5533:6;5529:17;5519:27;;5487:61;5594:2;5586:6;5583:14;5563:18;5560:38;5557:161;;5640:10;5635:3;5631:20;5628:1;5621:31;5675:4;5672:1;5665:15;5703:4;5700:1;5693:15;5557:161;;5344:380;;;:::o;6969:413::-;7171:2;7153:21;;;7210:2;7190:18;;;7183:30;7249:34;7244:2;7229:18;;7222:62;-1:-1:-1;;;7315:2:1;7300:18;;7293:47;7372:3;7357:19;;6969:413::o;7387:356::-;7589:2;7571:21;;;7608:18;;;7601:30;7667:34;7662:2;7647:18;;7640:62;7734:2;7719:18;;7387:356::o;9899:127::-;9960:10;9955:3;9951:20;9948:1;9941:31;9991:4;9988:1;9981:15;10015:4;10012:1;10005:15;10031:128;10071:3;10102:1;10098:6;10095:1;10092:13;10089:39;;;10108:18;;:::i;:::-;-1:-1:-1;10144:9:1;;10031:128::o;10164:135::-;10203:3;10224:17;;;10221:43;;10244:18;;:::i;:::-;-1:-1:-1;10291:1:1;10280:13;;10164:135::o;11939:125::-;11979:4;12007:1;12004;12001:8;11998:34;;;12012:18;;:::i;:::-;-1:-1:-1;12049:9:1;;11939:125::o;12423:414::-;12625:2;12607:21;;;12664:2;12644:18;;;12637:30;12703:34;12698:2;12683:18;;12676:62;-1:-1:-1;;;12769:2:1;12754:18;;12747:48;12827:3;12812:19;;12423:414::o;12842:489::-;-1:-1:-1;;;;;13111:15:1;;;13093:34;;13163:15;;13158:2;13143:18;;13136:43;13210:2;13195:18;;13188:34;;;13258:3;13253:2;13238:18;;13231:31;;;13036:4;;13279:46;;13305:19;;13297:6;13279:46;:::i;:::-;13271:54;12842:489;-1:-1:-1;;;;;;12842:489:1:o;13336:249::-;13405:6;13458:2;13446:9;13437:7;13433:23;13429:32;13426:52;;;13474:1;13471;13464:12;13426:52;13506:9;13500:16;13525:30;13549:5;13525:30;:::i

Swarm Source

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