CRO Price: $0.08 (-2.19%)

Token

Laydy Ri (DDRI)

Overview

Max Total Supply

1,111 DDRI

Holders

452

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
LadyRi

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2022-04-13
*/

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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


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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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]


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

pragma solidity ^0.8.0;

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

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

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

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

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


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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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


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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

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

    /**
     * @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]


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

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 contracts/drops/LadyRi.sol


pragma solidity ^0.8.4;
contract LadyRi is Ownable, ERC721Enumerable {
    using Counters for Counters.Counter;
    Counters.Counter public _tokenIdCounter;
    uint16[] order;
    uint128 constant MAX_TOKENS = 1111;
    uint8 private currentChunkIndex;
    string baseURI = "ipfs://QmYPtVSAUa5HqcYJPnfTNLryvyFYnwSRCPyyfJxraXA2gT";

    constructor() ERC721("Laydy Ri", "DDRI") {
    }

    function getLen() public view returns(uint) {
        return order.length;
    }

    function setSequnceChunk(uint8 _chunkIndex, uint16[] calldata _chunk) public onlyOwner {
        require(currentChunkIndex <= _chunkIndex, "chunkIndex exists");
        if (_chunkIndex == 0) {
            order = _chunk;
        } else {
            uint len = _chunk.length;
            for(uint i = 0; i < len; i ++) {
                order.push(_chunk[i]);
            }
        }
        currentChunkIndex = _chunkIndex + 1;
    }


    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function airdropMint(address _sender, uint256 _amount) external onlyOwner{
        for (uint256 i = 0; i < _amount; i ++) {
            safeMint(_sender);
        }
    }
    
    function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
      require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");

      string memory _tokenURI = string(abi.encodePacked(baseURI, "/", Strings.toString(_tokenId), ".json"));

      return _tokenURI;
    }

   function safeMint(address _to) private {
        uint256 tokenId;
        
        tokenId = _tokenIdCounter.current();
        
        require(tokenId < MAX_TOKENS, "sold out!");
        _tokenIdCounter.increment();

        _safeMint(_to, order[tokenId]);
    } 

    function maxSupply() external pure returns (uint256) {
        return MAX_TOKENS;
    }
}

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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_tokenIdCounter","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"airdropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_chunkIndex","type":"uint8"},{"internalType":"uint16[]","name":"_chunk","type":"uint16[]"}],"name":"setSequnceChunk","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526035608081815290620021da60a03980516200002991600e9160209091019062000118565b503480156200003757600080fd5b50604051806040016040528060088152602001674c6179647920526960c01b815250604051806040016040528060048152602001634444524960e01b815250620000906200008a620000c460201b60201c565b620000c8565b8151620000a590600190602085019062000118565b508051620000bb90600290602084019062000118565b505050620001fb565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200012690620001be565b90600052602060002090601f0160209004810192826200014a576000855562000195565b82601f106200016557805160ff191683800117855562000195565b8280016001018555821562000195579182015b828111156200019557825182559160200191906001019062000178565b50620001a3929150620001a7565b5090565b5b80821115620001a35760008155600101620001a8565b600181811c90821680620001d357607f821691505b60208210811415620001f557634e487b7160e01b600052602260045260246000fd5b50919050565b611fcf806200020b6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806355f804b3116100de57806395d89b4111610097578063c87b56dd11610071578063c87b56dd1461030b578063d5abeb011461031e578063e985e9c514610326578063f2fde38b1461036257600080fd5b806395d89b41146102dd578063a22cb465146102e5578063b88d4fde146102f857600080fd5b806355f804b3146102815780636352211e1461029457806370a08231146102a7578063715018a6146102ba57806384c4bd4b146102c25780638da5cb5b146102cc57600080fd5b806323b872dd1161013057806323b872dd1461021a5780632f745c591461022d5780633b3c523a1461024057806342842e0e146102535780634a90be57146102665780634f6ccce71461026e57600080fd5b806301ffc9a71461017857806306fdde03146101a0578063081812fc146101b5578063095ea7b3146101e057806318160ddd146101f557806322ad067014610207575b600080fd5b61018b610186366004611ac9565b610375565b60405190151581526020015b60405180910390f35b6101a86103a0565b6040516101979190611d58565b6101c86101c3366004611b69565b610432565b6040516001600160a01b039091168152602001610197565b6101f36101ee366004611aa0565b6104cc565b005b6009545b604051908152602001610197565b6101f3610215366004611aa0565b6105e2565b6101f36102283660046119b2565b610632565b6101f961023b366004611aa0565b610663565b6101f361024e366004611b81565b6106f9565b6101f36102613660046119b2565b61083f565b600c546101f9565b6101f961027c366004611b69565b61085a565b6101f361028f366004611b01565b6108fb565b6101c86102a2366004611b69565b61093c565b6101f96102b536600461195f565b6109b3565b6101f3610a3a565b600b546101f99081565b6000546001600160a01b03166101c8565b6101a8610a70565b6101f36102f3366004611a66565b610a7f565b6101f36103063660046119ed565b610a8a565b6101a8610319366004611b69565b610ac2565b6104576101f9565b61018b610334366004611980565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101f361037036600461195f565b610b76565b60006001600160e01b0319821663780e9d6360e01b148061039a575061039a82610c11565b92915050565b6060600180546103af90611ed7565b80601f01602080910402602001604051908101604052809291908181526020018280546103db90611ed7565b80156104285780601f106103fd57610100808354040283529160200191610428565b820191906000526020600020905b81548152906001019060200180831161040b57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166104b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006104d78261093c565b9050806001600160a01b0316836001600160a01b031614156105455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104a7565b336001600160a01b038216148061056157506105618133610334565b6105d35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104a7565b6105dd8383610c61565b505050565b6000546001600160a01b0316331461060c5760405162461bcd60e51b81526004016104a790611dbd565b60005b818110156105dd5761062083610ccf565b8061062a81611f12565b91505061060f565b61063c3382610d73565b6106585760405162461bcd60e51b81526004016104a790611df2565b6105dd838383610e6a565b600061066e836109b3565b82106106d05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104a7565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b031633146107235760405162461bcd60e51b81526004016104a790611dbd565b600d5460ff8085169116111561076f5760405162461bcd60e51b81526020600482015260116024820152706368756e6b496e6465782065786973747360781b60448201526064016104a7565b60ff831661078957610783600c8383611797565b5061081b565b8060005b8181101561081857600c8484838181106107b757634e487b7160e01b600052603260045260246000fd5b90506020020160208101906107cc9190611b47565b81546001810183556000928352602090922060108304018054600f9093166002026101000a61ffff8181021990941692909316929092021790558061081081611f12565b91505061078d565b50505b610826836001611e5b565b600d805460ff191660ff92909216919091179055505050565b6105dd83838360405180602001604052806000815250610a8a565b600061086560095490565b82106108c85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104a7565b600982815481106108e957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000546001600160a01b031633146109255760405162461bcd60e51b81526004016104a790611dbd565b805161093890600e906020840190611844565b5050565b6000818152600360205260408120546001600160a01b03168061039a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104a7565b60006001600160a01b038216610a1e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104a7565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610a645760405162461bcd60e51b81526004016104a790611dbd565b610a6e6000611011565b565b6060600280546103af90611ed7565b610938338383611061565b610a943383610d73565b610ab05760405162461bcd60e51b81526004016104a790611df2565b610abc84848484611130565b50505050565b6000818152600360205260409020546060906001600160a01b0316610b415760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104a7565b6000600e610b4e84611163565b604051602001610b5f929190611c51565b60408051601f198184030181529190529392505050565b6000546001600160a01b03163314610ba05760405162461bcd60e51b81526004016104a790611dbd565b6001600160a01b038116610c055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a7565b610c0e81611011565b50565b60006001600160e01b031982166380ac58cd60e01b1480610c4257506001600160e01b03198216635b5e139f60e01b145b8061039a57506301ffc9a760e01b6001600160e01b031983161461039a565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c968261093c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610cda600b5490565b90506104578110610d195760405162461bcd60e51b8152602060048201526009602482015268736f6c64206f75742160b81b60448201526064016104a7565b610d27600b80546001019055565b61093882600c8381548110610d4c57634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff1661127d565b6000818152600360205260408120546001600160a01b0316610dec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104a7565b6000610df78361093c565b9050806001600160a01b0316846001600160a01b03161480610e325750836001600160a01b0316610e2784610432565b6001600160a01b0316145b80610e6257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e7d8261093c565b6001600160a01b031614610ee15760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016104a7565b6001600160a01b038216610f435760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104a7565b610f4e838383611297565b610f59600082610c61565b6001600160a01b0383166000908152600460205260408120805460019290610f82908490611e94565b90915550506001600160a01b0382166000908152600460205260408120805460019290610fb0908490611e43565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156110c35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104a7565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61113b848484610e6a565b6111478484848461134f565b610abc5760405162461bcd60e51b81526004016104a790611d6b565b6060816111875750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111b1578061119b81611f12565b91506111aa9050600a83611e80565b915061118b565b60008167ffffffffffffffff8111156111da57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611204576020820181803683370190505b5090505b8415610e6257611219600183611e94565b9150611226600a86611f2d565b611231906030611e43565b60f81b81838151811061125457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611276600a86611e80565b9450611208565b61093882826040518060200160405280600081525061145c565b6001600160a01b0383166112f2576112ed81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611315565b816001600160a01b0316836001600160a01b03161461131557611315838261148f565b6001600160a01b03821661132c576105dd8161152c565b826001600160a01b0316826001600160a01b0316146105dd576105dd8282611605565b60006001600160a01b0384163b1561145157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611393903390899088908890600401611d1b565b602060405180830381600087803b1580156113ad57600080fd5b505af19250505080156113dd575060408051601f3d908101601f191682019092526113da91810190611ae5565b60015b611437573d80801561140b576040519150601f19603f3d011682016040523d82523d6000602084013e611410565b606091505b50805161142f5760405162461bcd60e51b81526004016104a790611d6b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e62565b506001949350505050565b6114668383611649565b611473600084848461134f565b6105dd5760405162461bcd60e51b81526004016104a790611d6b565b6000600161149c846109b3565b6114a69190611e94565b6000838152600860205260409020549091508082146114f9576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061153e90600190611e94565b6000838152600a60205260408120546009805493945090928490811061157457634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600983815481106115a357634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806115e957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611610836109b3565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b03821661169f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104a7565b6000818152600360205260409020546001600160a01b0316156117045760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104a7565b61171060008383611297565b6001600160a01b0382166000908152600460205260408120805460019290611739908490611e43565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805482825590600052602060002090600f016010900481019282156118345791602002820160005b8382111561180457833561ffff1683826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026117c0565b80156118325782816101000a81549061ffff0219169055600201602081600101049283019260010302611804565b505b506118409291506118b8565b5090565b82805461185090611ed7565b90600052602060002090601f0160209004810192826118725760008555611834565b82601f1061188b57805160ff1916838001178555611834565b82800160010185558215611834579182015b8281111561183457825182559160200191906001019061189d565b5b8082111561184057600081556001016118b9565b600067ffffffffffffffff808411156118e8576118e8611f6d565b604051601f8501601f19908116603f0116810190828211818310171561191057611910611f6d565b8160405280935085815286868601111561192957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461195a57600080fd5b919050565b600060208284031215611970578081fd5b61197982611943565b9392505050565b60008060408385031215611992578081fd5b61199b83611943565b91506119a960208401611943565b90509250929050565b6000806000606084860312156119c6578081fd5b6119cf84611943565b92506119dd60208501611943565b9150604084013590509250925092565b60008060008060808587031215611a02578081fd5b611a0b85611943565b9350611a1960208601611943565b925060408501359150606085013567ffffffffffffffff811115611a3b578182fd5b8501601f81018713611a4b578182fd5b611a5a878235602084016118cd565b91505092959194509250565b60008060408385031215611a78578182fd5b611a8183611943565b915060208301358015158114611a95578182fd5b809150509250929050565b60008060408385031215611ab2578182fd5b611abb83611943565b946020939093013593505050565b600060208284031215611ada578081fd5b813561197981611f83565b600060208284031215611af6578081fd5b815161197981611f83565b600060208284031215611b12578081fd5b813567ffffffffffffffff811115611b28578182fd5b8201601f81018413611b38578182fd5b610e62848235602084016118cd565b600060208284031215611b58578081fd5b813561ffff81168114611979578182fd5b600060208284031215611b7a578081fd5b5035919050565b600080600060408486031215611b95578283fd5b833560ff81168114611ba5578384fd5b9250602084013567ffffffffffffffff80821115611bc1578384fd5b818601915086601f830112611bd4578384fd5b813581811115611be2578485fd5b8760208260051b8501011115611bf6578485fd5b6020830194508093505050509250925092565b60008151808452611c21816020860160208601611eab565b601f01601f19169290920160200192915050565b60008151611c47818560208601611eab565b9290920192915050565b600080845482600182811c915080831680611c6d57607f831692505b6020808410821415611c8d57634e487b7160e01b87526022600452602487fd5b818015611ca15760018114611cb257611cde565b60ff19861689528489019650611cde565b60008b815260209020885b86811015611cd65781548b820152908501908301611cbd565b505084890196505b505050505050611d12611d01611cfb83602f60f81b815260010190565b86611c35565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d4e90830184611c09565b9695505050505050565b6020815260006119796020830184611c09565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e5657611e56611f41565b500190565b600060ff821660ff84168060ff03821115611e7857611e78611f41565b019392505050565b600082611e8f57611e8f611f57565b500490565b600082821015611ea657611ea6611f41565b500390565b60005b83811015611ec6578181015183820152602001611eae565b83811115610abc5750506000910152565b600181811c90821680611eeb57607f821691505b60208210811415611f0c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f2657611f26611f41565b5060010190565b600082611f3c57611f3c611f57565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0e57600080fdfea26469706673582212209cdf8621edbab1474b78734a6699fdaad99c4ac5cfeec350b4218bdbe0ac639a64736f6c63430008040033697066733a2f2f516d595074565341556135487163594a506e66544e4c7279767946596e77535243507979664a7872615841326754

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806355f804b3116100de57806395d89b4111610097578063c87b56dd11610071578063c87b56dd1461030b578063d5abeb011461031e578063e985e9c514610326578063f2fde38b1461036257600080fd5b806395d89b41146102dd578063a22cb465146102e5578063b88d4fde146102f857600080fd5b806355f804b3146102815780636352211e1461029457806370a08231146102a7578063715018a6146102ba57806384c4bd4b146102c25780638da5cb5b146102cc57600080fd5b806323b872dd1161013057806323b872dd1461021a5780632f745c591461022d5780633b3c523a1461024057806342842e0e146102535780634a90be57146102665780634f6ccce71461026e57600080fd5b806301ffc9a71461017857806306fdde03146101a0578063081812fc146101b5578063095ea7b3146101e057806318160ddd146101f557806322ad067014610207575b600080fd5b61018b610186366004611ac9565b610375565b60405190151581526020015b60405180910390f35b6101a86103a0565b6040516101979190611d58565b6101c86101c3366004611b69565b610432565b6040516001600160a01b039091168152602001610197565b6101f36101ee366004611aa0565b6104cc565b005b6009545b604051908152602001610197565b6101f3610215366004611aa0565b6105e2565b6101f36102283660046119b2565b610632565b6101f961023b366004611aa0565b610663565b6101f361024e366004611b81565b6106f9565b6101f36102613660046119b2565b61083f565b600c546101f9565b6101f961027c366004611b69565b61085a565b6101f361028f366004611b01565b6108fb565b6101c86102a2366004611b69565b61093c565b6101f96102b536600461195f565b6109b3565b6101f3610a3a565b600b546101f99081565b6000546001600160a01b03166101c8565b6101a8610a70565b6101f36102f3366004611a66565b610a7f565b6101f36103063660046119ed565b610a8a565b6101a8610319366004611b69565b610ac2565b6104576101f9565b61018b610334366004611980565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101f361037036600461195f565b610b76565b60006001600160e01b0319821663780e9d6360e01b148061039a575061039a82610c11565b92915050565b6060600180546103af90611ed7565b80601f01602080910402602001604051908101604052809291908181526020018280546103db90611ed7565b80156104285780601f106103fd57610100808354040283529160200191610428565b820191906000526020600020905b81548152906001019060200180831161040b57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166104b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006104d78261093c565b9050806001600160a01b0316836001600160a01b031614156105455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104a7565b336001600160a01b038216148061056157506105618133610334565b6105d35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104a7565b6105dd8383610c61565b505050565b6000546001600160a01b0316331461060c5760405162461bcd60e51b81526004016104a790611dbd565b60005b818110156105dd5761062083610ccf565b8061062a81611f12565b91505061060f565b61063c3382610d73565b6106585760405162461bcd60e51b81526004016104a790611df2565b6105dd838383610e6a565b600061066e836109b3565b82106106d05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104a7565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b031633146107235760405162461bcd60e51b81526004016104a790611dbd565b600d5460ff8085169116111561076f5760405162461bcd60e51b81526020600482015260116024820152706368756e6b496e6465782065786973747360781b60448201526064016104a7565b60ff831661078957610783600c8383611797565b5061081b565b8060005b8181101561081857600c8484838181106107b757634e487b7160e01b600052603260045260246000fd5b90506020020160208101906107cc9190611b47565b81546001810183556000928352602090922060108304018054600f9093166002026101000a61ffff8181021990941692909316929092021790558061081081611f12565b91505061078d565b50505b610826836001611e5b565b600d805460ff191660ff92909216919091179055505050565b6105dd83838360405180602001604052806000815250610a8a565b600061086560095490565b82106108c85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104a7565b600982815481106108e957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000546001600160a01b031633146109255760405162461bcd60e51b81526004016104a790611dbd565b805161093890600e906020840190611844565b5050565b6000818152600360205260408120546001600160a01b03168061039a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104a7565b60006001600160a01b038216610a1e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104a7565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610a645760405162461bcd60e51b81526004016104a790611dbd565b610a6e6000611011565b565b6060600280546103af90611ed7565b610938338383611061565b610a943383610d73565b610ab05760405162461bcd60e51b81526004016104a790611df2565b610abc84848484611130565b50505050565b6000818152600360205260409020546060906001600160a01b0316610b415760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104a7565b6000600e610b4e84611163565b604051602001610b5f929190611c51565b60408051601f198184030181529190529392505050565b6000546001600160a01b03163314610ba05760405162461bcd60e51b81526004016104a790611dbd565b6001600160a01b038116610c055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a7565b610c0e81611011565b50565b60006001600160e01b031982166380ac58cd60e01b1480610c4257506001600160e01b03198216635b5e139f60e01b145b8061039a57506301ffc9a760e01b6001600160e01b031983161461039a565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c968261093c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610cda600b5490565b90506104578110610d195760405162461bcd60e51b8152602060048201526009602482015268736f6c64206f75742160b81b60448201526064016104a7565b610d27600b80546001019055565b61093882600c8381548110610d4c57634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff1661127d565b6000818152600360205260408120546001600160a01b0316610dec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104a7565b6000610df78361093c565b9050806001600160a01b0316846001600160a01b03161480610e325750836001600160a01b0316610e2784610432565b6001600160a01b0316145b80610e6257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e7d8261093c565b6001600160a01b031614610ee15760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016104a7565b6001600160a01b038216610f435760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104a7565b610f4e838383611297565b610f59600082610c61565b6001600160a01b0383166000908152600460205260408120805460019290610f82908490611e94565b90915550506001600160a01b0382166000908152600460205260408120805460019290610fb0908490611e43565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156110c35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104a7565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61113b848484610e6a565b6111478484848461134f565b610abc5760405162461bcd60e51b81526004016104a790611d6b565b6060816111875750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111b1578061119b81611f12565b91506111aa9050600a83611e80565b915061118b565b60008167ffffffffffffffff8111156111da57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611204576020820181803683370190505b5090505b8415610e6257611219600183611e94565b9150611226600a86611f2d565b611231906030611e43565b60f81b81838151811061125457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611276600a86611e80565b9450611208565b61093882826040518060200160405280600081525061145c565b6001600160a01b0383166112f2576112ed81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611315565b816001600160a01b0316836001600160a01b03161461131557611315838261148f565b6001600160a01b03821661132c576105dd8161152c565b826001600160a01b0316826001600160a01b0316146105dd576105dd8282611605565b60006001600160a01b0384163b1561145157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611393903390899088908890600401611d1b565b602060405180830381600087803b1580156113ad57600080fd5b505af19250505080156113dd575060408051601f3d908101601f191682019092526113da91810190611ae5565b60015b611437573d80801561140b576040519150601f19603f3d011682016040523d82523d6000602084013e611410565b606091505b50805161142f5760405162461bcd60e51b81526004016104a790611d6b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e62565b506001949350505050565b6114668383611649565b611473600084848461134f565b6105dd5760405162461bcd60e51b81526004016104a790611d6b565b6000600161149c846109b3565b6114a69190611e94565b6000838152600860205260409020549091508082146114f9576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061153e90600190611e94565b6000838152600a60205260408120546009805493945090928490811061157457634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600983815481106115a357634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806115e957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611610836109b3565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b03821661169f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104a7565b6000818152600360205260409020546001600160a01b0316156117045760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104a7565b61171060008383611297565b6001600160a01b0382166000908152600460205260408120805460019290611739908490611e43565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805482825590600052602060002090600f016010900481019282156118345791602002820160005b8382111561180457833561ffff1683826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026117c0565b80156118325782816101000a81549061ffff0219169055600201602081600101049283019260010302611804565b505b506118409291506118b8565b5090565b82805461185090611ed7565b90600052602060002090601f0160209004810192826118725760008555611834565b82601f1061188b57805160ff1916838001178555611834565b82800160010185558215611834579182015b8281111561183457825182559160200191906001019061189d565b5b8082111561184057600081556001016118b9565b600067ffffffffffffffff808411156118e8576118e8611f6d565b604051601f8501601f19908116603f0116810190828211818310171561191057611910611f6d565b8160405280935085815286868601111561192957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461195a57600080fd5b919050565b600060208284031215611970578081fd5b61197982611943565b9392505050565b60008060408385031215611992578081fd5b61199b83611943565b91506119a960208401611943565b90509250929050565b6000806000606084860312156119c6578081fd5b6119cf84611943565b92506119dd60208501611943565b9150604084013590509250925092565b60008060008060808587031215611a02578081fd5b611a0b85611943565b9350611a1960208601611943565b925060408501359150606085013567ffffffffffffffff811115611a3b578182fd5b8501601f81018713611a4b578182fd5b611a5a878235602084016118cd565b91505092959194509250565b60008060408385031215611a78578182fd5b611a8183611943565b915060208301358015158114611a95578182fd5b809150509250929050565b60008060408385031215611ab2578182fd5b611abb83611943565b946020939093013593505050565b600060208284031215611ada578081fd5b813561197981611f83565b600060208284031215611af6578081fd5b815161197981611f83565b600060208284031215611b12578081fd5b813567ffffffffffffffff811115611b28578182fd5b8201601f81018413611b38578182fd5b610e62848235602084016118cd565b600060208284031215611b58578081fd5b813561ffff81168114611979578182fd5b600060208284031215611b7a578081fd5b5035919050565b600080600060408486031215611b95578283fd5b833560ff81168114611ba5578384fd5b9250602084013567ffffffffffffffff80821115611bc1578384fd5b818601915086601f830112611bd4578384fd5b813581811115611be2578485fd5b8760208260051b8501011115611bf6578485fd5b6020830194508093505050509250925092565b60008151808452611c21816020860160208601611eab565b601f01601f19169290920160200192915050565b60008151611c47818560208601611eab565b9290920192915050565b600080845482600182811c915080831680611c6d57607f831692505b6020808410821415611c8d57634e487b7160e01b87526022600452602487fd5b818015611ca15760018114611cb257611cde565b60ff19861689528489019650611cde565b60008b815260209020885b86811015611cd65781548b820152908501908301611cbd565b505084890196505b505050505050611d12611d01611cfb83602f60f81b815260010190565b86611c35565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d4e90830184611c09565b9695505050505050565b6020815260006119796020830184611c09565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e5657611e56611f41565b500190565b600060ff821660ff84168060ff03821115611e7857611e78611f41565b019392505050565b600082611e8f57611e8f611f57565b500490565b600082821015611ea657611ea6611f41565b500390565b60005b83811015611ec6578181015183820152602001611eae565b83811115610abc5750506000910152565b600181811c90821680611eeb57607f821691505b60208210811415611f0c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f2657611f26611f41565b5060010190565b600082611f3c57611f3c611f57565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0e57600080fdfea26469706673582212209cdf8621edbab1474b78734a6699fdaad99c4ac5cfeec350b4218bdbe0ac639a64736f6c63430008040033

Deployed Bytecode Sourcemap

47146:1916:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40931:224;;;;;;:::i;:::-;;:::i;:::-;;;8323:14:1;;8316:22;8298:41;;8286:2;8271:18;40931:224:0;;;;;;;;26659:100;;;:::i;:::-;;;;;;;:::i;28218:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7621:32:1;;;7603:51;;7591:2;7576:18;28218:221:0;7558:102:1;27741:411:0;;;;;;:::i;:::-;;:::i;:::-;;41571:113;41659:10;:17;41571:113;;;16606:25:1;;;16594:2;16579:18;41571:113:0;16561:76:1;48177:174:0;;;;;;:::i;:::-;;:::i;28968:339::-;;;;;;:::i;:::-;;:::i;41239:256::-;;;;;;:::i;:::-;;:::i;47614:445::-;;;;;;:::i;:::-;;:::i;29378:185::-;;;;;;:::i;:::-;;:::i;47524:82::-;47586:5;:12;47524:82;;41761:233;;;;;;:::i;:::-;;:::i;48069:100::-;;;;;;:::i;:::-;;:::i;26353:239::-;;;;;;:::i;:::-;;:::i;26083:208::-;;;;;;:::i;:::-;;:::i;4155:103::-;;;:::i;47240:39::-;;;;;;;3504:87;3550:7;3577:6;-1:-1:-1;;;;;3577:6:0;3504:87;;26828:104;;;:::i;28511:155::-;;;;;;:::i;:::-;;:::i;29634:328::-;;;;;;:::i;:::-;;:::i;48363:318::-;;;;;;:::i;:::-;;:::i;48970:89::-;47337:4;48970:89;;28737:164;;;;;;:::i;:::-;-1:-1:-1;;;;;28858:25:0;;;28834:4;28858:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28737:164;4413:201;;;;;;:::i;:::-;;:::i;40931:224::-;41033:4;-1:-1:-1;;;;;;41057:50:0;;-1:-1:-1;;;41057:50:0;;:90;;;41111:36;41135:11;41111:23;:36::i;:::-;41050:97;40931:224;-1:-1:-1;;40931:224:0:o;26659:100::-;26713:13;26746:5;26739:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26659:100;:::o;28218:221::-;28294:7;31561:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31561:16:0;28314:73;;;;-1:-1:-1;;;28314:73:0;;13556:2:1;28314:73:0;;;13538:21:1;13595:2;13575:18;;;13568:30;13634:34;13614:18;;;13607:62;-1:-1:-1;;;13685:18:1;;;13678:42;13737:19;;28314:73:0;;;;;;;;;-1:-1:-1;28407:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28407:24:0;;28218:221::o;27741:411::-;27822:13;27838:23;27853:7;27838:14;:23::i;:::-;27822:39;;27886:5;-1:-1:-1;;;;;27880:11:0;:2;-1:-1:-1;;;;;27880:11:0;;;27872:57;;;;-1:-1:-1;;;27872:57:0;;14746:2:1;27872:57:0;;;14728:21:1;14785:2;14765:18;;;14758:30;14824:34;14804:18;;;14797:62;-1:-1:-1;;;14875:18:1;;;14868:31;14916:19;;27872:57:0;14718:223:1;27872:57:0;2302:10;-1:-1:-1;;;;;27964:21:0;;;;:62;;-1:-1:-1;27989:37:0;28006:5;2302:10;28737:164;:::i;27989:37::-;27942:168;;;;-1:-1:-1;;;27942:168:0;;11949:2:1;27942:168:0;;;11931:21:1;11988:2;11968:18;;;11961:30;12027:34;12007:18;;;12000:62;12098:26;12078:18;;;12071:54;12142:19;;27942:168:0;11921:246:1;27942:168:0;28123:21;28132:2;28136:7;28123:8;:21::i;:::-;27741:411;;;:::o;48177:174::-;3550:7;3577:6;-1:-1:-1;;;;;3577:6:0;2302:10;3724:23;3716:68;;;;-1:-1:-1;;;3716:68:0;;;;;;;:::i;:::-;48266:9:::1;48261:83;48285:7;48281:1;:11;48261:83;;;48315:17;48324:7;48315:8;:17::i;:::-;48294:4:::0;::::1;::::0;::::1;:::i;:::-;;;;48261:83;;28968:339:::0;29163:41;2302:10;29196:7;29163:18;:41::i;:::-;29155:103;;;;-1:-1:-1;;;29155:103:0;;;;;;;:::i;:::-;29271:28;29281:4;29287:2;29291:7;29271:9;:28::i;41239:256::-;41336:7;41372:23;41389:5;41372:16;:23::i;:::-;41364:5;:31;41356:87;;;;-1:-1:-1;;;41356:87:0;;8776:2:1;41356:87:0;;;8758:21:1;8815:2;8795:18;;;8788:30;8854:34;8834:18;;;8827:62;-1:-1:-1;;;8905:18:1;;;8898:41;8956:19;;41356:87:0;8748:233:1;41356:87:0;-1:-1:-1;;;;;;41461:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41239:256::o;47614:445::-;3550:7;3577:6;-1:-1:-1;;;;;3577:6:0;2302:10;3724:23;3716:68;;;;-1:-1:-1;;;3716:68:0;;;;;;;:::i;:::-;47720:17:::1;::::0;:32:::1;::::0;;::::1;:17:::0;::::1;:32;;47712:62;;;::::0;-1:-1:-1;;;47712:62:0;;15979:2:1;47712:62:0::1;::::0;::::1;15961:21:1::0;16018:2;15998:18;;;15991:30;-1:-1:-1;;;16037:18:1;;;16030:47;16094:18;;47712:62:0::1;15951:167:1::0;47712:62:0::1;47789:16;::::0;::::1;47785:221;;47822:14;:5;47830:6:::0;;47822:14:::1;:::i;:::-;;47785:221;;;47880:6:::0;47869:8:::1;47908:87;47928:3;47924:1;:7;47908:87;;;47958:5;47969:6;;47976:1;47969:9;;;;;-1:-1:-1::0;;;47969:9:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47958:21:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;47958:21:0;;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;;;;::::1;;;;;::::0;;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;;::::1;;::::0;;47933:4;::::1;::::0;::::1;:::i;:::-;;;;47908:87;;;;47785:221;;48036:15;:11:::0;48050:1:::1;48036:15;:::i;:::-;48016:17;:35:::0;;-1:-1:-1;;48016:35:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;47614:445:0:o;29378:185::-;29516:39;29533:4;29539:2;29543:7;29516:39;;;;;;;;;;;;:16;:39::i;41761:233::-;41836:7;41872:30;41659:10;:17;;41571:113;41872:30;41864:5;:38;41856:95;;;;-1:-1:-1;;;41856:95:0;;15566:2:1;41856:95:0;;;15548:21:1;15605:2;15585:18;;;15578:30;15644:34;15624:18;;;15617:62;-1:-1:-1;;;15695:18:1;;;15688:42;15747:19;;41856:95:0;15538:234:1;41856:95:0;41969:10;41980:5;41969:17;;;;;;-1:-1:-1;;;41969:17:0;;;;;;;;;;;;;;;;;41962:24;;41761:233;;;:::o;48069:100::-;3550:7;3577:6;-1:-1:-1;;;;;3577:6:0;2302:10;3724:23;3716:68;;;;-1:-1:-1;;;3716:68:0;;;;;;;:::i;:::-;48143:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48069:100:::0;:::o;26353:239::-;26425:7;26461:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26461:16:0;26496:19;26488:73;;;;-1:-1:-1;;;26488:73:0;;12785:2:1;26488:73:0;;;12767:21:1;12824:2;12804:18;;;12797:30;12863:34;12843:18;;;12836:62;-1:-1:-1;;;12914:18:1;;;12907:39;12963:19;;26488:73:0;12757:231:1;26083:208:0;26155:7;-1:-1:-1;;;;;26183:19:0;;26175:74;;;;-1:-1:-1;;;26175:74:0;;12374:2:1;26175:74:0;;;12356:21:1;12413:2;12393:18;;;12386:30;12452:34;12432:18;;;12425:62;-1:-1:-1;;;12503:18:1;;;12496:40;12553:19;;26175:74:0;12346:232:1;26175:74:0;-1:-1:-1;;;;;;26267:16:0;;;;;:9;:16;;;;;;;26083:208::o;4155:103::-;3550:7;3577:6;-1:-1:-1;;;;;3577:6:0;2302:10;3724:23;3716:68;;;;-1:-1:-1;;;3716:68:0;;;;;;;:::i;:::-;4220:30:::1;4247:1;4220:18;:30::i;:::-;4155:103::o:0;26828:104::-;26884:13;26917:7;26910:14;;;;;:::i;28511:155::-;28606:52;2302:10;28639:8;28649;28606:18;:52::i;29634:328::-;29809:41;2302:10;29842:7;29809:18;:41::i;:::-;29801:103;;;;-1:-1:-1;;;29801:103:0;;;;;;;:::i;:::-;29915:39;29929:4;29935:2;29939:7;29948:5;29915:13;:39::i;:::-;29634:328;;;;:::o;48363:318::-;31537:4;31561:16;;;:7;:16;;;;;;48434:13;;-1:-1:-1;;;;;31561:16:0;48458:76;;;;-1:-1:-1;;;48458:76:0;;14330:2:1;48458:76:0;;;14312:21:1;14369:2;14349:18;;;14342:30;14408:34;14388:18;;;14381:62;-1:-1:-1;;;14459:18:1;;;14452:45;14514:19;;48458:76:0;14302:237:1;48458:76:0;48545:23;48595:7;48609:26;48626:8;48609:16;:26::i;:::-;48578:67;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;48578:67:0;;;;;;;;;;48363:318;-1:-1:-1;;;48363:318:0:o;4413:201::-;3550:7;3577:6;-1:-1:-1;;;;;3577:6:0;2302:10;3724:23;3716:68;;;;-1:-1:-1;;;3716:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4502:22:0;::::1;4494:73;;;::::0;-1:-1:-1;;;4494:73:0;;9607:2:1;4494:73:0::1;::::0;::::1;9589:21:1::0;9646:2;9626:18;;;9619:30;9685:34;9665:18;;;9658:62;-1:-1:-1;;;9736:18:1;;;9729:36;9782:19;;4494:73:0::1;9579:228:1::0;4494:73:0::1;4578:28;4597:8;4578:18;:28::i;:::-;4413:201:::0;:::o;25714:305::-;25816:4;-1:-1:-1;;;;;;25853:40:0;;-1:-1:-1;;;25853:40:0;;:105;;-1:-1:-1;;;;;;;25910:48:0;;-1:-1:-1;;;25910:48:0;25853:105;:158;;;-1:-1:-1;;;;;;;;;;24246:40:0;;;25975:36;24137:157;35618:174;35693:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35693:29:0;-1:-1:-1;;;;;35693:29:0;;;;;;;;:24;;35747:23;35693:24;35747:14;:23::i;:::-;-1:-1:-1;;;;;35738:46:0;;;;;;;;;;;35618:174;;:::o;48688:273::-;48738:15;48784:25;:15;1034:14;;942:114;48784:25;48774:35;-1:-1:-1;47337:4:0;48838:20;;48830:42;;;;-1:-1:-1;;;48830:42:0;;16325:2:1;48830:42:0;;;16307:21:1;16364:1;16344:18;;;16337:29;-1:-1:-1;;;16382:18:1;;;16375:39;16431:18;;48830:42:0;16297:158:1;48830:42:0;48883:27;:15;1153:19;;1171:1;1153:19;;;1064:127;48883:27;48923:30;48933:3;48938:5;48944:7;48938:14;;;;;;-1:-1:-1;;;48938:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48923:9;:30::i;31766:348::-;31859:4;31561:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31561:16:0;31876:73;;;;-1:-1:-1;;;31876:73:0;;11536:2:1;31876:73:0;;;11518:21:1;11575:2;11555:18;;;11548:30;11614:34;11594:18;;;11587:62;-1:-1:-1;;;11665:18:1;;;11658:42;11717:19;;31876:73:0;11508:234:1;31876:73:0;31960:13;31976:23;31991:7;31976:14;:23::i;:::-;31960:39;;32029:5;-1:-1:-1;;;;;32018:16:0;:7;-1:-1:-1;;;;;32018:16:0;;:51;;;;32062:7;-1:-1:-1;;;;;32038:31:0;:20;32050:7;32038:11;:20::i;:::-;-1:-1:-1;;;;;32038:31:0;;32018:51;:87;;;-1:-1:-1;;;;;;28858:25:0;;;28834:4;28858:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32073:32;32010:96;31766:348;-1:-1:-1;;;;31766:348:0:o;34875:625::-;35034:4;-1:-1:-1;;;;;35007:31:0;:23;35022:7;35007:14;:23::i;:::-;-1:-1:-1;;;;;35007:31:0;;34999:81;;;;-1:-1:-1;;;34999:81:0;;10014:2:1;34999:81:0;;;9996:21:1;10053:2;10033:18;;;10026:30;10092:34;10072:18;;;10065:62;-1:-1:-1;;;10143:18:1;;;10136:35;10188:19;;34999:81:0;9986:227:1;34999:81:0;-1:-1:-1;;;;;35099:16:0;;35091:65;;;;-1:-1:-1;;;35091:65:0;;10777:2:1;35091:65:0;;;10759:21:1;10816:2;10796:18;;;10789:30;10855:34;10835:18;;;10828:62;-1:-1:-1;;;10906:18:1;;;10899:34;10950:19;;35091:65:0;10749:226:1;35091:65:0;35169:39;35190:4;35196:2;35200:7;35169:20;:39::i;:::-;35273:29;35290:1;35294:7;35273:8;:29::i;:::-;-1:-1:-1;;;;;35315:15:0;;;;;;:9;:15;;;;;:20;;35334:1;;35315:15;:20;;35334:1;;35315:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35346:13:0;;;;;;:9;:13;;;;;:18;;35363:1;;35346:13;:18;;35363:1;;35346:18;:::i;:::-;;;;-1:-1:-1;;35375:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35375:21:0;-1:-1:-1;;;;;35375:21:0;;;;;;;;;35414:27;;35375:16;;35414:27;;;;;;;27741:411;;;:::o;4774:191::-;4848:16;4867:6;;-1:-1:-1;;;;;4884:17:0;;;-1:-1:-1;;;;;;4884:17:0;;;;;;4917:40;;4867:6;;;;;;;4917:40;;4848:16;4917:40;4774:191;;:::o;35934:315::-;36089:8;-1:-1:-1;;;;;36080:17:0;:5;-1:-1:-1;;;;;36080:17:0;;;36072:55;;;;-1:-1:-1;;;36072:55:0;;11182:2:1;36072:55:0;;;11164:21:1;11221:2;11201:18;;;11194:30;11260:27;11240:18;;;11233:55;11305:18;;36072:55:0;11154:175:1;36072:55:0;-1:-1:-1;;;;;36138:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36138:46:0;;;;;;;;;;36200:41;;8298::1;;;36200::0;;8271:18:1;36200:41:0;;;;;;;35934:315;;;:::o;30844:::-;31001:28;31011:4;31017:2;31021:7;31001:9;:28::i;:::-;31048:48;31071:4;31077:2;31081:7;31090:5;31048:22;:48::i;:::-;31040:111;;;;-1:-1:-1;;;31040:111:0;;;;;;;:::i;21507:723::-;21563:13;21784:10;21780:53;;-1:-1:-1;;21811:10:0;;;;;;;;;;;;-1:-1:-1;;;21811:10:0;;;;;21507:723::o;21780:53::-;21858:5;21843:12;21899:78;21906:9;;21899:78;;21932:8;;;;:::i;:::-;;-1:-1:-1;21955:10:0;;-1:-1:-1;21963:2:0;21955:10;;:::i;:::-;;;21899:78;;;21987:19;22019:6;22009:17;;;;;;-1:-1:-1;;;22009:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22009:17:0;;21987:39;;22037:154;22044:10;;22037:154;;22071:11;22081:1;22071:11;;:::i;:::-;;-1:-1:-1;22140:10:0;22148:2;22140:5;:10;:::i;:::-;22127:24;;:2;:24;:::i;:::-;22114:39;;22097:6;22104;22097:14;;;;;;-1:-1:-1;;;22097:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;22097:56:0;;;;;;;;-1:-1:-1;22168:11:0;22177:2;22168:11;;:::i;:::-;;;22037:154;;32456:110;32532:26;32542:2;32546:7;32532:26;;;;;;;;;;;;:9;:26::i;42607:589::-;-1:-1:-1;;;;;42813:18:0;;42809:187;;42848:40;42880:7;44023:10;:17;;43996:24;;;;:15;:24;;;;;:44;;;44051:24;;;;;;;;;;;;43919:164;42848:40;42809:187;;;42918:2;-1:-1:-1;;;;;42910:10:0;:4;-1:-1:-1;;;;;42910:10:0;;42906:90;;42937:47;42970:4;42976:7;42937:32;:47::i;:::-;-1:-1:-1;;;;;43010:16:0;;43006:183;;43043:45;43080:7;43043:36;:45::i;43006:183::-;43116:4;-1:-1:-1;;;;;43110:10:0;:2;-1:-1:-1;;;;;43110:10:0;;43106:83;;43137:40;43165:2;43169:7;43137:27;:40::i;36814:799::-;36969:4;-1:-1:-1;;;;;36990:13:0;;14159:19;:23;36986:620;;37026:72;;-1:-1:-1;;;37026:72:0;;-1:-1:-1;;;;;37026:36:0;;;;;:72;;2302:10;;37077:4;;37083:7;;37092:5;;37026:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37026:72:0;;;;;;;;-1:-1:-1;;37026:72:0;;;;;;;;;;;;:::i;:::-;;;37022:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37268:13:0;;37264:272;;37311:60;;-1:-1:-1;;;37311:60:0;;;;;;;:::i;37264:272::-;37486:6;37480:13;37471:6;37467:2;37463:15;37456:38;37022:529;-1:-1:-1;;;;;;37149:51:0;-1:-1:-1;;;37149:51:0;;-1:-1:-1;37142:58:0;;36986:620;-1:-1:-1;37590:4:0;36814:799;;;;;;:::o;32793:321::-;32923:18;32929:2;32933:7;32923:5;:18::i;:::-;32974:54;33005:1;33009:2;33013:7;33022:5;32974:22;:54::i;:::-;32952:154;;;;-1:-1:-1;;;32952:154:0;;;;;;;:::i;44710:988::-;44976:22;45026:1;45001:22;45018:4;45001:16;:22::i;:::-;:26;;;;:::i;:::-;45038:18;45059:26;;;:17;:26;;;;;;44976:51;;-1:-1:-1;45192:28:0;;;45188:328;;-1:-1:-1;;;;;45259:18:0;;45237:19;45259:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45310:30;;;;;;:44;;;45427:30;;:17;:30;;;;;:43;;;45188:328;-1:-1:-1;45612:26:0;;;;:17;:26;;;;;;;;45605:33;;;-1:-1:-1;;;;;45656:18:0;;;;;:12;:18;;;;;:34;;;;;;;45649:41;44710:988::o;45993:1079::-;46271:10;:17;46246:22;;46271:21;;46291:1;;46271:21;:::i;:::-;46303:18;46324:24;;;:15;:24;;;;;;46697:10;:26;;46246:46;;-1:-1:-1;46324:24:0;;46246:46;;46697:26;;;;-1:-1:-1;;;46697:26:0;;;;;;;;;;;;;;;;;46675:48;;46761:11;46736:10;46747;46736:22;;;;;;-1:-1:-1;;;46736:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;46841:28;;;:15;:28;;;;;;;:41;;;47013:24;;;;;47006:31;47048:10;:16;;;;;-1:-1:-1;;;47048:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45993:1079;;;;:::o;43497:221::-;43582:14;43599:20;43616:2;43599:16;:20::i;:::-;-1:-1:-1;;;;;43630:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43675:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43497:221:0:o;33450:439::-;-1:-1:-1;;;;;33530:16:0;;33522:61;;;;-1:-1:-1;;;33522:61:0;;13195:2:1;33522:61:0;;;13177:21:1;;;13214:18;;;13207:30;13273:34;13253:18;;;13246:62;13325:18;;33522:61:0;13167:182:1;33522:61:0;31537:4;31561:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31561:16:0;:30;33594:58;;;;-1:-1:-1;;;33594:58:0;;10420:2:1;33594:58:0;;;10402:21:1;10459:2;10439:18;;;10432:30;10498;10478:18;;;10471:58;10546:18;;33594:58:0;10392:178:1;33594:58:0;33665:45;33694:1;33698:2;33702:7;33665:20;:45::i;:::-;-1:-1:-1;;;;;33723:13:0;;;;;;:9;:13;;;;;:18;;33740:1;;33723:13;:18;;33740:1;;33723:18;:::i;:::-;;;;-1:-1:-1;;33752:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33752:21:0;-1:-1:-1;;;;;33752:21:0;;;;;;;;33791:33;;33752:16;;;33791:33;;33752:16;;33791:33;48143:18:::1;48069:100:::0;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;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:2;;;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:2;;;532:1;529;522:12;491:2;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;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;:::-;979:39;898:126;-1:-1:-1;;;898:126:1:o;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:292::-;4056:6;4109:2;4097:9;4088:7;4084:23;4080:32;4077:2;;;4130:6;4122;4115:22;4077:2;4174:9;4161:23;4224:6;4217:5;4213:18;4206:5;4203:29;4193:2;;4251:6;4243;4236:22;4295:190;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:2;;;4428:6;4420;4413:22;4375:2;-1:-1:-1;4456:23:1;;4365:120;-1:-1:-1;4365:120:1:o;4490:831::-;4582:6;4590;4598;4651:2;4639:9;4630:7;4626:23;4622:32;4619:2;;;4672:6;4664;4657:22;4619:2;4716:9;4703:23;4766:4;4759:5;4755:16;4748:5;4745:27;4735:2;;4791:6;4783;4776:22;4735:2;4819:5;-1:-1:-1;4875:2:1;4860:18;;4847:32;4898:18;4928:14;;;4925:2;;;4960:6;4952;4945:22;4925:2;5003:6;4992:9;4988:22;4978:32;;5048:7;5041:4;5037:2;5033:13;5029:27;5019:2;;5075:6;5067;5060:22;5019:2;5120;5107:16;5146:2;5138:6;5135:14;5132:2;;;5167:6;5159;5152:22;5132:2;5225:7;5220:2;5210:6;5207:1;5203:14;5199:2;5195:23;5191:32;5188:45;5185:2;;;5251:6;5243;5236:22;5185:2;5287;5283;5279:11;5269:21;;5309:6;5299:16;;;;;4609:712;;;;;:::o;5326:257::-;5367:3;5405:5;5399:12;5432:6;5427:3;5420:19;5448:63;5504:6;5497:4;5492:3;5488:14;5481:4;5474:5;5470:16;5448:63;:::i;:::-;5565:2;5544:15;-1:-1:-1;;5540:29:1;5531:39;;;;5572:4;5527:50;;5375:208;-1:-1:-1;;5375:208:1:o;5588:185::-;5630:3;5668:5;5662:12;5683:52;5728:6;5723:3;5716:4;5709:5;5705:16;5683:52;:::i;:::-;5751:16;;;;;5638:135;-1:-1:-1;;5638:135:1:o;6015:1437::-;6393:3;6422;6457:6;6451:13;6487:3;6509:1;6537:9;6533:2;6529:18;6519:28;;6597:2;6586:9;6582:18;6619;6609:2;;6663:4;6655:6;6651:17;6641:27;;6609:2;6689;6737;6729:6;6726:14;6706:18;6703:38;6700:2;;;-1:-1:-1;;;6764:33:1;;6820:4;6817:1;6810:15;6850:4;6771:3;6838:17;6700:2;6881:18;6908:104;;;;7026:1;7021:322;;;;6874:469;;6908:104;-1:-1:-1;;6941:24:1;;6929:37;;6986:16;;;;-1:-1:-1;6908:104:1;;7021:322;16689:4;16708:17;;;16758:4;16742:21;;7116:3;7132:165;7146:6;7143:1;7140:13;7132:165;;;7224:14;;7211:11;;;7204:35;7267:16;;;;7161:10;;7132:165;;;7136:3;;7326:6;7321:3;7317:16;7310:23;;6874:469;;;;;;;7359:87;7384:61;7410:34;7440:3;-1:-1:-1;;;5961:16:1;;6002:1;5993:11;;5951:59;7410:34;7402:6;7384:61;:::i;:::-;-1:-1:-1;;;5838:20:1;;5883:1;5874:11;;5828:63;7359:87;7352:94;6401:1051;-1:-1:-1;;;;;6401:1051:1:o;7665:488::-;-1:-1:-1;;;;;7934:15:1;;;7916:34;;7986:15;;7981:2;7966:18;;7959:43;8033:2;8018:18;;8011:34;;;8081:3;8076:2;8061:18;;8054:31;;;7859:4;;8102:45;;8127:19;;8119:6;8102:45;:::i;:::-;8094:53;7868:285;-1:-1:-1;;;;;;7868:285:1:o;8350:219::-;8499:2;8488:9;8481:21;8462:4;8519:44;8559:2;8548:9;8544:18;8536:6;8519:44;:::i;8986:414::-;9188:2;9170:21;;;9227:2;9207:18;;;9200:30;9266:34;9261:2;9246:18;;9239:62;-1:-1:-1;;;9332:2:1;9317:18;;9310:48;9390:3;9375:19;;9160:240::o;13767:356::-;13969:2;13951:21;;;13988:18;;;13981:30;14047:34;14042:2;14027:18;;14020:62;14114:2;14099:18;;13941:182::o;14946:413::-;15148:2;15130:21;;;15187:2;15167:18;;;15160:30;15226:34;15221:2;15206:18;;15199:62;-1:-1:-1;;;15292:2:1;15277:18;;15270:47;15349:3;15334:19;;15120:239::o;16774:128::-;16814:3;16845:1;16841:6;16838:1;16835:13;16832:2;;;16851:18;;:::i;:::-;-1:-1:-1;16887:9:1;;16822:80::o;16907:204::-;16945:3;16981:4;16978:1;16974:12;17013:4;17010:1;17006:12;17048:3;17042:4;17038:14;17033:3;17030:23;17027:2;;;17056:18;;:::i;:::-;17092:13;;16953:158;-1:-1:-1;;;16953:158:1:o;17116:120::-;17156:1;17182;17172:2;;17187:18;;:::i;:::-;-1:-1:-1;17221:9:1;;17162:74::o;17241:125::-;17281:4;17309:1;17306;17303:8;17300:2;;;17314:18;;:::i;:::-;-1:-1:-1;17351:9:1;;17290:76::o;17371:258::-;17443:1;17453:113;17467:6;17464:1;17461:13;17453:113;;;17543:11;;;17537:18;17524:11;;;17517:39;17489:2;17482:10;17453:113;;;17584:6;17581:1;17578:13;17575:2;;;-1:-1:-1;;17619:1:1;17601:16;;17594:27;17424:205::o;17634:380::-;17713:1;17709:12;;;;17756;;;17777:2;;17831:4;17823:6;17819:17;17809:27;;17777:2;17884;17876:6;17873:14;17853:18;17850:38;17847:2;;;17930:10;17925:3;17921:20;17918:1;17911:31;17965:4;17962:1;17955:15;17993:4;17990:1;17983:15;17847:2;;17689:325;;;:::o;18019:135::-;18058:3;-1:-1:-1;;18079:17:1;;18076:2;;;18099:18;;:::i;:::-;-1:-1:-1;18146:1:1;18135:13;;18066:88::o;18159:112::-;18191:1;18217;18207:2;;18222:18;;:::i;:::-;-1:-1:-1;18256:9:1;;18197:74::o;18276:127::-;18337:10;18332:3;18328:20;18325:1;18318:31;18368:4;18365:1;18358:15;18392:4;18389:1;18382:15;18408:127;18469:10;18464:3;18460:20;18457:1;18450:31;18500:4;18497:1;18490:15;18524:4;18521:1;18514:15;18540:127;18601:10;18596:3;18592:20;18589:1;18582:31;18632:4;18629:1;18622:15;18656:4;18653:1;18646:15;18672:131;-1:-1:-1;;;;;;18746:32:1;;18736:43;;18726:2;;18793:1;18790;18783:12

Swarm Source

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