ETH Price: $3,156.23 (+1.18%)
Gas: 2 Gwei

Token

Eternal Klay Dragons (EKD)
 

Overview

Max Total Supply

297 EKD

Holders

180

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
52 EKD
0x89b4b7b597d9d091e55426b7ce7fc722577de1ec
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:
EternalKlayDragons

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;




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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


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



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

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

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

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

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

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

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

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


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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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



    /**
     * @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) {
        uint256 currCount = 0;
        uint256 currSupply = _currentIndex;
        bool counting = false; 
        TokenOwnership memory ownership; 
        unchecked {
            for (uint256 i = _startTokenId(); i < currSupply; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if(ownership.addr == owner) {
                    counting = true; 
                    currCount++;
                } else if(ownership.addr == address(0)) {
                    if(counting) currCount++;
                } else {
                    counting = false; 
                }
                if(counting && index == (currCount - 1)) {
                    return i; 
                }
            }
        }
        revert OwnerIndexOutOfBounds();
    }

    /**
     * @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 pure returns (uint256) {
        return index; 
    }


    /**
     * @dev Returns the tokenIds of the address. O(totalSupply) in complexity.
     */
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        uint256 holdingAmount = balanceOf(owner);
        uint256 currSupply = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        uint256[] memory list = new uint256[](holdingAmount);

        unchecked {
            for (uint256 i = _startTokenId(); i < currSupply; ++i) {
                TokenOwnership memory ownership = _ownerships[i];

                if (ownership.burned) {
                    continue;
                }

                // Find out who owns this sequence
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }

                // Append tokens the last found owner owns in the sequence
                if (currOwnershipAddr == owner) {
                    list[tokenIdsIdx++] = i;
                }

                // All tokens have been found, we don't need to keep searching
                if (tokenIdsIdx == holdingAmount) {
                    break;
                }
            }
        }

        return list;
    }



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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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 virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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


abstract contract EternalKlay500Card {
    function balanceOf(address _owner, uint256 _id) virtual external view returns (uint256);
}

contract EternalKlayDragons is ERC721A, Ownable {

    // Minting Variables
    uint256 public mintPrice = 0.15 ether;
    uint256 public ek500MintPrice = 0.05 ether;
    uint256 constant public maxSupply = 500;
    EternalKlay500Card ek500 = EternalKlay500Card(0xf9A85218E2c45789152bFA81dE9B47849d06BFDb);

    // Sale Status
    bool public saleIsActive = false;

    // Metadata
    string _baseTokenURI = "ipfs://bafybeidtzzd3h6y2hozksy32mhtxcs4xhgpfflusgsdalec2mjzmge6vya/";
    string _contractURI = "ipfs://bafkreib56lg2arnkynyrn4qfv2zubth5o3vszuxeepdkxjzrnkv2kfb7gy";
    bool public locked;

    // Events
    event SaleActivation(bool isActive);
  


    constructor() ERC721A("Eternal Klay Dragons", "EKD") {
    }

    function mint(uint256 _count) external payable {
        require(saleIsActive, "SALE_INACTIVE");
        require(
            totalSupply() + _count <= maxSupply,
            "SOLD_OUT"
        );
        require(
            mintPrice * _count <= msg.value,
            "INCORRECT_ETHER_VALUE"
        );

        _safeMint(msg.sender, _count);
    }

    function mint500(uint256 _count) external payable {
        require(ek500.balanceOf(msg.sender, 1) > 0, "MUST OWN 500 CARD");
        require(saleIsActive, "SALE_INACTIVE");
        require(
            totalSupply() + _count <= maxSupply,
            "SOLD_OUT"
        );
        require(
            ek500MintPrice * _count <= msg.value,
            "INCORRECT_ETHER_VALUE"
        );

        _safeMint(msg.sender, _count);
    }

    function airdrop(address[] calldata recipients, uint256 _countEach) external onlyOwner {
        require(
            totalSupply() + recipients.length * _countEach <= maxSupply,
            "SOLD_OUT"
        );
        
        for(uint256 i = 0;i < recipients.length;i++) {
            _safeMint(recipients[i], _countEach);
        }
    }


    function toggleSaleStatus() external onlyOwner {
        saleIsActive = !saleIsActive;
        emit SaleActivation(saleIsActive);
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }

    function setEK500MintPrice(uint256 _mintPrice) external onlyOwner {
        ek500MintPrice = _mintPrice;
    }
    
    function lockMetadata() external onlyOwner {
        locked = true;
    }

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }


    function getWalletOfOwner(address owner) external view returns (uint256[] memory) {
        unchecked {
            uint256[] memory a = new uint256[](balanceOf(owner));
            uint256 end = _currentIndex;
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            for (uint256 i; i < end; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    a[tokenIdsIdx++] = i;
                }
            }
            return a;
        }
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        require(!locked, "METADATA_LOCKED");
        _baseTokenURI = baseURI;
    }

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

    function setContractURI(string memory mContractURI) external onlyOwner {
        _contractURI = mContractURI;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory){
        return string(abi.encodePacked(super.tokenURI(tokenId), ".json"));
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function _startTokenId() internal view virtual override returns (uint256){
        return 1;
    }
}

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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"SaleActivation","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":"recipients","type":"address[]"},{"internalType":"uint256","name":"_countEach","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ek500MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getWalletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint500","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"mContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setEK500MintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

670214e8348c4f000060095566b1a2bc2ec50000600a55600b80546001600160a81b03191673f9a85218e2c45789152bfa81de9b47849d06bfdb1790556101006040526043608081815290620025e860a03980516200006791600c9160209091019062000188565b50604051806080016040528060428152602001620025a66042913980516200009891600d9160209091019062000188565b50348015620000a657600080fd5b50604080518082018252601481527f457465726e616c204b6c617920447261676f6e730000000000000000000000006020808301918252835180850190945260038452621152d160ea1b908401528151919291620001079160029162000188565b5080516200011d90600390602084019062000188565b5050600160005550620001303362000136565b6200026b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000196906200022e565b90600052602060002090601f016020900481019282620001ba576000855562000205565b82601f10620001d557805160ff191683800117855562000205565b8280016001018555821562000205579182015b8281111562000205578251825591602001919060010190620001e8565b506200021392915062000217565b5090565b5b8082111562000213576000815560010162000218565b600181811c908216806200024357607f821691505b602082108114156200026557634e487b7160e01b600052602260045260246000fd5b50919050565b61232b806200027b6000396000f3fe60806040526004361061021a5760003560e01c80638462151c11610123578063b88d4fde116100ab578063e8a3d4851161006f578063e8a3d485146105f0578063e985e9c514610605578063eb8d24441461064e578063f2fde38b1461066f578063f4a0a5281461068f57600080fd5b8063b88d4fde14610560578063c204642c14610580578063c87b56dd146105a0578063cf309012146105c0578063d5abeb01146105da57600080fd5b8063989bdbb6116100f2578063989bdbb6146104ef578063a0712d6814610504578063a22cb46514610517578063a511737814610537578063ac403c361461054a57600080fd5b80638462151c1461047c5780638da5cb5b1461049c578063938e3d7b146104ba57806395d89b41146104da57600080fd5b8063423a8786116101a6578063627fdeab11610175578063627fdeab146103e45780636352211e146104115780636817c76c1461043157806370a0823114610447578063715018a61461046757600080fd5b8063423a87861461036657806342842e0e146103865780634f6ccce7146103a657806355f804b3146103c457600080fd5b8063095ea7b3116101ed578063095ea7b3146102c557806318160ddd146102e557806323b872dd146103115780632f745c59146103315780633ccfd60b1461035157600080fd5b806301ffc9a71461021f578063049c5c491461025457806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611d0c565b6106af565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026961071c565b005b34801561027757600080fd5b506102806107b5565b60405161024b9190611d81565b34801561029957600080fd5b506102ad6102a8366004611d94565b610847565b6040516001600160a01b03909116815260200161024b565b3480156102d157600080fd5b506102696102e0366004611dc9565b61088b565b3480156102f157600080fd5b50610303600154600054036000190190565b60405190815260200161024b565b34801561031d57600080fd5b5061026961032c366004611df3565b610919565b34801561033d57600080fd5b5061030361034c366004611dc9565b610924565b34801561035d57600080fd5b50610269610a44565b34801561037257600080fd5b50610269610381366004611d94565b610aaa565b34801561039257600080fd5b506102696103a1366004611df3565b610ad9565b3480156103b257600080fd5b506103036103c1366004611d94565b90565b3480156103d057600080fd5b506102696103df366004611eba565b610af4565b3480156103f057600080fd5b506104046103ff366004611f02565b610b7a565b60405161024b9190611f1d565b34801561041d57600080fd5b506102ad61042c366004611d94565b610ca3565b34801561043d57600080fd5b5061030360095481565b34801561045357600080fd5b50610303610462366004611f02565b610cb5565b34801561047357600080fd5b50610269610d03565b34801561048857600080fd5b50610404610497366004611f02565b610d39565b3480156104a857600080fd5b506008546001600160a01b03166102ad565b3480156104c657600080fd5b506102696104d5366004611eba565b610e75565b3480156104e657600080fd5b50610280610eb2565b3480156104fb57600080fd5b50610269610ec1565b610269610512366004611d94565b610efa565b34801561052357600080fd5b50610269610532366004611f61565b610fdf565b610269610545366004611d94565b611075565b34801561055657600080fd5b50610303600a5481565b34801561056c57600080fd5b5061026961057b366004611f9d565b6111cc565b34801561058c57600080fd5b5061026961059b366004612018565b61121d565b3480156105ac57600080fd5b506102806105bb366004611d94565b6112da565b3480156105cc57600080fd5b50600e5461023f9060ff1681565b3480156105e657600080fd5b506103036101f481565b3480156105fc57600080fd5b5061028061130b565b34801561061157600080fd5b5061023f610620366004612092565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065a57600080fd5b50600b5461023f90600160a01b900460ff1681565b34801561067b57600080fd5b5061026961068a366004611f02565b61131a565b34801561069b57600080fd5b506102696106aa366004611d94565b6113b2565b60006001600160e01b031982166380ac58cd60e01b14806106e057506001600160e01b03198216635b5e139f60e01b145b806106fb57506001600160e01b0319821663780e9d6360e01b145b8061071657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461074f5760405162461bcd60e51b8152600401610746906120c5565b60405180910390fd5b600b805460ff600160a01b808304821615810260ff60a01b1990931692909217928390556040517f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f936107ab9390049091161515815260200190565b60405180910390a1565b6060600280546107c4906120fa565b80601f01602080910402602001604051908101604052809291908181526020018280546107f0906120fa565b801561083d5780601f106108125761010080835404028352916020019161083d565b820191906000526020600020905b81548152906001019060200180831161082057829003601f168201915b5050505050905090565b6000610852826113e1565b61086f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089682610ca3565b9050806001600160a01b0316836001600160a01b031614156108cb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108eb57506108e98133610620565b155b15610909576040516367d9dca160e11b815260040160405180910390fd5b61091483838361141a565b505050565b610914838383611476565b600080546040805160608101825283815260208101849052908101839052829190829060015b83811015610a2a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925292506109b157610a22565b876001600160a01b031682600001516001600160a01b031614156109dc576001948501949250610a02565b81516001600160a01b03166109fd5782156109f8576001909401935b610a02565b600092505b828015610a1157506001850387145b15610a225794506107169350505050565b60010161094a565b506040516306ed618760e11b815260040160405180910390fd5b6008546001600160a01b03163314610a6e5760405162461bcd60e51b8152600401610746906120c5565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610aa7573d6000803e3d6000fd5b50565b6008546001600160a01b03163314610ad45760405162461bcd60e51b8152600401610746906120c5565b600a55565b610914838383604051806020016040528060008152506111cc565b6008546001600160a01b03163314610b1e5760405162461bcd60e51b8152600401610746906120c5565b600e5460ff1615610b635760405162461bcd60e51b815260206004820152600f60248201526e135155105110551057d313d0d2d151608a1b6044820152606401610746565b8051610b7690600c906020840190611c5d565b5050565b60606000610b8783610cb5565b6001600160401b03811115610b9e57610b9e611e2f565b604051908082528060200260200182016040528015610bc7578160200160208202803683370190505b506000805491925080805b83811015610c9857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610c395750610c90565b80516001600160a01b031615610c4e57805192505b876001600160a01b0316836001600160a01b03161415610c8e5781868580600101965081518110610c8157610c81612135565b6020026020010181815250505b505b600101610bd2565b509295945050505050565b6000610cae82611664565b5192915050565b60006001600160a01b038216610cde576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610d2d5760405162461bcd60e51b8152600401610746906120c5565b610d37600061178b565b565b60606000610d4683610cb5565b600080549192508080846001600160401b03811115610d6757610d67611e2f565b604051908082528060200260200182016040528015610d90578160200160208202803683370190505b50905060015b84811015610e6a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610dfd5750610e62565b80516001600160a01b031615610e1257805193505b886001600160a01b0316846001600160a01b03161415610e525781838680600101975081518110610e4557610e45612135565b6020026020010181815250505b86851415610e605750610e6a565b505b600101610d96565b509695505050505050565b6008546001600160a01b03163314610e9f5760405162461bcd60e51b8152600401610746906120c5565b8051610b7690600d906020840190611c5d565b6060600380546107c4906120fa565b6008546001600160a01b03163314610eeb5760405162461bcd60e51b8152600401610746906120c5565b600e805460ff19166001179055565b600b54600160a01b900460ff16610f435760405162461bcd60e51b815260206004820152600d60248201526c53414c455f494e41435449564560981b6044820152606401610746565b6101f481610f58600154600054036000190190565b610f629190612161565b1115610f805760405162461bcd60e51b815260040161074690612179565b3481600954610f8f919061219b565b1115610fd55760405162461bcd60e51b8152602060048201526015602482015274494e434f52524543545f45544845525f56414c554560581b6044820152606401610746565b610aa733826117dd565b6001600160a01b0382163314156110095760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b54604051627eeac760e11b8152336004820152600160248201526000916001600160a01b03169062fdd58e9060440160206040518083038186803b1580156110be57600080fd5b505afa1580156110d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f691906121ba565b116111375760405162461bcd60e51b8152602060048201526011602482015270135554d50813d5d3880d4c0c0810d05491607a1b6044820152606401610746565b600b54600160a01b900460ff166111805760405162461bcd60e51b815260206004820152600d60248201526c53414c455f494e41435449564560981b6044820152606401610746565b6101f481611195600154600054036000190190565b61119f9190612161565b11156111bd5760405162461bcd60e51b815260040161074690612179565b3481600a54610f8f919061219b565b6111d7848484611476565b6001600160a01b0383163b151580156111f957506111f7848484846117f7565b155b15611217576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112475760405162461bcd60e51b8152600401610746906120c5565b6101f4611254828461219b565b611265600154600054036000190190565b61126f9190612161565b111561128d5760405162461bcd60e51b815260040161074690612179565b60005b82811015611217576112c88484838181106112ad576112ad612135565b90506020020160208101906112c29190611f02565b836117dd565b806112d2816121d3565b915050611290565b60606112e5826118ef565b6040516020016112f591906121ee565b6040516020818303038152906040529050919050565b6060600d80546107c4906120fa565b6008546001600160a01b031633146113445760405162461bcd60e51b8152600401610746906120c5565b6001600160a01b0381166113a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610746565b610aa78161178b565b6008546001600160a01b031633146113dc5760405162461bcd60e51b8152600401610746906120c5565b600955565b6000816001111580156113f5575060005482105b8015610716575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061148182611664565b9050836001600160a01b031681600001516001600160a01b0316146114b85760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114d657506114d68533610620565b806114f15750336114e684610847565b6001600160a01b0316145b90508061151157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661153857604051633a954ecd60e21b815260040160405180910390fd5b6115446000848761141a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661161857600054821461161857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611694575060005481105b1561177257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117705780516001600160a01b031615611707579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561176b579392505050565b611707565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b76828260405180602001604052806000815250611974565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061182c903390899088908890600401612217565b602060405180830381600087803b15801561184657600080fd5b505af1925050508015611876575060408051601f3d908101601f1916820190925261187391810190612254565b60015b6118d1573d8080156118a4576040519150601f19603f3d011682016040523d82523d6000602084013e6118a9565b606091505b5080516118c9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606118fa826113e1565b61191757604051630a14c4b560e41b815260040160405180910390fd5b6000611921611981565b9050805160001415611942576040518060200160405280600081525061196d565b8061194c84611990565b60405160200161195d929190612271565b6040516020818303038152906040525b9392505050565b6109148383836001611a8d565b6060600c80546107c4906120fa565b6060816119b45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119de57806119c8816121d3565b91506119d79050600a836122b6565b91506119b8565b6000816001600160401b038111156119f8576119f8611e2f565b6040519080825280601f01601f191660200182016040528015611a22576020820181803683370190505b5090505b84156118e757611a376001836122ca565b9150611a44600a866122e1565b611a4f906030612161565b60f81b818381518110611a6457611a64612135565b60200101906001600160f81b031916908160001a905350611a86600a866122b6565b9450611a26565b6000546001600160a01b038516611ab657604051622e076360e81b815260040160405180910390fd5b83611ad45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b8557506001600160a01b0387163b15155b15611c0e575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bd660008884806001019550886117f7565b611bf3576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611b8b578260005414611c0957600080fd5b611c54565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c0f575b5060005561165d565b828054611c69906120fa565b90600052602060002090601f016020900481019282611c8b5760008555611cd1565b82601f10611ca457805160ff1916838001178555611cd1565b82800160010185558215611cd1579182015b82811115611cd1578251825591602001919060010190611cb6565b50611cdd929150611ce1565b5090565b5b80821115611cdd5760008155600101611ce2565b6001600160e01b031981168114610aa757600080fd5b600060208284031215611d1e57600080fd5b813561196d81611cf6565b60005b83811015611d44578181015183820152602001611d2c565b838111156112175750506000910152565b60008151808452611d6d816020860160208601611d29565b601f01601f19169290920160200192915050565b60208152600061196d6020830184611d55565b600060208284031215611da657600080fd5b5035919050565b80356001600160a01b0381168114611dc457600080fd5b919050565b60008060408385031215611ddc57600080fd5b611de583611dad565b946020939093013593505050565b600080600060608486031215611e0857600080fd5b611e1184611dad565b9250611e1f60208501611dad565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611e5f57611e5f611e2f565b604051601f8501601f19908116603f01168101908282118183101715611e8757611e87611e2f565b81604052809350858152868686011115611ea057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ecc57600080fd5b81356001600160401b03811115611ee257600080fd5b8201601f81018413611ef357600080fd5b6118e784823560208401611e45565b600060208284031215611f1457600080fd5b61196d82611dad565b6020808252825182820181905260009190848201906040850190845b81811015611f5557835183529284019291840191600101611f39565b50909695505050505050565b60008060408385031215611f7457600080fd5b611f7d83611dad565b915060208301358015158114611f9257600080fd5b809150509250929050565b60008060008060808587031215611fb357600080fd5b611fbc85611dad565b9350611fca60208601611dad565b92506040850135915060608501356001600160401b03811115611fec57600080fd5b8501601f81018713611ffd57600080fd5b61200c87823560208401611e45565b91505092959194509250565b60008060006040848603121561202d57600080fd5b83356001600160401b038082111561204457600080fd5b818601915086601f83011261205857600080fd5b81358181111561206757600080fd5b8760208260051b850101111561207c57600080fd5b6020928301989097509590910135949350505050565b600080604083850312156120a557600080fd5b6120ae83611dad565b91506120bc60208401611dad565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061210e57607f821691505b6020821081141561212f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156121745761217461214b565b500190565b60208082526008908201526714d3d31117d3d55560c21b604082015260600190565b60008160001904831182151516156121b5576121b561214b565b500290565b6000602082840312156121cc57600080fd5b5051919050565b60006000198214156121e7576121e761214b565b5060010190565b60008251612200818460208701611d29565b64173539b7b760d91b920191825250600501919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061224a90830184611d55565b9695505050505050565b60006020828403121561226657600080fd5b815161196d81611cf6565b60008351612283818460208801611d29565b835190830190612297818360208801611d29565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826122c5576122c56122a0565b500490565b6000828210156122dc576122dc61214b565b500390565b6000826122f0576122f06122a0565b50069056fea26469706673582212205c299c2551dc4dcf984da1bc8d2e550d048e8ea782bcee4e49daefc88b41258264736f6c63430008090033697066733a2f2f6261666b7265696235366c673261726e6b796e79726e34716676327a75627468356f3376737a7578656570646b786a7a726e6b76326b6662376779697066733a2f2f6261667962656964747a7a643368367932686f7a6b737933326d6874786373347868677066666c7573677364616c6563326d6a7a6d6765367679612f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80638462151c11610123578063b88d4fde116100ab578063e8a3d4851161006f578063e8a3d485146105f0578063e985e9c514610605578063eb8d24441461064e578063f2fde38b1461066f578063f4a0a5281461068f57600080fd5b8063b88d4fde14610560578063c204642c14610580578063c87b56dd146105a0578063cf309012146105c0578063d5abeb01146105da57600080fd5b8063989bdbb6116100f2578063989bdbb6146104ef578063a0712d6814610504578063a22cb46514610517578063a511737814610537578063ac403c361461054a57600080fd5b80638462151c1461047c5780638da5cb5b1461049c578063938e3d7b146104ba57806395d89b41146104da57600080fd5b8063423a8786116101a6578063627fdeab11610175578063627fdeab146103e45780636352211e146104115780636817c76c1461043157806370a0823114610447578063715018a61461046757600080fd5b8063423a87861461036657806342842e0e146103865780634f6ccce7146103a657806355f804b3146103c457600080fd5b8063095ea7b3116101ed578063095ea7b3146102c557806318160ddd146102e557806323b872dd146103115780632f745c59146103315780633ccfd60b1461035157600080fd5b806301ffc9a71461021f578063049c5c491461025457806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611d0c565b6106af565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026961071c565b005b34801561027757600080fd5b506102806107b5565b60405161024b9190611d81565b34801561029957600080fd5b506102ad6102a8366004611d94565b610847565b6040516001600160a01b03909116815260200161024b565b3480156102d157600080fd5b506102696102e0366004611dc9565b61088b565b3480156102f157600080fd5b50610303600154600054036000190190565b60405190815260200161024b565b34801561031d57600080fd5b5061026961032c366004611df3565b610919565b34801561033d57600080fd5b5061030361034c366004611dc9565b610924565b34801561035d57600080fd5b50610269610a44565b34801561037257600080fd5b50610269610381366004611d94565b610aaa565b34801561039257600080fd5b506102696103a1366004611df3565b610ad9565b3480156103b257600080fd5b506103036103c1366004611d94565b90565b3480156103d057600080fd5b506102696103df366004611eba565b610af4565b3480156103f057600080fd5b506104046103ff366004611f02565b610b7a565b60405161024b9190611f1d565b34801561041d57600080fd5b506102ad61042c366004611d94565b610ca3565b34801561043d57600080fd5b5061030360095481565b34801561045357600080fd5b50610303610462366004611f02565b610cb5565b34801561047357600080fd5b50610269610d03565b34801561048857600080fd5b50610404610497366004611f02565b610d39565b3480156104a857600080fd5b506008546001600160a01b03166102ad565b3480156104c657600080fd5b506102696104d5366004611eba565b610e75565b3480156104e657600080fd5b50610280610eb2565b3480156104fb57600080fd5b50610269610ec1565b610269610512366004611d94565b610efa565b34801561052357600080fd5b50610269610532366004611f61565b610fdf565b610269610545366004611d94565b611075565b34801561055657600080fd5b50610303600a5481565b34801561056c57600080fd5b5061026961057b366004611f9d565b6111cc565b34801561058c57600080fd5b5061026961059b366004612018565b61121d565b3480156105ac57600080fd5b506102806105bb366004611d94565b6112da565b3480156105cc57600080fd5b50600e5461023f9060ff1681565b3480156105e657600080fd5b506103036101f481565b3480156105fc57600080fd5b5061028061130b565b34801561061157600080fd5b5061023f610620366004612092565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065a57600080fd5b50600b5461023f90600160a01b900460ff1681565b34801561067b57600080fd5b5061026961068a366004611f02565b61131a565b34801561069b57600080fd5b506102696106aa366004611d94565b6113b2565b60006001600160e01b031982166380ac58cd60e01b14806106e057506001600160e01b03198216635b5e139f60e01b145b806106fb57506001600160e01b0319821663780e9d6360e01b145b8061071657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461074f5760405162461bcd60e51b8152600401610746906120c5565b60405180910390fd5b600b805460ff600160a01b808304821615810260ff60a01b1990931692909217928390556040517f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f936107ab9390049091161515815260200190565b60405180910390a1565b6060600280546107c4906120fa565b80601f01602080910402602001604051908101604052809291908181526020018280546107f0906120fa565b801561083d5780601f106108125761010080835404028352916020019161083d565b820191906000526020600020905b81548152906001019060200180831161082057829003601f168201915b5050505050905090565b6000610852826113e1565b61086f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089682610ca3565b9050806001600160a01b0316836001600160a01b031614156108cb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108eb57506108e98133610620565b155b15610909576040516367d9dca160e11b815260040160405180910390fd5b61091483838361141a565b505050565b610914838383611476565b600080546040805160608101825283815260208101849052908101839052829190829060015b83811015610a2a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925292506109b157610a22565b876001600160a01b031682600001516001600160a01b031614156109dc576001948501949250610a02565b81516001600160a01b03166109fd5782156109f8576001909401935b610a02565b600092505b828015610a1157506001850387145b15610a225794506107169350505050565b60010161094a565b506040516306ed618760e11b815260040160405180910390fd5b6008546001600160a01b03163314610a6e5760405162461bcd60e51b8152600401610746906120c5565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610aa7573d6000803e3d6000fd5b50565b6008546001600160a01b03163314610ad45760405162461bcd60e51b8152600401610746906120c5565b600a55565b610914838383604051806020016040528060008152506111cc565b6008546001600160a01b03163314610b1e5760405162461bcd60e51b8152600401610746906120c5565b600e5460ff1615610b635760405162461bcd60e51b815260206004820152600f60248201526e135155105110551057d313d0d2d151608a1b6044820152606401610746565b8051610b7690600c906020840190611c5d565b5050565b60606000610b8783610cb5565b6001600160401b03811115610b9e57610b9e611e2f565b604051908082528060200260200182016040528015610bc7578160200160208202803683370190505b506000805491925080805b83811015610c9857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610c395750610c90565b80516001600160a01b031615610c4e57805192505b876001600160a01b0316836001600160a01b03161415610c8e5781868580600101965081518110610c8157610c81612135565b6020026020010181815250505b505b600101610bd2565b509295945050505050565b6000610cae82611664565b5192915050565b60006001600160a01b038216610cde576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610d2d5760405162461bcd60e51b8152600401610746906120c5565b610d37600061178b565b565b60606000610d4683610cb5565b600080549192508080846001600160401b03811115610d6757610d67611e2f565b604051908082528060200260200182016040528015610d90578160200160208202803683370190505b50905060015b84811015610e6a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610dfd5750610e62565b80516001600160a01b031615610e1257805193505b886001600160a01b0316846001600160a01b03161415610e525781838680600101975081518110610e4557610e45612135565b6020026020010181815250505b86851415610e605750610e6a565b505b600101610d96565b509695505050505050565b6008546001600160a01b03163314610e9f5760405162461bcd60e51b8152600401610746906120c5565b8051610b7690600d906020840190611c5d565b6060600380546107c4906120fa565b6008546001600160a01b03163314610eeb5760405162461bcd60e51b8152600401610746906120c5565b600e805460ff19166001179055565b600b54600160a01b900460ff16610f435760405162461bcd60e51b815260206004820152600d60248201526c53414c455f494e41435449564560981b6044820152606401610746565b6101f481610f58600154600054036000190190565b610f629190612161565b1115610f805760405162461bcd60e51b815260040161074690612179565b3481600954610f8f919061219b565b1115610fd55760405162461bcd60e51b8152602060048201526015602482015274494e434f52524543545f45544845525f56414c554560581b6044820152606401610746565b610aa733826117dd565b6001600160a01b0382163314156110095760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b54604051627eeac760e11b8152336004820152600160248201526000916001600160a01b03169062fdd58e9060440160206040518083038186803b1580156110be57600080fd5b505afa1580156110d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f691906121ba565b116111375760405162461bcd60e51b8152602060048201526011602482015270135554d50813d5d3880d4c0c0810d05491607a1b6044820152606401610746565b600b54600160a01b900460ff166111805760405162461bcd60e51b815260206004820152600d60248201526c53414c455f494e41435449564560981b6044820152606401610746565b6101f481611195600154600054036000190190565b61119f9190612161565b11156111bd5760405162461bcd60e51b815260040161074690612179565b3481600a54610f8f919061219b565b6111d7848484611476565b6001600160a01b0383163b151580156111f957506111f7848484846117f7565b155b15611217576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112475760405162461bcd60e51b8152600401610746906120c5565b6101f4611254828461219b565b611265600154600054036000190190565b61126f9190612161565b111561128d5760405162461bcd60e51b815260040161074690612179565b60005b82811015611217576112c88484838181106112ad576112ad612135565b90506020020160208101906112c29190611f02565b836117dd565b806112d2816121d3565b915050611290565b60606112e5826118ef565b6040516020016112f591906121ee565b6040516020818303038152906040529050919050565b6060600d80546107c4906120fa565b6008546001600160a01b031633146113445760405162461bcd60e51b8152600401610746906120c5565b6001600160a01b0381166113a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610746565b610aa78161178b565b6008546001600160a01b031633146113dc5760405162461bcd60e51b8152600401610746906120c5565b600955565b6000816001111580156113f5575060005482105b8015610716575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061148182611664565b9050836001600160a01b031681600001516001600160a01b0316146114b85760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114d657506114d68533610620565b806114f15750336114e684610847565b6001600160a01b0316145b90508061151157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661153857604051633a954ecd60e21b815260040160405180910390fd5b6115446000848761141a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661161857600054821461161857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611694575060005481105b1561177257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117705780516001600160a01b031615611707579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561176b579392505050565b611707565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b76828260405180602001604052806000815250611974565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061182c903390899088908890600401612217565b602060405180830381600087803b15801561184657600080fd5b505af1925050508015611876575060408051601f3d908101601f1916820190925261187391810190612254565b60015b6118d1573d8080156118a4576040519150601f19603f3d011682016040523d82523d6000602084013e6118a9565b606091505b5080516118c9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606118fa826113e1565b61191757604051630a14c4b560e41b815260040160405180910390fd5b6000611921611981565b9050805160001415611942576040518060200160405280600081525061196d565b8061194c84611990565b60405160200161195d929190612271565b6040516020818303038152906040525b9392505050565b6109148383836001611a8d565b6060600c80546107c4906120fa565b6060816119b45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119de57806119c8816121d3565b91506119d79050600a836122b6565b91506119b8565b6000816001600160401b038111156119f8576119f8611e2f565b6040519080825280601f01601f191660200182016040528015611a22576020820181803683370190505b5090505b84156118e757611a376001836122ca565b9150611a44600a866122e1565b611a4f906030612161565b60f81b818381518110611a6457611a64612135565b60200101906001600160f81b031916908160001a905350611a86600a866122b6565b9450611a26565b6000546001600160a01b038516611ab657604051622e076360e81b815260040160405180910390fd5b83611ad45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b8557506001600160a01b0387163b15155b15611c0e575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bd660008884806001019550886117f7565b611bf3576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611b8b578260005414611c0957600080fd5b611c54565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c0f575b5060005561165d565b828054611c69906120fa565b90600052602060002090601f016020900481019282611c8b5760008555611cd1565b82601f10611ca457805160ff1916838001178555611cd1565b82800160010185558215611cd1579182015b82811115611cd1578251825591602001919060010190611cb6565b50611cdd929150611ce1565b5090565b5b80821115611cdd5760008155600101611ce2565b6001600160e01b031981168114610aa757600080fd5b600060208284031215611d1e57600080fd5b813561196d81611cf6565b60005b83811015611d44578181015183820152602001611d2c565b838111156112175750506000910152565b60008151808452611d6d816020860160208601611d29565b601f01601f19169290920160200192915050565b60208152600061196d6020830184611d55565b600060208284031215611da657600080fd5b5035919050565b80356001600160a01b0381168114611dc457600080fd5b919050565b60008060408385031215611ddc57600080fd5b611de583611dad565b946020939093013593505050565b600080600060608486031215611e0857600080fd5b611e1184611dad565b9250611e1f60208501611dad565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611e5f57611e5f611e2f565b604051601f8501601f19908116603f01168101908282118183101715611e8757611e87611e2f565b81604052809350858152868686011115611ea057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ecc57600080fd5b81356001600160401b03811115611ee257600080fd5b8201601f81018413611ef357600080fd5b6118e784823560208401611e45565b600060208284031215611f1457600080fd5b61196d82611dad565b6020808252825182820181905260009190848201906040850190845b81811015611f5557835183529284019291840191600101611f39565b50909695505050505050565b60008060408385031215611f7457600080fd5b611f7d83611dad565b915060208301358015158114611f9257600080fd5b809150509250929050565b60008060008060808587031215611fb357600080fd5b611fbc85611dad565b9350611fca60208601611dad565b92506040850135915060608501356001600160401b03811115611fec57600080fd5b8501601f81018713611ffd57600080fd5b61200c87823560208401611e45565b91505092959194509250565b60008060006040848603121561202d57600080fd5b83356001600160401b038082111561204457600080fd5b818601915086601f83011261205857600080fd5b81358181111561206757600080fd5b8760208260051b850101111561207c57600080fd5b6020928301989097509590910135949350505050565b600080604083850312156120a557600080fd5b6120ae83611dad565b91506120bc60208401611dad565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061210e57607f821691505b6020821081141561212f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156121745761217461214b565b500190565b60208082526008908201526714d3d31117d3d55560c21b604082015260600190565b60008160001904831182151516156121b5576121b561214b565b500290565b6000602082840312156121cc57600080fd5b5051919050565b60006000198214156121e7576121e761214b565b5060010190565b60008251612200818460208701611d29565b64173539b7b760d91b920191825250600501919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061224a90830184611d55565b9695505050505050565b60006020828403121561226657600080fd5b815161196d81611cf6565b60008351612283818460208801611d29565b835190830190612297818360208801611d29565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826122c5576122c56122a0565b500490565b6000828210156122dc576122dc61214b565b500390565b6000826122f0576122f06122a0565b50069056fea26469706673582212205c299c2551dc4dcf984da1bc8d2e550d048e8ea782bcee4e49daefc88b41258264736f6c63430008090033

Deployed Bytecode Sourcemap

46869:4100:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26175:372;;;;;;;;;;-1:-1:-1;26175:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26175:372:0;;;;;;;;48810:138;;;;;;;;;;;;;:::i;:::-;;32083:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33586:204::-;;;;;;;;;;-1:-1:-1;33586:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;33586:204:0;1528:203:1;33149:371:0;;;;;;;;;;-1:-1:-1;33149:371:0;;;;;:::i;:::-;;:::i;25424:303::-;;;;;;;;;;;;50957:1;25678:12;25468:7;25662:13;:28;-1:-1:-1;;25662:46:0;;25424:303;;;;2319:25:1;;;2307:2;2292:18;25424:303:0;2173:177:1;34451:170:0;;;;;;;;;;-1:-1:-1;34451:170:0;;;;;:::i;:::-;;:::i;27982:968::-;;;;;;;;;;-1:-1:-1;27982:968:0;;;;;:::i;:::-;;:::i;49273:106::-;;;;;;;;;;;;;:::i;49066:112::-;;;;;;;;;;-1:-1:-1;49066:112:0;;;;;:::i;:::-;;:::i;34692:185::-;;;;;;;;;;-1:-1:-1;34692:185:0;;;;;:::i;:::-;;:::i;29131:101::-;;;;;;;;;;-1:-1:-1;29131:101:0;;;;;:::i;:::-;29218:5;29131:101;50185:150;;;;;;;;;;-1:-1:-1;50185:150:0;;;;;:::i;:::-;;:::i;49389:788::-;;;;;;;;;;-1:-1:-1;49389:788:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;31891:125::-;;;;;;;;;;-1:-1:-1;31891:125:0;;;;;:::i;:::-;;:::i;46952:37::-;;;;;;;;;;;;;;;;26611:206;;;;;;;;;;-1:-1:-1;26611:206:0;;;;;:::i;:::-;;:::i;21658:103::-;;;;;;;;;;;;;:::i;29340:1174::-;;;;;;;;;;-1:-1:-1;29340:1174:0;;;;;:::i;:::-;;:::i;21007:87::-;;;;;;;;;;-1:-1:-1;21080:6:0;;-1:-1:-1;;;;;21080:6:0;21007:87;;50465:117;;;;;;;;;;-1:-1:-1;50465:117:0;;;;;:::i;:::-;;:::i;32252:104::-;;;;;;;;;;;;;:::i;49190:75::-;;;;;;;;;;;;;:::i;47624:363::-;;;;;;:::i;:::-;;:::i;33862:287::-;;;;;;;;;;-1:-1:-1;33862:287:0;;;;;:::i;:::-;;:::i;47995:446::-;;;;;;:::i;:::-;;:::i;46996:42::-;;;;;;;;;;;;;;;;34948:369;;;;;;;;;;-1:-1:-1;34948:369:0;;;;;:::i;:::-;;:::i;48449:351::-;;;;;;;;;;-1:-1:-1;48449:351:0;;;;;:::i;:::-;;:::i;50590:163::-;;;;;;;;;;-1:-1:-1;50590:163:0;;;;;:::i;:::-;;:::i;47463:18::-;;;;;;;;;;-1:-1:-1;47463:18:0;;;;;;;;47045:39;;;;;;;;;;;;47081:3;47045:39;;50761:97;;;;;;;;;;;;;:::i;34220:164::-;;;;;;;;;;-1:-1:-1;34220:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34341:25:0;;;34317:4;34341:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34220:164;47209:32;;;;;;;;;;-1:-1:-1;47209:32:0;;;;-1:-1:-1;;;47209:32:0;;;;;;21916:201;;;;;;;;;;-1:-1:-1;21916:201:0;;;;;:::i;:::-;;:::i;48956:102::-;;;;;;;;;;-1:-1:-1;48956:102:0;;;;;:::i;:::-;;:::i;26175:372::-;26277:4;-1:-1:-1;;;;;;26314:40:0;;-1:-1:-1;;;26314:40:0;;:105;;-1:-1:-1;;;;;;;26371:48:0;;-1:-1:-1;;;26371:48:0;26314:105;:172;;;-1:-1:-1;;;;;;;26436:50:0;;-1:-1:-1;;;26436:50:0;26314:172;:225;;;-1:-1:-1;;;;;;;;;;20029:40:0;;;26503:36;26294:245;26175:372;-1:-1:-1;;26175:372:0:o;48810:138::-;21080:6;;-1:-1:-1;;;;;21080:6:0;17101:10;21227:23;21219:68;;;;-1:-1:-1;;;21219:68:0;;;;;;;:::i;:::-;;;;;;;;;48884:12:::1;::::0;;::::1;-1:-1:-1::0;;;48884:12:0;;::::1;::::0;::::1;48883:13;48868:28:::0;::::1;-1:-1:-1::0;;;;48868:28:0;;::::1;::::0;;;::::1;::::0;;;;48912::::1;::::0;::::1;::::0;::::1;::::0;48927:12;::::1;::::0;;::::1;565:14:1::0;558:22;540:41;;528:2;513:18;;400:187;48912:28:0::1;;;;;;;;48810:138::o:0;32083:100::-;32137:13;32170:5;32163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32083:100;:::o;33586:204::-;33654:7;33679:16;33687:7;33679;:16::i;:::-;33674:64;;33704:34;;-1:-1:-1;;;33704:34:0;;;;;;;;;;;33674:64;-1:-1:-1;33758:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33758:24:0;;33586:204::o;33149:371::-;33222:13;33238:24;33254:7;33238:15;:24::i;:::-;33222:40;;33283:5;-1:-1:-1;;;;;33277:11:0;:2;-1:-1:-1;;;;;33277:11:0;;33273:48;;;33297:24;;-1:-1:-1;;;33297:24:0;;;;;;;;;;;33273:48;17101:10;-1:-1:-1;;;;;33338:21:0;;;;;;:63;;-1:-1:-1;33364:37:0;33381:5;17101:10;34220:164;:::i;33364:37::-;33363:38;33338:63;33334:138;;;33425:35;;-1:-1:-1;;;33425:35:0;;;;;;;;;;;33334:138;33484:28;33493:2;33497:7;33506:5;33484:8;:28::i;:::-;33211:309;33149:371;;:::o;34451:170::-;34585:28;34595:4;34601:2;34605:7;34585:9;:28::i;27982:968::-;28064:7;28137:13;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;28064:7:0;;28137:13;28064:7;;50957:1;28262:629;28300:10;28296:1;:14;28262:629;;;28348:14;;;;:11;:14;;;;;;;;;28336:26;;;;;;;;;-1:-1:-1;;;;;28336:26:0;;;;-1:-1:-1;;;28336:26:0;;-1:-1:-1;;;;;28336:26:0;;;;;;;;-1:-1:-1;;;28336:26:0;;;;;;;;;;;;;;;;-1:-1:-1;28381:73:0;;28426:8;;28381:73;28493:5;-1:-1:-1;;;;;28475:23:0;:9;:14;;;-1:-1:-1;;;;;28475:23:0;;28472:293;;;28534:4;28562:11;;;;28534:4;-1:-1:-1;28472:293:0;;;28602:14;;-1:-1:-1;;;;;28602:28:0;28599:166;;28658:8;28655:24;;;28668:11;;;;;28655:24;28599:166;;;28739:5;28728:16;;28599:166;28786:8;:36;;;;;28820:1;28808:9;:13;28798:5;:24;28786:36;28783:93;;;28854:1;-1:-1:-1;28847:8:0;;-1:-1:-1;;;;28847:8:0;28783:93;28312:3;;28262:629;;;;28919:23;;-1:-1:-1;;;28919:23:0;;;;;;;;;;;49273:106;21080:6;;-1:-1:-1;;;;;21080:6:0;17101:10;21227:23;21219:68;;;;-1:-1:-1;;;21219:68:0;;;;;;;:::i;:::-;21080:6;;49323:48:::1;::::0;-1:-1:-1;;;;;21080:6:0;;;;49349:21:::1;49323:48:::0;::::1;;;::::0;::::1;::::0;;;49349:21;21080:6;49323:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49273:106::o:0;49066:112::-;21080:6;;-1:-1:-1;;;;;21080:6:0;17101:10;21227:23;21219:68;;;;-1:-1:-1;;;21219:68:0;;;;;;;:::i;:::-;49143:14:::1;:27:::0;49066:112::o;34692:185::-;34830:39;34847:4;34853:2;34857:7;34830:39;;;;;;;;;;;;:16;:39::i;50185:150::-;21080:6;;-1:-1:-1;;;;;21080:6:0;17101:10;21227:23;21219:68;;;;-1:-1:-1;;;21219:68:0;;;;;;;:::i;:::-;50267:6:::1;::::0;::::1;;50266:7;50258:35;;;::::0;-1:-1:-1;;;50258:35:0;;7672:2:1;50258:35:0::1;::::0;::::1;7654:21:1::0;7711:2;7691:18;;;7684:30;-1:-1:-1;;;7730:18:1;;;7723:45;7785:18;;50258:35:0::1;7470:339:1::0;50258:35:0::1;50304:23:::0;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50185:150:::0;:::o;49389:788::-;49453:16;49507:18;49542:16;49552:5;49542:9;:16::i;:::-;-1:-1:-1;;;;;49528:31:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49528:31:0;-1:-1:-1;49574:11:0;49588:13;;49507:52;;-1:-1:-1;49574:11:0;;49690:446;49710:3;49706:1;:7;49690:446;;;49739:31;49773:14;;;:11;:14;;;;;;;;;49739:48;;;;;;;;;-1:-1:-1;;;;;49739:48:0;;;;-1:-1:-1;;;49739:48:0;;-1:-1:-1;;;;;49739:48:0;;;;;;;;-1:-1:-1;;;49739:48:0;;;;;;;;;;;;;;;;49806:73;;49851:8;;;49806:73;49901:14;;-1:-1:-1;;;;;49901:28:0;;49897:111;;49974:14;;;-1:-1:-1;49897:111:0;50051:5;-1:-1:-1;;;;;50030:26:0;:17;-1:-1:-1;;;;;50030:26:0;;50026:95;;;50100:1;50081;50083:13;;;;;;50081:16;;;;;;;;:::i;:::-;;;;;;:20;;;;;50026:95;49720:416;49690:446;49715:3;;49690:446;;;-1:-1:-1;50157:1:0;;49389:788;-1:-1:-1;;;;;49389:788:0:o;31891:125::-;31955:7;31982:21;31995:7;31982:12;:21::i;:::-;:26;;31891:125;-1:-1:-1;;31891:125:0:o;26611:206::-;26675:7;-1:-1:-1;;;;;26699:19:0;;26695:60;;26727:28;;-1:-1:-1;;;26727:28:0;;;;;;;;;;;26695:60;-1:-1:-1;;;;;;26781:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26781:27:0;;26611:206::o;21658:103::-;21080:6;;-1:-1:-1;;;;;21080:6:0;17101:10;21227:23;21219:68;;;;-1:-1:-1;;;21219:68:0;;;;;;;:::i;:::-;21723:30:::1;21750:1;21723:18;:30::i;:::-;21658:103::o:0;29340:1174::-;29399:16;29428:21;29452:16;29462:5;29452:9;:16::i;:::-;29479:18;29500:13;;29428:40;;-1:-1:-1;29479:18:0;;29428:40;-1:-1:-1;;;;;29616:28:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29616:28:0;-1:-1:-1;29592:52:0;-1:-1:-1;50957:1:0;29682:790;29720:10;29716:1;:14;29682:790;;;29756:31;29790:14;;;:11;:14;;;;;;;;;29756:48;;;;;;;;;-1:-1:-1;;;;;29756:48:0;;;;-1:-1:-1;;;29756:48:0;;-1:-1:-1;;;;;29756:48:0;;;;;;;;-1:-1:-1;;;29756:48:0;;;;;;;;;;;;;;;;29825:73;;29870:8;;;29825:73;29974:14;;-1:-1:-1;;;;;29974:28:0;;29970:111;;30047:14;;;-1:-1:-1;29970:111:0;30202:5;-1:-1:-1;;;;;30181:26:0;:17;-1:-1:-1;;;;;30181:26:0;;30177:98;;;30254:1;30232:4;30237:13;;;;;;30232:19;;;;;;;;:::i;:::-;;;;;;:23;;;;;30177:98;30394:13;30379:11;:28;30375:82;;;30432:5;;;30375:82;29737:735;29682:790;29732:3;;29682:790;;;-1:-1:-1;30502:4:0;29340:1174;-1:-1:-1;;;;;;29340:1174:0:o;50465:117::-;21080:6;;-1:-1:-1;;;;;21080:6:0;17101:10;21227:23;21219:68;;;;-1:-1:-1;;;21219:68:0;;;;;;;:::i;:::-;50547:27;;::::1;::::0;:12:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;32252:104::-:0;32308:13;32341:7;32334:14;;;;;:::i;49190:75::-;21080:6;;-1:-1:-1;;;;;21080:6:0;17101:10;21227:23;21219:68;;;;-1:-1:-1;;;21219:68:0;;;;;;;:::i;:::-;49244:6:::1;:13:::0;;-1:-1:-1;;49244:13:0::1;49253:4;49244:13;::::0;;49190:75::o;47624:363::-;47690:12;;-1:-1:-1;;;47690:12:0;;;;47682:38;;;;-1:-1:-1;;;47682:38:0;;8148:2:1;47682:38:0;;;8130:21:1;8187:2;8167:18;;;8160:30;-1:-1:-1;;;8206:18:1;;;8199:43;8259:18;;47682:38:0;7946:337:1;47682:38:0;47081:3;47769:6;47753:13;50957:1;25678:12;25468:7;25662:13;:28;-1:-1:-1;;25662:46:0;;25424:303;47753:13;:22;;;;:::i;:::-;:35;;47731:93;;;;-1:-1:-1;;;47731:93:0;;;;;;;:::i;:::-;47879:9;47869:6;47857:9;;:18;;;;:::i;:::-;:31;;47835:102;;;;-1:-1:-1;;;47835:102:0;;9264:2:1;47835:102:0;;;9246:21:1;9303:2;9283:18;;;9276:30;-1:-1:-1;;;9322:18:1;;;9315:51;9383:18;;47835:102:0;9062:345:1;47835:102:0;47950:29;47960:10;47972:6;47950:9;:29::i;33862:287::-;-1:-1:-1;;;;;33961:24:0;;17101:10;33961:24;33957:54;;;33994:17;;-1:-1:-1;;;33994:17:0;;;;;;;;;;;33957:54;17101:10;34024:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34024:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34024:53:0;;;;;;;;;;34093:48;;540:41:1;;;34024:42:0;;17101:10;34093:48;;513:18:1;34093:48:0;;;;;;;33862:287;;:::o;47995:446::-;48064:5;;:30;;-1:-1:-1;;;48064:30:0;;48080:10;48064:30;;;9594:51:1;48064:5:0;9661:18:1;;;9654:34;48097:1:0;;-1:-1:-1;;;;;48064:5:0;;:15;;9567:18:1;;48064:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:34;48056:64;;;;-1:-1:-1;;;48056:64:0;;10090:2:1;48056:64:0;;;10072:21:1;10129:2;10109:18;;;10102:30;-1:-1:-1;;;10148:18:1;;;10141:47;10205:18;;48056:64:0;9888:341:1;48056:64:0;48139:12;;-1:-1:-1;;;48139:12:0;;;;48131:38;;;;-1:-1:-1;;;48131:38:0;;8148:2:1;48131:38:0;;;8130:21:1;8187:2;8167:18;;;8160:30;-1:-1:-1;;;8206:18:1;;;8199:43;8259:18;;48131:38:0;7946:337:1;48131:38:0;47081:3;48218:6;48202:13;50957:1;25678:12;25468:7;25662:13;:28;-1:-1:-1;;25662:46:0;;25424:303;48202:13;:22;;;;:::i;:::-;:35;;48180:93;;;;-1:-1:-1;;;48180:93:0;;;;;;;:::i;:::-;48333:9;48323:6;48306:14;;:23;;;;:::i;34948:369::-;35115:28;35125:4;35131:2;35135:7;35115:9;:28::i;:::-;-1:-1:-1;;;;;35158:13:0;;9471:20;9519:8;;35158:76;;;;;35178:56;35209:4;35215:2;35219:7;35228:5;35178:30;:56::i;:::-;35177:57;35158:76;35154:156;;;35258:40;;-1:-1:-1;;;35258:40:0;;;;;;;;;;;35154:156;34948:369;;;;:::o;48449:351::-;21080:6;;-1:-1:-1;;;;;21080:6:0;17101:10;21227:23;21219:68;;;;-1:-1:-1;;;21219:68:0;;;;;;;:::i;:::-;47081:3:::1;48585:30;48605:10:::0;48585;:30:::1;:::i;:::-;48569:13;50957:1:::0;25678:12;25468:7;25662:13;:28;-1:-1:-1;;25662:46:0;;25424:303;48569:13:::1;:46;;;;:::i;:::-;:59;;48547:117;;;;-1:-1:-1::0;;;48547:117:0::1;;;;;;;:::i;:::-;48689:9;48685:108;48703:21:::0;;::::1;48685:108;;;48745:36;48755:10;;48766:1;48755:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;48770:10;48745:9;:36::i;:::-;48725:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48685:108;;50590:163:::0;50655:13;50711:23;50726:7;50711:14;:23::i;:::-;50694:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;50680:65;;50590:163;;;:::o;50761:97::-;50805:13;50838:12;50831:19;;;;;:::i;21916:201::-;21080:6;;-1:-1:-1;;;;;21080:6:0;17101:10;21227:23;21219:68;;;;-1:-1:-1;;;21219:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22005:22:0;::::1;21997:73;;;::::0;-1:-1:-1;;;21997:73:0;;11024:2:1;21997:73:0::1;::::0;::::1;11006:21:1::0;11063:2;11043:18;;;11036:30;11102:34;11082:18;;;11075:62;-1:-1:-1;;;11153:18:1;;;11146:36;11199:19;;21997:73:0::1;10822:402:1::0;21997:73:0::1;22081:28;22100:8;22081:18;:28::i;48956:102::-:0;21080:6;;-1:-1:-1;;;;;21080:6:0;17101:10;21227:23;21219:68;;;;-1:-1:-1;;;21219:68:0;;;;;;;:::i;:::-;49028:9:::1;:22:::0;48956:102::o;35572:187::-;35629:4;35672:7;50957:1;35653:26;;:53;;;;;35693:13;;35683:7;:23;35653:53;:98;;;;-1:-1:-1;;35724:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35724:27:0;;;;35723:28;;35572:187::o;43742:196::-;43857:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43857:29:0;-1:-1:-1;;;;;43857:29:0;;;;;;;;;43902:28;;43857:24;;43902:28;;;;;;;43742:196;;;:::o;38685:2130::-;38800:35;38838:21;38851:7;38838:12;:21::i;:::-;38800:59;;38898:4;-1:-1:-1;;;;;38876:26:0;:13;:18;;;-1:-1:-1;;;;;38876:26:0;;38872:67;;38911:28;;-1:-1:-1;;;38911:28:0;;;;;;;;;;;38872:67;38952:22;17101:10;-1:-1:-1;;;;;38978:20:0;;;;:73;;-1:-1:-1;39015:36:0;39032:4;17101:10;34220:164;:::i;39015:36::-;38978:126;;;-1:-1:-1;17101:10:0;39068:20;39080:7;39068:11;:20::i;:::-;-1:-1:-1;;;;;39068:36:0;;38978:126;38952:153;;39123:17;39118:66;;39149:35;;-1:-1:-1;;;39149:35:0;;;;;;;;;;;39118:66;-1:-1:-1;;;;;39199:16:0;;39195:52;;39224:23;;-1:-1:-1;;;39224:23:0;;;;;;;;;;;39195:52;39368:35;39385:1;39389:7;39398:4;39368:8;:35::i;:::-;-1:-1:-1;;;;;39699:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39699:31:0;;;-1:-1:-1;;;;;39699:31:0;;;-1:-1:-1;;39699:31:0;;;;;;;39745:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39745:29:0;;;;;;;;;;;39825:20;;;:11;:20;;;;;;39860:18;;-1:-1:-1;;;;;;39893:49:0;;;;-1:-1:-1;;;39926:15:0;39893:49;;;;;;;;;;40216:11;;40276:24;;;;;40319:13;;39825:20;;40276:24;;40319:13;40315:384;;40529:13;;40514:11;:28;40510:174;;40567:20;;40636:28;;;;-1:-1:-1;;;;;40610:54:0;-1:-1:-1;;;40610:54:0;-1:-1:-1;;;;;;40610:54:0;;;-1:-1:-1;;;;;40567:20:0;;40610:54;;;;40510:174;39674:1036;;;40746:7;40742:2;-1:-1:-1;;;;;40727:27:0;40736:4;-1:-1:-1;;;;;40727:27:0;;;;;;;;;;;40765:42;38789:2026;;38685:2130;;;:::o;30720:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30831:7:0;;50957:1;30880:23;;:47;;;;;30914:13;;30907:4;:20;30880:47;30876:886;;;30948:31;30982:17;;;:11;:17;;;;;;;;;30948:51;;;;;;;;;-1:-1:-1;;;;;30948:51:0;;;;-1:-1:-1;;;30948:51:0;;-1:-1:-1;;;;;30948:51:0;;;;;;;;-1:-1:-1;;;30948:51:0;;;;;;;;;;;;;;31018:729;;31068:14;;-1:-1:-1;;;;;31068:28:0;;31064:101;;31132:9;30720:1109;-1:-1:-1;;;30720:1109:0:o;31064:101::-;-1:-1:-1;;;31507:6:0;31552:17;;;;:11;:17;;;;;;;;;31540:29;;;;;;;;;-1:-1:-1;;;;;31540:29:0;;;;;-1:-1:-1;;;31540:29:0;;-1:-1:-1;;;;;31540:29:0;;;;;;;;-1:-1:-1;;;31540:29:0;;;;;;;;;;;;;31600:28;31596:109;;31668:9;30720:1109;-1:-1:-1;;;30720:1109:0:o;31596:109::-;31467:261;;;30929:833;30876:886;31790:31;;-1:-1:-1;;;31790:31:0;;;;;;;;;;;22277:191;22370:6;;;-1:-1:-1;;;;;22387:17:0;;;-1:-1:-1;;;;;;22387:17:0;;;;;;;22420:40;;22370:6;;;22387:17;22370:6;;22420:40;;22351:16;;22420:40;22340:128;22277:191;:::o;35767:104::-;35836:27;35846:2;35850:8;35836:27;;;;;;;;;;;;:9;:27::i;44430:667::-;44614:72;;-1:-1:-1;;;44614:72:0;;44593:4;;-1:-1:-1;;;;;44614:36:0;;;;;:72;;17101:10;;44665:4;;44671:7;;44680:5;;44614:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44614:72:0;;;;;;;;-1:-1:-1;;44614:72:0;;;;;;;;;;;;:::i;:::-;;;44610:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44848:13:0;;44844:235;;44894:40;;-1:-1:-1;;;44894:40:0;;;;;;;;;;;44844:235;45037:6;45031:13;45022:6;45018:2;45014:15;45007:38;44610:480;-1:-1:-1;;;;;;44733:55:0;-1:-1:-1;;;44733:55:0;;-1:-1:-1;44610:480:0;44430:667;;;;;;:::o;32427:318::-;32500:13;32531:16;32539:7;32531;:16::i;:::-;32526:59;;32556:29;;-1:-1:-1;;;32556:29:0;;;;;;;;;;;32526:59;32598:21;32622:10;:8;:10::i;:::-;32598:34;;32656:7;32650:21;32675:1;32650:26;;:87;;;;;;;;;;;;;;;;;32703:7;32712:18;:7;:16;:18::i;:::-;32686:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32650:87;32643:94;32427:318;-1:-1:-1;;;32427:318:0:o;36234:163::-;36357:32;36363:2;36367:8;36377:5;36384:4;36357:5;:32::i;50343:114::-;50403:13;50436;50429:20;;;;;:::i;17463:723::-;17519:13;17740:10;17736:53;;-1:-1:-1;;17767:10:0;;;;;;;;;;;;-1:-1:-1;;;17767:10:0;;;;;17463:723::o;17736:53::-;17814:5;17799:12;17855:78;17862:9;;17855:78;;17888:8;;;;:::i;:::-;;-1:-1:-1;17911:10:0;;-1:-1:-1;17919:2:0;17911:10;;:::i;:::-;;;17855:78;;;17943:19;17975:6;-1:-1:-1;;;;;17965:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17965:17:0;;17943:39;;17993:154;18000:10;;17993:154;;18027:11;18037:1;18027:11;;:::i;:::-;;-1:-1:-1;18096:10:0;18104:2;18096:5;:10;:::i;:::-;18083:24;;:2;:24;:::i;:::-;18070:39;;18053:6;18060;18053:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18053:56:0;;;;;;;;-1:-1:-1;18124:11:0;18133:2;18124:11;;:::i;:::-;;;17993:154;;36656:1775;36795:20;36818:13;-1:-1:-1;;;;;36846:16:0;;36842:48;;36871:19;;-1:-1:-1;;;36871:19:0;;;;;;;;;;;36842:48;36905:13;36901:44;;36927:18;;-1:-1:-1;;;36927:18:0;;;;;;;;;;;36901:44;-1:-1:-1;;;;;37296:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37355:49:0;;-1:-1:-1;;;;;37296:44:0;;;;;;;37355:49;;;;-1:-1:-1;;37296:44:0;;;;;;37355:49;;;;;;;;;;;;;;;;37421:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37471:66:0;;;;-1:-1:-1;;;37521:15:0;37471:66;;;;;;;;;;37421:25;37618:23;;;37662:4;:23;;;;-1:-1:-1;;;;;;37670:13:0;;9471:20;9519:8;;37670:15;37658:641;;;37706:314;37737:38;;37762:12;;-1:-1:-1;;;;;37737:38:0;;;37754:1;;37737:38;;37754:1;;37737:38;37803:69;37842:1;37846:2;37850:14;;;;;;37866:5;37803:30;:69::i;:::-;37798:174;;37908:40;;-1:-1:-1;;;37908:40:0;;;;;;;;;;;37798:174;38015:3;37999:12;:19;;37706:314;;38101:12;38084:13;;:29;38080:43;;38115:8;;;38080:43;37658:641;;;38164:120;38195:40;;38220:14;;;;;-1:-1:-1;;;;;38195:40:0;;;38212:1;;38195:40;;38212:1;;38195:40;38279:3;38263:12;:19;;38164:120;;37658:641;-1:-1:-1;38313:13:0;:28;38363:60;34948:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;-1:-1:-1;;;;;2956:2:1;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;-1:-1:-1;;;;;3660:6:1;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:632::-;4275:2;4327:21;;;4397:13;;4300:18;;;4419:22;;;4246:4;;4275:2;4498:15;;;;4472:2;4457:18;;;4246:4;4541:169;4555:6;4552:1;4549:13;4541:169;;;4616:13;;4604:26;;4685:15;;;;4650:12;;;;4577:1;4570:9;4541:169;;;-1:-1:-1;4727:3:1;;4104:632;-1:-1:-1;;;;;;4104:632:1:o;4741:347::-;4806:6;4814;4867:2;4855:9;4846:7;4842:23;4838:32;4835:52;;;4883:1;4880;4873:12;4835:52;4906:29;4925:9;4906:29;:::i;:::-;4896:39;;4985:2;4974:9;4970:18;4957:32;5032:5;5025:13;5018:21;5011:5;5008:32;4998:60;;5054:1;5051;5044:12;4998:60;5077:5;5067:15;;;4741:347;;;;;:::o;5093:667::-;5188:6;5196;5204;5212;5265:3;5253:9;5244:7;5240:23;5236:33;5233:53;;;5282:1;5279;5272:12;5233:53;5305:29;5324:9;5305:29;:::i;:::-;5295:39;;5353:38;5387:2;5376:9;5372:18;5353:38;:::i;:::-;5343:48;;5438:2;5427:9;5423:18;5410:32;5400:42;;5493:2;5482:9;5478:18;5465:32;-1:-1:-1;;;;;5512:6:1;5509:30;5506:50;;;5552:1;5549;5542:12;5506:50;5575:22;;5628:4;5620:13;;5616:27;-1:-1:-1;5606:55:1;;5657:1;5654;5647:12;5606:55;5680:74;5746:7;5741:2;5728:16;5723:2;5719;5715:11;5680:74;:::i;:::-;5670:84;;;5093:667;;;;;;;:::o;5765:689::-;5860:6;5868;5876;5929:2;5917:9;5908:7;5904:23;5900:32;5897:52;;;5945:1;5942;5935:12;5897:52;5985:9;5972:23;-1:-1:-1;;;;;6055:2:1;6047:6;6044:14;6041:34;;;6071:1;6068;6061:12;6041:34;6109:6;6098:9;6094:22;6084:32;;6154:7;6147:4;6143:2;6139:13;6135:27;6125:55;;6176:1;6173;6166:12;6125:55;6216:2;6203:16;6242:2;6234:6;6231:14;6228:34;;;6258:1;6255;6248:12;6228:34;6313:7;6306:4;6296:6;6293:1;6289:14;6285:2;6281:23;6277:34;6274:47;6271:67;;;6334:1;6331;6324:12;6271:67;6365:4;6357:13;;;;6389:6;;-1:-1:-1;6427:20:1;;;;6414:34;;5765:689;-1:-1:-1;;;;5765:689:1:o;6459:260::-;6527:6;6535;6588:2;6576:9;6567:7;6563:23;6559:32;6556:52;;;6604:1;6601;6594:12;6556:52;6627:29;6646:9;6627:29;:::i;:::-;6617:39;;6675:38;6709:2;6698:9;6694:18;6675:38;:::i;:::-;6665:48;;6459:260;;;;;:::o;6724:356::-;6926:2;6908:21;;;6945:18;;;6938:30;7004:34;6999:2;6984:18;;6977:62;7071:2;7056:18;;6724:356::o;7085:380::-;7164:1;7160:12;;;;7207;;;7228:61;;7282:4;7274:6;7270:17;7260:27;;7228:61;7335:2;7327:6;7324:14;7304:18;7301:38;7298:161;;;7381:10;7376:3;7372:20;7369:1;7362:31;7416:4;7413:1;7406:15;7444:4;7441:1;7434:15;7298:161;;7085:380;;;:::o;7814:127::-;7875:10;7870:3;7866:20;7863:1;7856:31;7906:4;7903:1;7896:15;7930:4;7927:1;7920:15;8288:127;8349:10;8344:3;8340:20;8337:1;8330:31;8380:4;8377:1;8370:15;8404:4;8401:1;8394:15;8420:128;8460:3;8491:1;8487:6;8484:1;8481:13;8478:39;;;8497:18;;:::i;:::-;-1:-1:-1;8533:9:1;;8420:128::o;8553:331::-;8755:2;8737:21;;;8794:1;8774:18;;;8767:29;-1:-1:-1;;;8827:2:1;8812:18;;8805:38;8875:2;8860:18;;8553:331::o;8889:168::-;8929:7;8995:1;8991;8987:6;8983:14;8980:1;8977:21;8972:1;8965:9;8958:17;8954:45;8951:71;;;9002:18;;:::i;:::-;-1:-1:-1;9042:9:1;;8889:168::o;9699:184::-;9769:6;9822:2;9810:9;9801:7;9797:23;9793:32;9790:52;;;9838:1;9835;9828:12;9790:52;-1:-1:-1;9861:16:1;;9699:184;-1:-1:-1;9699:184:1:o;10234:135::-;10273:3;-1:-1:-1;;10294:17:1;;10291:43;;;10314:18;;:::i;:::-;-1:-1:-1;10361:1:1;10350:13;;10234:135::o;10374:443::-;10606:3;10644:6;10638:13;10660:53;10706:6;10701:3;10694:4;10686:6;10682:17;10660:53;:::i;:::-;-1:-1:-1;;;10735:16:1;;10760:22;;;-1:-1:-1;10809:1:1;10798:13;;10374:443;-1:-1:-1;10374:443:1:o;11229:489::-;-1:-1:-1;;;;;11498:15:1;;;11480:34;;11550:15;;11545:2;11530:18;;11523:43;11597:2;11582:18;;11575:34;;;11645:3;11640:2;11625:18;;11618:31;;;11423:4;;11666:46;;11692:19;;11684:6;11666:46;:::i;:::-;11658:54;11229:489;-1:-1:-1;;;;;;11229:489:1:o;11723:249::-;11792:6;11845:2;11833:9;11824:7;11820:23;11816:32;11813:52;;;11861:1;11858;11851:12;11813:52;11893:9;11887:16;11912:30;11936:5;11912:30;:::i;11977:470::-;12156:3;12194:6;12188:13;12210:53;12256:6;12251:3;12244:4;12236:6;12232:17;12210:53;:::i;:::-;12326:13;;12285:16;;;;12348:57;12326:13;12285:16;12382:4;12370:17;;12348:57;:::i;:::-;12421:20;;11977:470;-1:-1:-1;;;;11977:470:1:o;12452:127::-;12513:10;12508:3;12504:20;12501:1;12494:31;12544:4;12541:1;12534:15;12568:4;12565:1;12558:15;12584:120;12624:1;12650;12640:35;;12655:18;;:::i;:::-;-1:-1:-1;12689:9:1;;12584:120::o;12709:125::-;12749:4;12777:1;12774;12771:8;12768:34;;;12782:18;;:::i;:::-;-1:-1:-1;12819:9:1;;12709:125::o;12839:112::-;12871:1;12897;12887:35;;12902:18;;:::i;:::-;-1:-1:-1;12936:9:1;;12839:112::o

Swarm Source

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