ETH Price: $3,384.84 (-1.81%)
Gas: 4 Gwei

Token

Atlantean Parcel Pass (APP)
 

Overview

Max Total Supply

856 APP

Holders

432

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 APP
0x33a9e9bc61182a40a23ca3f7f1babae14d2c32ea
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AtlanteanParcelPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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



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



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



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



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

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

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



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



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

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



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



/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}



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



error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 (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())) : '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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 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 (!_checkOnERC721Received(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 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

interface IStaking {
    function getStakeOwner(uint256 _id) external view returns(address);
    function getStakeTime(uint256 _id) external view returns(uint256);
}
      
contract AtlanteanParcelPass is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string  public baseURI;
    uint256 public maxSupply     = 5000;
    uint256 public minStakedTime = 1_641_600; 
    bool    public paused        = false;

    mapping(uint256 => bool) atlanteanAlreadyClaimed;

    IStaking public staking;

    constructor() ERC721A("Atlantean Parcel Pass", "APP") {
        staking = IStaking(0x45235D72a7786Db0320D8227BEDF95Eb273977E9);
    }

    function claim(uint256 _atlanteanId) public nonReentrant {
        address caller = msg.sender;

        require(!paused, "Contract is paused!");
        require(totalSupply() < maxSupply, "Max supply exceeded!");
        require(atlanteanAlreadyClaimed[_atlanteanId] == false, "Max land per Atlantean exceeded!");
        require(staking.getStakeOwner(_atlanteanId) == caller, "Caller not owner of NFT!");
        require(staking.getStakeTime(_atlanteanId) > minStakedTime, "NFT is staked less than 19 days!");

        atlanteanAlreadyClaimed[_atlanteanId] = true;
        _mint(caller, 1, "", false);
    }

    function claimMany(uint256[] memory _atlanteansIds) public nonReentrant {
        address caller = msg.sender;
        uint256 amount = _atlanteansIds.length;

        require(!paused, "Contract is paused!");
        require(totalSupply() + amount < maxSupply + 1, "Max supply exceeded!");

        for(uint256 i=0; i<_atlanteansIds.length; i++) {
            uint256 _atlanteanId = _atlanteansIds[i];

            require(atlanteanAlreadyClaimed[_atlanteanId] == false, "Max land per Atlantean exceeded!");
            require(staking.getStakeOwner(_atlanteanId) == caller, "Caller not owner or NFT not staked!");
            require(staking.getStakeTime(_atlanteanId) > minStakedTime, "NFT is staked less than 19 days!");

            atlanteanAlreadyClaimed[_atlanteanId] = true;
        }
        _mint(caller, amount, "", false);

    }

    function atlanteanAlreadyUsed(uint256 _id) public view returns(bool) {
        return atlanteanAlreadyClaimed[_id];
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    function setMinStakedTime(uint256 _minTime) public onlyOwner {
        minStakedTime = _minTime;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"atlanteanAlreadyUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_atlanteanId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_atlanteansIds","type":"uint256[]"}],"name":"claimMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minStakedTime","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minTime","type":"uint256"}],"name":"setMinStakedTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"staking","outputs":[{"internalType":"contract IStaking","name":"","type":"address"}],"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"}]

6080604052611388600b5562190c80600c55600d805460ff191690553480156200002857600080fd5b50604080518082018252601581527f41746c616e7465616e2050617263656c2050617373000000000000000000000060208083019182528351808501909452600384526204150560ec1b908401528151919291620000899160029162000143565b5080516200009f90600390602084019062000143565b505050620000bc620000b6620000ed60201b60201c565b620000f1565b6001600955600f80546001600160a01b0319167345235d72a7786db0320d8227bedf95eb273977e917905562000226565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015190620001e9565b90600052602060002090601f016020900481019282620001755760008555620001c0565b82601f106200019057805160ff1916838001178555620001c0565b82800160010185558215620001c0579182015b82811115620001c0578251825591602001919060010190620001a3565b50620001ce929150620001d2565b5090565b5b80821115620001ce5760008155600101620001d3565b600181811c90821680620001fe57607f821691505b602082108114156200022057634e487b7160e01b600052602260045260246000fd5b50919050565b611f3280620002366000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd146103a2578063d5abeb01146103b5578063e985e9c5146103be578063f2fde38b146103fa57600080fd5b8063a22cb46514610373578063b88d4fde14610386578063c654ce901461039957600080fd5b8063715018a6116100d3578063715018a61461033f5780638da5cb5b14610347578063925489a81461035857806395d89b411461036b57600080fd5b80636352211e146103115780636c0360eb1461032457806370a082311461032c57600080fd5b80633483dc8b116101665780634cf088d9116101405780634cf088d9146102cb57806355f804b3146102de57806358085aca146102f15780635c975abb1461030457600080fd5b80633483dc8b14610282578063379607f5146102a557806342842e0e146102b857600080fd5b8063095ea7b3116101a2578063095ea7b31461023157806316c38b3c1461024657806318160ddd1461025957806323b872dd1461026f57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004611bca565b61040d565b60405190151581526020015b60405180910390f35b6101f961045f565b6040516101e89190611d27565b610219610214366004611c4d565b6104f1565b6040516001600160a01b0390911681526020016101e8565b61024461023f366004611ad6565b610535565b005b610244610254366004611baf565b6105c3565b600154600054035b6040519081526020016101e8565b61024461027d3660046119e0565b610609565b6101dc610290366004611c4d565b6000908152600e602052604090205460ff1690565b6102446102b3366004611c4d565b610614565b6102446102c63660046119e0565b610943565b600f54610219906001600160a01b031681565b6102446102ec366004611c04565b61095e565b6102446102ff366004611c4d565b61099f565b600d546101dc9060ff1681565b61021961031f366004611c4d565b6109ce565b6101f96109e0565b61026161033a36600461196d565b610a6e565b610244610abd565b6008546001600160a01b0316610219565b610244610366366004611b02565b610af3565b6101f9610e90565b610244610381366004611aa1565b610e9f565b610244610394366004611a21565b610f35565b610261600c5481565b6101f96103b0366004611c4d565b610f6f565b610261600b5481565b6101dc6103cc3660046119a7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61024461040836600461196d565b61103a565b60006001600160e01b031982166380ac58cd60e01b148061043e57506001600160e01b03198216635b5e139f60e01b145b8061045957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461046e90611e0f565b80601f016020809104026020016040519081016040528092919081815260200182805461049a90611e0f565b80156104e75780601f106104bc576101008083540402835291602001916104e7565b820191906000526020600020905b8154815290600101906020018083116104ca57829003601f168201915b5050505050905090565b60006104fc826110d5565b610519576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610540826109ce565b9050806001600160a01b0316836001600160a01b031614156105755760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610595575061059381336103cc565b155b156105b3576040516367d9dca160e11b815260040160405180910390fd5b6105be838383611100565b505050565b6008546001600160a01b031633146105f65760405162461bcd60e51b81526004016105ed90611d3a565b60405180910390fd5b600d805460ff1916911515919091179055565b6105be83838361115c565b600260095414156106675760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105ed565b6002600955600d54339060ff16156106b75760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b60448201526064016105ed565b600b5460015460005403106107055760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016105ed565b6000828152600e602052604090205460ff16156107645760405162461bcd60e51b815260206004820181905260248201527f4d6178206c616e64207065722041746c616e7465616e2065786365656465642160448201526064016105ed565b600f54604051632884792b60e11b8152600481018490526001600160a01b03838116921690635108f2569060240160206040518083038186803b1580156107aa57600080fd5b505afa1580156107be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e2919061198a565b6001600160a01b0316146108385760405162461bcd60e51b815260206004820152601860248201527f43616c6c6572206e6f74206f776e6572206f66204e465421000000000000000060448201526064016105ed565b600c54600f546040516381c8d14960e01b8152600481018590526001600160a01b03909116906381c8d1499060240160206040518083038186803b15801561087f57600080fd5b505afa158015610893573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b79190611c66565b116109045760405162461bcd60e51b815260206004820181905260248201527f4e4654206973207374616b6564206c657373207468616e20313920646179732160448201526064016105ed565b6000828152600e60209081526040808320805460ff19166001908117909155815192830190915282825261093a92849290611372565b50506001600955565b6105be83838360405180602001604052806000815250610f35565b6008546001600160a01b031633146109885760405162461bcd60e51b81526004016105ed90611d3a565b805161099b90600a906020840190611867565b5050565b6008546001600160a01b031633146109c95760405162461bcd60e51b81526004016105ed90611d3a565b600c55565b60006109d9826114de565b5192915050565b600a80546109ed90611e0f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1990611e0f565b8015610a665780601f10610a3b57610100808354040283529160200191610a66565b820191906000526020600020905b815481529060010190602001808311610a4957829003601f168201915b505050505081565b60006001600160a01b038216610a97576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ae75760405162461bcd60e51b81526004016105ed90611d3a565b610af160006115f9565b565b60026009541415610b465760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105ed565b60026009558051600d5433919060ff1615610b995760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b60448201526064016105ed565b600b54610ba7906001611da0565b81610bb56001546000540390565b610bbf9190611da0565b10610c035760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016105ed565b60005b8351811015610e69576000848281518110610c2357610c23611ea5565b6020908102919091018101516000818152600e90925260409091205490915060ff1615610c925760405162461bcd60e51b815260206004820181905260248201527f4d6178206c616e64207065722041746c616e7465616e2065786365656465642160448201526064016105ed565b600f54604051632884792b60e11b8152600481018390526001600160a01b03868116921690635108f2569060240160206040518083038186803b158015610cd857600080fd5b505afa158015610cec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d10919061198a565b6001600160a01b031614610d725760405162461bcd60e51b815260206004820152602360248201527f43616c6c6572206e6f74206f776e6572206f72204e4654206e6f74207374616b60448201526265642160e81b60648201526084016105ed565b600c54600f546040516381c8d14960e01b8152600481018490526001600160a01b03909116906381c8d1499060240160206040518083038186803b158015610db957600080fd5b505afa158015610dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df19190611c66565b11610e3e5760405162461bcd60e51b815260206004820181905260248201527f4e4654206973207374616b6564206c657373207468616e20313920646179732160448201526064016105ed565b6000908152600e60205260409020805460ff1916600117905580610e6181611e4a565b915050610c06565b50610e868282604051806020016040528060008152506000611372565b5050600160095550565b60606003805461046e90611e0f565b6001600160a01b038216331415610ec95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f4084848461115c565b610f4c8484848461164b565b610f69576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f7a826110d5565b610fde5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ed565b6000610fe861175a565b905060008151116110085760405180602001604052806000815250611033565b8061101284611769565b604051602001611023929190611cab565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110645760405162461bcd60e51b81526004016105ed90611d3a565b6001600160a01b0381166110c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ed565b6110d2816115f9565b50565b6000805482108015610459575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611167826114de565b80519091506000906001600160a01b0316336001600160a01b031614806111955750815161119590336103cc565b806111b05750336111a5846104f1565b6001600160a01b0316145b9050806111d057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146112055760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661122c57604051633a954ecd60e21b815260040160405180910390fd5b61123c6000848460000151611100565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661132857600054811015611328578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000546001600160a01b03851661139b57604051622e076360e81b815260040160405180910390fd5b836113b95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156114d55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156114ab57506114a9600088848861164b565b155b156114c9576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611454565b5060005561136b565b60408051606081018252600080825260208201819052918101829052905482908110156115e057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115de5780516001600160a01b031615611574579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115d9579392505050565b611574565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561174e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061168f903390899088908890600401611cea565b602060405180830381600087803b1580156116a957600080fd5b505af19250505080156116d9575060408051601f3d908101601f191682019092526116d691810190611be7565b60015b611734573d808015611707576040519150601f19603f3d011682016040523d82523d6000602084013e61170c565b606091505b50805161172c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611752565b5060015b949350505050565b6060600a805461046e90611e0f565b60608161178d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117b757806117a181611e4a565b91506117b09050600a83611db8565b9150611791565b60008167ffffffffffffffff8111156117d2576117d2611ebb565b6040519080825280601f01601f1916602001820160405280156117fc576020820181803683370190505b5090505b841561175257611811600183611dcc565b915061181e600a86611e65565b611829906030611da0565b60f81b81838151811061183e5761183e611ea5565b60200101906001600160f81b031916908160001a905350611860600a86611db8565b9450611800565b82805461187390611e0f565b90600052602060002090601f01602090048101928261189557600085556118db565b82601f106118ae57805160ff19168380011785556118db565b828001600101855582156118db579182015b828111156118db5782518255916020019190600101906118c0565b506118e79291506118eb565b5090565b5b808211156118e757600081556001016118ec565b600067ffffffffffffffff83111561191a5761191a611ebb565b61192d601f8401601f1916602001611d6f565b905082815283838301111561194157600080fd5b828260208301376000602084830101529392505050565b8035801515811461196857600080fd5b919050565b60006020828403121561197f57600080fd5b813561103381611ed1565b60006020828403121561199c57600080fd5b815161103381611ed1565b600080604083850312156119ba57600080fd5b82356119c581611ed1565b915060208301356119d581611ed1565b809150509250929050565b6000806000606084860312156119f557600080fd5b8335611a0081611ed1565b92506020840135611a1081611ed1565b929592945050506040919091013590565b60008060008060808587031215611a3757600080fd5b8435611a4281611ed1565b93506020850135611a5281611ed1565b925060408501359150606085013567ffffffffffffffff811115611a7557600080fd5b8501601f81018713611a8657600080fd5b611a9587823560208401611900565b91505092959194509250565b60008060408385031215611ab457600080fd5b8235611abf81611ed1565b9150611acd60208401611958565b90509250929050565b60008060408385031215611ae957600080fd5b8235611af481611ed1565b946020939093013593505050565b60006020808385031215611b1557600080fd5b823567ffffffffffffffff80821115611b2d57600080fd5b818501915085601f830112611b4157600080fd5b813581811115611b5357611b53611ebb565b8060051b9150611b64848301611d6f565b8181528481019084860184860187018a1015611b7f57600080fd5b600095505b83861015611ba2578035835260019590950194918601918601611b84565b5098975050505050505050565b600060208284031215611bc157600080fd5b61103382611958565b600060208284031215611bdc57600080fd5b813561103381611ee6565b600060208284031215611bf957600080fd5b815161103381611ee6565b600060208284031215611c1657600080fd5b813567ffffffffffffffff811115611c2d57600080fd5b8201601f81018413611c3e57600080fd5b61175284823560208401611900565b600060208284031215611c5f57600080fd5b5035919050565b600060208284031215611c7857600080fd5b5051919050565b60008151808452611c97816020860160208601611de3565b601f01601f19169290920160200192915050565b60008351611cbd818460208801611de3565b835190830190611cd1818360208801611de3565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d1d90830184611c7f565b9695505050505050565b6020815260006110336020830184611c7f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611d9857611d98611ebb565b604052919050565b60008219821115611db357611db3611e79565b500190565b600082611dc757611dc7611e8f565b500490565b600082821015611dde57611dde611e79565b500390565b60005b83811015611dfe578181015183820152602001611de6565b83811115610f695750506000910152565b600181811c90821680611e2357607f821691505b60208210811415611e4457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e5e57611e5e611e79565b5060010190565b600082611e7457611e74611e8f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146110d257600080fd5b6001600160e01b0319811681146110d257600080fdfea2646970667358221220641b0c73b56a4d51dd5c72b5c68756a56d7efed30d80ae7480a5ac037c73b60064736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd146103a2578063d5abeb01146103b5578063e985e9c5146103be578063f2fde38b146103fa57600080fd5b8063a22cb46514610373578063b88d4fde14610386578063c654ce901461039957600080fd5b8063715018a6116100d3578063715018a61461033f5780638da5cb5b14610347578063925489a81461035857806395d89b411461036b57600080fd5b80636352211e146103115780636c0360eb1461032457806370a082311461032c57600080fd5b80633483dc8b116101665780634cf088d9116101405780634cf088d9146102cb57806355f804b3146102de57806358085aca146102f15780635c975abb1461030457600080fd5b80633483dc8b14610282578063379607f5146102a557806342842e0e146102b857600080fd5b8063095ea7b3116101a2578063095ea7b31461023157806316c38b3c1461024657806318160ddd1461025957806323b872dd1461026f57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004611bca565b61040d565b60405190151581526020015b60405180910390f35b6101f961045f565b6040516101e89190611d27565b610219610214366004611c4d565b6104f1565b6040516001600160a01b0390911681526020016101e8565b61024461023f366004611ad6565b610535565b005b610244610254366004611baf565b6105c3565b600154600054035b6040519081526020016101e8565b61024461027d3660046119e0565b610609565b6101dc610290366004611c4d565b6000908152600e602052604090205460ff1690565b6102446102b3366004611c4d565b610614565b6102446102c63660046119e0565b610943565b600f54610219906001600160a01b031681565b6102446102ec366004611c04565b61095e565b6102446102ff366004611c4d565b61099f565b600d546101dc9060ff1681565b61021961031f366004611c4d565b6109ce565b6101f96109e0565b61026161033a36600461196d565b610a6e565b610244610abd565b6008546001600160a01b0316610219565b610244610366366004611b02565b610af3565b6101f9610e90565b610244610381366004611aa1565b610e9f565b610244610394366004611a21565b610f35565b610261600c5481565b6101f96103b0366004611c4d565b610f6f565b610261600b5481565b6101dc6103cc3660046119a7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61024461040836600461196d565b61103a565b60006001600160e01b031982166380ac58cd60e01b148061043e57506001600160e01b03198216635b5e139f60e01b145b8061045957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461046e90611e0f565b80601f016020809104026020016040519081016040528092919081815260200182805461049a90611e0f565b80156104e75780601f106104bc576101008083540402835291602001916104e7565b820191906000526020600020905b8154815290600101906020018083116104ca57829003601f168201915b5050505050905090565b60006104fc826110d5565b610519576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610540826109ce565b9050806001600160a01b0316836001600160a01b031614156105755760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610595575061059381336103cc565b155b156105b3576040516367d9dca160e11b815260040160405180910390fd5b6105be838383611100565b505050565b6008546001600160a01b031633146105f65760405162461bcd60e51b81526004016105ed90611d3a565b60405180910390fd5b600d805460ff1916911515919091179055565b6105be83838361115c565b600260095414156106675760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105ed565b6002600955600d54339060ff16156106b75760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b60448201526064016105ed565b600b5460015460005403106107055760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016105ed565b6000828152600e602052604090205460ff16156107645760405162461bcd60e51b815260206004820181905260248201527f4d6178206c616e64207065722041746c616e7465616e2065786365656465642160448201526064016105ed565b600f54604051632884792b60e11b8152600481018490526001600160a01b03838116921690635108f2569060240160206040518083038186803b1580156107aa57600080fd5b505afa1580156107be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e2919061198a565b6001600160a01b0316146108385760405162461bcd60e51b815260206004820152601860248201527f43616c6c6572206e6f74206f776e6572206f66204e465421000000000000000060448201526064016105ed565b600c54600f546040516381c8d14960e01b8152600481018590526001600160a01b03909116906381c8d1499060240160206040518083038186803b15801561087f57600080fd5b505afa158015610893573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b79190611c66565b116109045760405162461bcd60e51b815260206004820181905260248201527f4e4654206973207374616b6564206c657373207468616e20313920646179732160448201526064016105ed565b6000828152600e60209081526040808320805460ff19166001908117909155815192830190915282825261093a92849290611372565b50506001600955565b6105be83838360405180602001604052806000815250610f35565b6008546001600160a01b031633146109885760405162461bcd60e51b81526004016105ed90611d3a565b805161099b90600a906020840190611867565b5050565b6008546001600160a01b031633146109c95760405162461bcd60e51b81526004016105ed90611d3a565b600c55565b60006109d9826114de565b5192915050565b600a80546109ed90611e0f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1990611e0f565b8015610a665780601f10610a3b57610100808354040283529160200191610a66565b820191906000526020600020905b815481529060010190602001808311610a4957829003601f168201915b505050505081565b60006001600160a01b038216610a97576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ae75760405162461bcd60e51b81526004016105ed90611d3a565b610af160006115f9565b565b60026009541415610b465760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105ed565b60026009558051600d5433919060ff1615610b995760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b60448201526064016105ed565b600b54610ba7906001611da0565b81610bb56001546000540390565b610bbf9190611da0565b10610c035760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016105ed565b60005b8351811015610e69576000848281518110610c2357610c23611ea5565b6020908102919091018101516000818152600e90925260409091205490915060ff1615610c925760405162461bcd60e51b815260206004820181905260248201527f4d6178206c616e64207065722041746c616e7465616e2065786365656465642160448201526064016105ed565b600f54604051632884792b60e11b8152600481018390526001600160a01b03868116921690635108f2569060240160206040518083038186803b158015610cd857600080fd5b505afa158015610cec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d10919061198a565b6001600160a01b031614610d725760405162461bcd60e51b815260206004820152602360248201527f43616c6c6572206e6f74206f776e6572206f72204e4654206e6f74207374616b60448201526265642160e81b60648201526084016105ed565b600c54600f546040516381c8d14960e01b8152600481018490526001600160a01b03909116906381c8d1499060240160206040518083038186803b158015610db957600080fd5b505afa158015610dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df19190611c66565b11610e3e5760405162461bcd60e51b815260206004820181905260248201527f4e4654206973207374616b6564206c657373207468616e20313920646179732160448201526064016105ed565b6000908152600e60205260409020805460ff1916600117905580610e6181611e4a565b915050610c06565b50610e868282604051806020016040528060008152506000611372565b5050600160095550565b60606003805461046e90611e0f565b6001600160a01b038216331415610ec95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f4084848461115c565b610f4c8484848461164b565b610f69576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f7a826110d5565b610fde5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ed565b6000610fe861175a565b905060008151116110085760405180602001604052806000815250611033565b8061101284611769565b604051602001611023929190611cab565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110645760405162461bcd60e51b81526004016105ed90611d3a565b6001600160a01b0381166110c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ed565b6110d2816115f9565b50565b6000805482108015610459575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611167826114de565b80519091506000906001600160a01b0316336001600160a01b031614806111955750815161119590336103cc565b806111b05750336111a5846104f1565b6001600160a01b0316145b9050806111d057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146112055760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661122c57604051633a954ecd60e21b815260040160405180910390fd5b61123c6000848460000151611100565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661132857600054811015611328578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000546001600160a01b03851661139b57604051622e076360e81b815260040160405180910390fd5b836113b95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156114d55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156114ab57506114a9600088848861164b565b155b156114c9576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611454565b5060005561136b565b60408051606081018252600080825260208201819052918101829052905482908110156115e057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115de5780516001600160a01b031615611574579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115d9579392505050565b611574565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561174e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061168f903390899088908890600401611cea565b602060405180830381600087803b1580156116a957600080fd5b505af19250505080156116d9575060408051601f3d908101601f191682019092526116d691810190611be7565b60015b611734573d808015611707576040519150601f19603f3d011682016040523d82523d6000602084013e61170c565b606091505b50805161172c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611752565b5060015b949350505050565b6060600a805461046e90611e0f565b60608161178d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117b757806117a181611e4a565b91506117b09050600a83611db8565b9150611791565b60008167ffffffffffffffff8111156117d2576117d2611ebb565b6040519080825280601f01601f1916602001820160405280156117fc576020820181803683370190505b5090505b841561175257611811600183611dcc565b915061181e600a86611e65565b611829906030611da0565b60f81b81838151811061183e5761183e611ea5565b60200101906001600160f81b031916908160001a905350611860600a86611db8565b9450611800565b82805461187390611e0f565b90600052602060002090601f01602090048101928261189557600085556118db565b82601f106118ae57805160ff19168380011785556118db565b828001600101855582156118db579182015b828111156118db5782518255916020019190600101906118c0565b506118e79291506118eb565b5090565b5b808211156118e757600081556001016118ec565b600067ffffffffffffffff83111561191a5761191a611ebb565b61192d601f8401601f1916602001611d6f565b905082815283838301111561194157600080fd5b828260208301376000602084830101529392505050565b8035801515811461196857600080fd5b919050565b60006020828403121561197f57600080fd5b813561103381611ed1565b60006020828403121561199c57600080fd5b815161103381611ed1565b600080604083850312156119ba57600080fd5b82356119c581611ed1565b915060208301356119d581611ed1565b809150509250929050565b6000806000606084860312156119f557600080fd5b8335611a0081611ed1565b92506020840135611a1081611ed1565b929592945050506040919091013590565b60008060008060808587031215611a3757600080fd5b8435611a4281611ed1565b93506020850135611a5281611ed1565b925060408501359150606085013567ffffffffffffffff811115611a7557600080fd5b8501601f81018713611a8657600080fd5b611a9587823560208401611900565b91505092959194509250565b60008060408385031215611ab457600080fd5b8235611abf81611ed1565b9150611acd60208401611958565b90509250929050565b60008060408385031215611ae957600080fd5b8235611af481611ed1565b946020939093013593505050565b60006020808385031215611b1557600080fd5b823567ffffffffffffffff80821115611b2d57600080fd5b818501915085601f830112611b4157600080fd5b813581811115611b5357611b53611ebb565b8060051b9150611b64848301611d6f565b8181528481019084860184860187018a1015611b7f57600080fd5b600095505b83861015611ba2578035835260019590950194918601918601611b84565b5098975050505050505050565b600060208284031215611bc157600080fd5b61103382611958565b600060208284031215611bdc57600080fd5b813561103381611ee6565b600060208284031215611bf957600080fd5b815161103381611ee6565b600060208284031215611c1657600080fd5b813567ffffffffffffffff811115611c2d57600080fd5b8201601f81018413611c3e57600080fd5b61175284823560208401611900565b600060208284031215611c5f57600080fd5b5035919050565b600060208284031215611c7857600080fd5b5051919050565b60008151808452611c97816020860160208601611de3565b601f01601f19169290920160200192915050565b60008351611cbd818460208801611de3565b835190830190611cd1818360208801611de3565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d1d90830184611c7f565b9695505050505050565b6020815260006110336020830184611c7f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611d9857611d98611ebb565b604052919050565b60008219821115611db357611db3611e79565b500190565b600082611dc757611dc7611e8f565b500490565b600082821015611dde57611dde611e79565b500390565b60005b83811015611dfe578181015183820152602001611de6565b83811115610f695750506000910152565b600181811c90821680611e2357607f821691505b60208210811415611e4457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e5e57611e5e611e79565b5060010190565b600082611e7457611e74611e8f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146110d257600080fd5b6001600160e01b0319811681146110d257600080fdfea2646970667358221220641b0c73b56a4d51dd5c72b5c68756a56d7efed30d80ae7480a5ac037c73b60064736f6c63430008070033

Deployed Bytecode Sourcemap

45840:3043:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28460:305;;;;;;:::i;:::-;;:::i;:::-;;;7641:14:1;;7634:22;7616:41;;7604:2;7589:18;28460:305:0;;;;;;;;31820:100;;;:::i;:::-;;;;;;;:::i;33323:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6939:32:1;;;6921:51;;6909:2;6894:18;33323:204:0;6775:203:1;32886:371:0;;;;;;:::i;:::-;;:::i;:::-;;48681:83;;;;;;:::i;:::-;;:::i;28117:271::-;28353:12;;28161:7;28337:13;:28;28117:271;;;11983:25:1;;;11971:2;11956:18;28117:271:0;11837:177:1;34180:170:0;;;;;;:::i;:::-;;:::i;47838:123::-;;;;;;:::i;:::-;47901:4;47925:28;;;:23;:28;;;;;;;;;47838:123;46343:620;;;;;;:::i;:::-;;:::i;34421:185::-;;;;;;:::i;:::-;;:::i;46168:23::-;;;;;-1:-1:-1;;;;;46168:23:0;;;48569:104;;;;;;:::i;:::-;;:::i;48457:::-;;;;;;:::i;:::-;;:::i;46066:36::-;;;;;;;;;31629:124;;;;;;:::i;:::-;;:::i;45947:22::-;;;:::i;28829:206::-;;;;;;:::i;:::-;;:::i;20569:103::-;;;:::i;19918:87::-;19991:6;;-1:-1:-1;;;;;19991:6:0;19918:87;;46971:859;;;;;;:::i;:::-;;:::i;31989:104::-;;;:::i;33599:279::-;;;;;;:::i;:::-;;:::i;34677:342::-;;;;;;:::i;:::-;;:::i;46018:40::-;;;;;;47969:480;;;;;;:::i;:::-;;:::i;45976:35::-;;;;;;33949:164;;;;;;:::i;:::-;-1:-1:-1;;;;;34070:25:0;;;34046:4;34070:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33949:164;20827:201;;;;;;:::i;:::-;;:::i;28460:305::-;28562:4;-1:-1:-1;;;;;;28599:40:0;;-1:-1:-1;;;28599:40:0;;:105;;-1:-1:-1;;;;;;;28656:48:0;;-1:-1:-1;;;28656:48:0;28599:105;:158;;;-1:-1:-1;;;;;;;;;;24799:40:0;;;28721:36;28579:178;28460:305;-1:-1:-1;;28460:305:0:o;31820:100::-;31874:13;31907:5;31900:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31820:100;:::o;33323:204::-;33391:7;33416:16;33424:7;33416;:16::i;:::-;33411:64;;33441:34;;-1:-1:-1;;;33441:34:0;;;;;;;;;;;33411:64;-1:-1:-1;33495:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33495:24:0;;33323:204::o;32886:371::-;32959:13;32975:24;32991:7;32975:15;:24::i;:::-;32959:40;;33020:5;-1:-1:-1;;;;;33014:11:0;:2;-1:-1:-1;;;;;33014:11:0;;33010:48;;;33034:24;;-1:-1:-1;;;33034:24:0;;;;;;;;;;;33010:48;18861:10;-1:-1:-1;;;;;33075:21:0;;;;;;:63;;-1:-1:-1;33101:37:0;33118:5;18861:10;33949:164;:::i;33101:37::-;33100:38;33075:63;33071:138;;;33162:35;;-1:-1:-1;;;33162:35:0;;;;;;;;;;;33071:138;33221:28;33230:2;33234:7;33243:5;33221:8;:28::i;:::-;32948:309;32886:371;;:::o;48681:83::-;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;;;;;;;;;48741:6:::1;:15:::0;;-1:-1:-1;;48741:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48681:83::o;34180:170::-;34314:28;34324:4;34330:2;34334:7;34314:9;:28::i;46343:620::-;23041:1;23639:7;;:19;;23631:63;;;;-1:-1:-1;;;23631:63:0;;11679:2:1;23631:63:0;;;11661:21:1;11718:2;11698:18;;;11691:30;11757:33;11737:18;;;11730:61;11808:18;;23631:63:0;11477:355:1;23631:63:0;23041:1;23772:7;:18;46460:6:::1;::::0;46428:10:::1;::::0;46460:6:::1;;46459:7;46451:39;;;::::0;-1:-1:-1;;;46451:39:0;;9130:2:1;46451:39:0::1;::::0;::::1;9112:21:1::0;9169:2;9149:18;;;9142:30;-1:-1:-1;;;9188:18:1;;;9181:49;9247:18;;46451:39:0::1;8928:343:1::0;46451:39:0::1;46525:9;::::0;28353:12;;28161:7;28337:13;:28;46509:25:::1;46501:58;;;::::0;-1:-1:-1;;;46501:58:0;;10969:2:1;46501:58:0::1;::::0;::::1;10951:21:1::0;11008:2;10988:18;;;10981:30;-1:-1:-1;;;11027:18:1;;;11020:50;11087:18;;46501:58:0::1;10767:344:1::0;46501:58:0::1;46578:37;::::0;;;:23:::1;:37;::::0;;;;;::::1;;:46;46570:91;;;::::0;-1:-1:-1;;;46570:91:0;;9831:2:1;46570:91:0::1;::::0;::::1;9813:21:1::0;;;9850:18;;;9843:30;9909:34;9889:18;;;9882:62;9961:18;;46570:91:0::1;9629:356:1::0;46570:91:0::1;46680:7;::::0;:35:::1;::::0;-1:-1:-1;;;46680:35:0;;::::1;::::0;::::1;11983:25:1::0;;;-1:-1:-1;;;;;46680:45:0;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;11956:18:1;;46680:35:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46680:45:0::1;;46672:82;;;::::0;-1:-1:-1;;;46672:82:0;;9478:2:1;46672:82:0::1;::::0;::::1;9460:21:1::0;9517:2;9497:18;;;9490:30;9556:26;9536:18;;;9529:54;9600:18;;46672:82:0::1;9276:348:1::0;46672:82:0::1;46810:13;::::0;46773:7:::1;::::0;:34:::1;::::0;-1:-1:-1;;;46773:34:0;;::::1;::::0;::::1;11983:25:1::0;;;-1:-1:-1;;;;;46773:7:0;;::::1;::::0;:20:::1;::::0;11956:18:1;;46773:34:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:50;46765:95;;;::::0;-1:-1:-1;;;46765:95:0;;11318:2:1;46765:95:0::1;::::0;::::1;11300:21:1::0;;;11337:18;;;11330:30;11396:34;11376:18;;;11369:62;11448:18;;46765:95:0::1;11116:356:1::0;46765:95:0::1;46873:37;::::0;;;:23:::1;:37;::::0;;;;;;;:44;;-1:-1:-1;;46873:44:0::1;46913:4;46873:44:::0;;::::1;::::0;;;46928:27;;;;::::1;::::0;;;;;;::::1;::::0;46934:6;;46928:27;:5:::1;:27::i;:::-;-1:-1:-1::0;;22997:1:0;23951:7;:22;46343:620::o;34421:185::-;34559:39;34576:4;34582:2;34586:7;34559:39;;;;;;;;;;;;:16;:39::i;48569:104::-;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;48644:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48569:104:::0;:::o;48457:::-;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;48529:13:::1;:24:::0;48457:104::o;31629:124::-;31693:7;31720:20;31732:7;31720:11;:20::i;:::-;:25;;31629:124;-1:-1:-1;;31629:124:0:o;45947:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28829:206::-;28893:7;-1:-1:-1;;;;;28917:19:0;;28913:60;;28945:28;;-1:-1:-1;;;28945:28:0;;;;;;;;;;;28913:60;-1:-1:-1;;;;;;28999:19:0;;;;;:12;:19;;;;;:27;;;;28829:206::o;20569:103::-;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;20634:30:::1;20661:1;20634:18;:30::i;:::-;20569:103::o:0;46971:859::-;23041:1;23639:7;;:19;;23631:63;;;;-1:-1:-1;;;23631:63:0;;11679:2:1;23631:63:0;;;11661:21:1;11718:2;11698:18;;;11691:30;11757:33;11737:18;;;11730:61;11808:18;;23631:63:0;11477:355:1;23631:63:0;23041:1;23772:7;:18;47109:21;;47152:6:::1;::::0;47071:10:::1;::::0;47109:21;47152:6:::1;;47151:7;47143:39;;;::::0;-1:-1:-1;;;47143:39:0;;9130:2:1;47143:39:0::1;::::0;::::1;9112:21:1::0;9169:2;9149:18;;;9142:30;-1:-1:-1;;;9188:18:1;;;9181:49;9247:18;;47143:39:0::1;8928:343:1::0;47143:39:0::1;47226:9;::::0;:13:::1;::::0;47238:1:::1;47226:13;:::i;:::-;47217:6;47201:13;28353:12:::0;;28161:7;28337:13;:28;;28117:271;47201:13:::1;:22;;;;:::i;:::-;:38;47193:71;;;::::0;-1:-1:-1;;;47193:71:0;;10969:2:1;47193:71:0::1;::::0;::::1;10951:21:1::0;11008:2;10988:18;;;10981:30;-1:-1:-1;;;11027:18:1;;;11020:50;11087:18;;47193:71:0::1;10767:344:1::0;47193:71:0::1;47281:9;47277:501;47296:14;:21;47294:1;:23;47277:501;;;47339:20;47362:14;47377:1;47362:17;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;47404:37:::1;::::0;;;:23:::1;:37:::0;;;;;;;;47362:17;;-1:-1:-1;47404:37:0::1;;:46;47396:91;;;::::0;-1:-1:-1;;;47396:91:0;;9831:2:1;47396:91:0::1;::::0;::::1;9813:21:1::0;;;9850:18;;;9843:30;9909:34;9889:18;;;9882:62;9961:18;;47396:91:0::1;9629:356:1::0;47396:91:0::1;47510:7;::::0;:35:::1;::::0;-1:-1:-1;;;47510:35:0;;::::1;::::0;::::1;11983:25:1::0;;;-1:-1:-1;;;;;47510:45:0;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;11956:18:1;;47510:35:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47510:45:0::1;;47502:93;;;::::0;-1:-1:-1;;;47502:93:0;;8319:2:1;47502:93:0::1;::::0;::::1;8301:21:1::0;8358:2;8338:18;;;8331:30;8397:34;8377:18;;;8370:62;-1:-1:-1;;;8448:18:1;;;8441:33;8491:19;;47502:93:0::1;8117:399:1::0;47502:93:0::1;47655:13;::::0;47618:7:::1;::::0;:34:::1;::::0;-1:-1:-1;;;47618:34:0;;::::1;::::0;::::1;11983:25:1::0;;;-1:-1:-1;;;;;47618:7:0;;::::1;::::0;:20:::1;::::0;11956:18:1;;47618:34:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:50;47610:95;;;::::0;-1:-1:-1;;;47610:95:0;;11318:2:1;47610:95:0::1;::::0;::::1;11300:21:1::0;;;11337:18;;;11330:30;11396:34;11376:18;;;11369:62;11448:18;;47610:95:0::1;11116:356:1::0;47610:95:0::1;47722:37;::::0;;;:23:::1;:37;::::0;;;;:44;;-1:-1:-1;;47722:44:0::1;47762:4;47722:44;::::0;;47319:3;::::1;::::0;::::1;:::i;:::-;;;;47277:501;;;;47788:32;47794:6;47802;47788:32;;;;;;;;;;;::::0;47814:5:::1;47788;:32::i;:::-;-1:-1:-1::0;;22997:1:0;23951:7;:22;-1:-1:-1;46971:859:0:o;31989:104::-;32045:13;32078:7;32071:14;;;;;:::i;33599:279::-;-1:-1:-1;;;;;33690:24:0;;18861:10;33690:24;33686:54;;;33723:17;;-1:-1:-1;;;33723:17:0;;;;;;;;;;;33686:54;18861:10;33753:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33753:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33753:53:0;;;;;;;;;;33822:48;;7616:41:1;;;33753:42:0;;18861:10;33822:48;;7589:18:1;33822:48:0;;;;;;;33599:279;;:::o;34677:342::-;34844:28;34854:4;34860:2;34864:7;34844:9;:28::i;:::-;34888:48;34911:4;34917:2;34921:7;34930:5;34888:22;:48::i;:::-;34883:129;;34960:40;;-1:-1:-1;;;34960:40:0;;;;;;;;;;;34883:129;34677:342;;;;:::o;47969:480::-;48088:13;48141:17;48149:8;48141:7;:17::i;:::-;48119:114;;;;-1:-1:-1;;;48119:114:0;;10553:2:1;48119:114:0;;;10535:21:1;10592:2;10572:18;;;10565:30;10631:34;10611:18;;;10604:62;-1:-1:-1;;;10682:18:1;;;10675:45;10737:19;;48119:114:0;10351:411:1;48119:114:0;48246:28;48277:10;:8;:10::i;:::-;48246:41;;48336:1;48311:14;48305:28;:32;:136;;;;;;;;;;;;;;;;;48377:14;48393:19;:8;:17;:19::i;:::-;48360:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48305:136;48298:143;47969:480;-1:-1:-1;;;47969:480:0:o;20827:201::-;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20916:22:0;::::1;20908:73;;;::::0;-1:-1:-1;;;20908:73:0;;8723:2:1;20908:73:0::1;::::0;::::1;8705:21:1::0;8762:2;8742:18;;;8735:30;8801:34;8781:18;;;8774:62;-1:-1:-1;;;8852:18:1;;;8845:36;8898:19;;20908:73:0::1;8521:402:1::0;20908:73:0::1;20992:28;21011:8;20992:18;:28::i;:::-;20827:201:::0;:::o;35274:144::-;35331:4;35365:13;;35355:7;:23;:55;;;;-1:-1:-1;;35383:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35383:27:0;;;;35382:28;;35274:144::o;42480:196::-;42595:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42595:29:0;-1:-1:-1;;;;;42595:29:0;;;;;;;;;42640:28;;42595:24;;42640:28;;;;;;;42480:196;;;:::o;37981:2112::-;38096:35;38134:20;38146:7;38134:11;:20::i;:::-;38209:18;;38096:58;;-1:-1:-1;38167:22:0;;-1:-1:-1;;;;;38193:34:0;18861:10;-1:-1:-1;;;;;38193:34:0;;:101;;;-1:-1:-1;38261:18:0;;38244:50;;18861:10;33949:164;:::i;38244:50::-;38193:154;;;-1:-1:-1;18861:10:0;38311:20;38323:7;38311:11;:20::i;:::-;-1:-1:-1;;;;;38311:36:0;;38193:154;38167:181;;38366:17;38361:66;;38392:35;;-1:-1:-1;;;38392:35:0;;;;;;;;;;;38361:66;38464:4;-1:-1:-1;;;;;38442:26:0;:13;:18;;;-1:-1:-1;;;;;38442:26:0;;38438:67;;38477:28;;-1:-1:-1;;;38477:28:0;;;;;;;;;;;38438:67;-1:-1:-1;;;;;38520:16:0;;38516:52;;38545:23;;-1:-1:-1;;;38545:23:0;;;;;;;;;;;38516:52;38689:49;38706:1;38710:7;38719:13;:18;;;38689:8;:49::i;:::-;-1:-1:-1;;;;;39034:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39034:31:0;;;;;;;-1:-1:-1;;39034:31:0;;;;;;;39080:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39080:29:0;;;;;;;;;;;39126:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39171:61:0;;;;-1:-1:-1;;;39216:15:0;39171:61;;;;;;;;;;;39506:11;;;39536:24;;;;;:29;39506:11;;39536:29;39532:445;;39761:13;;39747:11;:27;39743:219;;;39831:18;;;39799:24;;;:11;:24;;;;;;;;:50;;39914:28;;;;39872:70;;-1:-1:-1;;;39872:70:0;-1:-1:-1;;;;;;39872:70:0;;;-1:-1:-1;;;;;39799:50:0;;;39872:70;;;;;;;39743:219;39009:979;40024:7;40020:2;-1:-1:-1;;;;;40005:27:0;40014:4;-1:-1:-1;;;;;40005:27:0;;;;;;;;;;;40043:42;38085:2008;;37981:2112;;;:::o;36315:1412::-;36454:20;36477:13;-1:-1:-1;;;;;36505:16:0;;36501:48;;36530:19;;-1:-1:-1;;;36530:19:0;;;;;;;;;;;36501:48;36564:13;36560:44;;36586:18;;-1:-1:-1;;;36586:18:0;;;;;;;;;;;36560:44;-1:-1:-1;;;;;36955:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37014:49:0;;36955:44;;;;;;;;37014:49;;;;-1:-1:-1;;36955:44:0;;;;;;37014:49;;;;;;;;;;;;;;;;37080:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;37130:66:0;;;;-1:-1:-1;;;37180:15:0;37130:66;;;;;;;;;;;37080:25;;37265:328;37285:8;37281:1;:12;37265:328;;;37324:38;;37349:12;;-1:-1:-1;;;;;37324:38:0;;;37341:1;;37324:38;;37341:1;;37324:38;37385:4;:68;;;;;37394:59;37425:1;37429:2;37433:12;37447:5;37394:22;:59::i;:::-;37393:60;37385:68;37381:164;;;37485:40;;-1:-1:-1;;;37485:40:0;;;;;;;;;;;37381:164;37563:14;;;;;37295:3;37265:328;;;-1:-1:-1;37609:13:0;:28;37659:60;34677:342;30484:1083;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;30650:13:0;;30594:7;;30643:20;;30639:861;;;30684:31;30718:17;;;:11;:17;;;;;;;;;30684:51;;;;;;;;;-1:-1:-1;;;;;30684:51:0;;;;-1:-1:-1;;;30684:51:0;;;;;;;;;;;-1:-1:-1;;;30684:51:0;;;;;;;;;;;;;;30754:731;;30804:14;;-1:-1:-1;;;;;30804:28:0;;30800:101;;30868:9;30484:1083;-1:-1:-1;;;30484:1083:0:o;30800:101::-;-1:-1:-1;;;31245:6:0;31290:17;;;;:11;:17;;;;;;;;;31278:29;;;;;;;;;-1:-1:-1;;;;;31278:29:0;;;;;-1:-1:-1;;;31278:29:0;;;;;;;;;;;-1:-1:-1;;;31278:29:0;;;;;;;;;;;;;31338:28;31334:109;;31406:9;30484:1083;-1:-1:-1;;;30484:1083:0:o;31334:109::-;31205:261;;;30665:835;30639:861;31528:31;;-1:-1:-1;;;31528:31:0;;;;;;;;;;;21188:191;21281:6;;;-1:-1:-1;;;;;21298:17:0;;;-1:-1:-1;;;;;;21298:17:0;;;;;;;21331:40;;21281:6;;;21298:17;21281:6;;21331:40;;21262:16;;21331:40;21251:128;21188:191;:::o;43241:790::-;43396:4;-1:-1:-1;;;;;43417:13:0;;11262:19;:23;43413:611;;43453:72;;-1:-1:-1;;;43453:72:0;;-1:-1:-1;;;;;43453:36:0;;;;;:72;;18861:10;;43504:4;;43510:7;;43519:5;;43453:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43453:72:0;;;;;;;;-1:-1:-1;;43453:72:0;;;;;;;;;;;;:::i;:::-;;;43449:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43699:13:0;;43695:259;;43749:40;;-1:-1:-1;;;43749:40:0;;;;;;;;;;;43695:259;43904:6;43898:13;43889:6;43885:2;43881:15;43874:38;43449:520;-1:-1:-1;;;;;;43576:55:0;-1:-1:-1;;;43576:55:0;;-1:-1:-1;43569:62:0;;43413:611;-1:-1:-1;44008:4:0;43413:611;43241:790;;;;;;:::o;48772:108::-;48832:13;48865:7;48858:14;;;;;:::i;1044:723::-;1100:13;1321:10;1317:53;;-1:-1:-1;;1348:10:0;;;;;;;;;;;;-1:-1:-1;;;1348:10:0;;;;;1044:723::o;1317:53::-;1395:5;1380:12;1436:78;1443:9;;1436:78;;1469:8;;;;:::i;:::-;;-1:-1:-1;1492:10:0;;-1:-1:-1;1500:2:0;1492:10;;:::i;:::-;;;1436:78;;;1524:19;1556:6;1546:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1546:17:0;;1524:39;;1574:154;1581:10;;1574:154;;1608:11;1618:1;1608:11;;:::i;:::-;;-1:-1:-1;1677:10:0;1685:2;1677:5;:10;:::i;:::-;1664:24;;:2;:24;:::i;:::-;1651:39;;1634:6;1641;1634:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1634:56:0;;;;;;;;-1:-1:-1;1705:11:0;1714:2;1705:11;;:::i;:::-;;;1574:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:160::-;490:20;;546:13;;539:21;529:32;;519:60;;575:1;572;565:12;519:60;425:160;;;:::o;590:247::-;649:6;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;842:251::-;912:6;965:2;953:9;944:7;940:23;936:32;933:52;;;981:1;978;971:12;933:52;1013:9;1007:16;1032:31;1057:5;1032:31;:::i;1098:388::-;1166:6;1174;1227:2;1215:9;1206:7;1202:23;1198:32;1195:52;;;1243:1;1240;1233:12;1195:52;1282:9;1269:23;1301:31;1326:5;1301:31;:::i;:::-;1351:5;-1:-1:-1;1408:2:1;1393:18;;1380:32;1421:33;1380:32;1421:33;:::i;:::-;1473:7;1463:17;;;1098:388;;;;;:::o;1491:456::-;1568:6;1576;1584;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;1692:9;1679:23;1711:31;1736:5;1711:31;:::i;:::-;1761:5;-1:-1:-1;1818:2:1;1803:18;;1790:32;1831:33;1790:32;1831:33;:::i;:::-;1491:456;;1883:7;;-1:-1:-1;;;1937:2:1;1922:18;;;;1909:32;;1491:456::o;1952:794::-;2047:6;2055;2063;2071;2124:3;2112:9;2103:7;2099:23;2095:33;2092:53;;;2141:1;2138;2131:12;2092:53;2180:9;2167:23;2199:31;2224:5;2199:31;:::i;:::-;2249:5;-1:-1:-1;2306:2:1;2291:18;;2278:32;2319:33;2278:32;2319:33;:::i;:::-;2371:7;-1:-1:-1;2425:2:1;2410:18;;2397:32;;-1:-1:-1;2480:2:1;2465:18;;2452:32;2507:18;2496:30;;2493:50;;;2539:1;2536;2529:12;2493:50;2562:22;;2615:4;2607:13;;2603:27;-1:-1:-1;2593:55:1;;2644:1;2641;2634:12;2593:55;2667:73;2732:7;2727:2;2714:16;2709:2;2705;2701:11;2667:73;:::i;:::-;2657:83;;;1952:794;;;;;;;:::o;2751:315::-;2816:6;2824;2877:2;2865:9;2856:7;2852:23;2848:32;2845:52;;;2893:1;2890;2883:12;2845:52;2932:9;2919:23;2951:31;2976:5;2951:31;:::i;:::-;3001:5;-1:-1:-1;3025:35:1;3056:2;3041:18;;3025:35;:::i;:::-;3015:45;;2751:315;;;;;:::o;3071:::-;3139:6;3147;3200:2;3188:9;3179:7;3175:23;3171:32;3168:52;;;3216:1;3213;3206:12;3168:52;3255:9;3242:23;3274:31;3299:5;3274:31;:::i;:::-;3324:5;3376:2;3361:18;;;;3348:32;;-1:-1:-1;;;3071:315:1:o;3391:957::-;3475:6;3506:2;3549;3537:9;3528:7;3524:23;3520:32;3517:52;;;3565:1;3562;3555:12;3517:52;3605:9;3592:23;3634:18;3675:2;3667:6;3664:14;3661:34;;;3691:1;3688;3681:12;3661:34;3729:6;3718:9;3714:22;3704:32;;3774:7;3767:4;3763:2;3759:13;3755:27;3745:55;;3796:1;3793;3786:12;3745:55;3832:2;3819:16;3854:2;3850;3847:10;3844:36;;;3860:18;;:::i;:::-;3906:2;3903:1;3899:10;3889:20;;3929:28;3953:2;3949;3945:11;3929:28;:::i;:::-;3991:15;;;4022:12;;;;4054:11;;;4084;;;4080:20;;4077:33;-1:-1:-1;4074:53:1;;;4123:1;4120;4113:12;4074:53;4145:1;4136:10;;4155:163;4169:2;4166:1;4163:9;4155:163;;;4226:17;;4214:30;;4187:1;4180:9;;;;;4264:12;;;;4296;;4155:163;;;-1:-1:-1;4337:5:1;3391:957;-1:-1:-1;;;;;;;;3391:957:1:o;4353:180::-;4409:6;4462:2;4450:9;4441:7;4437:23;4433:32;4430:52;;;4478:1;4475;4468:12;4430:52;4501:26;4517:9;4501:26;:::i;4538:245::-;4596:6;4649:2;4637:9;4628:7;4624:23;4620:32;4617:52;;;4665:1;4662;4655:12;4617:52;4704:9;4691:23;4723:30;4747:5;4723:30;:::i;4788:249::-;4857:6;4910:2;4898:9;4889:7;4885:23;4881:32;4878:52;;;4926:1;4923;4916:12;4878:52;4958:9;4952:16;4977:30;5001:5;4977:30;:::i;5042:450::-;5111:6;5164:2;5152:9;5143:7;5139:23;5135:32;5132:52;;;5180:1;5177;5170:12;5132:52;5220:9;5207:23;5253:18;5245:6;5242:30;5239:50;;;5285:1;5282;5275:12;5239:50;5308:22;;5361:4;5353:13;;5349:27;-1:-1:-1;5339:55:1;;5390:1;5387;5380:12;5339:55;5413:73;5478:7;5473:2;5460:16;5455:2;5451;5447:11;5413:73;:::i;5497:180::-;5556:6;5609:2;5597:9;5588:7;5584:23;5580:32;5577:52;;;5625:1;5622;5615:12;5577:52;-1:-1:-1;5648:23:1;;5497:180;-1:-1:-1;5497:180:1:o;5682:184::-;5752:6;5805:2;5793:9;5784:7;5780:23;5776:32;5773:52;;;5821:1;5818;5811:12;5773:52;-1:-1:-1;5844:16:1;;5682:184;-1:-1:-1;5682:184:1:o;5871:257::-;5912:3;5950:5;5944:12;5977:6;5972:3;5965:19;5993:63;6049:6;6042:4;6037:3;6033:14;6026:4;6019:5;6015:16;5993:63;:::i;:::-;6110:2;6089:15;-1:-1:-1;;6085:29:1;6076:39;;;;6117:4;6072:50;;5871:257;-1:-1:-1;;5871:257:1:o;6133:637::-;6413:3;6451:6;6445:13;6467:53;6513:6;6508:3;6501:4;6493:6;6489:17;6467:53;:::i;:::-;6583:13;;6542:16;;;;6605:57;6583:13;6542:16;6639:4;6627:17;;6605:57;:::i;:::-;-1:-1:-1;;;6684:20:1;;6713:22;;;6762:1;6751:13;;6133:637;-1:-1:-1;;;;6133:637:1:o;6983:488::-;-1:-1:-1;;;;;7252:15:1;;;7234:34;;7304:15;;7299:2;7284:18;;7277:43;7351:2;7336:18;;7329:34;;;7399:3;7394:2;7379:18;;7372:31;;;7177:4;;7420:45;;7445:19;;7437:6;7420:45;:::i;:::-;7412:53;6983:488;-1:-1:-1;;;;;;6983:488:1:o;7893:219::-;8042:2;8031:9;8024:21;8005:4;8062:44;8102:2;8091:9;8087:18;8079:6;8062:44;:::i;9990:356::-;10192:2;10174:21;;;10211:18;;;10204:30;10270:34;10265:2;10250:18;;10243:62;10337:2;10322:18;;9990:356::o;12019:275::-;12090:2;12084:9;12155:2;12136:13;;-1:-1:-1;;12132:27:1;12120:40;;12190:18;12175:34;;12211:22;;;12172:62;12169:88;;;12237:18;;:::i;:::-;12273:2;12266:22;12019:275;;-1:-1:-1;12019:275:1:o;12299:128::-;12339:3;12370:1;12366:6;12363:1;12360:13;12357:39;;;12376:18;;:::i;:::-;-1:-1:-1;12412:9:1;;12299:128::o;12432:120::-;12472:1;12498;12488:35;;12503:18;;:::i;:::-;-1:-1:-1;12537:9:1;;12432:120::o;12557:125::-;12597:4;12625:1;12622;12619:8;12616:34;;;12630:18;;:::i;:::-;-1:-1:-1;12667:9:1;;12557:125::o;12687:258::-;12759:1;12769:113;12783:6;12780:1;12777:13;12769:113;;;12859:11;;;12853:18;12840:11;;;12833:39;12805:2;12798:10;12769:113;;;12900:6;12897:1;12894:13;12891:48;;;-1:-1:-1;;12935:1:1;12917:16;;12910:27;12687:258::o;12950:380::-;13029:1;13025:12;;;;13072;;;13093:61;;13147:4;13139:6;13135:17;13125:27;;13093:61;13200:2;13192:6;13189:14;13169:18;13166:38;13163:161;;;13246:10;13241:3;13237:20;13234:1;13227:31;13281:4;13278:1;13271:15;13309:4;13306:1;13299:15;13163:161;;12950:380;;;:::o;13335:135::-;13374:3;-1:-1:-1;;13395:17:1;;13392:43;;;13415:18;;:::i;:::-;-1:-1:-1;13462:1:1;13451:13;;13335:135::o;13475:112::-;13507:1;13533;13523:35;;13538:18;;:::i;:::-;-1:-1:-1;13572:9:1;;13475:112::o;13592:127::-;13653:10;13648:3;13644:20;13641:1;13634:31;13684:4;13681:1;13674:15;13708:4;13705:1;13698:15;13724:127;13785:10;13780:3;13776:20;13773:1;13766:31;13816:4;13813:1;13806:15;13840:4;13837:1;13830:15;13856:127;13917:10;13912:3;13908:20;13905:1;13898:31;13948:4;13945:1;13938:15;13972:4;13969:1;13962:15;13988:127;14049:10;14044:3;14040:20;14037:1;14030:31;14080:4;14077:1;14070:15;14104:4;14101:1;14094:15;14120:131;-1:-1:-1;;;;;14195:31:1;;14185:42;;14175:70;;14241:1;14238;14231:12;14256:131;-1:-1:-1;;;;;;14330:32:1;;14320:43;;14310:71;;14377:1;14374;14367:12

Swarm Source

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