ETH Price: $3,310.05 (-3.20%)
Gas: 17 Gwei

Token

PLUR (PLUR)
 

Overview

Max Total Supply

8,585 PLUR

Holders

2,956

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
73 PLUR
0xa61354ccfb2512be09c73c2fa278956f3a385233
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Project PLUR is a 3D NFT project with 8585 tokens. Inspired by hip-hop culture, Peace Love Unity Respect, commonly shortened to PLUR. We hope to pass this spirit on to our community and become a spiritual force for us. The world needs a little noise, and here we are!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PLUR

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-13
*/

// SPDX-License-Identifier: MIT
// Creator: Plur Labs

pragma solidity ^0.8.4;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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


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


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

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


/**
 * @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;
}



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


/**
 * @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;
    }
}


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


error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


contract PLUR is ERC721A,Ownable {
  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }
  constructor(string memory baseURI) ERC721A("PLUR", "PLUR") {
    _baseTokenURI = baseURI;
  }

  uint256 public supply = 8585;
  mapping(address => uint256) public minted;

    string private _baseTokenURI; 

  function mint(uint256 quantity) external payable callerIsUser {
    require(quantity <= 10, "can not mint this many.");
    require(minted[msg.sender] + quantity <= 20, "not eligible for mint.");
    require(quantity <= supply, "balance is not enough.");
    minted[msg.sender] += quantity;
    supply -= quantity;
    _safeMint(msg.sender, quantity);
  }


  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }
   
  function _baseURI() internal view virtual override returns (string memory) {
      return _baseTokenURI;
  }

  function withdraw() external onlyOwner {
    require(address(this).balance > 0, "balance is not enough.");
    Address.sendValue(payable(msg.sender), address(this).balance);
  }

  fallback() external payable{}
  receive() external payable{}

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526121896009553480156200001757600080fd5b5060405162001c8838038062001c888339810160408190526200003a91620001cc565b60408051808201825260048082526328262aa960e11b602080840182815285518087019096529285528401528151919291620000799160029162000110565b5080516200008f90600390602084019062000110565b50506000805550620000a133620000be565b8051620000b690600b90602084019062000110565b5050620002e4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011e90620002a8565b90600052602060002090601f0160209004810192826200014257600085556200018d565b82601f106200015d57805160ff19168380011785556200018d565b828001600101855582156200018d579182015b828111156200018d57825182559160200191906001019062000170565b506200019b9291506200019f565b5090565b5b808211156200019b5760008155600101620001a0565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620001e057600080fd5b82516001600160401b0380821115620001f857600080fd5b818501915085601f8301126200020d57600080fd5b815181811115620002225762000222620001b6565b604051601f8201601f19908116603f011681019083821181831017156200024d576200024d620001b6565b8160405282815288868487010111156200026657600080fd5b600093505b828410156200028a57848401860151818501870152928501926200026b565b828411156200029c5760008684830101525b98975050505050505050565b600181811c90821680620002bd57607f821691505b602082108103620002de57634e487b7160e01b600052602260045260246000fd5b50919050565b61199480620002f46000396000f3fe60806040526004361061012d5760003560e01c80636352211e116100a5578063a0712d681161006c578063a0712d681461034c578063a22cb4651461035f578063b88d4fde1461037f578063c87b56dd1461039f578063e985e9c5146103bf578063f2fde38b1461040857005b80636352211e146102c457806370a08231146102e4578063715018a6146103045780638da5cb5b1461031957806395d89b411461033757005b806318160ddd116100f457806318160ddd146102095780631e7269c51461022257806323b872dd1461024f5780633ccfd60b1461026f57806342842e0e1461028457806355f804b3146102a457005b806301ffc9a714610136578063047fc9aa1461016b57806306fdde031461018f578063081812fc146101b1578063095ea7b3146101e957005b3661013457005b005b34801561014257600080fd5b506101566101513660046114a3565b610428565b60405190151581526020015b60405180910390f35b34801561017757600080fd5b5061018160095481565b604051908152602001610162565b34801561019b57600080fd5b506101a461047a565b6040516101629190611518565b3480156101bd57600080fd5b506101d16101cc36600461152b565b61050c565b6040516001600160a01b039091168152602001610162565b3480156101f557600080fd5b50610134610204366004611560565b610550565b34801561021557600080fd5b5060015460005403610181565b34801561022e57600080fd5b5061018161023d36600461158a565b600a6020526000908152604090205481565b34801561025b57600080fd5b5061013461026a3660046115a5565b6105dd565b34801561027b57600080fd5b506101346105e8565b34801561029057600080fd5b5061013461029f3660046115a5565b610670565b3480156102b057600080fd5b506101346102bf3660046115e1565b61068b565b3480156102d057600080fd5b506101d16102df36600461152b565b6106c1565b3480156102f057600080fd5b506101816102ff36600461158a565b6106d3565b34801561031057600080fd5b50610134610722565b34801561032557600080fd5b506008546001600160a01b03166101d1565b34801561034357600080fd5b506101a4610756565b61013461035a36600461152b565b610765565b34801561036b57600080fd5b5061013461037a366004611653565b610900565b34801561038b57600080fd5b5061013461039a3660046116a5565b610995565b3480156103ab57600080fd5b506101a46103ba36600461152b565b6109e6565b3480156103cb57600080fd5b506101566103da366004611781565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561041457600080fd5b5061013461042336600461158a565b610a6a565b60006001600160e01b031982166380ac58cd60e01b148061045957506001600160e01b03198216635b5e139f60e01b145b8061047457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610489906117b4565b80601f01602080910402602001604051908101604052809291908181526020018280546104b5906117b4565b80156105025780601f106104d757610100808354040283529160200191610502565b820191906000526020600020905b8154815290600101906020018083116104e557829003601f168201915b5050505050905090565b600061051782610b02565b610534576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061055b826106c1565b9050806001600160a01b0316836001600160a01b03160361058f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105af57506105ad81336103da565b155b156105cd576040516367d9dca160e11b815260040160405180910390fd5b6105d8838383610b2d565b505050565b6105d8838383610b89565b6008546001600160a01b0316331461061b5760405162461bcd60e51b8152600401610612906117ee565b60405180910390fd5b600047116106645760405162461bcd60e51b81526020600482015260166024820152753130b630b731b29034b9903737ba1032b737bab3b41760511b6044820152606401610612565b61066e3347610d79565b565b6105d883838360405180602001604052806000815250610995565b6008546001600160a01b031633146106b55760405162461bcd60e51b8152600401610612906117ee565b6105d8600b83836113f4565b60006106cc82610e92565b5192915050565b60006001600160a01b0382166106fc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461074c5760405162461bcd60e51b8152600401610612906117ee565b61066e6000610fae565b606060038054610489906117b4565b3233146107b45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610612565b600a8111156108055760405162461bcd60e51b815260206004820152601760248201527f63616e206e6f74206d696e742074686973206d616e792e0000000000000000006044820152606401610612565b336000908152600a6020526040902054601490610823908390611839565b111561086a5760405162461bcd60e51b81526020600482015260166024820152753737ba1032b634b3b4b13632903337b91036b4b73a1760511b6044820152606401610612565b6009548111156108b55760405162461bcd60e51b81526020600482015260166024820152753130b630b731b29034b9903737ba1032b737bab3b41760511b6044820152606401610612565b336000908152600a6020526040812080548392906108d4908490611839565b9250508190555080600960008282546108ed9190611851565b909155506108fd90503382611000565b50565b336001600160a01b038316036109295760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109a0848484610b89565b6001600160a01b0383163b151580156109c257506109c08484848461101e565b155b156109e0576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606109f182610b02565b610a0e57604051630a14c4b560e41b815260040160405180910390fd5b6000610a1861110a565b90508051600003610a385760405180602001604052806000815250610a63565b80610a4284611119565b604051602001610a53929190611868565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610a945760405162461bcd60e51b8152600401610612906117ee565b6001600160a01b038116610af95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610612565b6108fd81610fae565b6000805482108015610474575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610b9482610e92565b9050836001600160a01b031681600001516001600160a01b031614610bcb5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610be95750610be985336103da565b80610c04575033610bf98461050c565b6001600160a01b0316145b905080610c2457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610c4b57604051633a954ecd60e21b815260040160405180910390fd5b610c5760008487610b2d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610d2d576000548214610d2d578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80471015610dc95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610612565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610e16576040519150601f19603f3d011682016040523d82523d6000602084013e610e1b565b606091505b50509050806105d85760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610612565b604080516060810182526000808252602082018190529181019190915281600054811015610f9557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610f935780516001600160a01b031615610f29579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610f8e579392505050565b610f29565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61101a82826040518060200160405280600081525061121a565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611053903390899088908890600401611897565b6020604051808303816000875af192505050801561108e575060408051601f3d908101601f1916820190925261108b918101906118d4565b60015b6110ec573d8080156110bc576040519150601f19603f3d011682016040523d82523d6000602084013e6110c1565b606091505b5080516000036110e4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b8054610489906117b4565b6060816000036111405750506040805180820190915260018152600360fc1b602082015290565b8160005b811561116a5780611154816118f1565b91506111639050600a83611920565b9150611144565b60008167ffffffffffffffff8111156111855761118561168f565b6040519080825280601f01601f1916602001820160405280156111af576020820181803683370190505b5090505b8415611102576111c4600183611851565b91506111d1600a86611934565b6111dc906030611839565b60f81b8183815181106111f1576111f1611948565b60200101906001600160f81b031916908160001a905350611213600a86611920565b94506111b3565b6105d883838360016000546001600160a01b03851661124b57604051622e076360e81b815260040160405180910390fd5b8360000361126c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561131e57506001600160a01b0387163b15155b156113a6575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461136f600088848060010195508861101e565b61138c576040516368d2bf6b60e11b815260040160405180910390fd5b8082036113245782600054146113a157600080fd5b6113eb565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036113a7575b50600055610d72565b828054611400906117b4565b90600052602060002090601f0160209004810192826114225760008555611468565b82601f1061143b5782800160ff19823516178555611468565b82800160010185558215611468579182015b8281111561146857823582559160200191906001019061144d565b50611474929150611478565b5090565b5b808211156114745760008155600101611479565b6001600160e01b0319811681146108fd57600080fd5b6000602082840312156114b557600080fd5b8135610a638161148d565b60005b838110156114db5781810151838201526020016114c3565b838111156109e05750506000910152565b600081518084526115048160208601602086016114c0565b601f01601f19169290920160200192915050565b602081526000610a6360208301846114ec565b60006020828403121561153d57600080fd5b5035919050565b80356001600160a01b038116811461155b57600080fd5b919050565b6000806040838503121561157357600080fd5b61157c83611544565b946020939093013593505050565b60006020828403121561159c57600080fd5b610a6382611544565b6000806000606084860312156115ba57600080fd5b6115c384611544565b92506115d160208501611544565b9150604084013590509250925092565b600080602083850312156115f457600080fd5b823567ffffffffffffffff8082111561160c57600080fd5b818501915085601f83011261162057600080fd5b81358181111561162f57600080fd5b86602082850101111561164157600080fd5b60209290920196919550909350505050565b6000806040838503121561166657600080fd5b61166f83611544565b91506020830135801515811461168457600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156116bb57600080fd5b6116c485611544565b93506116d260208601611544565b925060408501359150606085013567ffffffffffffffff808211156116f657600080fd5b818701915087601f83011261170a57600080fd5b81358181111561171c5761171c61168f565b604051601f8201601f19908116603f011681019083821181831017156117445761174461168f565b816040528281528a602084870101111561175d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561179457600080fd5b61179d83611544565b91506117ab60208401611544565b90509250929050565b600181811c908216806117c857607f821691505b6020821081036117e857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561184c5761184c611823565b500190565b60008282101561186357611863611823565b500390565b6000835161187a8184602088016114c0565b83519083019061188e8183602088016114c0565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118ca908301846114ec565b9695505050505050565b6000602082840312156118e657600080fd5b8151610a638161148d565b60006001820161190357611903611823565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261192f5761192f61190a565b500490565b6000826119435761194361190a565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212201ea878932e4f48fbf92f81ddf70638ea30e645a2a32fe10cbeef376e4342fef564736f6c634300080d00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5253634b696b42624a424a69756b4862706834385a6b68533877534d4169397059337a643772414b764c35512f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061012d5760003560e01c80636352211e116100a5578063a0712d681161006c578063a0712d681461034c578063a22cb4651461035f578063b88d4fde1461037f578063c87b56dd1461039f578063e985e9c5146103bf578063f2fde38b1461040857005b80636352211e146102c457806370a08231146102e4578063715018a6146103045780638da5cb5b1461031957806395d89b411461033757005b806318160ddd116100f457806318160ddd146102095780631e7269c51461022257806323b872dd1461024f5780633ccfd60b1461026f57806342842e0e1461028457806355f804b3146102a457005b806301ffc9a714610136578063047fc9aa1461016b57806306fdde031461018f578063081812fc146101b1578063095ea7b3146101e957005b3661013457005b005b34801561014257600080fd5b506101566101513660046114a3565b610428565b60405190151581526020015b60405180910390f35b34801561017757600080fd5b5061018160095481565b604051908152602001610162565b34801561019b57600080fd5b506101a461047a565b6040516101629190611518565b3480156101bd57600080fd5b506101d16101cc36600461152b565b61050c565b6040516001600160a01b039091168152602001610162565b3480156101f557600080fd5b50610134610204366004611560565b610550565b34801561021557600080fd5b5060015460005403610181565b34801561022e57600080fd5b5061018161023d36600461158a565b600a6020526000908152604090205481565b34801561025b57600080fd5b5061013461026a3660046115a5565b6105dd565b34801561027b57600080fd5b506101346105e8565b34801561029057600080fd5b5061013461029f3660046115a5565b610670565b3480156102b057600080fd5b506101346102bf3660046115e1565b61068b565b3480156102d057600080fd5b506101d16102df36600461152b565b6106c1565b3480156102f057600080fd5b506101816102ff36600461158a565b6106d3565b34801561031057600080fd5b50610134610722565b34801561032557600080fd5b506008546001600160a01b03166101d1565b34801561034357600080fd5b506101a4610756565b61013461035a36600461152b565b610765565b34801561036b57600080fd5b5061013461037a366004611653565b610900565b34801561038b57600080fd5b5061013461039a3660046116a5565b610995565b3480156103ab57600080fd5b506101a46103ba36600461152b565b6109e6565b3480156103cb57600080fd5b506101566103da366004611781565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561041457600080fd5b5061013461042336600461158a565b610a6a565b60006001600160e01b031982166380ac58cd60e01b148061045957506001600160e01b03198216635b5e139f60e01b145b8061047457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610489906117b4565b80601f01602080910402602001604051908101604052809291908181526020018280546104b5906117b4565b80156105025780601f106104d757610100808354040283529160200191610502565b820191906000526020600020905b8154815290600101906020018083116104e557829003601f168201915b5050505050905090565b600061051782610b02565b610534576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061055b826106c1565b9050806001600160a01b0316836001600160a01b03160361058f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105af57506105ad81336103da565b155b156105cd576040516367d9dca160e11b815260040160405180910390fd5b6105d8838383610b2d565b505050565b6105d8838383610b89565b6008546001600160a01b0316331461061b5760405162461bcd60e51b8152600401610612906117ee565b60405180910390fd5b600047116106645760405162461bcd60e51b81526020600482015260166024820152753130b630b731b29034b9903737ba1032b737bab3b41760511b6044820152606401610612565b61066e3347610d79565b565b6105d883838360405180602001604052806000815250610995565b6008546001600160a01b031633146106b55760405162461bcd60e51b8152600401610612906117ee565b6105d8600b83836113f4565b60006106cc82610e92565b5192915050565b60006001600160a01b0382166106fc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461074c5760405162461bcd60e51b8152600401610612906117ee565b61066e6000610fae565b606060038054610489906117b4565b3233146107b45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610612565b600a8111156108055760405162461bcd60e51b815260206004820152601760248201527f63616e206e6f74206d696e742074686973206d616e792e0000000000000000006044820152606401610612565b336000908152600a6020526040902054601490610823908390611839565b111561086a5760405162461bcd60e51b81526020600482015260166024820152753737ba1032b634b3b4b13632903337b91036b4b73a1760511b6044820152606401610612565b6009548111156108b55760405162461bcd60e51b81526020600482015260166024820152753130b630b731b29034b9903737ba1032b737bab3b41760511b6044820152606401610612565b336000908152600a6020526040812080548392906108d4908490611839565b9250508190555080600960008282546108ed9190611851565b909155506108fd90503382611000565b50565b336001600160a01b038316036109295760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109a0848484610b89565b6001600160a01b0383163b151580156109c257506109c08484848461101e565b155b156109e0576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606109f182610b02565b610a0e57604051630a14c4b560e41b815260040160405180910390fd5b6000610a1861110a565b90508051600003610a385760405180602001604052806000815250610a63565b80610a4284611119565b604051602001610a53929190611868565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610a945760405162461bcd60e51b8152600401610612906117ee565b6001600160a01b038116610af95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610612565b6108fd81610fae565b6000805482108015610474575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610b9482610e92565b9050836001600160a01b031681600001516001600160a01b031614610bcb5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610be95750610be985336103da565b80610c04575033610bf98461050c565b6001600160a01b0316145b905080610c2457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610c4b57604051633a954ecd60e21b815260040160405180910390fd5b610c5760008487610b2d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610d2d576000548214610d2d578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80471015610dc95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610612565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610e16576040519150601f19603f3d011682016040523d82523d6000602084013e610e1b565b606091505b50509050806105d85760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610612565b604080516060810182526000808252602082018190529181019190915281600054811015610f9557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610f935780516001600160a01b031615610f29579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610f8e579392505050565b610f29565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61101a82826040518060200160405280600081525061121a565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611053903390899088908890600401611897565b6020604051808303816000875af192505050801561108e575060408051601f3d908101601f1916820190925261108b918101906118d4565b60015b6110ec573d8080156110bc576040519150601f19603f3d011682016040523d82523d6000602084013e6110c1565b606091505b5080516000036110e4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b8054610489906117b4565b6060816000036111405750506040805180820190915260018152600360fc1b602082015290565b8160005b811561116a5780611154816118f1565b91506111639050600a83611920565b9150611144565b60008167ffffffffffffffff8111156111855761118561168f565b6040519080825280601f01601f1916602001820160405280156111af576020820181803683370190505b5090505b8415611102576111c4600183611851565b91506111d1600a86611934565b6111dc906030611839565b60f81b8183815181106111f1576111f1611948565b60200101906001600160f81b031916908160001a905350611213600a86611920565b94506111b3565b6105d883838360016000546001600160a01b03851661124b57604051622e076360e81b815260040160405180910390fd5b8360000361126c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561131e57506001600160a01b0387163b15155b156113a6575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461136f600088848060010195508861101e565b61138c576040516368d2bf6b60e11b815260040160405180910390fd5b8082036113245782600054146113a157600080fd5b6113eb565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036113a7575b50600055610d72565b828054611400906117b4565b90600052602060002090601f0160209004810192826114225760008555611468565b82601f1061143b5782800160ff19823516178555611468565b82800160010185558215611468579182015b8281111561146857823582559160200191906001019061144d565b50611474929150611478565b5090565b5b808211156114745760008155600101611479565b6001600160e01b0319811681146108fd57600080fd5b6000602082840312156114b557600080fd5b8135610a638161148d565b60005b838110156114db5781810151838201526020016114c3565b838111156109e05750506000910152565b600081518084526115048160208601602086016114c0565b601f01601f19169290920160200192915050565b602081526000610a6360208301846114ec565b60006020828403121561153d57600080fd5b5035919050565b80356001600160a01b038116811461155b57600080fd5b919050565b6000806040838503121561157357600080fd5b61157c83611544565b946020939093013593505050565b60006020828403121561159c57600080fd5b610a6382611544565b6000806000606084860312156115ba57600080fd5b6115c384611544565b92506115d160208501611544565b9150604084013590509250925092565b600080602083850312156115f457600080fd5b823567ffffffffffffffff8082111561160c57600080fd5b818501915085601f83011261162057600080fd5b81358181111561162f57600080fd5b86602082850101111561164157600080fd5b60209290920196919550909350505050565b6000806040838503121561166657600080fd5b61166f83611544565b91506020830135801515811461168457600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156116bb57600080fd5b6116c485611544565b93506116d260208601611544565b925060408501359150606085013567ffffffffffffffff808211156116f657600080fd5b818701915087601f83011261170a57600080fd5b81358181111561171c5761171c61168f565b604051601f8201601f19908116603f011681019083821181831017156117445761174461168f565b816040528281528a602084870101111561175d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561179457600080fd5b61179d83611544565b91506117ab60208401611544565b90509250929050565b600181811c908216806117c857607f821691505b6020821081036117e857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561184c5761184c611823565b500190565b60008282101561186357611863611823565b500390565b6000835161187a8184602088016114c0565b83519083019061188e8183602088016114c0565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118ca908301846114ec565b9695505050505050565b6000602082840312156118e657600080fd5b8151610a638161148d565b60006001820161190357611903611823565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261192f5761192f61190a565b500490565b6000826119435761194361190a565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212201ea878932e4f48fbf92f81ddf70638ea30e645a2a32fe10cbeef376e4342fef564736f6c634300080d0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5253634b696b42624a424a69756b4862706834385a6b68533877534d4169397059337a643772414b764c35512f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmRScKikBbJBJiukHbph48ZkhS8wSMAi9pY3zd7rAKvL5Q/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d5253634b696b42624a424a69756b4862706834385a6b68533877534d
Arg [4] : 4169397059337a643772414b764c35512f000000000000000000000000000000


Deployed Bytecode Sourcemap

42091:1220:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24584:305;;;;;;;;;;-1:-1:-1;24584:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24584:305:0;;;;;;;;42345:28;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;42345:28:0;592:177:1;27697:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28960:204::-;;;;;;;;;;-1:-1:-1;28960:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;28960:204:0;1710:203:1;28523:371:0;;;;;;;;;;-1:-1:-1;28523:371:0;;;;;:::i;:::-;;:::i;23833:303::-;;;;;;;;;;-1:-1:-1;24087:12:0;;23877:7;24071:13;:28;23833:303;;42378:41;;;;;;;;;;-1:-1:-1;42378:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;29825:170;;;;;;;;;;-1:-1:-1;29825:170:0;;;;;:::i;:::-;;:::i;43059:180::-;;;;;;;;;;;;;:::i;30066:185::-;;;;;;;;;;-1:-1:-1;30066:185:0;;;;;:::i;:::-;;:::i;42834:100::-;;;;;;;;;;-1:-1:-1;42834:100:0;;;;;:::i;:::-;;:::i;27505:125::-;;;;;;;;;;-1:-1:-1;27505:125:0;;;;;:::i;:::-;;:::i;24953:206::-;;;;;;;;;;-1:-1:-1;24953:206:0;;;;;:::i;:::-;;:::i;19606:103::-;;;;;;;;;;;;;:::i;18955:87::-;;;;;;;;;;-1:-1:-1;19028:6:0;;-1:-1:-1;;;;;19028:6:0;18955:87;;27866:104;;;;;;;;;;;;;:::i;42464:362::-;;;;;;:::i;:::-;;:::i;29236:287::-;;;;;;;;;;-1:-1:-1;29236:287:0;;;;;:::i;:::-;;:::i;30322:369::-;;;;;;;;;;-1:-1:-1;30322:369:0;;;;;:::i;:::-;;:::i;28041:318::-;;;;;;;;;;-1:-1:-1;28041:318:0;;;;;:::i;:::-;;:::i;29594:164::-;;;;;;;;;;-1:-1:-1;29594:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29715:25:0;;;29691:4;29715:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29594:164;19864:201;;;;;;;;;;-1:-1:-1;19864:201:0;;;;;:::i;:::-;;:::i;24584:305::-;24686:4;-1:-1:-1;;;;;;24723:40:0;;-1:-1:-1;;;24723:40:0;;:105;;-1:-1:-1;;;;;;;24780:48:0;;-1:-1:-1;;;24780:48:0;24723:105;:158;;;-1:-1:-1;;;;;;;;;;17979:40:0;;;24845:36;24703:178;24584:305;-1:-1:-1;;24584:305:0:o;27697:100::-;27751:13;27784:5;27777:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27697:100;:::o;28960:204::-;29028:7;29053:16;29061:7;29053;:16::i;:::-;29048:64;;29078:34;;-1:-1:-1;;;29078:34:0;;;;;;;;;;;29048:64;-1:-1:-1;29132:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29132:24:0;;28960:204::o;28523:371::-;28596:13;28612:24;28628:7;28612:15;:24::i;:::-;28596:40;;28657:5;-1:-1:-1;;;;;28651:11:0;:2;-1:-1:-1;;;;;28651:11:0;;28647:48;;28671:24;;-1:-1:-1;;;28671:24:0;;;;;;;;;;;28647:48;200:10;-1:-1:-1;;;;;28712:21:0;;;;;;:63;;-1:-1:-1;28738:37:0;28755:5;200:10;29594:164;:::i;28738:37::-;28737:38;28712:63;28708:138;;;28799:35;;-1:-1:-1;;;28799:35:0;;;;;;;;;;;28708:138;28858:28;28867:2;28871:7;28880:5;28858:8;:28::i;:::-;28585:309;28523:371;;:::o;29825:170::-;29959:28;29969:4;29975:2;29979:7;29959:9;:28::i;43059:180::-;19028:6;;-1:-1:-1;;;;;19028:6:0;200:10;19175:23;19167:68;;;;-1:-1:-1;;;19167:68:0;;;;;;;:::i;:::-;;;;;;;;;43137:1:::1;43113:21;:25;43105:60;;;::::0;-1:-1:-1;;;43105:60:0;;6316:2:1;43105:60:0::1;::::0;::::1;6298:21:1::0;6355:2;6335:18;;;6328:30;-1:-1:-1;;;6374:18:1;;;6367:52;6436:18;;43105:60:0::1;6114:346:1::0;43105:60:0::1;43172:61;43198:10;43211:21;43172:17;:61::i;:::-;43059:180::o:0;30066:185::-;30204:39;30221:4;30227:2;30231:7;30204:39;;;;;;;;;;;;:16;:39::i;42834:100::-;19028:6;;-1:-1:-1;;;;;19028:6:0;200:10;19175:23;19167:68;;;;-1:-1:-1;;;19167:68:0;;;;;;;:::i;:::-;42905:23:::1;:13;42921:7:::0;;42905:23:::1;:::i;27505:125::-:0;27569:7;27596:21;27609:7;27596:12;:21::i;:::-;:26;;27505:125;-1:-1:-1;;27505:125:0:o;24953:206::-;25017:7;-1:-1:-1;;;;;25041:19:0;;25037:60;;25069:28;;-1:-1:-1;;;25069:28:0;;;;;;;;;;;25037:60;-1:-1:-1;;;;;;25123:19:0;;;;;:12;:19;;;;;:27;;;;24953:206::o;19606:103::-;19028:6;;-1:-1:-1;;;;;19028:6:0;200:10;19175:23;19167:68;;;;-1:-1:-1;;;19167:68:0;;;;;;;:::i;:::-;19671:30:::1;19698:1;19671:18;:30::i;27866:104::-:0;27922:13;27955:7;27948:14;;;;;:::i;42464:362::-;42168:9;42181:10;42168:23;42160:66;;;;-1:-1:-1;;;42160:66:0;;6667:2:1;42160:66:0;;;6649:21:1;6706:2;6686:18;;;6679:30;6745:32;6725:18;;;6718:60;6795:18;;42160:66:0;6465:354:1;42160:66:0;42553:2:::1;42541:8;:14;;42533:50;;;::::0;-1:-1:-1;;;42533:50:0;;7026:2:1;42533:50:0::1;::::0;::::1;7008:21:1::0;7065:2;7045:18;;;7038:30;7104:25;7084:18;;;7077:53;7147:18;;42533:50:0::1;6824:347:1::0;42533:50:0::1;42605:10;42598:18;::::0;;;:6:::1;:18;::::0;;;;;42631:2:::1;::::0;42598:29:::1;::::0;42619:8;;42598:29:::1;:::i;:::-;:35;;42590:70;;;::::0;-1:-1:-1;;;42590:70:0;;7643:2:1;42590:70:0::1;::::0;::::1;7625:21:1::0;7682:2;7662:18;;;7655:30;-1:-1:-1;;;7701:18:1;;;7694:52;7763:18;;42590:70:0::1;7441:346:1::0;42590:70:0::1;42687:6;;42675:8;:18;;42667:53;;;::::0;-1:-1:-1;;;42667:53:0;;6316:2:1;42667:53:0::1;::::0;::::1;6298:21:1::0;6355:2;6335:18;;;6328:30;-1:-1:-1;;;6374:18:1;;;6367:52;6436:18;;42667:53:0::1;6114:346:1::0;42667:53:0::1;42734:10;42727:18;::::0;;;:6:::1;:18;::::0;;;;:30;;42749:8;;42727:18;:30:::1;::::0;42749:8;;42727:30:::1;:::i;:::-;;;;;;;;42774:8;42764:6;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;42789:31:0::1;::::0;-1:-1:-1;42799:10:0::1;42811:8:::0;42789:9:::1;:31::i;:::-;42464:362:::0;:::o;29236:287::-;200:10;-1:-1:-1;;;;;29335:24:0;;;29331:54;;29368:17;;-1:-1:-1;;;29368:17:0;;;;;;;;;;;29331:54;200:10;29398:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29398:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29398:53:0;;;;;;;;;;29467:48;;540:41:1;;;29398:42:0;;200:10;29467:48;;513:18:1;29467:48:0;;;;;;;29236:287;;:::o;30322:369::-;30489:28;30499:4;30505:2;30509:7;30489:9;:28::i;:::-;-1:-1:-1;;;;;30532:13:0;;4158:19;:23;;30532:76;;;;;30552:56;30583:4;30589:2;30593:7;30602:5;30552:30;:56::i;:::-;30551:57;30532:76;30528:156;;;30632:40;;-1:-1:-1;;;30632:40:0;;;;;;;;;;;30528:156;30322:369;;;;:::o;28041:318::-;28114:13;28145:16;28153:7;28145;:16::i;:::-;28140:59;;28170:29;;-1:-1:-1;;;28170:29:0;;;;;;;;;;;28140:59;28212:21;28236:10;:8;:10::i;:::-;28212:34;;28270:7;28264:21;28289:1;28264:26;:87;;;;;;;;;;;;;;;;;28317:7;28326:18;:7;:16;:18::i;:::-;28300:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28264:87;28257:94;28041:318;-1:-1:-1;;;28041:318:0:o;19864:201::-;19028:6;;-1:-1:-1;;;;;19028:6:0;200:10;19175:23;19167:68;;;;-1:-1:-1;;;19167:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19953:22:0;::::1;19945:73;;;::::0;-1:-1:-1;;;19945:73:0;;8599:2:1;19945:73:0::1;::::0;::::1;8581:21:1::0;8638:2;8618:18;;;8611:30;8677:34;8657:18;;;8650:62;-1:-1:-1;;;8728:18:1;;;8721:36;8774:19;;19945:73:0::1;8397:402:1::0;19945:73:0::1;20029:28;20048:8;20029:18;:28::i;30946:174::-:0;31003:4;31067:13;;31057:7;:23;31027:85;;;;-1:-1:-1;;31085:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31085:27:0;;;;31084:28;;30946:174::o;39103:196::-;39218:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39218:29:0;-1:-1:-1;;;;;39218:29:0;;;;;;;;;39263:28;;39218:24;;39263:28;;;;;;;39103:196;;;:::o;34046:2130::-;34161:35;34199:21;34212:7;34199:12;:21::i;:::-;34161:59;;34259:4;-1:-1:-1;;;;;34237:26:0;:13;:18;;;-1:-1:-1;;;;;34237:26:0;;34233:67;;34272:28;;-1:-1:-1;;;34272:28:0;;;;;;;;;;;34233:67;34313:22;200:10;-1:-1:-1;;;;;34339:20:0;;;;:73;;-1:-1:-1;34376:36:0;34393:4;200:10;29594:164;:::i;34376:36::-;34339:126;;;-1:-1:-1;200:10:0;34429:20;34441:7;34429:11;:20::i;:::-;-1:-1:-1;;;;;34429:36:0;;34339:126;34313:153;;34484:17;34479:66;;34510:35;;-1:-1:-1;;;34510:35:0;;;;;;;;;;;34479:66;-1:-1:-1;;;;;34560:16:0;;34556:52;;34585:23;;-1:-1:-1;;;34585:23:0;;;;;;;;;;;34556:52;34729:35;34746:1;34750:7;34759:4;34729:8;:35::i;:::-;-1:-1:-1;;;;;35060:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35060:31:0;;;;;;;-1:-1:-1;;35060:31:0;;;;;;;35106:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35106:29:0;;;;;;;;;;;35186:20;;;:11;:20;;;;;;35221:18;;-1:-1:-1;;;;;;35254:49:0;;;;-1:-1:-1;;;35287:15:0;35254:49;;;;;;;;;;35577:11;;35637:24;;;;;35680:13;;35186:20;;35637:24;;35680:13;35676:384;;35890:13;;35875:11;:28;35871:174;;35928:20;;35997:28;;;;35971:54;;-1:-1:-1;;;35971:54:0;-1:-1:-1;;;;;;35971:54:0;;;-1:-1:-1;;;;;35928:20:0;;35971:54;;;;35871:174;35035:1036;;;36107:7;36103:2;-1:-1:-1;;;;;36088:27:0;36097:4;-1:-1:-1;;;;;36088:27:0;;;;;;;;;;;36126:42;34150:2026;;34046:2130;;;:::o;5124:317::-;5239:6;5214:21;:31;;5206:73;;;;-1:-1:-1;;;5206:73:0;;9006:2:1;5206:73:0;;;8988:21:1;9045:2;9025:18;;;9018:30;9084:31;9064:18;;;9057:59;9133:18;;5206:73:0;8804:353:1;5206:73:0;5293:12;5311:9;-1:-1:-1;;;;;5311:14:0;5333:6;5311:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5292:52;;;5363:7;5355:78;;;;-1:-1:-1;;;5355:78:0;;9574:2:1;5355:78:0;;;9556:21:1;9613:2;9593:18;;;9586:30;9652:34;9632:18;;;9625:62;9723:28;9703:18;;;9696:56;9769:19;;5355:78:0;9372:422:1;26334:1109:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26445:7:0;26528:13;;26521:4;:20;26490:886;;;26562:31;26596:17;;;:11;:17;;;;;;;;;26562:51;;;;;;;;;-1:-1:-1;;;;;26562:51:0;;;;-1:-1:-1;;;26562:51:0;;;;;;;;;;;-1:-1:-1;;;26562:51:0;;;;;;;;;;;;;;26632:729;;26682:14;;-1:-1:-1;;;;;26682:28:0;;26678:101;;26746:9;26334:1109;-1:-1:-1;;;26334:1109:0:o;26678:101::-;-1:-1:-1;;;27121:6:0;27166:17;;;;:11;:17;;;;;;;;;27154:29;;;;;;;;;-1:-1:-1;;;;;27154:29:0;;;;;-1:-1:-1;;;27154:29:0;;;;;;;;;;;-1:-1:-1;;;27154:29:0;;;;;;;;;;;;;27214:28;27210:109;;27282:9;26334:1109;-1:-1:-1;;;26334:1109:0:o;27210:109::-;27081:261;;;26543:833;26490:886;27404:31;;-1:-1:-1;;;27404:31:0;;;;;;;;;;;20225:191;20318:6;;;-1:-1:-1;;;;;20335:17:0;;;-1:-1:-1;;;;;;20335:17:0;;;;;;;20368:40;;20318:6;;;20335:17;20318:6;;20368:40;;20299:16;;20368:40;20288:128;20225:191;:::o;31128:104::-;31197:27;31207:2;31211:8;31197:27;;;;;;;;;;;;:9;:27::i;:::-;31128:104;;:::o;39791:667::-;39975:72;;-1:-1:-1;;;39975:72:0;;39954:4;;-1:-1:-1;;;;;39975:36:0;;;;;:72;;200:10;;40026:4;;40032:7;;40041:5;;39975:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39975:72:0;;;;;;;;-1:-1:-1;;39975:72:0;;;;;;;;;;;;:::i;:::-;;;39971:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40209:6;:13;40226:1;40209:18;40205:235;;40255:40;;-1:-1:-1;;;40255:40:0;;;;;;;;;;;40205:235;40398:6;40392:13;40383:6;40379:2;40375:15;40368:38;39971:480;-1:-1:-1;;;;;;40094:55:0;-1:-1:-1;;;40094:55:0;;-1:-1:-1;39971:480:0;39791:667;;;;;;:::o;42943:110::-;43003:13;43034;43027:20;;;;;:::i;1023:723::-;1079:13;1300:5;1309:1;1300:10;1296:53;;-1:-1:-1;;1327:10:0;;;;;;;;;;;;-1:-1:-1;;;1327:10:0;;;;;1023:723::o;1296:53::-;1374:5;1359:12;1415:78;1422:9;;1415:78;;1448:8;;;;:::i;:::-;;-1:-1:-1;1471:10:0;;-1:-1:-1;1479:2:0;1471:10;;:::i;:::-;;;1415:78;;;1503:19;1535:6;1525:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1525:17:0;;1503:39;;1553:154;1560:10;;1553:154;;1587:11;1597:1;1587:11;;:::i;:::-;;-1:-1:-1;1656:10:0;1664:2;1656:5;:10;:::i;:::-;1643:24;;:2;:24;:::i;:::-;1630:39;;1613:6;1620;1613:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1613:56:0;;;;;;;;-1:-1:-1;1684:11:0;1693:2;1684:11;;:::i;:::-;;;1553:154;;31595:163;31718:32;31724:2;31728:8;31738:5;31745:4;32156:20;32179:13;-1:-1:-1;;;;;32207:16:0;;32203:48;;32232:19;;-1:-1:-1;;;32232:19:0;;;;;;;;;;;32203:48;32266:8;32278:1;32266:13;32262:44;;32288:18;;-1:-1:-1;;;32288:18:0;;;;;;;;;;;32262:44;-1:-1:-1;;;;;32657:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32716:49:0;;32657:44;;;;;;;;32716:49;;;;-1:-1:-1;;32657:44:0;;;;;;32716:49;;;;;;;;;;;;;;;;32782:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32832:66:0;;;;-1:-1:-1;;;32882:15:0;32832:66;;;;;;;;;;32782:25;32979:23;;;33023:4;:23;;;;-1:-1:-1;;;;;;33031:13:0;;4158:19;:23;;33031:15;33019:641;;;33067:314;33098:38;;33123:12;;-1:-1:-1;;;;;33098:38:0;;;33115:1;;33098:38;;33115:1;;33098:38;33164:69;33203:1;33207:2;33211:14;;;;;;33227:5;33164:30;:69::i;:::-;33159:174;;33269:40;;-1:-1:-1;;;33269:40:0;;;;;;;;;;;33159:174;33376:3;33360:12;:19;33067:314;;33462:12;33445:13;;:29;33441:43;;33476:8;;;33441:43;33019:641;;;33525:120;33556:40;;33581:14;;;;;-1:-1:-1;;;;;33556:40:0;;;33573:1;;33556:40;;33573:1;;33556:40;33640:3;33624:12;:19;33525:120;;33019:641;-1:-1:-1;33674:13:0;:28;33724:60;30322:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:592::-;2950:6;2958;3011:2;2999:9;2990:7;2986:23;2982:32;2979:52;;;3027:1;3024;3017:12;2979:52;3067:9;3054:23;3096:18;3137:2;3129:6;3126:14;3123:34;;;3153:1;3150;3143:12;3123:34;3191:6;3180:9;3176:22;3166:32;;3236:7;3229:4;3225:2;3221:13;3217:27;3207:55;;3258:1;3255;3248:12;3207:55;3298:2;3285:16;3324:2;3316:6;3313:14;3310:34;;;3340:1;3337;3330:12;3310:34;3385:7;3380:2;3371:6;3367:2;3363:15;3359:24;3356:37;3353:57;;;3406:1;3403;3396:12;3353:57;3437:2;3429:11;;;;;3459:6;;-1:-1:-1;2879:592:1;;-1:-1:-1;;;;2879:592:1:o;3476:347::-;3541:6;3549;3602:2;3590:9;3581:7;3577:23;3573:32;3570:52;;;3618:1;3615;3608:12;3570:52;3641:29;3660:9;3641:29;:::i;:::-;3631:39;;3720:2;3709:9;3705:18;3692:32;3767:5;3760:13;3753:21;3746:5;3743:32;3733:60;;3789:1;3786;3779:12;3733:60;3812:5;3802:15;;;3476:347;;;;;:::o;3828:127::-;3889:10;3884:3;3880:20;3877:1;3870:31;3920:4;3917:1;3910:15;3944:4;3941:1;3934:15;3960:1138;4055:6;4063;4071;4079;4132:3;4120:9;4111:7;4107:23;4103:33;4100:53;;;4149:1;4146;4139:12;4100:53;4172:29;4191:9;4172:29;:::i;:::-;4162:39;;4220:38;4254:2;4243:9;4239:18;4220:38;:::i;:::-;4210:48;;4305:2;4294:9;4290:18;4277:32;4267:42;;4360:2;4349:9;4345:18;4332:32;4383:18;4424:2;4416:6;4413:14;4410:34;;;4440:1;4437;4430:12;4410:34;4478:6;4467:9;4463:22;4453:32;;4523:7;4516:4;4512:2;4508:13;4504:27;4494:55;;4545:1;4542;4535:12;4494:55;4581:2;4568:16;4603:2;4599;4596:10;4593:36;;;4609:18;;:::i;:::-;4684:2;4678:9;4652:2;4738:13;;-1:-1:-1;;4734:22:1;;;4758:2;4730:31;4726:40;4714:53;;;4782:18;;;4802:22;;;4779:46;4776:72;;;4828:18;;:::i;:::-;4868:10;4864:2;4857:22;4903:2;4895:6;4888:18;4943:7;4938:2;4933;4929;4925:11;4921:20;4918:33;4915:53;;;4964:1;4961;4954:12;4915:53;5020:2;5015;5011;5007:11;5002:2;4994:6;4990:15;4977:46;5065:1;5060:2;5055;5047:6;5043:15;5039:24;5032:35;5086:6;5076:16;;;;;;;3960:1138;;;;;;;:::o;5103:260::-;5171:6;5179;5232:2;5220:9;5211:7;5207:23;5203:32;5200:52;;;5248:1;5245;5238:12;5200:52;5271:29;5290:9;5271:29;:::i;:::-;5261:39;;5319:38;5353:2;5342:9;5338:18;5319:38;:::i;:::-;5309:48;;5103:260;;;;;:::o;5368:380::-;5447:1;5443:12;;;;5490;;;5511:61;;5565:4;5557:6;5553:17;5543:27;;5511:61;5618:2;5610:6;5607:14;5587:18;5584:38;5581:161;;5664:10;5659:3;5655:20;5652:1;5645:31;5699:4;5696:1;5689:15;5727:4;5724:1;5717:15;5581:161;;5368:380;;;:::o;5753:356::-;5955:2;5937:21;;;5974:18;;;5967:30;6033:34;6028:2;6013:18;;6006:62;6100:2;6085:18;;5753:356::o;7176:127::-;7237:10;7232:3;7228:20;7225:1;7218:31;7268:4;7265:1;7258:15;7292:4;7289:1;7282:15;7308:128;7348:3;7379:1;7375:6;7372:1;7369:13;7366:39;;;7385:18;;:::i;:::-;-1:-1:-1;7421:9:1;;7308:128::o;7792:125::-;7832:4;7860:1;7857;7854:8;7851:34;;;7865:18;;:::i;:::-;-1:-1:-1;7902:9:1;;7792:125::o;7922:470::-;8101:3;8139:6;8133:13;8155:53;8201:6;8196:3;8189:4;8181:6;8177:17;8155:53;:::i;:::-;8271:13;;8230:16;;;;8293:57;8271:13;8230:16;8327:4;8315:17;;8293:57;:::i;:::-;8366:20;;7922:470;-1:-1:-1;;;;7922:470:1:o;9799:489::-;-1:-1:-1;;;;;10068:15:1;;;10050:34;;10120:15;;10115:2;10100:18;;10093:43;10167:2;10152:18;;10145:34;;;10215:3;10210:2;10195:18;;10188:31;;;9993:4;;10236:46;;10262:19;;10254:6;10236:46;:::i;:::-;10228:54;9799:489;-1:-1:-1;;;;;;9799:489:1:o;10293:249::-;10362:6;10415:2;10403:9;10394:7;10390:23;10386:32;10383:52;;;10431:1;10428;10421:12;10383:52;10463:9;10457:16;10482:30;10506:5;10482:30;:::i;10547:135::-;10586:3;10607:17;;;10604:43;;10627:18;;:::i;:::-;-1:-1:-1;10674:1:1;10663:13;;10547:135::o;10687:127::-;10748:10;10743:3;10739:20;10736:1;10729:31;10779:4;10776:1;10769:15;10803:4;10800:1;10793:15;10819:120;10859:1;10885;10875:35;;10890:18;;:::i;:::-;-1:-1:-1;10924:9:1;;10819:120::o;10944:112::-;10976:1;11002;10992:35;;11007:18;;:::i;:::-;-1:-1:-1;11041:9:1;;10944:112::o;11061:127::-;11122:10;11117:3;11113:20;11110:1;11103:31;11153:4;11150:1;11143:15;11177:4;11174:1;11167:15

Swarm Source

ipfs://1ea878932e4f48fbf92f81ddf70638ea30e645a2a32fe10cbeef376e4342fef5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.