FTM Price: $0.32 (-2.94%)
Gas: 29 Gwei

Token

Some weird nft (SomeWNFT)
 

Overview

Max Total Supply

4 SomeWNFT

Holders

3

Market

Fully Diluted Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Balance
0 SomeWNFT
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
BeethovenxNft

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2021-10-13
*/

// SPDX-License-Identifier: MIXED

// Sources flattened with hardhat v2.6.5 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// License-Identifier: MIT

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/[email protected]

// License-Identifier: MIT

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/[email protected]

// License-Identifier: MIT

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/extensions/[email protected]

// License-Identifier: MIT

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/[email protected]

// License-Identifier: MIT

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/utils/[email protected]

// License-Identifier: MIT

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/[email protected]

// License-Identifier: MIT

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/introspection/[email protected]

// License-Identifier: MIT

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/[email protected]

// License-Identifier: MIT

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/token/ERC721/extensions/[email protected]

// License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// License-Identifier: MIT

pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File @openzeppelin/contracts/security/[email protected]

// License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


// File @openzeppelin/contracts/token/ERC721/extensions/ER[email protected]

// License-Identifier: MIT

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// License-Identifier: MIT

pragma solidity ^0.8.0;


/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}


// File @openzeppelin/contracts/access/[email protected]

// License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}


// File @openzeppelin/contracts/access/[email protected]

// License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}


// File @openzeppelin/contracts/access/[email protected]

// License-Identifier: MIT

pragma solidity ^0.8.0;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}


// File @openzeppelin/contracts/utils/structs/[email protected]

// License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// License-Identifier: MIT

pragma solidity ^0.8.0;



/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}


// File @openzeppelin/contracts/utils/C[email protected]

// 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 contracts_unflattened/BeethovenxNft.sol

// License-Identifier: MIT

pragma solidity ^0.8.0;






/**
 * @dev {ERC721} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *  - token ID and URI autogeneration
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract BeethovenxNft is
    Context,
    AccessControlEnumerable,
    ERC721Enumerable,
    ERC721Burnable,
    ERC721Pausable
{
    using Counters for Counters.Counter;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    Counters.Counter private _tokenIdTracker;

    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * Token URIs will be autogenerated based on `baseURI` and their token IDs.
     * See {ERC721-tokenURI}.
     */
    constructor() ERC721("Some weird nft", "SomeWNFT") {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates a new token for `to`. Its token ID will be automatically
     * assigned (and available on the emitted {IERC721-Transfer} event), and the token
     * URI autogenerated based on the base URI passed at construction.
     *
     * See {ERC721-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, string memory tokenURI) public {
        require(
            hasRole(MINTER_ROLE, _msgSender()),
            "ERC721PresetMinterPauserAutoId: must have minter role to mint"
        );

        // We cannot just use balanceOf to create the new tokenId because tokens
        // can be burned (destroyed), so we need a separate counter.
        uint256 tokenId = _tokenIdTracker.current();
        _mint(to, tokenId);
        _setTokenURI(tokenId, tokenURI);
        _tokenIdTracker.increment();
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(
            hasRole(PAUSER_ROLE, _msgSender()),
            "ERC721PresetMinterPauserAutoId: must have pauser role to pause"
        );
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(
            hasRole(PAUSER_ROLE, _msgSender()),
            "ERC721PresetMinterPauserAutoId: must have pauser role to unpause"
        );
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(AccessControlEnumerable, ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal {
        require(
            _exists(tokenId),
            "ERC721URIStorage: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"to","type":"address"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Contract Creation Code

60806040523480156200001157600080fd5b50604080518082018252600e81526d14dbdb59481dd95a5c99081b999d60921b60208083019182528351808501909452600884526714dbdb5955d3919560c21b90840152815191929162000068916002916200025b565b5080516200007e9060039060208401906200025b565b5050600c805460ff191690555062000098600033620000f6565b620000c47f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620000f6565b620000f07f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620000f6565b6200033e565b6200010d82826200013960201b62000f0f1760201c565b60008281526001602090815260409091206200013491839062000f1d62000149821b17901c565b505050565b62000145828262000169565b5050565b600062000160836001600160a01b03841662000209565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000145576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620001c53390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054620002525750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000163565b50600062000163565b828054620002699062000301565b90600052602060002090601f0160209004810192826200028d5760008555620002d8565b82601f10620002a857805160ff1916838001178555620002d8565b82800160010185558215620002d8579182015b82811115620002d8578251825591602001919060010190620002bb565b50620002e6929150620002ea565b5090565b5b80821115620002e65760008155600101620002eb565b600181811c908216806200031657607f821691505b602082108114156200033857634e487b7160e01b600052602260045260246000fd5b50919050565b612943806200034e6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80636352211e1161010f578063b88d4fde116100a2578063d539139311610071578063d5391393146103f7578063d547741f1461041e578063e63ab1e914610431578063e985e9c51461045857600080fd5b8063b88d4fde146103ab578063c87b56dd146103be578063ca15c873146103d1578063d0def521146103e457600080fd5b806391d14854116100de57806391d148541461037557806395d89b4114610388578063a217fddf14610390578063a22cb4651461039857600080fd5b80636352211e1461033457806370a08231146103475780638456cb591461035a5780639010d07c1461036257600080fd5b80632f2ff15d1161018757806342842e0e1161015657806342842e0e146102f057806342966c68146103035780634f6ccce7146103165780635c975abb1461032957600080fd5b80632f2ff15d146102af5780632f745c59146102c257806336568abe146102d55780633f4ba83a146102e857600080fd5b8063095ea7b3116101c3578063095ea7b31461025257806318160ddd1461026757806323b872dd14610279578063248a9ca31461028c57600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f836600461257d565b610494565b60405190151581526020015b60405180910390f35b61021a6104a5565b60405161020991906126c4565b61023a61023536600461251f565b610537565b6040516001600160a01b039091168152602001610209565b6102656102603660046124f5565b6105c4565b005b600a545b604051908152602001610209565b61026561028736600461239f565b6106da565b61026b61029a36600461251f565b60009081526020819052604090206001015490565b6102656102bd366004612538565b61070c565b61026b6102d03660046124f5565b61072e565b6102656102e3366004612538565b6107c4565b6102656107e6565b6102656102fe36600461239f565b61088e565b61026561031136600461251f565b6108a9565b61026b61032436600461251f565b610923565b600c5460ff166101fd565b61023a61034236600461251f565b6109b6565b61026b610355366004612351565b610a2d565b610265610ab4565b61023a61037036600461255b565b610b58565b6101fd610383366004612538565b610b77565b61021a610ba0565b61026b600081565b6102656103a6366004612457565b610baf565b6102656103b93660046123db565b610c74565b61021a6103cc36600461251f565b610cac565b61026b6103df36600461251f565b610e23565b6102656103f2366004612493565b610e3a565b61026b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61026561042c366004612538565b610f05565b61026b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6101fd61046636600461236c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600061049f82610f32565b92915050565b6060600280546104b49061281f565b80601f01602080910402602001604051908101604052809291908181526020018280546104e09061281f565b801561052d5780601f106105025761010080835404028352916020019161052d565b820191906000526020600020905b81548152906001019060200180831161051057829003601f168201915b5050505050905090565b600061054282610f57565b6105a85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105cf826109b6565b9050806001600160a01b0316836001600160a01b0316141561063d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161059f565b336001600160a01b038216148061065957506106598133610466565b6106cb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161059f565b6106d58383610f74565b505050565b6106e5335b82610fe2565b6107015760405162461bcd60e51b815260040161059f90612729565b6106d58383836110c8565b6107168282611273565b60008281526001602052604090206106d59082610f1d565b600061073983610a2d565b821061079b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161059f565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6107ce8282611299565b60008281526001602052604090206106d59082611313565b6108107f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610b77565b610884576040805162461bcd60e51b81526020600482015260248101919091527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20756e7061757365606482015260840161059f565b61088c611328565b565b6106d583838360405180602001604052806000815250610c74565b6108b2336106df565b6109175760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161059f565b610920816113bb565b50565b600061092e600a5490565b82106109915760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161059f565b600a82815481106109a4576109a46128cb565b90600052602060002001549050919050565b6000818152600460205260408120546001600160a01b03168061049f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161059f565b60006001600160a01b038216610a985760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161059f565b506001600160a01b031660009081526005602052604090205490565b610ade7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610b77565b610b505760405162461bcd60e51b815260206004820152603e60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f2070617573650000606482015260840161059f565b61088c6113fb565b6000828152600160205260408120610b709083611476565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600380546104b49061281f565b6001600160a01b038216331415610c085760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161059f565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c7e3383610fe2565b610c9a5760405162461bcd60e51b815260040161059f90612729565b610ca684848484611482565b50505050565b6060610cb782610f57565b610d1d5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161059f565b6000828152600e602052604081208054610d369061281f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d629061281f565b8015610daf5780601f10610d8457610100808354040283529160200191610daf565b820191906000526020600020905b815481529060010190602001808311610d9257829003601f168201915b505050505090506000610dcd60408051602081019091526000815290565b9050805160001415610de0575092915050565b815115610e12578082604051602001610dfa9291906125e3565b60405160208183030381529060405292505050919050565b610e1b846114b5565b949350505050565b600081815260016020526040812061049f9061158c565b610e647f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610b77565b610ed65760405162461bcd60e51b815260206004820152603d60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d7573742068617665206d696e74657220726f6c6520746f206d696e74000000606482015260840161059f565b6000610ee1600d5490565b9050610eed8382611596565b610ef781836116d5565b6106d5600d80546001019055565b6107ce8282611760565b610f198282611786565b5050565b6000610b70836001600160a01b03841661180a565b60006001600160e01b0319821663780e9d6360e01b148061049f575061049f82611859565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fa9826109b6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610fed82610f57565b61104e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059f565b6000611059836109b6565b9050806001600160a01b0316846001600160a01b031614806110945750836001600160a01b031661108984610537565b6001600160a01b0316145b80610e1b57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff16610e1b565b826001600160a01b03166110db826109b6565b6001600160a01b0316146111435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161059f565b6001600160a01b0382166111a55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161059f565b6111b0838383611899565b6111bb600082610f74565b6001600160a01b03831660009081526005602052604081208054600192906111e49084906127c5565b90915550506001600160a01b038216600090815260056020526040812080546001929061121290849061277a565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008281526020819052604090206001015461128f81336118a4565b6106d58383611786565b6001600160a01b03811633146113095760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161059f565b610f198282611908565b6000610b70836001600160a01b03841661196d565b600c5460ff166113715760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161059f565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6113c481611a60565b6000818152600e6020526040902080546113dd9061281f565b159050610920576000818152600e60205260408120610920916121ec565b600c5460ff16156114415760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161059f565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861139e3390565b6000610b708383611b07565b61148d8484846110c8565b61149984848484611b31565b610ca65760405162461bcd60e51b815260040161059f906126d7565b60606114c082610f57565b6115245760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161059f565b600061153b60408051602081019091526000815290565b9050600081511161155b5760405180602001604052806000815250610b70565b8061156584611c3e565b6040516020016115769291906125e3565b6040516020818303038152906040529392505050565b600061049f825490565b6001600160a01b0382166115ec5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161059f565b6115f581610f57565b156116425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161059f565b61164e60008383611899565b6001600160a01b038216600090815260056020526040812080546001929061167790849061277a565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6116de82610f57565b6117415760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161059f565b6000828152600e6020908152604090912082516106d592840190612226565b60008281526020819052604090206001015461177c81336118a4565b6106d58383611908565b6117908282610b77565b610f19576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556117c63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008181526001830160205260408120546118515750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561049f565b50600061049f565b60006001600160e01b031982166380ac58cd60e01b148061188a57506001600160e01b03198216635b5e139f60e01b145b8061049f575061049f82611d3c565b6106d5838383611d61565b6118ae8282610b77565b610f19576118c6816001600160a01b03166014611dd3565b6118d1836020611dd3565b6040516020016118e2929190612612565b60408051601f198184030181529082905262461bcd60e51b825261059f916004016126c4565b6119128282610b77565b15610f19576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015611a565760006119916001836127c5565b85549091506000906119a5906001906127c5565b9050818114611a0a5760008660000182815481106119c5576119c56128cb565b90600052602060002001549050808760000184815481106119e8576119e86128cb565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611a1b57611a1b6128b5565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061049f565b600091505061049f565b6000611a6b826109b6565b9050611a7981600084611899565b611a84600083610f74565b6001600160a01b0381166000908152600560205260408120805460019290611aad9084906127c5565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000826000018281548110611b1e57611b1e6128cb565b9060005260206000200154905092915050565b60006001600160a01b0384163b15611c3357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b75903390899088908890600401612687565b602060405180830381600087803b158015611b8f57600080fd5b505af1925050508015611bbf575060408051601f3d908101601f19168201909252611bbc9181019061259a565b60015b611c19573d808015611bed576040519150601f19603f3d011682016040523d82523d6000602084013e611bf2565b606091505b508051611c115760405162461bcd60e51b815260040161059f906126d7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e1b565b506001949350505050565b606081611c625750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c8c5780611c768161285a565b9150611c859050600a83612792565b9150611c66565b60008167ffffffffffffffff811115611ca757611ca76128e1565b6040519080825280601f01601f191660200182016040528015611cd1576020820181803683370190505b5090505b8415610e1b57611ce66001836127c5565b9150611cf3600a86612875565b611cfe90603061277a565b60f81b818381518110611d1357611d136128cb565b60200101906001600160f81b031916908160001a905350611d35600a86612792565b9450611cd5565b60006001600160e01b03198216635a05180f60e01b148061049f575061049f82611f6f565b611d6c838383611fa4565b600c5460ff16156106d55760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b606482015260840161059f565b60606000611de28360026127a6565b611ded90600261277a565b67ffffffffffffffff811115611e0557611e056128e1565b6040519080825280601f01601f191660200182016040528015611e2f576020820181803683370190505b509050600360fc1b81600081518110611e4a57611e4a6128cb565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e7957611e796128cb565b60200101906001600160f81b031916908160001a9053506000611e9d8460026127a6565b611ea890600161277a565b90505b6001811115611f20576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611edc57611edc6128cb565b1a60f81b828281518110611ef257611ef26128cb565b60200101906001600160f81b031916908160001a90535060049490941c93611f1981612808565b9050611eab565b508315610b705760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161059f565b60006001600160e01b03198216637965db0b60e01b148061049f57506301ffc9a760e01b6001600160e01b031983161461049f565b6001600160a01b038316611fff57611ffa81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b612022565b816001600160a01b0316836001600160a01b03161461202257612022838261205c565b6001600160a01b038216612039576106d5816120f9565b826001600160a01b0316826001600160a01b0316146106d5576106d582826121a8565b6000600161206984610a2d565b61207391906127c5565b6000838152600960205260409020549091508082146120c6576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061210b906001906127c5565b6000838152600b6020526040812054600a8054939450909284908110612133576121336128cb565b9060005260206000200154905080600a8381548110612154576121546128cb565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061218c5761218c6128b5565b6001900381819060005260206000200160009055905550505050565b60006121b383610a2d565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b5080546121f89061281f565b6000825580601f10612208575050565b601f01602090049060005260206000209081019061092091906122aa565b8280546122329061281f565b90600052602060002090601f016020900481019282612254576000855561229a565b82601f1061226d57805160ff191683800117855561229a565b8280016001018555821561229a579182015b8281111561229a57825182559160200191906001019061227f565b506122a69291506122aa565b5090565b5b808211156122a657600081556001016122ab565b600067ffffffffffffffff808411156122da576122da6128e1565b604051601f8501601f19908116603f01168101908282118183101715612302576123026128e1565b8160405280935085815286868601111561231b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461234c57600080fd5b919050565b60006020828403121561236357600080fd5b610b7082612335565b6000806040838503121561237f57600080fd5b61238883612335565b915061239660208401612335565b90509250929050565b6000806000606084860312156123b457600080fd5b6123bd84612335565b92506123cb60208501612335565b9150604084013590509250925092565b600080600080608085870312156123f157600080fd5b6123fa85612335565b935061240860208601612335565b925060408501359150606085013567ffffffffffffffff81111561242b57600080fd5b8501601f8101871361243c57600080fd5b61244b878235602084016122bf565b91505092959194509250565b6000806040838503121561246a57600080fd5b61247383612335565b91506020830135801515811461248857600080fd5b809150509250929050565b600080604083850312156124a657600080fd5b6124af83612335565b9150602083013567ffffffffffffffff8111156124cb57600080fd5b8301601f810185136124dc57600080fd5b6124eb858235602084016122bf565b9150509250929050565b6000806040838503121561250857600080fd5b61251183612335565b946020939093013593505050565b60006020828403121561253157600080fd5b5035919050565b6000806040838503121561254b57600080fd5b8235915061239660208401612335565b6000806040838503121561256e57600080fd5b50508035926020909101359150565b60006020828403121561258f57600080fd5b8135610b70816128f7565b6000602082840312156125ac57600080fd5b8151610b70816128f7565b600081518084526125cf8160208601602086016127dc565b601f01601f19169290920160200192915050565b600083516125f58184602088016127dc565b8351908301906126098183602088016127dc565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161264a8160178501602088016127dc565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161267b8160288401602088016127dc565b01602801949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126ba908301846125b7565b9695505050505050565b602081526000610b7060208301846125b7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561278d5761278d612889565b500190565b6000826127a1576127a161289f565b500490565b60008160001904831182151516156127c0576127c0612889565b500290565b6000828210156127d7576127d7612889565b500390565b60005b838110156127f75781810151838201526020016127df565b83811115610ca65750506000910152565b60008161281757612817612889565b506000190190565b600181811c9082168061283357607f821691505b6020821081141561285457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561286e5761286e612889565b5060010190565b6000826128845761288461289f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461092057600080fdfea26469706673582212205b5bcfd3df226aab1600d69e79be3e1af735a29971e3f880894070f4742b05f664736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c80636352211e1161010f578063b88d4fde116100a2578063d539139311610071578063d5391393146103f7578063d547741f1461041e578063e63ab1e914610431578063e985e9c51461045857600080fd5b8063b88d4fde146103ab578063c87b56dd146103be578063ca15c873146103d1578063d0def521146103e457600080fd5b806391d14854116100de57806391d148541461037557806395d89b4114610388578063a217fddf14610390578063a22cb4651461039857600080fd5b80636352211e1461033457806370a08231146103475780638456cb591461035a5780639010d07c1461036257600080fd5b80632f2ff15d1161018757806342842e0e1161015657806342842e0e146102f057806342966c68146103035780634f6ccce7146103165780635c975abb1461032957600080fd5b80632f2ff15d146102af5780632f745c59146102c257806336568abe146102d55780633f4ba83a146102e857600080fd5b8063095ea7b3116101c3578063095ea7b31461025257806318160ddd1461026757806323b872dd14610279578063248a9ca31461028c57600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f836600461257d565b610494565b60405190151581526020015b60405180910390f35b61021a6104a5565b60405161020991906126c4565b61023a61023536600461251f565b610537565b6040516001600160a01b039091168152602001610209565b6102656102603660046124f5565b6105c4565b005b600a545b604051908152602001610209565b61026561028736600461239f565b6106da565b61026b61029a36600461251f565b60009081526020819052604090206001015490565b6102656102bd366004612538565b61070c565b61026b6102d03660046124f5565b61072e565b6102656102e3366004612538565b6107c4565b6102656107e6565b6102656102fe36600461239f565b61088e565b61026561031136600461251f565b6108a9565b61026b61032436600461251f565b610923565b600c5460ff166101fd565b61023a61034236600461251f565b6109b6565b61026b610355366004612351565b610a2d565b610265610ab4565b61023a61037036600461255b565b610b58565b6101fd610383366004612538565b610b77565b61021a610ba0565b61026b600081565b6102656103a6366004612457565b610baf565b6102656103b93660046123db565b610c74565b61021a6103cc36600461251f565b610cac565b61026b6103df36600461251f565b610e23565b6102656103f2366004612493565b610e3a565b61026b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61026561042c366004612538565b610f05565b61026b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6101fd61046636600461236c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600061049f82610f32565b92915050565b6060600280546104b49061281f565b80601f01602080910402602001604051908101604052809291908181526020018280546104e09061281f565b801561052d5780601f106105025761010080835404028352916020019161052d565b820191906000526020600020905b81548152906001019060200180831161051057829003601f168201915b5050505050905090565b600061054282610f57565b6105a85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105cf826109b6565b9050806001600160a01b0316836001600160a01b0316141561063d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161059f565b336001600160a01b038216148061065957506106598133610466565b6106cb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161059f565b6106d58383610f74565b505050565b6106e5335b82610fe2565b6107015760405162461bcd60e51b815260040161059f90612729565b6106d58383836110c8565b6107168282611273565b60008281526001602052604090206106d59082610f1d565b600061073983610a2d565b821061079b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161059f565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6107ce8282611299565b60008281526001602052604090206106d59082611313565b6108107f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610b77565b610884576040805162461bcd60e51b81526020600482015260248101919091527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20756e7061757365606482015260840161059f565b61088c611328565b565b6106d583838360405180602001604052806000815250610c74565b6108b2336106df565b6109175760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161059f565b610920816113bb565b50565b600061092e600a5490565b82106109915760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161059f565b600a82815481106109a4576109a46128cb565b90600052602060002001549050919050565b6000818152600460205260408120546001600160a01b03168061049f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161059f565b60006001600160a01b038216610a985760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161059f565b506001600160a01b031660009081526005602052604090205490565b610ade7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610b77565b610b505760405162461bcd60e51b815260206004820152603e60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f2070617573650000606482015260840161059f565b61088c6113fb565b6000828152600160205260408120610b709083611476565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600380546104b49061281f565b6001600160a01b038216331415610c085760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161059f565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c7e3383610fe2565b610c9a5760405162461bcd60e51b815260040161059f90612729565b610ca684848484611482565b50505050565b6060610cb782610f57565b610d1d5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161059f565b6000828152600e602052604081208054610d369061281f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d629061281f565b8015610daf5780601f10610d8457610100808354040283529160200191610daf565b820191906000526020600020905b815481529060010190602001808311610d9257829003601f168201915b505050505090506000610dcd60408051602081019091526000815290565b9050805160001415610de0575092915050565b815115610e12578082604051602001610dfa9291906125e3565b60405160208183030381529060405292505050919050565b610e1b846114b5565b949350505050565b600081815260016020526040812061049f9061158c565b610e647f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610b77565b610ed65760405162461bcd60e51b815260206004820152603d60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d7573742068617665206d696e74657220726f6c6520746f206d696e74000000606482015260840161059f565b6000610ee1600d5490565b9050610eed8382611596565b610ef781836116d5565b6106d5600d80546001019055565b6107ce8282611760565b610f198282611786565b5050565b6000610b70836001600160a01b03841661180a565b60006001600160e01b0319821663780e9d6360e01b148061049f575061049f82611859565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fa9826109b6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610fed82610f57565b61104e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059f565b6000611059836109b6565b9050806001600160a01b0316846001600160a01b031614806110945750836001600160a01b031661108984610537565b6001600160a01b0316145b80610e1b57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff16610e1b565b826001600160a01b03166110db826109b6565b6001600160a01b0316146111435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161059f565b6001600160a01b0382166111a55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161059f565b6111b0838383611899565b6111bb600082610f74565b6001600160a01b03831660009081526005602052604081208054600192906111e49084906127c5565b90915550506001600160a01b038216600090815260056020526040812080546001929061121290849061277a565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008281526020819052604090206001015461128f81336118a4565b6106d58383611786565b6001600160a01b03811633146113095760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161059f565b610f198282611908565b6000610b70836001600160a01b03841661196d565b600c5460ff166113715760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161059f565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6113c481611a60565b6000818152600e6020526040902080546113dd9061281f565b159050610920576000818152600e60205260408120610920916121ec565b600c5460ff16156114415760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161059f565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861139e3390565b6000610b708383611b07565b61148d8484846110c8565b61149984848484611b31565b610ca65760405162461bcd60e51b815260040161059f906126d7565b60606114c082610f57565b6115245760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161059f565b600061153b60408051602081019091526000815290565b9050600081511161155b5760405180602001604052806000815250610b70565b8061156584611c3e565b6040516020016115769291906125e3565b6040516020818303038152906040529392505050565b600061049f825490565b6001600160a01b0382166115ec5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161059f565b6115f581610f57565b156116425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161059f565b61164e60008383611899565b6001600160a01b038216600090815260056020526040812080546001929061167790849061277a565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6116de82610f57565b6117415760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161059f565b6000828152600e6020908152604090912082516106d592840190612226565b60008281526020819052604090206001015461177c81336118a4565b6106d58383611908565b6117908282610b77565b610f19576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556117c63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008181526001830160205260408120546118515750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561049f565b50600061049f565b60006001600160e01b031982166380ac58cd60e01b148061188a57506001600160e01b03198216635b5e139f60e01b145b8061049f575061049f82611d3c565b6106d5838383611d61565b6118ae8282610b77565b610f19576118c6816001600160a01b03166014611dd3565b6118d1836020611dd3565b6040516020016118e2929190612612565b60408051601f198184030181529082905262461bcd60e51b825261059f916004016126c4565b6119128282610b77565b15610f19576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015611a565760006119916001836127c5565b85549091506000906119a5906001906127c5565b9050818114611a0a5760008660000182815481106119c5576119c56128cb565b90600052602060002001549050808760000184815481106119e8576119e86128cb565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611a1b57611a1b6128b5565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061049f565b600091505061049f565b6000611a6b826109b6565b9050611a7981600084611899565b611a84600083610f74565b6001600160a01b0381166000908152600560205260408120805460019290611aad9084906127c5565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000826000018281548110611b1e57611b1e6128cb565b9060005260206000200154905092915050565b60006001600160a01b0384163b15611c3357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b75903390899088908890600401612687565b602060405180830381600087803b158015611b8f57600080fd5b505af1925050508015611bbf575060408051601f3d908101601f19168201909252611bbc9181019061259a565b60015b611c19573d808015611bed576040519150601f19603f3d011682016040523d82523d6000602084013e611bf2565b606091505b508051611c115760405162461bcd60e51b815260040161059f906126d7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e1b565b506001949350505050565b606081611c625750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c8c5780611c768161285a565b9150611c859050600a83612792565b9150611c66565b60008167ffffffffffffffff811115611ca757611ca76128e1565b6040519080825280601f01601f191660200182016040528015611cd1576020820181803683370190505b5090505b8415610e1b57611ce66001836127c5565b9150611cf3600a86612875565b611cfe90603061277a565b60f81b818381518110611d1357611d136128cb565b60200101906001600160f81b031916908160001a905350611d35600a86612792565b9450611cd5565b60006001600160e01b03198216635a05180f60e01b148061049f575061049f82611f6f565b611d6c838383611fa4565b600c5460ff16156106d55760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b606482015260840161059f565b60606000611de28360026127a6565b611ded90600261277a565b67ffffffffffffffff811115611e0557611e056128e1565b6040519080825280601f01601f191660200182016040528015611e2f576020820181803683370190505b509050600360fc1b81600081518110611e4a57611e4a6128cb565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e7957611e796128cb565b60200101906001600160f81b031916908160001a9053506000611e9d8460026127a6565b611ea890600161277a565b90505b6001811115611f20576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611edc57611edc6128cb565b1a60f81b828281518110611ef257611ef26128cb565b60200101906001600160f81b031916908160001a90535060049490941c93611f1981612808565b9050611eab565b508315610b705760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161059f565b60006001600160e01b03198216637965db0b60e01b148061049f57506301ffc9a760e01b6001600160e01b031983161461049f565b6001600160a01b038316611fff57611ffa81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b612022565b816001600160a01b0316836001600160a01b03161461202257612022838261205c565b6001600160a01b038216612039576106d5816120f9565b826001600160a01b0316826001600160a01b0316146106d5576106d582826121a8565b6000600161206984610a2d565b61207391906127c5565b6000838152600960205260409020549091508082146120c6576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061210b906001906127c5565b6000838152600b6020526040812054600a8054939450909284908110612133576121336128cb565b9060005260206000200154905080600a8381548110612154576121546128cb565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061218c5761218c6128b5565b6001900381819060005260206000200160009055905550505050565b60006121b383610a2d565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b5080546121f89061281f565b6000825580601f10612208575050565b601f01602090049060005260206000209081019061092091906122aa565b8280546122329061281f565b90600052602060002090601f016020900481019282612254576000855561229a565b82601f1061226d57805160ff191683800117855561229a565b8280016001018555821561229a579182015b8281111561229a57825182559160200191906001019061227f565b506122a69291506122aa565b5090565b5b808211156122a657600081556001016122ab565b600067ffffffffffffffff808411156122da576122da6128e1565b604051601f8501601f19908116603f01168101908282118183101715612302576123026128e1565b8160405280935085815286868601111561231b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461234c57600080fd5b919050565b60006020828403121561236357600080fd5b610b7082612335565b6000806040838503121561237f57600080fd5b61238883612335565b915061239660208401612335565b90509250929050565b6000806000606084860312156123b457600080fd5b6123bd84612335565b92506123cb60208501612335565b9150604084013590509250925092565b600080600080608085870312156123f157600080fd5b6123fa85612335565b935061240860208601612335565b925060408501359150606085013567ffffffffffffffff81111561242b57600080fd5b8501601f8101871361243c57600080fd5b61244b878235602084016122bf565b91505092959194509250565b6000806040838503121561246a57600080fd5b61247383612335565b91506020830135801515811461248857600080fd5b809150509250929050565b600080604083850312156124a657600080fd5b6124af83612335565b9150602083013567ffffffffffffffff8111156124cb57600080fd5b8301601f810185136124dc57600080fd5b6124eb858235602084016122bf565b9150509250929050565b6000806040838503121561250857600080fd5b61251183612335565b946020939093013593505050565b60006020828403121561253157600080fd5b5035919050565b6000806040838503121561254b57600080fd5b8235915061239660208401612335565b6000806040838503121561256e57600080fd5b50508035926020909101359150565b60006020828403121561258f57600080fd5b8135610b70816128f7565b6000602082840312156125ac57600080fd5b8151610b70816128f7565b600081518084526125cf8160208601602086016127dc565b601f01601f19169290920160200192915050565b600083516125f58184602088016127dc565b8351908301906126098183602088016127dc565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161264a8160178501602088016127dc565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161267b8160288401602088016127dc565b01602801949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126ba908301846125b7565b9695505050505050565b602081526000610b7060208301846125b7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561278d5761278d612889565b500190565b6000826127a1576127a161289f565b500490565b60008160001904831182151516156127c0576127c0612889565b500290565b6000828210156127d7576127d7612889565b500390565b60005b838110156127f75781810151838201526020016127df565b83811115610ca65750506000910152565b60008161281757612817612889565b506000190190565b600181811c9082168061283357607f821691505b6020821081141561285457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561286e5761286e612889565b5060010190565b6000826128845761288461289f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461092057600080fdfea26469706673582212205b5bcfd3df226aab1600d69e79be3e1af735a29971e3f880894070f4742b05f664736f6c63430008070033

Deployed Bytecode Sourcemap

74326:4998:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77418:254;;;;;;:::i;:::-;;:::i;:::-;;;7208:14:1;;7201:22;7183:41;;7171:2;7156:18;77418:254:0;;;;;;;;21987:100;;;:::i;:::-;;;;;;;:::i;23546:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6506:32:1;;;6488:51;;6476:2;6461:18;23546:221:0;6342:203:1;23069:411:0;;;;;;:::i;:::-;;:::i;:::-;;35790:113;35878:10;:17;35790:113;;;7381:25:1;;;7369:2;7354:18;35790:113:0;7235:177:1;24436:339:0;;;;;;:::i;:::-;;:::i;53445:123::-;;;;;;:::i;:::-;53511:7;53538:12;;;;;;;;;;:22;;;;53445:123;71082:196;;;;;;:::i;:::-;;:::i;35458:256::-;;;;;;:::i;:::-;;:::i;71667:205::-;;;;;;:::i;:::-;;:::i;76877:222::-;;;:::i;24846:185::-;;;;;;:::i;:::-;;:::i;44992:245::-;;;;;;:::i;:::-;;:::i;35980:233::-;;;;;;:::i;:::-;;:::i;42404:86::-;42475:7;;;;42404:86;;21681:239;;;;;;:::i;:::-;;:::i;21411:208::-;;;;;;:::i;:::-;;:::i;76442:216::-;;;:::i;70537:145::-;;;;;;:::i;:::-;;:::i;52330:139::-;;;;;;:::i;:::-;;:::i;22156:104::-;;;:::i;51421:49::-;;51466:4;51421:49;;23839:295;;;;;;:::i;:::-;;:::i;25102:328::-;;;;;;:::i;:::-;;:::i;77743:749::-;;;;;;:::i;:::-;;:::i;70856:134::-;;;;;;:::i;:::-;;:::i;75689:538::-;;;;;;:::i;:::-;;:::i;74512:62::-;;74550:24;74512:62;;71371:201;;;;;;:::i;:::-;;:::i;74581:62::-;;74619:24;74581:62;;24205:164;;;;;;:::i;:::-;-1:-1:-1;;;;;24326:25:0;;;24302:4;24326:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24205:164;77418:254;77599:4;77628:36;77652:11;77628:23;:36::i;:::-;77621:43;77418:254;-1:-1:-1;;77418:254:0:o;21987:100::-;22041:13;22074:5;22067:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21987:100;:::o;23546:221::-;23622:7;23650:16;23658:7;23650;:16::i;:::-;23642:73;;;;-1:-1:-1;;;23642:73:0;;14541:2:1;23642:73:0;;;14523:21:1;14580:2;14560:18;;;14553:30;14619:34;14599:18;;;14592:62;-1:-1:-1;;;14670:18:1;;;14663:42;14722:19;;23642:73:0;;;;;;;;;-1:-1:-1;23735:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23735:24:0;;23546:221::o;23069:411::-;23150:13;23166:23;23181:7;23166:14;:23::i;:::-;23150:39;;23214:5;-1:-1:-1;;;;;23208:11:0;:2;-1:-1:-1;;;;;23208:11:0;;;23200:57;;;;-1:-1:-1;;;23200:57:0;;15780:2:1;23200:57:0;;;15762:21:1;15819:2;15799:18;;;15792:30;15858:34;15838:18;;;15831:62;-1:-1:-1;;;15909:18:1;;;15902:31;15950:19;;23200:57:0;15578:397:1;23200:57:0;16446:10;-1:-1:-1;;;;;23292:21:0;;;;:62;;-1:-1:-1;23317:37:0;23334:5;16446:10;24205:164;:::i;23317:37::-;23270:168;;;;-1:-1:-1;;;23270:168:0;;12101:2:1;23270:168:0;;;12083:21:1;12140:2;12120:18;;;12113:30;12179:34;12159:18;;;12152:62;12250:26;12230:18;;;12223:54;12294:19;;23270:168:0;11899:420:1;23270:168:0;23451:21;23460:2;23464:7;23451:8;:21::i;:::-;23139:341;23069:411;;:::o;24436:339::-;24631:41;16446:10;24650:12;24664:7;24631:18;:41::i;:::-;24623:103;;;;-1:-1:-1;;;24623:103:0;;;;;;;:::i;:::-;24739:28;24749:4;24755:2;24759:7;24739:9;:28::i;71082:196::-;71198:30;71214:4;71220:7;71198:15;:30::i;:::-;71239:18;;;;:12;:18;;;;;:31;;71262:7;71239:22;:31::i;35458:256::-;35555:7;35591:23;35608:5;35591:16;:23::i;:::-;35583:5;:31;35575:87;;;;-1:-1:-1;;;35575:87:0;;8965:2:1;35575:87:0;;;8947:21:1;9004:2;8984:18;;;8977:30;9043:34;9023:18;;;9016:62;-1:-1:-1;;;9094:18:1;;;9087:41;9145:19;;35575:87:0;8763:407:1;35575:87:0;-1:-1:-1;;;;;;35680:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35458:256::o;71667:205::-;71786:33;71805:4;71811:7;71786:18;:33::i;:::-;71830:18;;;;:12;:18;;;;;:34;;71856:7;71830:25;:34::i;76877:222::-;76944:34;74619:24;16446:10;52330:139;:::i;76944:34::-;76922:148;;;;;-1:-1:-1;;;76922:148:0;;17860:2:1;76922:148:0;;;17842:21:1;17879:18;;;17872:30;;;;17938:34;17918:18;;;17911:62;18009:34;17989:18;;;17982:62;18061:19;;76922:148:0;17658:428:1;76922:148:0;77081:10;:8;:10::i;:::-;76877:222::o;24846:185::-;24984:39;25001:4;25007:2;25011:7;24984:39;;;;;;;;;;;;:16;:39::i;44992:245::-;45110:41;16446:10;45129:12;16366:98;45110:41;45102:102;;;;-1:-1:-1;;;45102:102:0;;17443:2:1;45102:102:0;;;17425:21:1;17482:2;17462:18;;;17455:30;17521:34;17501:18;;;17494:62;-1:-1:-1;;;17572:18:1;;;17565:46;17628:19;;45102:102:0;17241:412:1;45102:102:0;45215:14;45221:7;45215:5;:14::i;:::-;44992:245;:::o;35980:233::-;36055:7;36091:30;35878:10;:17;;35790:113;36091:30;36083:5;:38;36075:95;;;;-1:-1:-1;;;36075:95:0;;16600:2:1;36075:95:0;;;16582:21:1;16639:2;16619:18;;;16612:30;16678:34;16658:18;;;16651:62;-1:-1:-1;;;16729:18:1;;;16722:42;16781:19;;36075:95:0;16398:408:1;36075:95:0;36188:10;36199:5;36188:17;;;;;;;;:::i;:::-;;;;;;;;;36181:24;;35980:233;;;:::o;21681:239::-;21753:7;21789:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21789:16:0;21824:19;21816:73;;;;-1:-1:-1;;;21816:73:0;;12937:2:1;21816:73:0;;;12919:21:1;12976:2;12956:18;;;12949:30;13015:34;12995:18;;;12988:62;-1:-1:-1;;;13066:18:1;;;13059:39;13115:19;;21816:73:0;12735:405:1;21411:208:0;21483:7;-1:-1:-1;;;;;21511:19:0;;21503:74;;;;-1:-1:-1;;;21503:74:0;;12526:2:1;21503:74:0;;;12508:21:1;12565:2;12545:18;;;12538:30;12604:34;12584:18;;;12577:62;-1:-1:-1;;;12655:18:1;;;12648:40;12705:19;;21503:74:0;12324:406:1;21503:74:0;-1:-1:-1;;;;;;21595:16:0;;;;;:9;:16;;;;;;;21411:208::o;76442:216::-;76507:34;74619:24;16446:10;52330:139;:::i;76507:34::-;76485:146;;;;-1:-1:-1;;;76485:146:0;;10153:2:1;76485:146:0;;;10135:21:1;10192:2;10172:18;;;10165:30;10231:34;10211:18;;;10204:62;10302:32;10282:18;;;10275:60;10352:19;;76485:146:0;9951:426:1;76485:146:0;76642:8;:6;:8::i;70537:145::-;70619:7;70646:18;;;:12;:18;;;;;:28;;70668:5;70646:21;:28::i;:::-;70639:35;70537:145;-1:-1:-1;;;70537:145:0:o;52330:139::-;52408:4;52432:12;;;;;;;;;;;-1:-1:-1;;;;;52432:29:0;;;;;;;;;;;;;;;52330:139::o;22156:104::-;22212:13;22245:7;22238:14;;;;;:::i;23839:295::-;-1:-1:-1;;;;;23942:24:0;;16446:10;23942:24;;23934:62;;;;-1:-1:-1;;;23934:62:0;;10989:2:1;23934:62:0;;;10971:21:1;11028:2;11008:18;;;11001:30;11067:27;11047:18;;;11040:55;11112:18;;23934:62:0;10787:349:1;23934:62:0;16446:10;24009:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24009:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24009:53:0;;;;;;;;;;24078:48;;7183:41:1;;;24009:42:0;;16446:10;24078:48;;7156:18:1;24078:48:0;;;;;;;23839:295;;:::o;25102:328::-;25277:41;16446:10;25310:7;25277:18;:41::i;:::-;25269:103;;;;-1:-1:-1;;;25269:103:0;;;;;;;:::i;:::-;25383:39;25397:4;25403:2;25407:7;25416:5;25383:13;:39::i;:::-;25102:328;;;;:::o;77743:749::-;77844:13;77897:16;77905:7;77897;:16::i;:::-;77875:115;;;;-1:-1:-1;;;77875:115:0;;14123:2:1;77875:115:0;;;14105:21:1;14162:2;14142:18;;;14135:30;14201:34;14181:18;;;14174:62;-1:-1:-1;;;14252:18:1;;;14245:47;14309:19;;77875:115:0;13921:413:1;77875:115:0;78003:23;78029:19;;;:10;:19;;;;;78003:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78059:18;78080:10;22990:9;;;;;;;;;-1:-1:-1;22990:9:0;;;22913:94;78080:10;78059:31;;78172:4;78166:18;78188:1;78166:23;78162:72;;;-1:-1:-1;78213:9:0;77743:749;-1:-1:-1;;77743:749:0:o;78162:72::-;78338:23;;:27;78334:108;;78413:4;78419:9;78396:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78382:48;;;;77743:749;;;:::o;78334:108::-;78461:23;78476:7;78461:14;:23::i;:::-;78454:30;77743:749;-1:-1:-1;;;;77743:749:0:o;70856:134::-;70928:7;70955:18;;;:12;:18;;;;;:27;;:25;:27::i;75689:538::-;75779:34;74550:24;16446:10;52330:139;:::i;75779:34::-;75757:145;;;;-1:-1:-1;;;75757:145:0;;17013:2:1;75757:145:0;;;16995:21:1;17052:2;17032:18;;;17025:30;17091:34;17071:18;;;17064:62;17162:31;17142:18;;;17135:59;17211:19;;75757:145:0;16811:425:1;75757:145:0;76067:15;76085:25;:15;73084:14;;72992:114;76085:25;76067:43;;76121:18;76127:2;76131:7;76121:5;:18::i;:::-;76150:31;76163:7;76172:8;76150:12;:31::i;:::-;76192:27;:15;73203:19;;73221:1;73203:19;;;73114:127;71371:201;71488:31;71505:4;71511:7;71488:16;:31::i;55679:112::-;55758:25;55769:4;55775:7;55758:10;:25::i;:::-;55679:112;;:::o;64494:152::-;64564:4;64588:50;64593:3;-1:-1:-1;;;;;64613:23:0;;64588:4;:50::i;35150:224::-;35252:4;-1:-1:-1;;;;;;35276:50:0;;-1:-1:-1;;;35276:50:0;;:90;;;35330:36;35354:11;35330:23;:36::i;26940:127::-;27005:4;27029:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27029:16:0;:30;;;26940:127::o;30922:174::-;30997:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30997:29:0;-1:-1:-1;;;;;30997:29:0;;;;;;;;:24;;31051:23;30997:24;31051:14;:23::i;:::-;-1:-1:-1;;;;;31042:46:0;;;;;;;;;;;30922:174;;:::o;27234:348::-;27327:4;27352:16;27360:7;27352;:16::i;:::-;27344:73;;;;-1:-1:-1;;;27344:73:0;;11343:2:1;27344:73:0;;;11325:21:1;11382:2;11362:18;;;11355:30;11421:34;11401:18;;;11394:62;-1:-1:-1;;;11472:18:1;;;11465:42;11524:19;;27344:73:0;11141:408:1;27344:73:0;27428:13;27444:23;27459:7;27444:14;:23::i;:::-;27428:39;;27497:5;-1:-1:-1;;;;;27486:16:0;:7;-1:-1:-1;;;;;27486:16:0;;:51;;;;27530:7;-1:-1:-1;;;;;27506:31:0;:20;27518:7;27506:11;:20::i;:::-;-1:-1:-1;;;;;27506:31:0;;27486:51;:87;;;-1:-1:-1;;;;;;24326:25:0;;;24302:4;24326:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27541:32;24205:164;30226:578;30385:4;-1:-1:-1;;;;;30358:31:0;:23;30373:7;30358:14;:23::i;:::-;-1:-1:-1;;;;;30358:31:0;;30350:85;;;;-1:-1:-1;;;30350:85:0;;14954:2:1;30350:85:0;;;14936:21:1;14993:2;14973:18;;;14966:30;15032:34;15012:18;;;15005:62;-1:-1:-1;;;15083:18:1;;;15076:39;15132:19;;30350:85:0;14752:405:1;30350:85:0;-1:-1:-1;;;;;30454:16:0;;30446:65;;;;-1:-1:-1;;;30446:65:0;;10584:2:1;30446:65:0;;;10566:21:1;10623:2;10603:18;;;10596:30;10662:34;10642:18;;;10635:62;-1:-1:-1;;;10713:18:1;;;10706:34;10757:19;;30446:65:0;10382:400:1;30446:65:0;30524:39;30545:4;30551:2;30555:7;30524:20;:39::i;:::-;30628:29;30645:1;30649:7;30628:8;:29::i;:::-;-1:-1:-1;;;;;30670:15:0;;;;;;:9;:15;;;;;:20;;30689:1;;30670:15;:20;;30689:1;;30670:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30701:13:0;;;;;;:9;:13;;;;;:18;;30718:1;;30701:13;:18;;30718:1;;30701:18;:::i;:::-;;;;-1:-1:-1;;30730:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30730:21:0;-1:-1:-1;;;;;30730:21:0;;;;;;;;;30769:27;;30730:16;;30769:27;;;;;;;30226:578;;;:::o;53830:147::-;53511:7;53538:12;;;;;;;;;;:22;;;51912:30;51923:4;16446:10;51912;:30::i;:::-;53944:25:::1;53955:4;53961:7;53944:10;:25::i;54878:218::-:0;-1:-1:-1;;;;;54974:23:0;;16446:10;54974:23;54966:83;;;;-1:-1:-1;;;54966:83:0;;18293:2:1;54966:83:0;;;18275:21:1;18332:2;18312:18;;;18305:30;18371:34;18351:18;;;18344:62;-1:-1:-1;;;18422:18:1;;;18415:45;18477:19;;54966:83:0;18091:411:1;54966:83:0;55062:26;55074:4;55080:7;55062:11;:26::i;64822:158::-;64895:4;64919:53;64927:3;-1:-1:-1;;;;;64947:23:0;;64919:7;:53::i;43463:120::-;42475:7;;;;42999:41;;;;-1:-1:-1;;;42999:41:0;;8616:2:1;42999:41:0;;;8598:21:1;8655:2;8635:18;;;8628:30;-1:-1:-1;;;8674:18:1;;;8667:50;8734:18;;42999:41:0;8414:344:1;42999:41:0;43522:7:::1;:15:::0;;-1:-1:-1;;43522:15:0::1;::::0;;43553:22:::1;16446:10:::0;43562:12:::1;43553:22;::::0;-1:-1:-1;;;;;6506:32:1;;;6488:51;;6476:2;6461:18;43553:22:0::1;;;;;;;43463:120::o:0;79123:198::-;79184:20;79196:7;79184:11;:20::i;:::-;79227:19;;;;:10;:19;;;;;79221:33;;;;;:::i;:::-;:38;;-1:-1:-1;79217:97:0;;79283:19;;;;:10;:19;;;;;79276:26;;;:::i;43204:118::-;42475:7;;;;42729:9;42721:38;;;;-1:-1:-1;;;42721:38:0;;11756:2:1;42721:38:0;;;11738:21:1;11795:2;11775:18;;;11768:30;-1:-1:-1;;;11814:18:1;;;11807:46;11870:18;;42721:38:0;11554:340:1;42721:38:0;43264:7:::1;:14:::0;;-1:-1:-1;;43264:14:0::1;43274:4;43264:14;::::0;;43294:20:::1;43301:12;16446:10:::0;;16366:98;65790:158;65864:7;65915:22;65919:3;65931:5;65915:3;:22::i;26312:315::-;26469:28;26479:4;26485:2;26489:7;26469:9;:28::i;:::-;26516:48;26539:4;26545:2;26549:7;26558:5;26516:22;:48::i;:::-;26508:111;;;;-1:-1:-1;;;26508:111:0;;;;;;;:::i;22331:334::-;22404:13;22438:16;22446:7;22438;:16::i;:::-;22430:76;;;;-1:-1:-1;;;22430:76:0;;15364:2:1;22430:76:0;;;15346:21:1;15403:2;15383:18;;;15376:30;15442:34;15422:18;;;15415:62;-1:-1:-1;;;15493:18:1;;;15486:45;15548:19;;22430:76:0;15162:411:1;22430:76:0;22519:21;22543:10;22990:9;;;;;;;;;-1:-1:-1;22990:9:0;;;22913:94;22543:10;22519:34;;22595:1;22577:7;22571:21;:25;:86;;;;;;;;;;;;;;;;;22623:7;22632:18;:7;:16;:18::i;:::-;22606:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22564:93;22331:334;-1:-1:-1;;;22331:334:0:o;65319:117::-;65382:7;65409:19;65417:3;60803:18;;60720:109;28918:382;-1:-1:-1;;;;;28998:16:0;;28990:61;;;;-1:-1:-1;;;28990:61:0;;13762:2:1;28990:61:0;;;13744:21:1;;;13781:18;;;13774:30;13840:34;13820:18;;;13813:62;13892:18;;28990:61:0;13560:356:1;28990:61:0;29071:16;29079:7;29071;:16::i;:::-;29070:17;29062:58;;;;-1:-1:-1;;;29062:58:0;;9796:2:1;29062:58:0;;;9778:21:1;9835:2;9815:18;;;9808:30;9874;9854:18;;;9847:58;9922:18;;29062:58:0;9594:352:1;29062:58:0;29133:45;29162:1;29166:2;29170:7;29133:20;:45::i;:::-;-1:-1:-1;;;;;29191:13:0;;;;;;:9;:13;;;;;:18;;29208:1;;29191:13;:18;;29208:1;;29191:18;:::i;:::-;;;;-1:-1:-1;;29220:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29220:21:0;-1:-1:-1;;;;;29220:21:0;;;;;;;;29259:33;;29220:16;;;29259:33;;29220:16;;29259:33;28918:382;;:::o;78648:246::-;78754:16;78762:7;78754;:16::i;:::-;78732:112;;;;-1:-1:-1;;;78732:112:0;;13347:2:1;78732:112:0;;;13329:21:1;13386:2;13366:18;;;13359:30;13425:34;13405:18;;;13398:62;-1:-1:-1;;;13476:18:1;;;13469:44;13530:19;;78732:112:0;13145:410:1;78732:112:0;78855:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;54222:149::-;53511:7;53538:12;;;;;;;;;;:22;;;51912:30;51923:4;16446:10;51912;:30::i;:::-;54337:26:::1;54349:4;54355:7;54337:11;:26::i;56182:229::-:0;56257:22;56265:4;56271:7;56257;:22::i;:::-;56252:152;;56296:6;:12;;;;;;;;;;;-1:-1:-1;;;;;56296:29:0;;;;;;;;;:36;;-1:-1:-1;;56296:36:0;56328:4;56296:36;;;56379:12;16446:10;;16366:98;56379:12;-1:-1:-1;;;;;56352:40:0;56370:7;-1:-1:-1;;;;;56352:40:0;56364:4;56352:40;;;;;;;;;;56182:229;;:::o;58409:414::-;58472:4;60602:19;;;:12;;;:19;;;;;;58489:327;;-1:-1:-1;58532:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;58715:18;;58693:19;;;:12;;;:19;;;;;;:40;;;;58748:11;;58489:327;-1:-1:-1;58799:5:0;58792:12;;21042:305;21144:4;-1:-1:-1;;;;;;21181:40:0;;-1:-1:-1;;;21181:40:0;;:105;;-1:-1:-1;;;;;;;21238:48:0;;-1:-1:-1;;;21238:48:0;21181:105;:158;;;;21303:36;21327:11;21303:23;:36::i;77107:239::-;77293:45;77320:4;77326:2;77330:7;77293:26;:45::i;52759:497::-;52840:22;52848:4;52854:7;52840;:22::i;:::-;52835:414;;53028:41;53056:7;-1:-1:-1;;;;;53028:41:0;53066:2;53028:19;:41::i;:::-;53142:38;53170:4;53177:2;53142:19;:38::i;:::-;52933:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;52933:270:0;;;;;;;;;;-1:-1:-1;;;52879:358:0;;;;;;;:::i;56419:230::-;56494:22;56502:4;56508:7;56494;:22::i;:::-;56490:152;;;56565:5;56533:12;;;;;;;;;;;-1:-1:-1;;;;;56533:29:0;;;;;;;;;;:37;;-1:-1:-1;;56533:37:0;;;56590:40;16446:10;;56533:12;;56590:40;;56565:5;56590:40;56419:230;;:::o;58999:1420::-;59065:4;59204:19;;;:12;;;:19;;;;;;59240:15;;59236:1176;;59615:21;59639:14;59652:1;59639:10;:14;:::i;:::-;59688:18;;59615:38;;-1:-1:-1;59668:17:0;;59688:22;;59709:1;;59688:22;:::i;:::-;59668:42;;59744:13;59731:9;:26;59727:405;;59778:17;59798:3;:11;;59810:9;59798:22;;;;;;;;:::i;:::-;;;;;;;;;59778:42;;59952:9;59923:3;:11;;59935:13;59923:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;60037:23;;;:12;;;:23;;;;;:36;;;59727:405;60213:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;60308:3;:12;;:19;60321:5;60308:19;;;;;;;;;;;60301:26;;;60351:4;60344:11;;;;;;;59236:1176;60395:5;60388:12;;;;;29529:360;29589:13;29605:23;29620:7;29605:14;:23::i;:::-;29589:39;;29641:48;29662:5;29677:1;29681:7;29641:20;:48::i;:::-;29730:29;29747:1;29751:7;29730:8;:29::i;:::-;-1:-1:-1;;;;;29772:16:0;;;;;;:9;:16;;;;;:21;;29792:1;;29772:16;:21;;29792:1;;29772:21;:::i;:::-;;;;-1:-1:-1;;29811:16:0;;;;:7;:16;;;;;;29804:23;;-1:-1:-1;;;;;;29804:23:0;;;29845:36;29819:7;;29811:16;-1:-1:-1;;;;;29845:36:0;;;;;29811:16;;29845:36;29578:311;29529:360;:::o;61183:120::-;61250:7;61277:3;:11;;61289:5;61277:18;;;;;;;;:::i;:::-;;;;;;;;;61270:25;;61183:120;;;;:::o;31661:799::-;31816:4;-1:-1:-1;;;;;31837:13:0;;8699:20;8747:8;31833:620;;31873:72;;-1:-1:-1;;;31873:72:0;;-1:-1:-1;;;;;31873:36:0;;;;;:72;;16446:10;;31924:4;;31930:7;;31939:5;;31873:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31873:72:0;;;;;;;;-1:-1:-1;;31873:72:0;;;;;;;;;;;;:::i;:::-;;;31869:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32115:13:0;;32111:272;;32158:60;;-1:-1:-1;;;32158:60:0;;;;;;;:::i;32111:272::-;32333:6;32327:13;32318:6;32314:2;32310:15;32303:38;31869:529;-1:-1:-1;;;;;;31996:51:0;-1:-1:-1;;;31996:51:0;;-1:-1:-1;31989:58:0;;31833:620;-1:-1:-1;32437:4:0;31661:799;;;;;;:::o;16925:723::-;16981:13;17202:10;17198:53;;-1:-1:-1;;17229:10:0;;;;;;;;;;;;-1:-1:-1;;;17229:10:0;;;;;16925:723::o;17198:53::-;17276:5;17261:12;17317:78;17324:9;;17317:78;;17350:8;;;;:::i;:::-;;-1:-1:-1;17373:10:0;;-1:-1:-1;17381:2:0;17373:10;;:::i;:::-;;;17317:78;;;17405:19;17437:6;17427:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17427:17:0;;17405:39;;17455:154;17462:10;;17455:154;;17489:11;17499:1;17489:11;;:::i;:::-;;-1:-1:-1;17558:10:0;17566:2;17558:5;:10;:::i;:::-;17545:24;;:2;:24;:::i;:::-;17532:39;;17515:6;17522;17515:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17515:56:0;;;;;;;;-1:-1:-1;17586:11:0;17595:2;17586:11;;:::i;:::-;;;17455:154;;69724:214;69809:4;-1:-1:-1;;;;;;69833:57:0;;-1:-1:-1;;;69833:57:0;;:97;;;69894:36;69918:11;69894:23;:36::i;44221:275::-;44365:45;44392:4;44398:2;44402:7;44365:26;:45::i;:::-;42475:7;;;;44431:9;44423:65;;;;-1:-1:-1;;;44423:65:0;;8204:2:1;44423:65:0;;;8186:21:1;8243:2;8223:18;;;8216:30;8282:34;8262:18;;;8255:62;-1:-1:-1;;;8333:18:1;;;8326:41;8384:19;;44423:65:0;8002:407:1;18226:451:0;18301:13;18327:19;18359:10;18363:6;18359:1;:10;:::i;:::-;:14;;18372:1;18359:14;:::i;:::-;18349:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18349:25:0;;18327:47;;-1:-1:-1;;;18385:6:0;18392:1;18385:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;18385:15:0;;;;;;;;;-1:-1:-1;;;18411:6:0;18418:1;18411:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;18411:15:0;;;;;;;;-1:-1:-1;18442:9:0;18454:10;18458:6;18454:1;:10;:::i;:::-;:14;;18467:1;18454:14;:::i;:::-;18442:26;;18437:135;18474:1;18470;:5;18437:135;;;-1:-1:-1;;;18522:5:0;18530:3;18522:11;18509:25;;;;;;;:::i;:::-;;;;18497:6;18504:1;18497:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;18497:37:0;;;;;;;;-1:-1:-1;18559:1:0;18549:11;;;;;18477:3;;;:::i;:::-;;;18437:135;;;-1:-1:-1;18590:10:0;;18582:55;;;;-1:-1:-1;;;18582:55:0;;7843:2:1;18582:55:0;;;7825:21:1;;;7862:18;;;7855:30;7921:34;7901:18;;;7894:62;7973:18;;18582:55:0;7641:356:1;52034:204:0;52119:4;-1:-1:-1;;;;;;52143:47:0;;-1:-1:-1;;;52143:47:0;;:87;;-1:-1:-1;;;;;;;;;;19623:40:0;;;52194:36;19514:157;36826:589;-1:-1:-1;;;;;37032:18:0;;37028:187;;37067:40;37099:7;38242:10;:17;;38215:24;;;;:15;:24;;;;;:44;;;38270:24;;;;;;;;;;;;38138:164;37067:40;37028:187;;;37137:2;-1:-1:-1;;;;;37129:10:0;:4;-1:-1:-1;;;;;37129:10:0;;37125:90;;37156:47;37189:4;37195:7;37156:32;:47::i;:::-;-1:-1:-1;;;;;37229:16:0;;37225:183;;37262:45;37299:7;37262:36;:45::i;37225:183::-;37335:4;-1:-1:-1;;;;;37329:10:0;:2;-1:-1:-1;;;;;37329:10:0;;37325:83;;37356:40;37384:2;37388:7;37356:27;:40::i;38929:988::-;39195:22;39245:1;39220:22;39237:4;39220:16;:22::i;:::-;:26;;;;:::i;:::-;39257:18;39278:26;;;:17;:26;;;;;;39195:51;;-1:-1:-1;39411:28:0;;;39407:328;;-1:-1:-1;;;;;39478:18:0;;39456:19;39478:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39529:30;;;;;;:44;;;39646:30;;:17;:30;;;;;:43;;;39407:328;-1:-1:-1;39831:26:0;;;;:17;:26;;;;;;;;39824:33;;;-1:-1:-1;;;;;39875:18:0;;;;;:12;:18;;;;;:34;;;;;;;39868:41;38929:988::o;40212:1079::-;40490:10;:17;40465:22;;40490:21;;40510:1;;40490:21;:::i;:::-;40522:18;40543:24;;;:15;:24;;;;;;40916:10;:26;;40465:46;;-1:-1:-1;40543:24:0;;40465:46;;40916:26;;;;;;:::i;:::-;;;;;;;;;40894:48;;40980:11;40955:10;40966;40955:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41060:28;;;:15;:28;;;;;;;:41;;;41232:24;;;;;41225:31;41267:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40283:1008;;;40212:1079;:::o;37716:221::-;37801:14;37818:20;37835:2;37818:16;:20::i;:::-;-1:-1:-1;;;;;37849:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37894:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37716:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::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:524::-;2718:6;2726;2779:2;2767:9;2758:7;2754:23;2750:32;2747:52;;;2795:1;2792;2785:12;2747:52;2818:29;2837:9;2818:29;:::i;:::-;2808:39;;2898:2;2887:9;2883:18;2870:32;2925:18;2917:6;2914:30;2911:50;;;2957:1;2954;2947:12;2911:50;2980:22;;3033:4;3025:13;;3021:27;-1:-1:-1;3011:55:1;;3062:1;3059;3052:12;3011:55;3085:73;3150:7;3145:2;3132:16;3127:2;3123;3119:11;3085:73;:::i;:::-;3075:83;;;2640:524;;;;;:::o;3169:254::-;3237:6;3245;3298:2;3286:9;3277:7;3273:23;3269:32;3266:52;;;3314:1;3311;3304:12;3266:52;3337:29;3356:9;3337:29;:::i;:::-;3327:39;3413:2;3398:18;;;;3385:32;;-1:-1:-1;;;3169:254:1:o;3428:180::-;3487:6;3540:2;3528:9;3519:7;3515:23;3511:32;3508:52;;;3556:1;3553;3546:12;3508:52;-1:-1:-1;3579:23:1;;3428:180;-1:-1:-1;3428:180:1:o;3613:254::-;3681:6;3689;3742:2;3730:9;3721:7;3717:23;3713:32;3710:52;;;3758:1;3755;3748:12;3710:52;3794:9;3781:23;3771:33;;3823:38;3857:2;3846:9;3842:18;3823:38;:::i;3872:248::-;3940:6;3948;4001:2;3989:9;3980:7;3976:23;3972:32;3969:52;;;4017:1;4014;4007:12;3969:52;-1:-1:-1;;4040:23:1;;;4110:2;4095:18;;;4082:32;;-1:-1:-1;3872:248:1:o;4125:245::-;4183:6;4236:2;4224:9;4215:7;4211:23;4207:32;4204:52;;;4252:1;4249;4242:12;4204:52;4291:9;4278:23;4310:30;4334:5;4310:30;:::i;4375:249::-;4444:6;4497:2;4485:9;4476:7;4472:23;4468:32;4465:52;;;4513:1;4510;4503:12;4465:52;4545:9;4539:16;4564:30;4588:5;4564:30;:::i;4814:257::-;4855:3;4893:5;4887:12;4920:6;4915:3;4908:19;4936:63;4992:6;4985:4;4980:3;4976:14;4969:4;4962:5;4958:16;4936:63;:::i;:::-;5053:2;5032:15;-1:-1:-1;;5028:29:1;5019:39;;;;5060:4;5015:50;;4814:257;-1:-1:-1;;4814:257:1:o;5076:470::-;5255:3;5293:6;5287:13;5309:53;5355:6;5350:3;5343:4;5335:6;5331:17;5309:53;:::i;:::-;5425:13;;5384:16;;;;5447:57;5425:13;5384:16;5481:4;5469:17;;5447:57;:::i;:::-;5520:20;;5076:470;-1:-1:-1;;;;5076:470:1:o;5551:786::-;5962:25;5957:3;5950:38;5932:3;6017:6;6011:13;6033:62;6088:6;6083:2;6078:3;6074:12;6067:4;6059:6;6055:17;6033:62;:::i;:::-;-1:-1:-1;;;6154:2:1;6114:16;;;6146:11;;;6139:40;6204:13;;6226:63;6204:13;6275:2;6267:11;;6260:4;6248:17;;6226:63;:::i;:::-;6309:17;6328:2;6305:26;;5551:786;-1:-1:-1;;;;5551:786:1:o;6550:488::-;-1:-1:-1;;;;;6819:15:1;;;6801:34;;6871:15;;6866:2;6851:18;;6844:43;6918:2;6903:18;;6896:34;;;6966:3;6961:2;6946:18;;6939:31;;;6744:4;;6987:45;;7012:19;;7004:6;6987:45;:::i;:::-;6979:53;6550:488;-1:-1:-1;;;;;;6550:488:1:o;7417:219::-;7566:2;7555:9;7548:21;7529:4;7586:44;7626:2;7615:9;7611:18;7603:6;7586:44;:::i;9175:414::-;9377:2;9359:21;;;9416:2;9396:18;;;9389:30;9455:34;9450:2;9435:18;;9428:62;-1:-1:-1;;;9521:2:1;9506:18;;9499:48;9579:3;9564:19;;9175:414::o;15980:413::-;16182:2;16164:21;;;16221:2;16201:18;;;16194:30;16260:34;16255:2;16240:18;;16233:62;-1:-1:-1;;;16326:2:1;16311:18;;16304:47;16383:3;16368:19;;15980:413::o;18689:128::-;18729:3;18760:1;18756:6;18753:1;18750:13;18747:39;;;18766:18;;:::i;:::-;-1:-1:-1;18802:9:1;;18689:128::o;18822:120::-;18862:1;18888;18878:35;;18893:18;;:::i;:::-;-1:-1:-1;18927:9:1;;18822:120::o;18947:168::-;18987:7;19053:1;19049;19045:6;19041:14;19038:1;19035:21;19030:1;19023:9;19016:17;19012:45;19009:71;;;19060:18;;:::i;:::-;-1:-1:-1;19100:9:1;;18947:168::o;19120:125::-;19160:4;19188:1;19185;19182:8;19179:34;;;19193:18;;:::i;:::-;-1:-1:-1;19230:9:1;;19120:125::o;19250:258::-;19322:1;19332:113;19346:6;19343:1;19340:13;19332:113;;;19422:11;;;19416:18;19403:11;;;19396:39;19368:2;19361:10;19332:113;;;19463:6;19460:1;19457:13;19454:48;;;-1:-1:-1;;19498:1:1;19480:16;;19473:27;19250:258::o;19513:136::-;19552:3;19580:5;19570:39;;19589:18;;:::i;:::-;-1:-1:-1;;;19625:18:1;;19513:136::o;19654:380::-;19733:1;19729:12;;;;19776;;;19797:61;;19851:4;19843:6;19839:17;19829:27;;19797:61;19904:2;19896:6;19893:14;19873:18;19870:38;19867:161;;;19950:10;19945:3;19941:20;19938:1;19931:31;19985:4;19982:1;19975:15;20013:4;20010:1;20003:15;19867:161;;19654:380;;;:::o;20039:135::-;20078:3;-1:-1:-1;;20099:17:1;;20096:43;;;20119:18;;:::i;:::-;-1:-1:-1;20166:1:1;20155:13;;20039:135::o;20179:112::-;20211:1;20237;20227:35;;20242:18;;:::i;:::-;-1:-1:-1;20276:9:1;;20179:112::o;20296:127::-;20357:10;20352:3;20348:20;20345:1;20338:31;20388:4;20385:1;20378:15;20412:4;20409:1;20402:15;20428:127;20489:10;20484:3;20480:20;20477:1;20470:31;20520:4;20517:1;20510:15;20544:4;20541:1;20534:15;20560:127;20621:10;20616:3;20612:20;20609:1;20602:31;20652:4;20649:1;20642:15;20676:4;20673:1;20666:15;20692:127;20753:10;20748:3;20744:20;20741:1;20734:31;20784:4;20781:1;20774:15;20808:4;20805:1;20798:15;20824:127;20885:10;20880:3;20876:20;20873:1;20866:31;20916:4;20913:1;20906:15;20940:4;20937:1;20930:15;20956:131;-1:-1:-1;;;;;;21030:32:1;;21020:43;;21010:71;;21077:1;21074;21067:12

Swarm Source

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