ETH Price: $3,611.71 (+9.41%)

Token

F U Rock N Roll Portraits (FUROCK)
 

Overview

Max Total Supply

45 FUROCK

Holders

20

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
juliens.eth
Balance
14 FUROCK
0x6823ab1c51a8857aefdcceafd39379a641a1ece5
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:
FURockNRollPortraits

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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/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/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/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(to).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 {}
}

pragma solidity ^0.8.0;

contract FURockNRollPortraits is ERC721, Ownable {
    uint16 private mintCount = 0;

    uint256 public MAX_SUPPLY = 45;
    string baseTokenURI;
    

    event NFTMinted(uint256 totalMinted);

    constructor(string memory baseURI) ERC721("F U Rock N Roll Portraits", "FUROCK") {
        setBaseURI(baseURI);
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }
    
    function totalSupply() public view returns (uint16) {
        return mintCount;
    }
  
    //mint NFT
    function mintNFT(uint32 _count) public onlyOwner {
        require(totalSupply() +  _count <= MAX_SUPPLY,"You can not mint more than 45 NFTs");
        for(uint32 i = 1; i <= _count; i++ ){
            _safeMint(_msgSender(), ++mintCount);
            emit NFTMinted(mintCount);
        }
        
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"NFTMinted","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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_count","type":"uint32"}],"name":"mintNFT","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":"setBaseURI","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":"uint16","name":"","type":"uint16"}],"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"}]

60806040526006805461ffff60a01b19169055602d6007553480156200002457600080fd5b5060405162001cb038038062001cb0833981016040819052620000479162000263565b604080518082018252601981527f46205520526f636b204e20526f6c6c20506f72747261697473000000000000006020808301918252835180850190945260068452654655524f434b60d01b908401528151919291620000aa91600091620001bd565b508051620000c0906001906020840190620001bd565b505050620000dd620000d7620000ef60201b60201c565b620000f3565b620000e88162000145565b5062000392565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001a45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001b9906008906020840190620001bd565b5050565b828054620001cb906200033f565b90600052602060002090601f016020900481019282620001ef57600085556200023a565b82601f106200020a57805160ff19168380011785556200023a565b828001600101855582156200023a579182015b828111156200023a5782518255916020019190600101906200021d565b50620002489291506200024c565b5090565b5b808211156200024857600081556001016200024d565b600060208083850312156200027757600080fd5b82516001600160401b03808211156200028f57600080fd5b818501915085601f830112620002a457600080fd5b815181811115620002b957620002b96200037c565b604051601f8201601f19908116603f01168101908382118183101715620002e457620002e46200037c565b816040528281528886848701011115620002fd57600080fd5b600093505b8284101562000321578484018601518185018701529285019262000302565b82841115620003335760008684830101525b98975050505050505050565b600181811c908216806200035457607f821691505b602082108114156200037657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61190e80620003a26000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80636352211e116100ad578063a22cb46511610071578063a22cb46514610279578063b88d4fde1461028c578063c87b56dd1461029f578063e985e9c5146102b2578063f2fde38b146102ee57600080fd5b80636352211e1461023257806370a0823114610245578063715018a6146102585780638da5cb5b1461026057806395d89b411461027157600080fd5b806323b872dd116100f457806323b872dd146101cf57806332cb6b0c146101e257806341de0e52146101f957806342842e0e1461020c57806355f804b31461021f57600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f3660046114f1565b610301565b60405190151581526020015b60405180910390f35b610161610353565b604051610150919061164b565b61018161017c366004611574565b6103e5565b6040516001600160a01b039091168152602001610150565b6101ac6101a73660046114c7565b61047f565b005b600654600160a01b900461ffff1660405161ffff9091168152602001610150565b6101ac6101dd3660046113d3565b610595565b6101eb60075481565b604051908152602001610150565b6101ac61020736600461158d565b6105c6565b6101ac61021a3660046113d3565b610719565b6101ac61022d36600461152b565b610734565b610181610240366004611574565b610771565b6101eb610253366004611385565b6107e8565b6101ac61086f565b6006546001600160a01b0316610181565b6101616108a5565b6101ac61028736600461148b565b6108b4565b6101ac61029a36600461140f565b610979565b6101616102ad366004611574565b6109b1565b6101446102c03660046113a0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101ac6102fc366004611385565b610a8c565b60006001600160e01b031982166380ac58cd60e01b148061033257506001600160e01b03198216635b5e139f60e01b145b8061034d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610362906117c4565b80601f016020809104026020016040519081016040528092919081815260200182805461038e906117c4565b80156103db5780601f106103b0576101008083540402835291602001916103db565b820191906000526020600020905b8154815290600101906020018083116103be57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104635760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061048a82610771565b9050806001600160a01b0316836001600160a01b031614156104f85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161045a565b336001600160a01b0382161480610514575061051481336102c0565b6105865760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161045a565b6105908383610b27565b505050565b61059f3382610b95565b6105bb5760405162461bcd60e51b815260040161045a906116e5565b610590838383610c8c565b6006546001600160a01b031633146105f05760405162461bcd60e51b815260040161045a906116b0565b60075460065461060c908390600160a01b900461ffff1661174e565b63ffffffff16111561066b5760405162461bcd60e51b815260206004820152602260248201527f596f752063616e206e6f74206d696e74206d6f7265207468616e203435204e46604482015261547360f01b606482015260840161045a565b60015b8163ffffffff168163ffffffff1611610715576106c233600680546014906106a090600160a01b900461ffff166117ff565b91906101000a81548161ffff021916908361ffff160217905561ffff16610e2c565b600654604051600160a01b90910461ffff1681527fd9dc24857f317ed9abbbb42e920ede0104231eb1d3d70236a74887ffaf1598689060200160405180910390a18061070d8161183c565b91505061066e565b5050565b61059083838360405180602001604052806000815250610979565b6006546001600160a01b0316331461075e5760405162461bcd60e51b815260040161045a906116b0565b805161071590600890602084019061125a565b6000818152600260205260408120546001600160a01b03168061034d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161045a565b60006001600160a01b0382166108535760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161045a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108995760405162461bcd60e51b815260040161045a906116b0565b6108a36000610e46565b565b606060018054610362906117c4565b6001600160a01b03821633141561090d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161045a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109833383610b95565b61099f5760405162461bcd60e51b815260040161045a906116e5565b6109ab84848484610e98565b50505050565b6000818152600260205260409020546060906001600160a01b0316610a305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161045a565b6000610a3a610ecb565b90506000815111610a5a5760405180602001604052806000815250610a85565b80610a6484610eda565b604051602001610a759291906115df565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610ab65760405162461bcd60e51b815260040161045a906116b0565b6001600160a01b038116610b1b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045a565b610b2481610e46565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b5c82610771565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610c0e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161045a565b6000610c1983610771565b9050806001600160a01b0316846001600160a01b03161480610c545750836001600160a01b0316610c49846103e5565b6001600160a01b0316145b80610c8457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610c9f82610771565b6001600160a01b031614610d075760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161045a565b6001600160a01b038216610d695760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161045a565b610d74600082610b27565b6001600160a01b0383166000908152600360205260408120805460019290610d9d908490611781565b90915550506001600160a01b0382166000908152600360205260408120805460019290610dcb908490611736565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610715828260405180602001604052806000815250610fd8565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ea3848484610c8c565b610eaf8484848461100b565b6109ab5760405162461bcd60e51b815260040161045a9061165e565b606060088054610362906117c4565b606081610efe5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610f285780610f1281611821565b9150610f219050600a8361176d565b9150610f02565b60008167ffffffffffffffff811115610f4357610f436118ac565b6040519080825280601f01601f191660200182016040528015610f6d576020820181803683370190505b5090505b8415610c8457610f82600183611781565b9150610f8f600a86611856565b610f9a906030611736565b60f81b818381518110610faf57610faf611896565b60200101906001600160f81b031916908160001a905350610fd1600a8661176d565b9450610f71565b610fe28383611118565b610fef600084848461100b565b6105905760405162461bcd60e51b815260040161045a9061165e565b60006001600160a01b0384163b1561110d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061104f90339089908890889060040161160e565b602060405180830381600087803b15801561106957600080fd5b505af1925050508015611099575060408051601f3d908101601f191682019092526110969181019061150e565b60015b6110f3573d8080156110c7576040519150601f19603f3d011682016040523d82523d6000602084013e6110cc565b606091505b5080516110eb5760405162461bcd60e51b815260040161045a9061165e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c84565b506001949350505050565b6001600160a01b03821661116e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161045a565b6000818152600260205260409020546001600160a01b0316156111d35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161045a565b6001600160a01b03821660009081526003602052604081208054600192906111fc908490611736565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611266906117c4565b90600052602060002090601f01602090048101928261128857600085556112ce565b82601f106112a157805160ff19168380011785556112ce565b828001600101855582156112ce579182015b828111156112ce5782518255916020019190600101906112b3565b506112da9291506112de565b5090565b5b808211156112da57600081556001016112df565b600067ffffffffffffffff8084111561130e5761130e6118ac565b604051601f8501601f19908116603f01168101908282118183101715611336576113366118ac565b8160405280935085815286868601111561134f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461138057600080fd5b919050565b60006020828403121561139757600080fd5b610a8582611369565b600080604083850312156113b357600080fd5b6113bc83611369565b91506113ca60208401611369565b90509250929050565b6000806000606084860312156113e857600080fd5b6113f184611369565b92506113ff60208501611369565b9150604084013590509250925092565b6000806000806080858703121561142557600080fd5b61142e85611369565b935061143c60208601611369565b925060408501359150606085013567ffffffffffffffff81111561145f57600080fd5b8501601f8101871361147057600080fd5b61147f878235602084016112f3565b91505092959194509250565b6000806040838503121561149e57600080fd5b6114a783611369565b9150602083013580151581146114bc57600080fd5b809150509250929050565b600080604083850312156114da57600080fd5b6114e383611369565b946020939093013593505050565b60006020828403121561150357600080fd5b8135610a85816118c2565b60006020828403121561152057600080fd5b8151610a85816118c2565b60006020828403121561153d57600080fd5b813567ffffffffffffffff81111561155457600080fd5b8201601f8101841361156557600080fd5b610c84848235602084016112f3565b60006020828403121561158657600080fd5b5035919050565b60006020828403121561159f57600080fd5b813563ffffffff81168114610a8557600080fd5b600081518084526115cb816020860160208601611798565b601f01601f19169290920160200192915050565b600083516115f1818460208801611798565b835190830190611605818360208801611798565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611641908301846115b3565b9695505050505050565b602081526000610a8560208301846115b3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156117495761174961186a565b500190565b600063ffffffff8083168185168083038211156116055761160561186a565b60008261177c5761177c611880565b500490565b6000828210156117935761179361186a565b500390565b60005b838110156117b357818101518382015260200161179b565b838111156109ab5750506000910152565b600181811c908216806117d857607f821691505b602082108114156117f957634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156118175761181761186a565b6001019392505050565b60006000198214156118355761183561186a565b5060010190565b600063ffffffff808316818114156118175761181761186a565b60008261186557611865611880565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2457600080fdfea2646970667358221220f470656b977a23225cd38d37fd73a9ee75e3ae6296bb3facb3a952171a3139ca64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d50436e665a6157725041455a78324876587a52616d516d526f50577a335579585434683774615469454862502f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80636352211e116100ad578063a22cb46511610071578063a22cb46514610279578063b88d4fde1461028c578063c87b56dd1461029f578063e985e9c5146102b2578063f2fde38b146102ee57600080fd5b80636352211e1461023257806370a0823114610245578063715018a6146102585780638da5cb5b1461026057806395d89b411461027157600080fd5b806323b872dd116100f457806323b872dd146101cf57806332cb6b0c146101e257806341de0e52146101f957806342842e0e1461020c57806355f804b31461021f57600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f3660046114f1565b610301565b60405190151581526020015b60405180910390f35b610161610353565b604051610150919061164b565b61018161017c366004611574565b6103e5565b6040516001600160a01b039091168152602001610150565b6101ac6101a73660046114c7565b61047f565b005b600654600160a01b900461ffff1660405161ffff9091168152602001610150565b6101ac6101dd3660046113d3565b610595565b6101eb60075481565b604051908152602001610150565b6101ac61020736600461158d565b6105c6565b6101ac61021a3660046113d3565b610719565b6101ac61022d36600461152b565b610734565b610181610240366004611574565b610771565b6101eb610253366004611385565b6107e8565b6101ac61086f565b6006546001600160a01b0316610181565b6101616108a5565b6101ac61028736600461148b565b6108b4565b6101ac61029a36600461140f565b610979565b6101616102ad366004611574565b6109b1565b6101446102c03660046113a0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101ac6102fc366004611385565b610a8c565b60006001600160e01b031982166380ac58cd60e01b148061033257506001600160e01b03198216635b5e139f60e01b145b8061034d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610362906117c4565b80601f016020809104026020016040519081016040528092919081815260200182805461038e906117c4565b80156103db5780601f106103b0576101008083540402835291602001916103db565b820191906000526020600020905b8154815290600101906020018083116103be57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104635760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061048a82610771565b9050806001600160a01b0316836001600160a01b031614156104f85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161045a565b336001600160a01b0382161480610514575061051481336102c0565b6105865760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161045a565b6105908383610b27565b505050565b61059f3382610b95565b6105bb5760405162461bcd60e51b815260040161045a906116e5565b610590838383610c8c565b6006546001600160a01b031633146105f05760405162461bcd60e51b815260040161045a906116b0565b60075460065461060c908390600160a01b900461ffff1661174e565b63ffffffff16111561066b5760405162461bcd60e51b815260206004820152602260248201527f596f752063616e206e6f74206d696e74206d6f7265207468616e203435204e46604482015261547360f01b606482015260840161045a565b60015b8163ffffffff168163ffffffff1611610715576106c233600680546014906106a090600160a01b900461ffff166117ff565b91906101000a81548161ffff021916908361ffff160217905561ffff16610e2c565b600654604051600160a01b90910461ffff1681527fd9dc24857f317ed9abbbb42e920ede0104231eb1d3d70236a74887ffaf1598689060200160405180910390a18061070d8161183c565b91505061066e565b5050565b61059083838360405180602001604052806000815250610979565b6006546001600160a01b0316331461075e5760405162461bcd60e51b815260040161045a906116b0565b805161071590600890602084019061125a565b6000818152600260205260408120546001600160a01b03168061034d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161045a565b60006001600160a01b0382166108535760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161045a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108995760405162461bcd60e51b815260040161045a906116b0565b6108a36000610e46565b565b606060018054610362906117c4565b6001600160a01b03821633141561090d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161045a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109833383610b95565b61099f5760405162461bcd60e51b815260040161045a906116e5565b6109ab84848484610e98565b50505050565b6000818152600260205260409020546060906001600160a01b0316610a305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161045a565b6000610a3a610ecb565b90506000815111610a5a5760405180602001604052806000815250610a85565b80610a6484610eda565b604051602001610a759291906115df565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610ab65760405162461bcd60e51b815260040161045a906116b0565b6001600160a01b038116610b1b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045a565b610b2481610e46565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b5c82610771565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610c0e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161045a565b6000610c1983610771565b9050806001600160a01b0316846001600160a01b03161480610c545750836001600160a01b0316610c49846103e5565b6001600160a01b0316145b80610c8457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610c9f82610771565b6001600160a01b031614610d075760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161045a565b6001600160a01b038216610d695760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161045a565b610d74600082610b27565b6001600160a01b0383166000908152600360205260408120805460019290610d9d908490611781565b90915550506001600160a01b0382166000908152600360205260408120805460019290610dcb908490611736565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610715828260405180602001604052806000815250610fd8565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ea3848484610c8c565b610eaf8484848461100b565b6109ab5760405162461bcd60e51b815260040161045a9061165e565b606060088054610362906117c4565b606081610efe5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610f285780610f1281611821565b9150610f219050600a8361176d565b9150610f02565b60008167ffffffffffffffff811115610f4357610f436118ac565b6040519080825280601f01601f191660200182016040528015610f6d576020820181803683370190505b5090505b8415610c8457610f82600183611781565b9150610f8f600a86611856565b610f9a906030611736565b60f81b818381518110610faf57610faf611896565b60200101906001600160f81b031916908160001a905350610fd1600a8661176d565b9450610f71565b610fe28383611118565b610fef600084848461100b565b6105905760405162461bcd60e51b815260040161045a9061165e565b60006001600160a01b0384163b1561110d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061104f90339089908890889060040161160e565b602060405180830381600087803b15801561106957600080fd5b505af1925050508015611099575060408051601f3d908101601f191682019092526110969181019061150e565b60015b6110f3573d8080156110c7576040519150601f19603f3d011682016040523d82523d6000602084013e6110cc565b606091505b5080516110eb5760405162461bcd60e51b815260040161045a9061165e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c84565b506001949350505050565b6001600160a01b03821661116e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161045a565b6000818152600260205260409020546001600160a01b0316156111d35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161045a565b6001600160a01b03821660009081526003602052604081208054600192906111fc908490611736565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611266906117c4565b90600052602060002090601f01602090048101928261128857600085556112ce565b82601f106112a157805160ff19168380011785556112ce565b828001600101855582156112ce579182015b828111156112ce5782518255916020019190600101906112b3565b506112da9291506112de565b5090565b5b808211156112da57600081556001016112df565b600067ffffffffffffffff8084111561130e5761130e6118ac565b604051601f8501601f19908116603f01168101908282118183101715611336576113366118ac565b8160405280935085815286868601111561134f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461138057600080fd5b919050565b60006020828403121561139757600080fd5b610a8582611369565b600080604083850312156113b357600080fd5b6113bc83611369565b91506113ca60208401611369565b90509250929050565b6000806000606084860312156113e857600080fd5b6113f184611369565b92506113ff60208501611369565b9150604084013590509250925092565b6000806000806080858703121561142557600080fd5b61142e85611369565b935061143c60208601611369565b925060408501359150606085013567ffffffffffffffff81111561145f57600080fd5b8501601f8101871361147057600080fd5b61147f878235602084016112f3565b91505092959194509250565b6000806040838503121561149e57600080fd5b6114a783611369565b9150602083013580151581146114bc57600080fd5b809150509250929050565b600080604083850312156114da57600080fd5b6114e383611369565b946020939093013593505050565b60006020828403121561150357600080fd5b8135610a85816118c2565b60006020828403121561152057600080fd5b8151610a85816118c2565b60006020828403121561153d57600080fd5b813567ffffffffffffffff81111561155457600080fd5b8201601f8101841361156557600080fd5b610c84848235602084016112f3565b60006020828403121561158657600080fd5b5035919050565b60006020828403121561159f57600080fd5b813563ffffffff81168114610a8557600080fd5b600081518084526115cb816020860160208601611798565b601f01601f19169290920160200192915050565b600083516115f1818460208801611798565b835190830190611605818360208801611798565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611641908301846115b3565b9695505050505050565b602081526000610a8560208301846115b3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156117495761174961186a565b500190565b600063ffffffff8083168185168083038211156116055761160561186a565b60008261177c5761177c611880565b500490565b6000828210156117935761179361186a565b500390565b60005b838110156117b357818101518382015260200161179b565b838111156109ab5750506000910152565b600181811c908216806117d857607f821691505b602082108114156117f957634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156118175761181761186a565b6001019392505050565b60006000198214156118355761183561186a565b5060010190565b600063ffffffff808316818114156118175761181761186a565b60008261186557611865611880565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2457600080fdfea2646970667358221220f470656b977a23225cd38d37fd73a9ee75e3ae6296bb3facb3a952171a3139ca64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d50436e665a6157725041455a78324876587a52616d516d526f50577a335579585434683774615469454862502f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://ipfs.io/ipfs/QmPCnfZaWrPAEZx2HvXzRamQmRoPWz3UyXT4h7taTiEHbP/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d50436e665a61577250
Arg [3] : 41455a78324876587a52616d516d526f50577a33557958543468377461546945
Arg [4] : 4862502f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36559:996:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23445:355;;;;;;:::i;:::-;;:::i;:::-;;;5927:14:1;;5920:22;5902:41;;5890:2;5875:18;23445:355:0;;;;;;;;24614:100;;;:::i;:::-;;;;;;;:::i;26307:308::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5225:32:1;;;5207:51;;5195:2;5180:18;26307:308:0;5061:203:1;25830:411:0;;;;;;:::i;:::-;;:::i;:::-;;37008:87;37078:9;;-1:-1:-1;;;37078:9:0;;;;37008:87;;13137:6:1;13125:19;;;13107:38;;13095:2;13080:18;37008:87:0;12963:188:1;27366:376:0;;;;;;:::i;:::-;;:::i;36652:30::-;;;;;;;;;13496:25:1;;;13484:2;13469:18;36652:30:0;13350:177:1;37121:310:0;;;;;;:::i;:::-;;:::i;27813:185::-;;;;;;:::i;:::-;;:::i;36895:101::-;;;;;;:::i;:::-;;:::i;24221:326::-;;;;;;:::i;:::-;;:::i;23864:295::-;;;;;;:::i;:::-;;:::i;8333:94::-;;;:::i;7682:87::-;7755:6;;-1:-1:-1;;;;;7755:6:0;7682:87;;24783:104;;;:::i;26687:327::-;;;;;;:::i;:::-;;:::i;28069:365::-;;;;;;:::i;:::-;;:::i;24958:468::-;;;;;;:::i;:::-;;:::i;27085:214::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27256:25:0;;;27227:4;27256:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27085:214;8582:229;;;;;;:::i;:::-;;:::i;23445:355::-;23592:4;-1:-1:-1;;;;;;23634:40:0;;-1:-1:-1;;;23634:40:0;;:105;;-1:-1:-1;;;;;;;23691:48:0;;-1:-1:-1;;;23691:48:0;23634:105;:158;;;-1:-1:-1;;;;;;;;;;9950:40:0;;;23756:36;23614:178;23445:355;-1:-1:-1;;23445:355:0:o;24614:100::-;24668:13;24701:5;24694:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24614:100;:::o;26307:308::-;26428:7;30070:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30070:16:0;26453:110;;;;-1:-1:-1;;;26453:110:0;;10342:2:1;26453:110:0;;;10324:21:1;10381:2;10361:18;;;10354:30;10420:34;10400:18;;;10393:62;-1:-1:-1;;;10471:18:1;;;10464:42;10523:19;;26453:110:0;;;;;;;;;-1:-1:-1;26583:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26583:24:0;;26307:308::o;25830:411::-;25911:13;25927:23;25942:7;25927:14;:23::i;:::-;25911:39;;25975:5;-1:-1:-1;;;;;25969:11:0;:2;-1:-1:-1;;;;;25969:11:0;;;25961:57;;;;-1:-1:-1;;;25961:57:0;;11942:2:1;25961:57:0;;;11924:21:1;11981:2;11961:18;;;11954:30;12020:34;12000:18;;;11993:62;-1:-1:-1;;;12071:18:1;;;12064:31;12112:19;;25961:57:0;11740:397:1;25961:57:0;735:10;-1:-1:-1;;;;;26053:21:0;;;;:62;;-1:-1:-1;26078:37:0;26095:5;735:10;27085:214;:::i;26078:37::-;26031:168;;;;-1:-1:-1;;;26031:168:0;;8735:2:1;26031:168:0;;;8717:21:1;8774:2;8754:18;;;8747:30;8813:34;8793:18;;;8786:62;8884:26;8864:18;;;8857:54;8928:19;;26031:168:0;8533:420:1;26031:168:0;26212:21;26221:2;26225:7;26212:8;:21::i;:::-;25900:341;25830:411;;:::o;27366:376::-;27575:41;735:10;27608:7;27575:18;:41::i;:::-;27553:140;;;;-1:-1:-1;;;27553:140:0;;;;;;;:::i;:::-;27706:28;27716:4;27722:2;27726:7;27706:9;:28::i;37121:310::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37216:10:::1;::::0;37078:9;;37189:23:::1;::::0;37206:6;;-1:-1:-1;;;37078:9:0;;;;37189:23:::1;:::i;:::-;:37;;;;37181:83;;;::::0;-1:-1:-1;;;37181:83:0;;12762:2:1;37181:83:0::1;::::0;::::1;12744:21:1::0;12801:2;12781:18;;;12774:30;12840:34;12820:18;;;12813:62;-1:-1:-1;;;12891:18:1;;;12884:32;12933:19;;37181:83:0::1;12560:398:1::0;37181:83:0::1;37290:1;37275:139;37298:6;37293:11;;:1;:11;;;37275:139;;37326:36;735:10:::0;37352:9:::1;37350:11:::0;;37352:9:::1;::::0;37350:11:::1;::::0;-1:-1:-1;;;37350:11:0;::::1;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;37326:36;;:9;:36::i;:::-;37392:9;::::0;37382:20:::1;::::0;-1:-1:-1;;;37392:9:0;;::::1;;;13107:38:1::0;;37382:20:0::1;::::0;13095:2:1;13080:18;37382:20:0::1;;;;;;;37306:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37275:139;;;;37121:310:::0;:::o;27813:185::-;27951:39;27968:4;27974:2;27978:7;27951:39;;;;;;;;;;;;:16;:39::i;36895:101::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;36966:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;24221:326::-:0;24338:7;24379:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24379:16:0;24428:19;24406:110;;;;-1:-1:-1;;;24406:110:0;;9571:2:1;24406:110:0;;;9553:21:1;9610:2;9590:18;;;9583:30;9649:34;9629:18;;;9622:62;-1:-1:-1;;;9700:18:1;;;9693:39;9749:19;;24406:110:0;9369:405:1;23864:295:0;23981:7;-1:-1:-1;;;;;24028:19:0;;24006:111;;;;-1:-1:-1;;;24006:111:0;;9160:2:1;24006:111:0;;;9142:21:1;9199:2;9179:18;;;9172:30;9238:34;9218:18;;;9211:62;-1:-1:-1;;;9289:18:1;;;9282:40;9339:19;;24006:111:0;8958:406:1;24006:111:0;-1:-1:-1;;;;;;24135:16:0;;;;;:9;:16;;;;;;;23864:295::o;8333:94::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;8398:21:::1;8416:1;8398:9;:21::i;:::-;8333:94::o:0;24783:104::-;24839:13;24872:7;24865:14;;;;;:::i;26687:327::-;-1:-1:-1;;;;;26822:24:0;;735:10;26822:24;;26814:62;;;;-1:-1:-1;;;26814:62:0;;7968:2:1;26814:62:0;;;7950:21:1;8007:2;7987:18;;;7980:30;8046:27;8026:18;;;8019:55;8091:18;;26814:62:0;7766:349:1;26814:62:0;735:10;26889:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26889:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26889:53:0;;;;;;;;;;26958:48;;5902:41:1;;;26889:42:0;;735:10;26958:48;;5875:18:1;26958:48:0;;;;;;;26687:327;;:::o;28069:365::-;28258:41;735:10;28291:7;28258:18;:41::i;:::-;28236:140;;;;-1:-1:-1;;;28236:140:0;;;;;;;:::i;:::-;28387:39;28401:4;28407:2;28411:7;28420:5;28387:13;:39::i;:::-;28069:365;;;;:::o;24958:468::-;30046:4;30070:16;;;:7;:16;;;;;;25076:13;;-1:-1:-1;;;;;30070:16:0;25107:113;;;;-1:-1:-1;;;25107:113:0;;11526:2:1;25107:113:0;;;11508:21:1;11565:2;11545:18;;;11538:30;11604:34;11584:18;;;11577:62;-1:-1:-1;;;11655:18:1;;;11648:45;11710:19;;25107:113:0;11324:411:1;25107:113:0;25233:21;25257:10;:8;:10::i;:::-;25233:34;;25322:1;25304:7;25298:21;:25;:120;;;;;;;;;;;;;;;;;25367:7;25376:18;:7;:16;:18::i;:::-;25350:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25298:120;25278:140;24958:468;-1:-1:-1;;;24958:468:0:o;8582:229::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8685:22:0;::::1;8663:110;;;::::0;-1:-1:-1;;;8663:110:0;;6799:2:1;8663:110:0::1;::::0;::::1;6781:21:1::0;6838:2;6818:18;;;6811:30;6877:34;6857:18;;;6850:62;-1:-1:-1;;;6928:18:1;;;6921:36;6974:19;;8663:110:0::1;6597:402:1::0;8663:110:0::1;8784:19;8794:8;8784:9;:19::i;:::-;8582:229:::0;:::o;34104:174::-;34179:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34179:29:0;-1:-1:-1;;;;;34179:29:0;;;;;;;;:24;;34233:23;34179:24;34233:14;:23::i;:::-;-1:-1:-1;;;;;34224:46:0;;;;;;;;;;;34104:174;;:::o;30275:452::-;30404:4;30070:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30070:16:0;30426:110;;;;-1:-1:-1;;;30426:110:0;;8322:2:1;30426:110:0;;;8304:21:1;8361:2;8341:18;;;8334:30;8400:34;8380:18;;;8373:62;-1:-1:-1;;;8451:18:1;;;8444:42;8503:19;;30426:110:0;8120:408:1;30426:110:0;30547:13;30563:23;30578:7;30563:14;:23::i;:::-;30547:39;;30616:5;-1:-1:-1;;;;;30605:16:0;:7;-1:-1:-1;;;;;30605:16:0;;:64;;;;30662:7;-1:-1:-1;;;;;30638:31:0;:20;30650:7;30638:11;:20::i;:::-;-1:-1:-1;;;;;30638:31:0;;30605:64;:113;;;-1:-1:-1;;;;;;27256:25:0;;;27227:4;27256:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30686:32;30597:122;30275:452;-1:-1:-1;;;;30275:452:0:o;33371:615::-;33544:4;-1:-1:-1;;;;;33517:31:0;:23;33532:7;33517:14;:23::i;:::-;-1:-1:-1;;;;;33517:31:0;;33495:122;;;;-1:-1:-1;;;33495:122:0;;11116:2:1;33495:122:0;;;11098:21:1;11155:2;11135:18;;;11128:30;11194:34;11174:18;;;11167:62;-1:-1:-1;;;11245:18:1;;;11238:39;11294:19;;33495:122:0;10914:405:1;33495:122:0;-1:-1:-1;;;;;33636:16:0;;33628:65;;;;-1:-1:-1;;;33628:65:0;;7563:2:1;33628:65:0;;;7545:21:1;7602:2;7582:18;;;7575:30;7641:34;7621:18;;;7614:62;-1:-1:-1;;;7692:18:1;;;7685:34;7736:19;;33628:65:0;7361:400:1;33628:65:0;33810:29;33827:1;33831:7;33810:8;:29::i;:::-;-1:-1:-1;;;;;33852:15:0;;;;;;:9;:15;;;;;:20;;33871:1;;33852:15;:20;;33871:1;;33852:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33883:13:0;;;;;;:9;:13;;;;;:18;;33900:1;;33883:13;:18;;33900:1;;33883:18;:::i;:::-;;;;-1:-1:-1;;33912:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33912:21:0;-1:-1:-1;;;;;33912:21:0;;;;;;;;;33951:27;;33912:16;;33951:27;;;;;;;33371:615;;;:::o;31069:110::-;31145:26;31155:2;31159:7;31145:26;;;;;;;;;;;;:9;:26::i;8819:173::-;8894:6;;;-1:-1:-1;;;;;8911:17:0;;;-1:-1:-1;;;;;;8911:17:0;;;;;;;8944:40;;8894:6;;;8911:17;8894:6;;8944:40;;8875:16;;8944:40;8864:128;8819:173;:::o;29316:352::-;29473:28;29483:4;29489:2;29493:7;29473:9;:28::i;:::-;29534:48;29557:4;29563:2;29567:7;29576:5;29534:22;:48::i;:::-;29512:148;;;;-1:-1:-1;;;29512:148:0;;;;;;;:::i;37439:113::-;37499:13;37532:12;37525:19;;;;;:::i;10312:723::-;10368:13;10589:10;10585:53;;-1:-1:-1;;10616:10:0;;;;;;;;;;;;-1:-1:-1;;;10616:10:0;;;;;10312:723::o;10585:53::-;10663:5;10648:12;10704:78;10711:9;;10704:78;;10737:8;;;;:::i;:::-;;-1:-1:-1;10760:10:0;;-1:-1:-1;10768:2:0;10760:10;;:::i;:::-;;;10704:78;;;10792:19;10824:6;10814:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10814:17:0;;10792:39;;10842:154;10849:10;;10842:154;;10876:11;10886:1;10876:11;;:::i;:::-;;-1:-1:-1;10945:10:0;10953:2;10945:5;:10;:::i;:::-;10932:24;;:2;:24;:::i;:::-;10919:39;;10902:6;10909;10902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10902:56:0;;;;;;;;-1:-1:-1;10973:11:0;10982:2;10973:11;;:::i;:::-;;;10842:154;;31406:321;31536:18;31542:2;31546:7;31536:5;:18::i;:::-;31587:54;31618:1;31622:2;31626:7;31635:5;31587:22;:54::i;:::-;31565:154;;;;-1:-1:-1;;;31565:154:0;;;;;;;:::i;34843:984::-;34998:4;-1:-1:-1;;;;;35019:13:0;;13188:20;13236:8;35015:805;;35072:175;;-1:-1:-1;;;35072:175:0;;-1:-1:-1;;;;;35072:36:0;;;;;:175;;735:10;;35166:4;;35193:7;;35223:5;;35072:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35072:175:0;;;;;;;;-1:-1:-1;;35072:175:0;;;;;;;;;;;;:::i;:::-;;;35051:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35434:13:0;;35430:320;;35477:108;;-1:-1:-1;;;35477:108:0;;;;;;;:::i;35430:320::-;35700:6;35694:13;35685:6;35681:2;35677:15;35670:38;35051:714;-1:-1:-1;;;;;;35311:55:0;-1:-1:-1;;;35311:55:0;;-1:-1:-1;35304:62:0;;35015:805;-1:-1:-1;35804:4:0;34843:984;;;;;;:::o;32063:382::-;-1:-1:-1;;;;;32143:16:0;;32135:61;;;;-1:-1:-1;;;32135:61:0;;9981:2:1;32135:61:0;;;9963:21:1;;;10000:18;;;9993:30;10059:34;10039:18;;;10032:62;10111:18;;32135:61:0;9779:356:1;32135:61:0;30046:4;30070:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30070:16:0;:30;32207:58;;;;-1:-1:-1;;;32207:58:0;;7206:2:1;32207:58:0;;;7188:21:1;7245:2;7225:18;;;7218:30;7284;7264:18;;;7257:58;7332:18;;32207:58:0;7004:352:1;32207:58:0;-1:-1:-1;;;;;32336:13:0;;;;;;:9;:13;;;;;:18;;32353:1;;32336:13;:18;;32353:1;;32336:18;:::i;:::-;;;;-1:-1:-1;;32365:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32365:21:0;-1:-1:-1;;;;;32365:21:0;;;;;;;;32404:33;;32365:16;;;32404:33;;32365:16;;32404:33;32063:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:276::-;4101:6;4154:2;4142:9;4133:7;4129:23;4125:32;4122:52;;;4170:1;4167;4160:12;4122:52;4209:9;4196:23;4259:10;4252:5;4248:22;4241:5;4238:33;4228:61;;4285:1;4282;4275:12;4324:257;4365:3;4403:5;4397:12;4430:6;4425:3;4418:19;4446:63;4502:6;4495:4;4490:3;4486:14;4479:4;4472:5;4468:16;4446:63;:::i;:::-;4563:2;4542:15;-1:-1:-1;;4538:29:1;4529:39;;;;4570:4;4525:50;;4324:257;-1:-1:-1;;4324:257:1:o;4586:470::-;4765:3;4803:6;4797:13;4819:53;4865:6;4860:3;4853:4;4845:6;4841:17;4819:53;:::i;:::-;4935:13;;4894:16;;;;4957:57;4935:13;4894:16;4991:4;4979:17;;4957:57;:::i;:::-;5030:20;;4586:470;-1:-1:-1;;;;4586:470:1:o;5269:488::-;-1:-1:-1;;;;;5538:15:1;;;5520:34;;5590:15;;5585:2;5570:18;;5563:43;5637:2;5622:18;;5615:34;;;5685:3;5680:2;5665:18;;5658:31;;;5463:4;;5706:45;;5731:19;;5723:6;5706:45;:::i;:::-;5698:53;5269:488;-1:-1:-1;;;;;;5269:488:1:o;5954:219::-;6103:2;6092:9;6085:21;6066:4;6123:44;6163:2;6152:9;6148:18;6140:6;6123:44;:::i;6178:414::-;6380:2;6362:21;;;6419:2;6399:18;;;6392:30;6458:34;6453:2;6438:18;;6431:62;-1:-1:-1;;;6524:2:1;6509:18;;6502:48;6582:3;6567:19;;6178:414::o;10553:356::-;10755:2;10737:21;;;10774:18;;;10767:30;10833:34;10828:2;10813:18;;10806:62;10900:2;10885:18;;10553:356::o;12142:413::-;12344:2;12326:21;;;12383:2;12363:18;;;12356:30;12422:34;12417:2;12402:18;;12395:62;-1:-1:-1;;;12488:2:1;12473:18;;12466:47;12545:3;12530:19;;12142:413::o;13532:128::-;13572:3;13603:1;13599:6;13596:1;13593:13;13590:39;;;13609:18;;:::i;:::-;-1:-1:-1;13645:9:1;;13532:128::o;13665:228::-;13704:3;13732:10;13769:2;13766:1;13762:10;13799:2;13796:1;13792:10;13830:3;13826:2;13822:12;13817:3;13814:21;13811:47;;;13838:18;;:::i;13898:120::-;13938:1;13964;13954:35;;13969:18;;:::i;:::-;-1:-1:-1;14003:9:1;;13898:120::o;14023:125::-;14063:4;14091:1;14088;14085:8;14082:34;;;14096:18;;:::i;:::-;-1:-1:-1;14133:9:1;;14023:125::o;14153:258::-;14225:1;14235:113;14249:6;14246:1;14243:13;14235:113;;;14325:11;;;14319:18;14306:11;;;14299:39;14271:2;14264:10;14235:113;;;14366:6;14363:1;14360:13;14357:48;;;-1:-1:-1;;14401:1:1;14383:16;;14376:27;14153:258::o;14416:380::-;14495:1;14491:12;;;;14538;;;14559:61;;14613:4;14605:6;14601:17;14591:27;;14559:61;14666:2;14658:6;14655:14;14635:18;14632:38;14629:161;;;14712:10;14707:3;14703:20;14700:1;14693:31;14747:4;14744:1;14737:15;14775:4;14772:1;14765:15;14629:161;;14416:380;;;:::o;14801:197::-;14839:3;14867:6;14908:2;14901:5;14897:14;14935:2;14926:7;14923:15;14920:41;;;14941:18;;:::i;:::-;14990:1;14977:15;;14801:197;-1:-1:-1;;;14801:197:1:o;15003:135::-;15042:3;-1:-1:-1;;15063:17:1;;15060:43;;;15083:18;;:::i;:::-;-1:-1:-1;15130:1:1;15119:13;;15003:135::o;15143:201::-;15181:3;15209:10;15254:2;15247:5;15243:14;15281:2;15272:7;15269:15;15266:41;;;15287:18;;:::i;15349:112::-;15381:1;15407;15397:35;;15412:18;;:::i;:::-;-1:-1:-1;15446:9:1;;15349:112::o;15466:127::-;15527:10;15522:3;15518:20;15515:1;15508:31;15558:4;15555:1;15548:15;15582:4;15579:1;15572:15;15598:127;15659:10;15654:3;15650:20;15647:1;15640:31;15690:4;15687:1;15680:15;15714:4;15711:1;15704:15;15730:127;15791:10;15786:3;15782:20;15779:1;15772:31;15822:4;15819:1;15812:15;15846:4;15843:1;15836:15;15862:127;15923:10;15918:3;15914:20;15911:1;15904:31;15954:4;15951:1;15944:15;15978:4;15975:1;15968:15;15994:131;-1:-1:-1;;;;;;16068:32:1;;16058:43;;16048:71;;16115:1;16112;16105:12

Swarm Source

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