ETH Price: $3,316.64 (-1.68%)
Gas: 1 Gwei

Token

Forms+Shapes (F+S)
 

Overview

Max Total Supply

120 F+S

Holders

71

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 F+S
0x99e2e69f98b164c399cc12d8382a82135eea6364
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:
FormsPlusShapes

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-05
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/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
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
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
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
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
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
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
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
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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //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 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
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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.10;

contract FormsPlusShapes is ERC721, Ownable {
    using Counters for Counters.Counter;

    constructor(string memory initialBaseURI) ERC721("Forms+Shapes", "F+S") {
        setBaseTokenURI(initialBaseURI);
    }
    
    uint256 public maxSupply = 120;
    Counters.Counter private supplyCounter;
    string private _customBaseURI;
    
    function mint(uint256 count) public onlyOwner {
        require(count > 0, "At least one token should be minted");
        require(totalSupply() + count <= maxSupply, "Exceeds max supply");

        for (uint256 i = 0; i < count; i++) {
            uint256 mintIndex = totalSupply() + 1;
            _safeMint(_msgSender(), mintIndex);
            supplyCounter.increment();
        }
    }

    function totalSupply() public view returns (uint256) {
        return supplyCounter.current();
    }

    function setBaseTokenURI(string memory baseURI) public onlyOwner {
        _customBaseURI = baseURI;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _customBaseURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initialBaseURI","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","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":"string","name":"baseURI","type":"string"}],"name":"setBaseTokenURI","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"}]

608060405260786007553480156200001657600080fd5b5060405162001bd238038062001bd2833981016040819052620000399162000257565b604080518082018252600c81526b466f726d732b53686170657360a01b602080830191825283518085019094526003845262462b5360e81b90840152815191929162000088916000916200019b565b5080516200009e9060019060208401906200019b565b505050620000bb620000b5620000cd60201b60201c565b620000d1565b620000c68162000123565b5062000370565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001979060099060208401906200019b565b5050565b828054620001a99062000333565b90600052602060002090601f016020900481019282620001cd576000855562000218565b82601f10620001e857805160ff191683800117855562000218565b8280016001018555821562000218579182015b8281111562000218578251825591602001919060010190620001fb565b50620002269291506200022a565b5090565b5b808211156200022657600081556001016200022b565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200026b57600080fd5b82516001600160401b03808211156200028357600080fd5b818501915085601f8301126200029857600080fd5b815181811115620002ad57620002ad62000241565b604051601f8201601f19908116603f01168101908382118183101715620002d857620002d862000241565b816040528281528886848701011115620002f157600080fd5b600093505b82841015620003155784840186015181850187015292850192620002f6565b82841115620003275760008684830101525b98975050505050505050565b600181811c908216806200034857607f821691505b602082108114156200036a57634e487b7160e01b600052602260045260246000fd5b50919050565b61185280620003806000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063b88d4fde11610071578063b88d4fde1461026a578063c87b56dd1461027d578063d5abeb0114610290578063e985e9c514610299578063f2fde38b146102d557600080fd5b8063715018a6146102235780638da5cb5b1461022b57806395d89b411461023c578063a0712d6814610244578063a22cb4651461025757600080fd5b806323b872dd116100f457806323b872dd146101c457806330176e13146101d757806342842e0e146101ea5780636352211e146101fd57806370a082311461021057600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f3660046112ce565b6102e8565b60405190151581526020015b60405180910390f35b61016161033a565b6040516101509190611343565b61018161017c366004611356565b6103cc565b6040516001600160a01b039091168152602001610150565b6101ac6101a736600461138b565b610466565b005b6101b661057c565b604051908152602001610150565b6101ac6101d23660046113b5565b61058c565b6101ac6101e536600461147d565b6105bd565b6101ac6101f83660046113b5565b6105fe565b61018161020b366004611356565b610619565b6101b661021e3660046114c6565b610690565b6101ac610717565b6006546001600160a01b0316610181565b61016161074d565b6101ac610252366004611356565b61075c565b6101ac6102653660046114e1565b610888565b6101ac61027836600461151d565b61094d565b61016161028b366004611356565b610985565b6101b660075481565b6101446102a7366004611599565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101ac6102e33660046114c6565b610a60565b60006001600160e01b031982166380ac58cd60e01b148061031957506001600160e01b03198216635b5e139f60e01b145b8061033457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610349906115cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610375906115cc565b80156103c25780601f10610397576101008083540402835291602001916103c2565b820191906000526020600020905b8154815290600101906020018083116103a557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661044a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061047182610619565b9050806001600160a01b0316836001600160a01b031614156104df5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610441565b336001600160a01b03821614806104fb57506104fb81336102a7565b61056d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610441565b6105778383610afb565b505050565b600061058760085490565b905090565b6105963382610b69565b6105b25760405162461bcd60e51b815260040161044190611607565b610577838383610c60565b6006546001600160a01b031633146105e75760405162461bcd60e51b815260040161044190611658565b80516105fa90600990602084019061121f565b5050565b6105778383836040518060200160405280600081525061094d565b6000818152600260205260408120546001600160a01b0316806103345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610441565b60006001600160a01b0382166106fb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610441565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146107415760405162461bcd60e51b815260040161044190611658565b61074b6000610e00565b565b606060018054610349906115cc565b6006546001600160a01b031633146107865760405162461bcd60e51b815260040161044190611658565b600081116107e25760405162461bcd60e51b815260206004820152602360248201527f4174206c65617374206f6e6520746f6b656e2073686f756c64206265206d696e6044820152621d195960ea1b6064820152608401610441565b600754816107ee61057c565b6107f891906116a3565b111561083b5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610441565b60005b818110156105fa57600061085061057c565b61085b9060016116a3565b90506108673382610e52565b610875600880546001019055565b5080610880816116bb565b91505061083e565b6001600160a01b0382163314156108e15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610441565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109573383610b69565b6109735760405162461bcd60e51b815260040161044190611607565b61097f84848484610e6c565b50505050565b6000818152600260205260409020546060906001600160a01b0316610a045760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610441565b6000610a0e610e9f565b90506000815111610a2e5760405180602001604052806000815250610a59565b80610a3884610eae565b604051602001610a499291906116d6565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610a8a5760405162461bcd60e51b815260040161044190611658565b6001600160a01b038116610aef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610441565b610af881610e00565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b3082610619565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610be25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610441565b6000610bed83610619565b9050806001600160a01b0316846001600160a01b03161480610c285750836001600160a01b0316610c1d846103cc565b6001600160a01b0316145b80610c5857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610c7382610619565b6001600160a01b031614610cdb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610441565b6001600160a01b038216610d3d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610441565b610d48600082610afb565b6001600160a01b0383166000908152600360205260408120805460019290610d71908490611705565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d9f9084906116a3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6105fa828260405180602001604052806000815250610fac565b610e77848484610c60565b610e8384848484610fdf565b61097f5760405162461bcd60e51b81526004016104419061171c565b606060098054610349906115cc565b606081610ed25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610efc5780610ee6816116bb565b9150610ef59050600a83611784565b9150610ed6565b60008167ffffffffffffffff811115610f1757610f176113f1565b6040519080825280601f01601f191660200182016040528015610f41576020820181803683370190505b5090505b8415610c5857610f56600183611705565b9150610f63600a86611798565b610f6e9060306116a3565b60f81b818381518110610f8357610f836117ac565b60200101906001600160f81b031916908160001a905350610fa5600a86611784565b9450610f45565b610fb683836110dd565b610fc36000848484610fdf565b6105775760405162461bcd60e51b81526004016104419061171c565b60006001600160a01b0384163b156110d257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906110239033908990889088906004016117c2565b6020604051808303816000875af192505050801561105e575060408051601f3d908101601f1916820190925261105b918101906117ff565b60015b6110b8573d80801561108c576040519150601f19603f3d011682016040523d82523d6000602084013e611091565b606091505b5080516110b05760405162461bcd60e51b81526004016104419061171c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c58565b506001949350505050565b6001600160a01b0382166111335760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610441565b6000818152600260205260409020546001600160a01b0316156111985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610441565b6001600160a01b03821660009081526003602052604081208054600192906111c19084906116a3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461122b906115cc565b90600052602060002090601f01602090048101928261124d5760008555611293565b82601f1061126657805160ff1916838001178555611293565b82800160010185558215611293579182015b82811115611293578251825591602001919060010190611278565b5061129f9291506112a3565b5090565b5b8082111561129f57600081556001016112a4565b6001600160e01b031981168114610af857600080fd5b6000602082840312156112e057600080fd5b8135610a59816112b8565b60005b838110156113065781810151838201526020016112ee565b8381111561097f5750506000910152565b6000815180845261132f8160208601602086016112eb565b601f01601f19169290920160200192915050565b602081526000610a596020830184611317565b60006020828403121561136857600080fd5b5035919050565b80356001600160a01b038116811461138657600080fd5b919050565b6000806040838503121561139e57600080fd5b6113a78361136f565b946020939093013593505050565b6000806000606084860312156113ca57600080fd5b6113d38461136f565b92506113e16020850161136f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611422576114226113f1565b604051601f8501601f19908116603f0116810190828211818310171561144a5761144a6113f1565b8160405280935085815286868601111561146357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561148f57600080fd5b813567ffffffffffffffff8111156114a657600080fd5b8201601f810184136114b757600080fd5b610c5884823560208401611407565b6000602082840312156114d857600080fd5b610a598261136f565b600080604083850312156114f457600080fd5b6114fd8361136f565b91506020830135801515811461151257600080fd5b809150509250929050565b6000806000806080858703121561153357600080fd5b61153c8561136f565b935061154a6020860161136f565b925060408501359150606085013567ffffffffffffffff81111561156d57600080fd5b8501601f8101871361157e57600080fd5b61158d87823560208401611407565b91505092959194509250565b600080604083850312156115ac57600080fd5b6115b58361136f565b91506115c36020840161136f565b90509250929050565b600181811c908216806115e057607f821691505b6020821081141561160157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156116b6576116b661168d565b500190565b60006000198214156116cf576116cf61168d565b5060010190565b600083516116e88184602088016112eb565b8351908301906116fc8183602088016112eb565b01949350505050565b6000828210156117175761171761168d565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826117935761179361176e565b500490565b6000826117a7576117a761176e565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117f590830184611317565b9695505050505050565b60006020828403121561181157600080fd5b8151610a59816112b856fea264697066735822122083968e46dd7da177e3753726fcf490ca82a96e8ba49c2cbad4654ceb87eeb91c64736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656968726567736a6a6d3474736c7763616e79337a696b64326736346f657033326632696276716a6670786c7677757863686b6e6f6d2f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063b88d4fde11610071578063b88d4fde1461026a578063c87b56dd1461027d578063d5abeb0114610290578063e985e9c514610299578063f2fde38b146102d557600080fd5b8063715018a6146102235780638da5cb5b1461022b57806395d89b411461023c578063a0712d6814610244578063a22cb4651461025757600080fd5b806323b872dd116100f457806323b872dd146101c457806330176e13146101d757806342842e0e146101ea5780636352211e146101fd57806370a082311461021057600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f3660046112ce565b6102e8565b60405190151581526020015b60405180910390f35b61016161033a565b6040516101509190611343565b61018161017c366004611356565b6103cc565b6040516001600160a01b039091168152602001610150565b6101ac6101a736600461138b565b610466565b005b6101b661057c565b604051908152602001610150565b6101ac6101d23660046113b5565b61058c565b6101ac6101e536600461147d565b6105bd565b6101ac6101f83660046113b5565b6105fe565b61018161020b366004611356565b610619565b6101b661021e3660046114c6565b610690565b6101ac610717565b6006546001600160a01b0316610181565b61016161074d565b6101ac610252366004611356565b61075c565b6101ac6102653660046114e1565b610888565b6101ac61027836600461151d565b61094d565b61016161028b366004611356565b610985565b6101b660075481565b6101446102a7366004611599565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101ac6102e33660046114c6565b610a60565b60006001600160e01b031982166380ac58cd60e01b148061031957506001600160e01b03198216635b5e139f60e01b145b8061033457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610349906115cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610375906115cc565b80156103c25780601f10610397576101008083540402835291602001916103c2565b820191906000526020600020905b8154815290600101906020018083116103a557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661044a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061047182610619565b9050806001600160a01b0316836001600160a01b031614156104df5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610441565b336001600160a01b03821614806104fb57506104fb81336102a7565b61056d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610441565b6105778383610afb565b505050565b600061058760085490565b905090565b6105963382610b69565b6105b25760405162461bcd60e51b815260040161044190611607565b610577838383610c60565b6006546001600160a01b031633146105e75760405162461bcd60e51b815260040161044190611658565b80516105fa90600990602084019061121f565b5050565b6105778383836040518060200160405280600081525061094d565b6000818152600260205260408120546001600160a01b0316806103345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610441565b60006001600160a01b0382166106fb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610441565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146107415760405162461bcd60e51b815260040161044190611658565b61074b6000610e00565b565b606060018054610349906115cc565b6006546001600160a01b031633146107865760405162461bcd60e51b815260040161044190611658565b600081116107e25760405162461bcd60e51b815260206004820152602360248201527f4174206c65617374206f6e6520746f6b656e2073686f756c64206265206d696e6044820152621d195960ea1b6064820152608401610441565b600754816107ee61057c565b6107f891906116a3565b111561083b5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610441565b60005b818110156105fa57600061085061057c565b61085b9060016116a3565b90506108673382610e52565b610875600880546001019055565b5080610880816116bb565b91505061083e565b6001600160a01b0382163314156108e15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610441565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109573383610b69565b6109735760405162461bcd60e51b815260040161044190611607565b61097f84848484610e6c565b50505050565b6000818152600260205260409020546060906001600160a01b0316610a045760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610441565b6000610a0e610e9f565b90506000815111610a2e5760405180602001604052806000815250610a59565b80610a3884610eae565b604051602001610a499291906116d6565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610a8a5760405162461bcd60e51b815260040161044190611658565b6001600160a01b038116610aef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610441565b610af881610e00565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b3082610619565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610be25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610441565b6000610bed83610619565b9050806001600160a01b0316846001600160a01b03161480610c285750836001600160a01b0316610c1d846103cc565b6001600160a01b0316145b80610c5857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610c7382610619565b6001600160a01b031614610cdb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610441565b6001600160a01b038216610d3d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610441565b610d48600082610afb565b6001600160a01b0383166000908152600360205260408120805460019290610d71908490611705565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d9f9084906116a3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6105fa828260405180602001604052806000815250610fac565b610e77848484610c60565b610e8384848484610fdf565b61097f5760405162461bcd60e51b81526004016104419061171c565b606060098054610349906115cc565b606081610ed25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610efc5780610ee6816116bb565b9150610ef59050600a83611784565b9150610ed6565b60008167ffffffffffffffff811115610f1757610f176113f1565b6040519080825280601f01601f191660200182016040528015610f41576020820181803683370190505b5090505b8415610c5857610f56600183611705565b9150610f63600a86611798565b610f6e9060306116a3565b60f81b818381518110610f8357610f836117ac565b60200101906001600160f81b031916908160001a905350610fa5600a86611784565b9450610f45565b610fb683836110dd565b610fc36000848484610fdf565b6105775760405162461bcd60e51b81526004016104419061171c565b60006001600160a01b0384163b156110d257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906110239033908990889088906004016117c2565b6020604051808303816000875af192505050801561105e575060408051601f3d908101601f1916820190925261105b918101906117ff565b60015b6110b8573d80801561108c576040519150601f19603f3d011682016040523d82523d6000602084013e611091565b606091505b5080516110b05760405162461bcd60e51b81526004016104419061171c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c58565b506001949350505050565b6001600160a01b0382166111335760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610441565b6000818152600260205260409020546001600160a01b0316156111985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610441565b6001600160a01b03821660009081526003602052604081208054600192906111c19084906116a3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461122b906115cc565b90600052602060002090601f01602090048101928261124d5760008555611293565b82601f1061126657805160ff1916838001178555611293565b82800160010185558215611293579182015b82811115611293578251825591602001919060010190611278565b5061129f9291506112a3565b5090565b5b8082111561129f57600081556001016112a4565b6001600160e01b031981168114610af857600080fd5b6000602082840312156112e057600080fd5b8135610a59816112b8565b60005b838110156113065781810151838201526020016112ee565b8381111561097f5750506000910152565b6000815180845261132f8160208601602086016112eb565b601f01601f19169290920160200192915050565b602081526000610a596020830184611317565b60006020828403121561136857600080fd5b5035919050565b80356001600160a01b038116811461138657600080fd5b919050565b6000806040838503121561139e57600080fd5b6113a78361136f565b946020939093013593505050565b6000806000606084860312156113ca57600080fd5b6113d38461136f565b92506113e16020850161136f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611422576114226113f1565b604051601f8501601f19908116603f0116810190828211818310171561144a5761144a6113f1565b8160405280935085815286868601111561146357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561148f57600080fd5b813567ffffffffffffffff8111156114a657600080fd5b8201601f810184136114b757600080fd5b610c5884823560208401611407565b6000602082840312156114d857600080fd5b610a598261136f565b600080604083850312156114f457600080fd5b6114fd8361136f565b91506020830135801515811461151257600080fd5b809150509250929050565b6000806000806080858703121561153357600080fd5b61153c8561136f565b935061154a6020860161136f565b925060408501359150606085013567ffffffffffffffff81111561156d57600080fd5b8501601f8101871361157e57600080fd5b61158d87823560208401611407565b91505092959194509250565b600080604083850312156115ac57600080fd5b6115b58361136f565b91506115c36020840161136f565b90509250929050565b600181811c908216806115e057607f821691505b6020821081141561160157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156116b6576116b661168d565b500190565b60006000198214156116cf576116cf61168d565b5060010190565b600083516116e88184602088016112eb565b8351908301906116fc8183602088016112eb565b01949350505050565b6000828210156117175761171761168d565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826117935761179361176e565b500490565b6000826117a7576117a761176e565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117f590830184611317565b9695505050505050565b60006020828403121561181157600080fd5b8151610a59816112b856fea264697066735822122083968e46dd7da177e3753726fcf490ca82a96e8ba49c2cbad4654ceb87eeb91c64736f6c634300080a0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656968726567736a6a6d3474736c7763616e79337a696b64326736346f657033326632696276716a6670786c7677757863686b6e6f6d2f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialBaseURI (string): ipfs://bafybeihregsjjm4tslwcany3zikd2g64oep32f2ibvqjfpxlvwuxchknom/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f6261667962656968726567736a6a6d3474736c7763616e7933
Arg [3] : 7a696b64326736346f657033326632696276716a6670786c7677757863686b6e
Arg [4] : 6f6d2f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36384:1108:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21961:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21961:305:0;;;;;;;;22906:100;;;:::i;:::-;;;;;;;:::i;24465:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;24465:221:0;1528:203:1;23988:411:0;;;;;;:::i;:::-;;:::i;:::-;;37144:102;;;:::i;:::-;;;2319:25:1;;;2307:2;2292:18;37144:102:0;2173:177:1;25355:339:0;;;;;;:::i;:::-;;:::i;37254:108::-;;;;;;:::i;:::-;;:::i;25765:185::-;;;;;;:::i;:::-;;:::i;22600:239::-;;;;;;:::i;:::-;;:::i;22330:208::-;;;;;;:::i;:::-;;:::i;35727:94::-;;;:::i;35076:87::-;35149:6;;-1:-1:-1;;;;;35149:6:0;35076:87;;23075:104;;;:::i;36737:399::-;;;;;;:::i;:::-;;:::i;24758:295::-;;;;;;:::i;:::-;;:::i;26021:328::-;;;;;;:::i;:::-;;:::i;23250:334::-;;;;;;:::i;:::-;;:::i;36613:30::-;;;;;;25124:164;;;;;;:::i;:::-;-1:-1:-1;;;;;25245:25:0;;;25221:4;25245:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25124:164;35976:192;;;;;;:::i;:::-;;:::i;21961:305::-;22063:4;-1:-1:-1;;;;;;22100:40:0;;-1:-1:-1;;;22100:40:0;;:105;;-1:-1:-1;;;;;;;22157:48:0;;-1:-1:-1;;;22157:48:0;22100:105;:158;;;-1:-1:-1;;;;;;;;;;14239:40:0;;;22222:36;22080:178;21961:305;-1:-1:-1;;21961:305:0:o;22906:100::-;22960:13;22993:5;22986:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22906:100;:::o;24465:221::-;24541:7;27948:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27948:16:0;24561:73;;;;-1:-1:-1;;;24561:73:0;;5980:2:1;24561:73:0;;;5962:21:1;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:1;;;6102:42;6161:19;;24561:73:0;;;;;;;;;-1:-1:-1;24654:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24654:24:0;;24465:221::o;23988:411::-;24069:13;24085:23;24100:7;24085:14;:23::i;:::-;24069:39;;24133:5;-1:-1:-1;;;;;24127:11:0;:2;-1:-1:-1;;;;;24127:11:0;;;24119:57;;;;-1:-1:-1;;;24119:57:0;;6393:2:1;24119:57:0;;;6375:21:1;6432:2;6412:18;;;6405:30;6471:34;6451:18;;;6444:62;-1:-1:-1;;;6522:18:1;;;6515:31;6563:19;;24119:57:0;6191:397:1;24119:57:0;20515:10;-1:-1:-1;;;;;24211:21:0;;;;:62;;-1:-1:-1;24236:37:0;24253:5;20515:10;25124:164;:::i;24236:37::-;24189:168;;;;-1:-1:-1;;;24189:168:0;;6795:2:1;24189:168:0;;;6777:21:1;6834:2;6814:18;;;6807:30;6873:34;6853:18;;;6846:62;6944:26;6924:18;;;6917:54;6988:19;;24189:168:0;6593:420:1;24189:168:0;24370:21;24379:2;24383:7;24370:8;:21::i;:::-;24058:341;23988:411;;:::o;37144:102::-;37188:7;37215:23;:13;883:14;;791:114;37215:23;37208:30;;37144:102;:::o;25355:339::-;25550:41;20515:10;25583:7;25550:18;:41::i;:::-;25542:103;;;;-1:-1:-1;;;25542:103:0;;;;;;;:::i;:::-;25658:28;25668:4;25674:2;25678:7;25658:9;:28::i;37254:108::-;35149:6;;-1:-1:-1;;;;;35149:6:0;20515:10;35296:23;35288:68;;;;-1:-1:-1;;;35288:68:0;;;;;;;:::i;:::-;37330:24;;::::1;::::0;:14:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37254:108:::0;:::o;25765:185::-;25903:39;25920:4;25926:2;25930:7;25903:39;;;;;;;;;;;;:16;:39::i;22600:239::-;22672:7;22708:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22708:16:0;22743:19;22735:73;;;;-1:-1:-1;;;22735:73:0;;7999:2:1;22735:73:0;;;7981:21:1;8038:2;8018:18;;;8011:30;8077:34;8057:18;;;8050:62;-1:-1:-1;;;8128:18:1;;;8121:39;8177:19;;22735:73:0;7797:405:1;22330:208:0;22402:7;-1:-1:-1;;;;;22430:19:0;;22422:74;;;;-1:-1:-1;;;22422:74:0;;8409:2:1;22422:74:0;;;8391:21:1;8448:2;8428:18;;;8421:30;8487:34;8467:18;;;8460:62;-1:-1:-1;;;8538:18:1;;;8531:40;8588:19;;22422:74:0;8207:406:1;22422:74:0;-1:-1:-1;;;;;;22514:16:0;;;;;:9;:16;;;;;;;22330:208::o;35727:94::-;35149:6;;-1:-1:-1;;;;;35149:6:0;20515:10;35296:23;35288:68;;;;-1:-1:-1;;;35288:68:0;;;;;;;:::i;:::-;35792:21:::1;35810:1;35792:9;:21::i;:::-;35727:94::o:0;23075:104::-;23131:13;23164:7;23157:14;;;;;:::i;36737:399::-;35149:6;;-1:-1:-1;;;;;35149:6:0;20515:10;35296:23;35288:68;;;;-1:-1:-1;;;35288:68:0;;;;;;;:::i;:::-;36810:1:::1;36802:5;:9;36794:57;;;::::0;-1:-1:-1;;;36794:57:0;;8820:2:1;36794:57:0::1;::::0;::::1;8802:21:1::0;8859:2;8839:18;;;8832:30;8898:34;8878:18;;;8871:62;-1:-1:-1;;;8949:18:1;;;8942:33;8992:19;;36794:57:0::1;8618:399:1::0;36794:57:0::1;36895:9;;36886:5;36870:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;36862:65;;;::::0;-1:-1:-1;;;36862:65:0;;9489:2:1;36862:65:0::1;::::0;::::1;9471:21:1::0;9528:2;9508:18;;;9501:30;-1:-1:-1;;;9547:18:1;;;9540:48;9605:18;;36862:65:0::1;9287:342:1::0;36862:65:0::1;36945:9;36940:189;36964:5;36960:1;:9;36940:189;;;36991:17;37011:13;:11;:13::i;:::-;:17;::::0;37027:1:::1;37011:17;:::i;:::-;36991:37:::0;-1:-1:-1;37043:34:0::1;20515:10:::0;37067:9:::1;37043;:34::i;:::-;37092:25;:13;1002:19:::0;;1020:1;1002:19;;;913:127;37092:25:::1;-1:-1:-1::0;36971:3:0;::::1;::::0;::::1;:::i;:::-;;;;36940:189;;24758:295:::0;-1:-1:-1;;;;;24861:24:0;;20515:10;24861:24;;24853:62;;;;-1:-1:-1;;;24853:62:0;;9976:2:1;24853:62:0;;;9958:21:1;10015:2;9995:18;;;9988:30;10054:27;10034:18;;;10027:55;10099:18;;24853:62:0;9774:349:1;24853:62:0;20515:10;24928:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24928:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24928:53:0;;;;;;;;;;24997:48;;540:41:1;;;24928:42:0;;20515:10;24997:48;;513:18:1;24997:48:0;;;;;;;24758:295;;:::o;26021:328::-;26196:41;20515:10;26229:7;26196:18;:41::i;:::-;26188:103;;;;-1:-1:-1;;;26188:103:0;;;;;;;:::i;:::-;26302:39;26316:4;26322:2;26326:7;26335:5;26302:13;:39::i;:::-;26021:328;;;;:::o;23250:334::-;27924:4;27948:16;;;:7;:16;;;;;;23323:13;;-1:-1:-1;;;;;27948:16:0;23349:76;;;;-1:-1:-1;;;23349:76:0;;10330:2:1;23349:76:0;;;10312:21:1;10369:2;10349:18;;;10342:30;10408:34;10388:18;;;10381:62;-1:-1:-1;;;10459:18:1;;;10452:45;10514:19;;23349:76:0;10128:411:1;23349:76:0;23438:21;23462:10;:8;:10::i;:::-;23438:34;;23514:1;23496:7;23490:21;:25;:86;;;;;;;;;;;;;;;;;23542:7;23551:18;:7;:16;:18::i;:::-;23525:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23490:86;23483:93;23250:334;-1:-1:-1;;;23250:334:0:o;35976:192::-;35149:6;;-1:-1:-1;;;;;35149:6:0;20515:10;35296:23;35288:68;;;;-1:-1:-1;;;35288:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36065:22:0;::::1;36057:73;;;::::0;-1:-1:-1;;;36057:73:0;;11221:2:1;36057:73:0::1;::::0;::::1;11203:21:1::0;11260:2;11240:18;;;11233:30;11299:34;11279:18;;;11272:62;-1:-1:-1;;;11350:18:1;;;11343:36;11396:19;;36057:73:0::1;11019:402:1::0;36057:73:0::1;36141:19;36151:8;36141:9;:19::i;:::-;35976:192:::0;:::o;31841:174::-;31916:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31916:29:0;-1:-1:-1;;;;;31916:29:0;;;;;;;;:24;;31970:23;31916:24;31970:14;:23::i;:::-;-1:-1:-1;;;;;31961:46:0;;;;;;;;;;;31841:174;;:::o;28153:348::-;28246:4;27948:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27948:16:0;28263:73;;;;-1:-1:-1;;;28263:73:0;;11628:2:1;28263:73:0;;;11610:21:1;11667:2;11647:18;;;11640:30;11706:34;11686:18;;;11679:62;-1:-1:-1;;;11757:18:1;;;11750:42;11809:19;;28263:73:0;11426:408:1;28263:73:0;28347:13;28363:23;28378:7;28363:14;:23::i;:::-;28347:39;;28416:5;-1:-1:-1;;;;;28405:16:0;:7;-1:-1:-1;;;;;28405:16:0;;:51;;;;28449:7;-1:-1:-1;;;;;28425:31:0;:20;28437:7;28425:11;:20::i;:::-;-1:-1:-1;;;;;28425:31:0;;28405:51;:87;;;-1:-1:-1;;;;;;25245:25:0;;;25221:4;25245:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28460:32;28397:96;28153:348;-1:-1:-1;;;;28153:348:0:o;31145:578::-;31304:4;-1:-1:-1;;;;;31277:31:0;:23;31292:7;31277:14;:23::i;:::-;-1:-1:-1;;;;;31277:31:0;;31269:85;;;;-1:-1:-1;;;31269:85:0;;12041:2:1;31269:85:0;;;12023:21:1;12080:2;12060:18;;;12053:30;12119:34;12099:18;;;12092:62;-1:-1:-1;;;12170:18:1;;;12163:39;12219:19;;31269:85:0;11839:405:1;31269:85:0;-1:-1:-1;;;;;31373:16:0;;31365:65;;;;-1:-1:-1;;;31365:65:0;;12451:2:1;31365:65:0;;;12433:21:1;12490:2;12470:18;;;12463:30;12529:34;12509:18;;;12502:62;-1:-1:-1;;;12580:18:1;;;12573:34;12624:19;;31365:65:0;12249:400:1;31365:65:0;31547:29;31564:1;31568:7;31547:8;:29::i;:::-;-1:-1:-1;;;;;31589:15:0;;;;;;:9;:15;;;;;:20;;31608:1;;31589:15;:20;;31608:1;;31589:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31620:13:0;;;;;;:9;:13;;;;;:18;;31637:1;;31620:13;:18;;31637:1;;31620:18;:::i;:::-;;;;-1:-1:-1;;31649:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31649:21:0;-1:-1:-1;;;;;31649:21:0;;;;;;;;;31688:27;;31649:16;;31688:27;;;;;;;31145:578;;;:::o;36176:173::-;36251:6;;;-1:-1:-1;;;;;36268:17:0;;;-1:-1:-1;;;;;;36268:17:0;;;;;;;36301:40;;36251:6;;;36268:17;36251:6;;36301:40;;36232:16;;36301:40;36221:128;36176:173;:::o;28843:110::-;28919:26;28929:2;28933:7;28919:26;;;;;;;;;;;;:9;:26::i;27231:315::-;27388:28;27398:4;27404:2;27408:7;27388:9;:28::i;:::-;27435:48;27458:4;27464:2;27468:7;27477:5;27435:22;:48::i;:::-;27427:111;;;;-1:-1:-1;;;27427:111:0;;;;;;;:::i;37374:115::-;37434:13;37467:14;37460:21;;;;;:::i;1689:723::-;1745:13;1966:10;1962:53;;-1:-1:-1;;1993:10:0;;;;;;;;;;;;-1:-1:-1;;;1993:10:0;;;;;1689:723::o;1962:53::-;2040:5;2025:12;2081:78;2088:9;;2081:78;;2114:8;;;;:::i;:::-;;-1:-1:-1;2137:10:0;;-1:-1:-1;2145:2:0;2137:10;;:::i;:::-;;;2081:78;;;2169:19;2201:6;2191:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2191:17:0;;2169:39;;2219:154;2226:10;;2219:154;;2253:11;2263:1;2253:11;;:::i;:::-;;-1:-1:-1;2322:10:0;2330:2;2322:5;:10;:::i;:::-;2309:24;;:2;:24;:::i;:::-;2296:39;;2279:6;2286;2279:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2279:56:0;;;;;;;;-1:-1:-1;2350:11:0;2359:2;2350:11;;:::i;:::-;;;2219:154;;29180:321;29310:18;29316:2;29320:7;29310:5;:18::i;:::-;29361:54;29392:1;29396:2;29400:7;29409:5;29361:22;:54::i;:::-;29339:154;;;;-1:-1:-1;;;29339:154:0;;;;;;;:::i;32580:799::-;32735:4;-1:-1:-1;;;;;32756:13:0;;4531:20;4579:8;32752:620;;32792:72;;-1:-1:-1;;;32792:72:0;;-1:-1:-1;;;;;32792:36:0;;;;;:72;;20515:10;;32843:4;;32849:7;;32858:5;;32792:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32792:72:0;;;;;;;;-1:-1:-1;;32792:72:0;;;;;;;;;;;;:::i;:::-;;;32788:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33034:13:0;;33030:272;;33077:60;;-1:-1:-1;;;33077:60:0;;;;;;;:::i;33030:272::-;33252:6;33246:13;33237:6;33233:2;33229:15;33222:38;32788:529;-1:-1:-1;;;;;;32915:51:0;-1:-1:-1;;;32915:51:0;;-1:-1:-1;32908:58:0;;32752:620;-1:-1:-1;33356:4:0;32580:799;;;;;;:::o;29837:382::-;-1:-1:-1;;;;;29917:16:0;;29909:61;;;;-1:-1:-1;;;29909:61:0;;14659:2:1;29909:61:0;;;14641:21:1;;;14678:18;;;14671:30;14737:34;14717:18;;;14710:62;14789:18;;29909:61:0;14457:356:1;29909:61:0;27924:4;27948:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27948:16:0;:30;29981:58;;;;-1:-1:-1;;;29981:58:0;;15020:2:1;29981:58:0;;;15002:21:1;15059:2;15039:18;;;15032:30;15098;15078:18;;;15071:58;15146:18;;29981:58:0;14818:352:1;29981:58:0;-1:-1:-1;;;;;30110:13:0;;;;;;:9;:13;;;;;:18;;30127:1;;30110:13;:18;;30127:1;;30110:18;:::i;:::-;;;;-1:-1:-1;;30139:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30139:21:0;-1:-1:-1;;;;;30139:21:0;;;;;;;;30178:33;;30139:16;;;30178:33;;30139:16;;30178:33;29837: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;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;7018:413::-;7220:2;7202:21;;;7259:2;7239:18;;;7232:30;7298:34;7293:2;7278:18;;7271:62;-1:-1:-1;;;7364:2:1;7349:18;;7342:47;7421:3;7406:19;;7018:413::o;7436:356::-;7638:2;7620:21;;;7657:18;;;7650:30;7716:34;7711:2;7696:18;;7689:62;7783:2;7768:18;;7436:356::o;9022:127::-;9083:10;9078:3;9074:20;9071:1;9064:31;9114:4;9111:1;9104:15;9138:4;9135:1;9128:15;9154:128;9194:3;9225:1;9221:6;9218:1;9215:13;9212:39;;;9231:18;;:::i;:::-;-1:-1:-1;9267:9:1;;9154:128::o;9634:135::-;9673:3;-1:-1:-1;;9694:17:1;;9691:43;;;9714:18;;:::i;:::-;-1:-1:-1;9761:1:1;9750:13;;9634:135::o;10544:470::-;10723:3;10761:6;10755:13;10777:53;10823:6;10818:3;10811:4;10803:6;10799:17;10777:53;:::i;:::-;10893:13;;10852:16;;;;10915:57;10893:13;10852:16;10949:4;10937:17;;10915:57;:::i;:::-;10988:20;;10544:470;-1:-1:-1;;;;10544:470:1:o;12654:125::-;12694:4;12722:1;12719;12716:8;12713:34;;;12727:18;;:::i;:::-;-1:-1:-1;12764:9:1;;12654:125::o;12784:414::-;12986:2;12968:21;;;13025:2;13005:18;;;12998:30;13064:34;13059:2;13044:18;;13037:62;-1:-1:-1;;;13130:2:1;13115:18;;13108:48;13188:3;13173:19;;12784:414::o;13203:127::-;13264:10;13259:3;13255:20;13252:1;13245:31;13295:4;13292:1;13285:15;13319:4;13316:1;13309:15;13335:120;13375:1;13401;13391:35;;13406:18;;:::i;:::-;-1:-1:-1;13440:9:1;;13335:120::o;13460:112::-;13492:1;13518;13508:35;;13523:18;;:::i;:::-;-1:-1:-1;13557:9:1;;13460:112::o;13577:127::-;13638:10;13633:3;13629:20;13626:1;13619:31;13669:4;13666:1;13659:15;13693:4;13690:1;13683:15;13709:489;-1:-1:-1;;;;;13978:15:1;;;13960:34;;14030:15;;14025:2;14010:18;;14003:43;14077:2;14062:18;;14055:34;;;14125:3;14120:2;14105:18;;14098:31;;;13903:4;;14146:46;;14172:19;;14164:6;14146:46;:::i;:::-;14138:54;13709:489;-1:-1:-1;;;;;;13709:489:1:o;14203:249::-;14272:6;14325:2;14313:9;14304:7;14300:23;14296:32;14293:52;;;14341:1;14338;14331:12;14293:52;14373:9;14367:16;14392:30;14416:5;14392:30;:::i

Swarm Source

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