ETH Price: $3,257.81 (+2.59%)
Gas: 2 Gwei

Token

Genesis Katsumi (KAT)
 

Overview

Max Total Supply

1,401 KAT

Holders

1,347

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 KAT
0x91562531450b0aeedea64cdc54a53db8c61f5a2c
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:
GenesisKatsumiNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-17
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
/**
Where am i?.......                                   
                                                                           
*/

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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 Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}


// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

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

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) 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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *   - `extraData` = `0`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *   - `extraData` = `<Extra data when token was burned>`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     *   - `extraData` = `<Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}



pragma solidity ^0.8.0;





/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
 pragma solidity ^0.8.0;

 contract GenesisKatsumiNFT is ERC721A, Ownable, ReentrancyGuard {



  using Strings for uint;
 string public hiddenMetadataUri;

 bytes32 public merkleRoot; 
  mapping(address => bool) public whitelistClaimed;

  string  public  baseTokenURI = "ipfs://secret";
  uint256  public  maxSupply = 1111;
  uint256 public  MAX_MINTS_PER_TX = 30;
  uint256 public  PUBLIC_SALE_PRICE = 0.002 ether;
  uint256 public  NUM_FREE_MINTS = 666;
  uint256 public  MAX_FREE_PER_WALLET = 1;
  uint256 public freeNFTAlreadyMinted = 0;
  bool public isPublicSaleActive = false;
   bool public whitelistMintEnabled = false;

   constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setHiddenMetadataUri(_hiddenMetadataUri);
  }


  function mint(uint256 numberOfTokens)
      external
      payable
  {
    require(isPublicSaleActive, "Public sale is not open");
    require(totalSupply() + numberOfTokens < maxSupply + 1, "No more");

    if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS){
        require(
            (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
    } else {
        if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) {
        require(
            (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                numberOfTokens <= MAX_FREE_PER_WALLET,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += numberOfTokens;
        }
    }
    _safeMint(msg.sender, numberOfTokens); 
  }

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

  function treasuryMint(uint quantity)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(msg.sender, quantity);
  }

function withdraw() public onlyOwner nonReentrant {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }

  function tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json"));
  }

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

  function setIsPublicSaleActive(bool _isPublicSaleActive)
      external
      onlyOwner
  {
      isPublicSaleActive = _isPublicSaleActive;
  }
  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function setSalePrice(uint256 _price)
      external
      onlyOwner
  {
      PUBLIC_SALE_PRICE = _price;
  }
  function setGenesis(uint256 _genesis)
      external
      onlyOwner
  {
      maxSupply = _genesis;
  }

  function setMaxLimitPerTransaction(uint256 _limit)
      external
      onlyOwner
  {
      MAX_MINTS_PER_TX = _limit;
  }
  function setwhitelistMintEnabled(bool _wlMintEnabled)
      external
      onlyOwner
  {
      whitelistMintEnabled = _wlMintEnabled;
  }
  function whitelistMint(uint256 _price, bytes32[] calldata _merkleProof) public payable  {
    // Verify whitelist requirements
    require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
    require(!whitelistClaimed[_msgSender()], 'Address already claimed!');
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');

    whitelistClaimed[_msgSender()] = true;
    _safeMint(_msgSender(), _price);
  }

  function setFreeLimitPerWallet(uint256 _limit)
      external
      onlyOwner
  {
      MAX_FREE_PER_WALLET = _limit;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_genesis","type":"uint256"}],"name":"setGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_wlMintEnabled","type":"bool"}],"name":"setwhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600d81526020017f697066733a2f2f73656372657400000000000000000000000000000000000000815250600d90805190602001906200005192919062000329565b50610457600e55601e600f5566071afd498d000060105561029a601155600160125560006013556000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff021916908315150217905550348015620000bb57600080fd5b506040516200421d3803806200421d8339818101604052810190620000e1919062000457565b82828160029080519060200190620000fb92919062000329565b5080600390805190602001906200011492919062000329565b50620001256200016f60201b60201c565b60008190555050506200014d620001416200017460201b60201c565b6200017c60201b60201c565b600160098190555062000166816200024260201b60201c565b50505062000717565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002526200026e60201b60201c565b80600a90805190602001906200026a92919062000329565b5050565b6200027e6200017460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002a4620002ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f49062000537565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200033790620005ff565b90600052602060002090601f0160209004810192826200035b5760008555620003a7565b82601f106200037657805160ff1916838001178555620003a7565b82800160010185558215620003a7579182015b82811115620003a657825182559160200191906001019062000389565b5b509050620003b69190620003ba565b5090565b5b80821115620003d5576000816000905550600101620003bb565b5090565b6000620003f0620003ea8462000582565b62000559565b9050828152602081018484840111156200040f576200040e620006ce565b5b6200041c848285620005c9565b509392505050565b600082601f8301126200043c576200043b620006c9565b5b81516200044e848260208601620003d9565b91505092915050565b600080600060608486031215620004735762000472620006d8565b5b600084015167ffffffffffffffff811115620004945762000493620006d3565b5b620004a28682870162000424565b935050602084015167ffffffffffffffff811115620004c657620004c5620006d3565b5b620004d48682870162000424565b925050604084015167ffffffffffffffff811115620004f857620004f7620006d3565b5b620005068682870162000424565b9150509250925092565b60006200051f602083620005b8565b91506200052c82620006ee565b602082019050919050565b60006020820190508181036000830152620005528162000510565b9050919050565b60006200056562000578565b905062000573828262000635565b919050565b6000604051905090565b600067ffffffffffffffff821115620005a0576200059f6200069a565b5b620005ab82620006dd565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005e9578082015181840152602081019050620005cc565b83811115620005f9576000848401525b50505050565b600060028204905060018216806200061857607f821691505b602082108114156200062f576200062e6200066b565b5b50919050565b6200064082620006dd565b810181811067ffffffffffffffff821117156200066257620006616200069a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613af680620007276000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063a45ba8e7116100b6578063d547cfb71161007a578063d547cfb71461085a578063d5abeb0114610885578063db4bec44146108b0578063e985e9c5146108ed578063efdc77881461092a578063f2fde38b1461095357610251565b8063a45ba8e714610782578063b88d4fde146107ad578063c6a91b42146107d6578063c87b56dd14610801578063d2cab0561461083e57610251565b8063982d669e116100fd578063982d669e146106be57806398710d1e146106e95780639e9fcffc14610714578063a0712d681461073d578063a22cb4651461075957610251565b806370a08231146105eb578063715018a6146106285780637eac76211461063f5780638da5cb5b1461066857806395d89b411461069357610251565b80631e84c413116101d25780633ccfd60b116101965780633ccfd60b146104f157806342842e0e146105085780634fdd43cb1461053157806355f804b31461055a5780636352211e146105835780636caede3d146105c057610251565b80631e84c41314610420578063202f298a1461044b57806323b872dd1461047457806328cad13d1461049d5780632eb4a7ab146104c657610251565b8063095ea7b311610219578063095ea7b31461034f5780630a00ae831461037857806318160ddd146103a15780631919fed7146103cc578063193ad7b4146103f557610251565b806301ffc9a71461025657806305480eee1461029357806306fdde03146102bc57806307e89ec0146102e7578063081812fc14610312575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612ac2565b61097c565b60405161028a9190613068565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190612a95565b610a0e565b005b3480156102c857600080fd5b506102d1610a33565b6040516102de919061309e565b60405180910390f35b3480156102f357600080fd5b506102fc610ac5565b6040516103099190613260565b60405180910390f35b34801561031e57600080fd5b5061033960048036038101906103349190612b65565b610acb565b6040516103469190613001565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190612a55565b610b47565b005b34801561038457600080fd5b5061039f600480360381019061039a9190612b65565b610c88565b005b3480156103ad57600080fd5b506103b6610c9a565b6040516103c39190613260565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190612b65565b610cb1565b005b34801561040157600080fd5b5061040a610cc3565b6040516104179190613260565b60405180910390f35b34801561042c57600080fd5b50610435610cc9565b6040516104429190613068565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d9190612b65565b610cdc565b005b34801561048057600080fd5b5061049b6004803603810190610496919061293f565b610cee565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190612a95565b611013565b005b3480156104d257600080fd5b506104db611038565b6040516104e89190613083565b60405180910390f35b3480156104fd57600080fd5b5061050661103e565b005b34801561051457600080fd5b5061052f600480360381019061052a919061293f565b61111c565b005b34801561053d57600080fd5b5061055860048036038101906105539190612b1c565b61113c565b005b34801561056657600080fd5b50610581600480360381019061057c9190612b1c565b61115e565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190612b65565b611180565b6040516105b79190613001565b60405180910390f35b3480156105cc57600080fd5b506105d5611192565b6040516105e29190613068565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d91906128d2565b6111a5565b60405161061f9190613260565b60405180910390f35b34801561063457600080fd5b5061063d61125e565b005b34801561064b57600080fd5b5061066660048036038101906106619190612b65565b611272565b005b34801561067457600080fd5b5061067d611284565b60405161068a9190613001565b60405180910390f35b34801561069f57600080fd5b506106a86112ae565b6040516106b5919061309e565b60405180910390f35b3480156106ca57600080fd5b506106d3611340565b6040516106e09190613260565b60405180910390f35b3480156106f557600080fd5b506106fe611346565b60405161070b9190613260565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190612b65565b61134c565b005b61075760048036038101906107529190612b65565b61135e565b005b34801561076557600080fd5b50610780600480360381019061077b9190612a15565b61159f565b005b34801561078e57600080fd5b50610797611717565b6040516107a4919061309e565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190612992565b6117a5565b005b3480156107e257600080fd5b506107eb611818565b6040516107f89190613260565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190612b65565b61181e565b604051610835919061309e565b60405180910390f35b61085860048036038101906108539190612b92565b61189a565b005b34801561086657600080fd5b5061086f611ab2565b60405161087c919061309e565b60405180910390f35b34801561089157600080fd5b5061089a611b40565b6040516108a79190613260565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d291906128d2565b611b46565b6040516108e49190613068565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f91906128ff565b611b66565b6040516109219190613068565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c9190612b65565b611bfa565b005b34801561095f57600080fd5b5061097a600480360381019061097591906128d2565b611ca9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a075750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a16611d2d565b80601460016101000a81548160ff02191690831515021790555050565b606060028054610a429061353a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6e9061353a565b8015610abb5780601f10610a9057610100808354040283529160200191610abb565b820191906000526020600020905b815481529060010190602001808311610a9e57829003601f168201915b5050505050905090565b60105481565b6000610ad682611dab565b610b0c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5282611180565b90508073ffffffffffffffffffffffffffffffffffffffff16610b73611e0a565b73ffffffffffffffffffffffffffffffffffffffff1614610bd657610b9f81610b9a611e0a565b611b66565b610bd5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c90611d2d565b8060118190555050565b6000610ca4611e12565b6001546000540303905090565b610cb9611d2d565b8060108190555050565b60135481565b601460009054906101000a900460ff1681565b610ce4611d2d565b8060128190555050565b6000610cf982611e17565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d60576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d6c84611ee5565b91509150610d828187610d7d611e0a565b611f07565b610dce57610d9786610d92611e0a565b611b66565b610dcd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e35576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e428686866001611f4b565b8015610e4d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f1b85610ef7888887611f51565b7c020000000000000000000000000000000000000000000000000000000017611f79565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fa3576000600185019050600060046000838152602001908152602001600020541415610fa1576000548114610fa0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461100b8686866001611fa4565b505050505050565b61101b611d2d565b80601460006101000a81548160ff02191690831515021790555050565b600b5481565b611046611d2d565b6002600954141561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390613220565b60405180910390fd5b6002600981905550600061109e611284565b73ffffffffffffffffffffffffffffffffffffffff16476040516110c190612fec565b60006040518083038185875af1925050503d80600081146110fe576040519150601f19603f3d011682016040523d82523d6000602084013e611103565b606091505b505090508061111157600080fd5b506001600981905550565b611137838383604051806020016040528060008152506117a5565b505050565b611144611d2d565b80600a908051906020019061115a929190612690565b5050565b611166611d2d565b80600d908051906020019061117c929190612690565b5050565b600061118b82611e17565b9050919050565b601460019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611266611d2d565b6112706000611faa565b565b61127a611d2d565b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112bd9061353a565b80601f01602080910402602001604051908101604052809291908181526020018280546112e99061353a565b80156113365780601f1061130b57610100808354040283529160200191611336565b820191906000526020600020905b81548152906001019060200180831161131957829003601f168201915b5050505050905090565b60115481565b60125481565b611354611d2d565b80600f8190555050565b601460009054906101000a900460ff166113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490613240565b60405180910390fd5b6001600e546113bc9190613365565b816113c5610c9a565b6113cf9190613365565b1061140f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611406906130c0565b60405180910390fd5b601154816013546114209190613365565b111561147b57348160105461143591906133ec565b1115611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90613200565b60405180910390fd5b611592565b60125481611488336111a5565b6114929190613365565b11156115325734816010546114a791906133ec565b11156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613200565b60405180910390fd5b600f5481111561152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490613120565b60405180910390fd5b611591565b601254811115611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90613120565b60405180910390fd5b80601360008282546115899190613365565b925050819055505b5b61159c3382612070565b50565b6115a7611e0a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611619611e0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116c6611e0a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161170b9190613068565b60405180910390a35050565b600a80546117249061353a565b80601f01602080910402602001604051908101604052809291908181526020018280546117509061353a565b801561179d5780601f106117725761010080835404028352916020019161179d565b820191906000526020600020905b81548152906001019060200180831161178057829003601f168201915b505050505081565b6117b0848484610cee565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611812576117db8484848461208e565b611811576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b606061182982611dab565b611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f906131a0565b60405180910390fd5b600d611873836121ee565b604051602001611884929190612fb2565b6040516020818303038152906040529050919050565b601460019054906101000a900460ff166118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e0906131c0565b60405180910390fd5b600c60006118f561234f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490613180565b60405180910390fd5b600061198761234f565b6040516020016119979190612f97565b6040516020818303038152906040528051906020012090506119fd838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b5483612357565b611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a33906130e0565b60405180910390fd5b6001600c6000611a4a61234f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611aac611aa661234f565b85612070565b50505050565b600d8054611abf9061353a565b80601f0160208091040260200160405190810160405280929190818152602001828054611aeb9061353a565b8015611b385780601f10611b0d57610100808354040283529160200191611b38565b820191906000526020600020905b815481529060010190602001808311611b1b57829003601f168201915b505050505081565b600e5481565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c02611d2d565b60008111611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c906131e0565b60405180910390fd5b600e5481611c51610c9a565b611c5b9190613365565b1115611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9390613140565b60405180910390fd5b611ca63382612070565b50565b611cb1611d2d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890613100565b60405180910390fd5b611d2a81611faa565b50565b611d3561234f565b73ffffffffffffffffffffffffffffffffffffffff16611d53611284565b73ffffffffffffffffffffffffffffffffffffffff1614611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090613160565b60405180910390fd5b565b600081611db6611e12565b11158015611dc5575060005482105b8015611e03575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611e26611e12565b11611eae57600054811015611ead5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611eab575b6000811415611ea1576004600083600190039350838152602001908152602001600020549050611e76565b8092505050611ee0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f6886868461236e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61208a828260405180602001604052806000815250612377565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b4611e0a565b8786866040518563ffffffff1660e01b81526004016120d6949392919061301c565b602060405180830381600087803b1580156120f057600080fd5b505af192505050801561212157506040513d601f19601f8201168201806040525081019061211e9190612aef565b60015b61219b573d8060008114612151576040519150601f19603f3d011682016040523d82523d6000602084013e612156565b606091505b50600081511415612193576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612236576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061234a565b600082905060005b600082146122685780806122519061359d565b915050600a8261226191906133bb565b915061223e565b60008167ffffffffffffffff811115612284576122836136f7565b5b6040519080825280601f01601f1916602001820160405280156122b65781602001600182028036833780820191505090505b5090505b60008514612343576001826122cf9190613446565b9150600a856122de919061360a565b60306122ea9190613365565b60f81b818381518110612300576122ff6136c8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561233c91906133bb565b94506122ba565b8093505050505b919050565b600033905090565b6000826123648584612414565b1490509392505050565b60009392505050565b612381838361246a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461240f57600080549050600083820390505b6123c1600086838060010194508661208e565b6123f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123ae57816000541461240c57600080fd5b50505b505050565b60008082905060005b845181101561245f5761244a8286838151811061243d5761243c6136c8565b5b602002602001015161263e565b915080806124579061359d565b91505061241d565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124d7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612512576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61251f6000848385611f4b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612596836125876000866000611f51565b61259085612669565b17611f79565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106125ba578060008190555050506126396000848385611fa4565b505050565b6000818310612656576126518284612679565b612661565b6126608383612679565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b82805461269c9061353a565b90600052602060002090601f0160209004810192826126be5760008555612705565b82601f106126d757805160ff1916838001178555612705565b82800160010185558215612705579182015b828111156127045782518255916020019190600101906126e9565b5b5090506127129190612716565b5090565b5b8082111561272f576000816000905550600101612717565b5090565b6000612746612741846132a0565b61327b565b90508281526020810184848401111561276257612761613735565b5b61276d8482856134f8565b509392505050565b6000612788612783846132d1565b61327b565b9050828152602081018484840111156127a4576127a3613735565b5b6127af8482856134f8565b509392505050565b6000813590506127c681613a64565b92915050565b60008083601f8401126127e2576127e161372b565b5b8235905067ffffffffffffffff8111156127ff576127fe613726565b5b60208301915083602082028301111561281b5761281a613730565b5b9250929050565b60008135905061283181613a7b565b92915050565b60008135905061284681613a92565b92915050565b60008151905061285b81613a92565b92915050565b600082601f8301126128765761287561372b565b5b8135612886848260208601612733565b91505092915050565b600082601f8301126128a4576128a361372b565b5b81356128b4848260208601612775565b91505092915050565b6000813590506128cc81613aa9565b92915050565b6000602082840312156128e8576128e761373f565b5b60006128f6848285016127b7565b91505092915050565b600080604083850312156129165761291561373f565b5b6000612924858286016127b7565b9250506020612935858286016127b7565b9150509250929050565b6000806000606084860312156129585761295761373f565b5b6000612966868287016127b7565b9350506020612977868287016127b7565b9250506040612988868287016128bd565b9150509250925092565b600080600080608085870312156129ac576129ab61373f565b5b60006129ba878288016127b7565b94505060206129cb878288016127b7565b93505060406129dc878288016128bd565b925050606085013567ffffffffffffffff8111156129fd576129fc61373a565b5b612a0987828801612861565b91505092959194509250565b60008060408385031215612a2c57612a2b61373f565b5b6000612a3a858286016127b7565b9250506020612a4b85828601612822565b9150509250929050565b60008060408385031215612a6c57612a6b61373f565b5b6000612a7a858286016127b7565b9250506020612a8b858286016128bd565b9150509250929050565b600060208284031215612aab57612aaa61373f565b5b6000612ab984828501612822565b91505092915050565b600060208284031215612ad857612ad761373f565b5b6000612ae684828501612837565b91505092915050565b600060208284031215612b0557612b0461373f565b5b6000612b138482850161284c565b91505092915050565b600060208284031215612b3257612b3161373f565b5b600082013567ffffffffffffffff811115612b5057612b4f61373a565b5b612b5c8482850161288f565b91505092915050565b600060208284031215612b7b57612b7a61373f565b5b6000612b89848285016128bd565b91505092915050565b600080600060408486031215612bab57612baa61373f565b5b6000612bb9868287016128bd565b935050602084013567ffffffffffffffff811115612bda57612bd961373a565b5b612be6868287016127cc565b92509250509250925092565b612bfb8161347a565b82525050565b612c12612c0d8261347a565b6135e6565b82525050565b612c218161348c565b82525050565b612c3081613498565b82525050565b6000612c4182613317565b612c4b818561332d565b9350612c5b818560208601613507565b612c6481613744565b840191505092915050565b6000612c7a82613322565b612c848185613349565b9350612c94818560208601613507565b612c9d81613744565b840191505092915050565b6000612cb382613322565b612cbd818561335a565b9350612ccd818560208601613507565b80840191505092915050565b60008154612ce68161353a565b612cf0818661335a565b94506001821660008114612d0b5760018114612d1c57612d4f565b60ff19831686528186019350612d4f565b612d2585613302565b60005b83811015612d4757815481890152600182019150602081019050612d28565b838801955050505b50505092915050565b6000612d65600783613349565b9150612d7082613762565b602082019050919050565b6000612d88600e83613349565b9150612d938261378b565b602082019050919050565b6000612dab602683613349565b9150612db6826137b4565b604082019050919050565b6000612dce602283613349565b9150612dd982613803565b604082019050919050565b6000612df1601783613349565b9150612dfc82613852565b602082019050919050565b6000612e1460058361335a565b9150612e1f8261387b565b600582019050919050565b6000612e37602083613349565b9150612e42826138a4565b602082019050919050565b6000612e5a601883613349565b9150612e65826138cd565b602082019050919050565b6000612e7d602f83613349565b9150612e88826138f6565b604082019050919050565b6000612ea060008361333e565b9150612eab82613945565b600082019050919050565b6000612ec3602283613349565b9150612ece82613948565b604082019050919050565b6000612ee6601383613349565b9150612ef182613997565b602082019050919050565b6000612f09601883613349565b9150612f14826139c0565b602082019050919050565b6000612f2c601f83613349565b9150612f37826139e9565b602082019050919050565b6000612f4f601783613349565b9150612f5a82613a12565b602082019050919050565b6000612f7260018361335a565b9150612f7d82613a3b565b600182019050919050565b612f91816134ee565b82525050565b6000612fa38284612c01565b60148201915081905092915050565b6000612fbe8285612cd9565b9150612fc982612f65565b9150612fd58284612ca8565b9150612fe082612e07565b91508190509392505050565b6000612ff782612e93565b9150819050919050565b60006020820190506130166000830184612bf2565b92915050565b60006080820190506130316000830187612bf2565b61303e6020830186612bf2565b61304b6040830185612f88565b818103606083015261305d8184612c36565b905095945050505050565b600060208201905061307d6000830184612c18565b92915050565b60006020820190506130986000830184612c27565b92915050565b600060208201905081810360008301526130b88184612c6f565b905092915050565b600060208201905081810360008301526130d981612d58565b9050919050565b600060208201905081810360008301526130f981612d7b565b9050919050565b6000602082019050818103600083015261311981612d9e565b9050919050565b6000602082019050818103600083015261313981612dc1565b9050919050565b6000602082019050818103600083015261315981612de4565b9050919050565b6000602082019050818103600083015261317981612e2a565b9050919050565b6000602082019050818103600083015261319981612e4d565b9050919050565b600060208201905081810360008301526131b981612e70565b9050919050565b600060208201905081810360008301526131d981612eb6565b9050919050565b600060208201905081810360008301526131f981612ed9565b9050919050565b6000602082019050818103600083015261321981612efc565b9050919050565b6000602082019050818103600083015261323981612f1f565b9050919050565b6000602082019050818103600083015261325981612f42565b9050919050565b60006020820190506132756000830184612f88565b92915050565b6000613285613296565b9050613291828261356c565b919050565b6000604051905090565b600067ffffffffffffffff8211156132bb576132ba6136f7565b5b6132c482613744565b9050602081019050919050565b600067ffffffffffffffff8211156132ec576132eb6136f7565b5b6132f582613744565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613370826134ee565b915061337b836134ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133b0576133af61363b565b5b828201905092915050565b60006133c6826134ee565b91506133d1836134ee565b9250826133e1576133e061366a565b5b828204905092915050565b60006133f7826134ee565b9150613402836134ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561343b5761343a61363b565b5b828202905092915050565b6000613451826134ee565b915061345c836134ee565b92508282101561346f5761346e61363b565b5b828203905092915050565b6000613485826134ce565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561352557808201518184015260208101905061350a565b83811115613534576000848401525b50505050565b6000600282049050600182168061355257607f821691505b6020821081141561356657613565613699565b5b50919050565b61357582613744565b810181811067ffffffffffffffff82111715613594576135936136f7565b5b80604052505050565b60006135a8826134ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135db576135da61363b565b5b600182019050919050565b60006135f1826135f8565b9050919050565b600061360382613755565b9050919050565b6000613615826134ee565b9150613620836134ee565b9250826136305761362f61366a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613a6d8161347a565b8114613a7857600080fd5b50565b613a848161348c565b8114613a8f57600080fd5b50565b613a9b816134a2565b8114613aa657600080fd5b50565b613ab2816134ee565b8114613abd57600080fd5b5056fea2646970667358221220717a111af9daf8a2d3328297668efc094f2713f0fc221b9aa1675aa74c099a6464736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f47656e65736973204b617473756d69000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034b415400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806370a0823111610139578063a45ba8e7116100b6578063d547cfb71161007a578063d547cfb71461085a578063d5abeb0114610885578063db4bec44146108b0578063e985e9c5146108ed578063efdc77881461092a578063f2fde38b1461095357610251565b8063a45ba8e714610782578063b88d4fde146107ad578063c6a91b42146107d6578063c87b56dd14610801578063d2cab0561461083e57610251565b8063982d669e116100fd578063982d669e146106be57806398710d1e146106e95780639e9fcffc14610714578063a0712d681461073d578063a22cb4651461075957610251565b806370a08231146105eb578063715018a6146106285780637eac76211461063f5780638da5cb5b1461066857806395d89b411461069357610251565b80631e84c413116101d25780633ccfd60b116101965780633ccfd60b146104f157806342842e0e146105085780634fdd43cb1461053157806355f804b31461055a5780636352211e146105835780636caede3d146105c057610251565b80631e84c41314610420578063202f298a1461044b57806323b872dd1461047457806328cad13d1461049d5780632eb4a7ab146104c657610251565b8063095ea7b311610219578063095ea7b31461034f5780630a00ae831461037857806318160ddd146103a15780631919fed7146103cc578063193ad7b4146103f557610251565b806301ffc9a71461025657806305480eee1461029357806306fdde03146102bc57806307e89ec0146102e7578063081812fc14610312575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612ac2565b61097c565b60405161028a9190613068565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190612a95565b610a0e565b005b3480156102c857600080fd5b506102d1610a33565b6040516102de919061309e565b60405180910390f35b3480156102f357600080fd5b506102fc610ac5565b6040516103099190613260565b60405180910390f35b34801561031e57600080fd5b5061033960048036038101906103349190612b65565b610acb565b6040516103469190613001565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190612a55565b610b47565b005b34801561038457600080fd5b5061039f600480360381019061039a9190612b65565b610c88565b005b3480156103ad57600080fd5b506103b6610c9a565b6040516103c39190613260565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190612b65565b610cb1565b005b34801561040157600080fd5b5061040a610cc3565b6040516104179190613260565b60405180910390f35b34801561042c57600080fd5b50610435610cc9565b6040516104429190613068565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d9190612b65565b610cdc565b005b34801561048057600080fd5b5061049b6004803603810190610496919061293f565b610cee565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190612a95565b611013565b005b3480156104d257600080fd5b506104db611038565b6040516104e89190613083565b60405180910390f35b3480156104fd57600080fd5b5061050661103e565b005b34801561051457600080fd5b5061052f600480360381019061052a919061293f565b61111c565b005b34801561053d57600080fd5b5061055860048036038101906105539190612b1c565b61113c565b005b34801561056657600080fd5b50610581600480360381019061057c9190612b1c565b61115e565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190612b65565b611180565b6040516105b79190613001565b60405180910390f35b3480156105cc57600080fd5b506105d5611192565b6040516105e29190613068565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d91906128d2565b6111a5565b60405161061f9190613260565b60405180910390f35b34801561063457600080fd5b5061063d61125e565b005b34801561064b57600080fd5b5061066660048036038101906106619190612b65565b611272565b005b34801561067457600080fd5b5061067d611284565b60405161068a9190613001565b60405180910390f35b34801561069f57600080fd5b506106a86112ae565b6040516106b5919061309e565b60405180910390f35b3480156106ca57600080fd5b506106d3611340565b6040516106e09190613260565b60405180910390f35b3480156106f557600080fd5b506106fe611346565b60405161070b9190613260565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190612b65565b61134c565b005b61075760048036038101906107529190612b65565b61135e565b005b34801561076557600080fd5b50610780600480360381019061077b9190612a15565b61159f565b005b34801561078e57600080fd5b50610797611717565b6040516107a4919061309e565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190612992565b6117a5565b005b3480156107e257600080fd5b506107eb611818565b6040516107f89190613260565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190612b65565b61181e565b604051610835919061309e565b60405180910390f35b61085860048036038101906108539190612b92565b61189a565b005b34801561086657600080fd5b5061086f611ab2565b60405161087c919061309e565b60405180910390f35b34801561089157600080fd5b5061089a611b40565b6040516108a79190613260565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d291906128d2565b611b46565b6040516108e49190613068565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f91906128ff565b611b66565b6040516109219190613068565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c9190612b65565b611bfa565b005b34801561095f57600080fd5b5061097a600480360381019061097591906128d2565b611ca9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a075750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a16611d2d565b80601460016101000a81548160ff02191690831515021790555050565b606060028054610a429061353a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6e9061353a565b8015610abb5780601f10610a9057610100808354040283529160200191610abb565b820191906000526020600020905b815481529060010190602001808311610a9e57829003601f168201915b5050505050905090565b60105481565b6000610ad682611dab565b610b0c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5282611180565b90508073ffffffffffffffffffffffffffffffffffffffff16610b73611e0a565b73ffffffffffffffffffffffffffffffffffffffff1614610bd657610b9f81610b9a611e0a565b611b66565b610bd5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c90611d2d565b8060118190555050565b6000610ca4611e12565b6001546000540303905090565b610cb9611d2d565b8060108190555050565b60135481565b601460009054906101000a900460ff1681565b610ce4611d2d565b8060128190555050565b6000610cf982611e17565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d60576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d6c84611ee5565b91509150610d828187610d7d611e0a565b611f07565b610dce57610d9786610d92611e0a565b611b66565b610dcd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e35576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e428686866001611f4b565b8015610e4d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f1b85610ef7888887611f51565b7c020000000000000000000000000000000000000000000000000000000017611f79565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fa3576000600185019050600060046000838152602001908152602001600020541415610fa1576000548114610fa0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461100b8686866001611fa4565b505050505050565b61101b611d2d565b80601460006101000a81548160ff02191690831515021790555050565b600b5481565b611046611d2d565b6002600954141561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390613220565b60405180910390fd5b6002600981905550600061109e611284565b73ffffffffffffffffffffffffffffffffffffffff16476040516110c190612fec565b60006040518083038185875af1925050503d80600081146110fe576040519150601f19603f3d011682016040523d82523d6000602084013e611103565b606091505b505090508061111157600080fd5b506001600981905550565b611137838383604051806020016040528060008152506117a5565b505050565b611144611d2d565b80600a908051906020019061115a929190612690565b5050565b611166611d2d565b80600d908051906020019061117c929190612690565b5050565b600061118b82611e17565b9050919050565b601460019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611266611d2d565b6112706000611faa565b565b61127a611d2d565b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112bd9061353a565b80601f01602080910402602001604051908101604052809291908181526020018280546112e99061353a565b80156113365780601f1061130b57610100808354040283529160200191611336565b820191906000526020600020905b81548152906001019060200180831161131957829003601f168201915b5050505050905090565b60115481565b60125481565b611354611d2d565b80600f8190555050565b601460009054906101000a900460ff166113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490613240565b60405180910390fd5b6001600e546113bc9190613365565b816113c5610c9a565b6113cf9190613365565b1061140f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611406906130c0565b60405180910390fd5b601154816013546114209190613365565b111561147b57348160105461143591906133ec565b1115611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90613200565b60405180910390fd5b611592565b60125481611488336111a5565b6114929190613365565b11156115325734816010546114a791906133ec565b11156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90613200565b60405180910390fd5b600f5481111561152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490613120565b60405180910390fd5b611591565b601254811115611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90613120565b60405180910390fd5b80601360008282546115899190613365565b925050819055505b5b61159c3382612070565b50565b6115a7611e0a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611619611e0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116c6611e0a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161170b9190613068565b60405180910390a35050565b600a80546117249061353a565b80601f01602080910402602001604051908101604052809291908181526020018280546117509061353a565b801561179d5780601f106117725761010080835404028352916020019161179d565b820191906000526020600020905b81548152906001019060200180831161178057829003601f168201915b505050505081565b6117b0848484610cee565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611812576117db8484848461208e565b611811576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b606061182982611dab565b611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f906131a0565b60405180910390fd5b600d611873836121ee565b604051602001611884929190612fb2565b6040516020818303038152906040529050919050565b601460019054906101000a900460ff166118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e0906131c0565b60405180910390fd5b600c60006118f561234f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490613180565b60405180910390fd5b600061198761234f565b6040516020016119979190612f97565b6040516020818303038152906040528051906020012090506119fd838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b5483612357565b611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a33906130e0565b60405180910390fd5b6001600c6000611a4a61234f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611aac611aa661234f565b85612070565b50505050565b600d8054611abf9061353a565b80601f0160208091040260200160405190810160405280929190818152602001828054611aeb9061353a565b8015611b385780601f10611b0d57610100808354040283529160200191611b38565b820191906000526020600020905b815481529060010190602001808311611b1b57829003601f168201915b505050505081565b600e5481565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c02611d2d565b60008111611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c906131e0565b60405180910390fd5b600e5481611c51610c9a565b611c5b9190613365565b1115611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9390613140565b60405180910390fd5b611ca63382612070565b50565b611cb1611d2d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890613100565b60405180910390fd5b611d2a81611faa565b50565b611d3561234f565b73ffffffffffffffffffffffffffffffffffffffff16611d53611284565b73ffffffffffffffffffffffffffffffffffffffff1614611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090613160565b60405180910390fd5b565b600081611db6611e12565b11158015611dc5575060005482105b8015611e03575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611e26611e12565b11611eae57600054811015611ead5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611eab575b6000811415611ea1576004600083600190039350838152602001908152602001600020549050611e76565b8092505050611ee0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f6886868461236e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61208a828260405180602001604052806000815250612377565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b4611e0a565b8786866040518563ffffffff1660e01b81526004016120d6949392919061301c565b602060405180830381600087803b1580156120f057600080fd5b505af192505050801561212157506040513d601f19601f8201168201806040525081019061211e9190612aef565b60015b61219b573d8060008114612151576040519150601f19603f3d011682016040523d82523d6000602084013e612156565b606091505b50600081511415612193576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612236576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061234a565b600082905060005b600082146122685780806122519061359d565b915050600a8261226191906133bb565b915061223e565b60008167ffffffffffffffff811115612284576122836136f7565b5b6040519080825280601f01601f1916602001820160405280156122b65781602001600182028036833780820191505090505b5090505b60008514612343576001826122cf9190613446565b9150600a856122de919061360a565b60306122ea9190613365565b60f81b818381518110612300576122ff6136c8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561233c91906133bb565b94506122ba565b8093505050505b919050565b600033905090565b6000826123648584612414565b1490509392505050565b60009392505050565b612381838361246a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461240f57600080549050600083820390505b6123c1600086838060010194508661208e565b6123f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123ae57816000541461240c57600080fd5b50505b505050565b60008082905060005b845181101561245f5761244a8286838151811061243d5761243c6136c8565b5b602002602001015161263e565b915080806124579061359d565b91505061241d565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124d7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612512576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61251f6000848385611f4b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612596836125876000866000611f51565b61259085612669565b17611f79565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106125ba578060008190555050506126396000848385611fa4565b505050565b6000818310612656576126518284612679565b612661565b6126608383612679565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b82805461269c9061353a565b90600052602060002090601f0160209004810192826126be5760008555612705565b82601f106126d757805160ff1916838001178555612705565b82800160010185558215612705579182015b828111156127045782518255916020019190600101906126e9565b5b5090506127129190612716565b5090565b5b8082111561272f576000816000905550600101612717565b5090565b6000612746612741846132a0565b61327b565b90508281526020810184848401111561276257612761613735565b5b61276d8482856134f8565b509392505050565b6000612788612783846132d1565b61327b565b9050828152602081018484840111156127a4576127a3613735565b5b6127af8482856134f8565b509392505050565b6000813590506127c681613a64565b92915050565b60008083601f8401126127e2576127e161372b565b5b8235905067ffffffffffffffff8111156127ff576127fe613726565b5b60208301915083602082028301111561281b5761281a613730565b5b9250929050565b60008135905061283181613a7b565b92915050565b60008135905061284681613a92565b92915050565b60008151905061285b81613a92565b92915050565b600082601f8301126128765761287561372b565b5b8135612886848260208601612733565b91505092915050565b600082601f8301126128a4576128a361372b565b5b81356128b4848260208601612775565b91505092915050565b6000813590506128cc81613aa9565b92915050565b6000602082840312156128e8576128e761373f565b5b60006128f6848285016127b7565b91505092915050565b600080604083850312156129165761291561373f565b5b6000612924858286016127b7565b9250506020612935858286016127b7565b9150509250929050565b6000806000606084860312156129585761295761373f565b5b6000612966868287016127b7565b9350506020612977868287016127b7565b9250506040612988868287016128bd565b9150509250925092565b600080600080608085870312156129ac576129ab61373f565b5b60006129ba878288016127b7565b94505060206129cb878288016127b7565b93505060406129dc878288016128bd565b925050606085013567ffffffffffffffff8111156129fd576129fc61373a565b5b612a0987828801612861565b91505092959194509250565b60008060408385031215612a2c57612a2b61373f565b5b6000612a3a858286016127b7565b9250506020612a4b85828601612822565b9150509250929050565b60008060408385031215612a6c57612a6b61373f565b5b6000612a7a858286016127b7565b9250506020612a8b858286016128bd565b9150509250929050565b600060208284031215612aab57612aaa61373f565b5b6000612ab984828501612822565b91505092915050565b600060208284031215612ad857612ad761373f565b5b6000612ae684828501612837565b91505092915050565b600060208284031215612b0557612b0461373f565b5b6000612b138482850161284c565b91505092915050565b600060208284031215612b3257612b3161373f565b5b600082013567ffffffffffffffff811115612b5057612b4f61373a565b5b612b5c8482850161288f565b91505092915050565b600060208284031215612b7b57612b7a61373f565b5b6000612b89848285016128bd565b91505092915050565b600080600060408486031215612bab57612baa61373f565b5b6000612bb9868287016128bd565b935050602084013567ffffffffffffffff811115612bda57612bd961373a565b5b612be6868287016127cc565b92509250509250925092565b612bfb8161347a565b82525050565b612c12612c0d8261347a565b6135e6565b82525050565b612c218161348c565b82525050565b612c3081613498565b82525050565b6000612c4182613317565b612c4b818561332d565b9350612c5b818560208601613507565b612c6481613744565b840191505092915050565b6000612c7a82613322565b612c848185613349565b9350612c94818560208601613507565b612c9d81613744565b840191505092915050565b6000612cb382613322565b612cbd818561335a565b9350612ccd818560208601613507565b80840191505092915050565b60008154612ce68161353a565b612cf0818661335a565b94506001821660008114612d0b5760018114612d1c57612d4f565b60ff19831686528186019350612d4f565b612d2585613302565b60005b83811015612d4757815481890152600182019150602081019050612d28565b838801955050505b50505092915050565b6000612d65600783613349565b9150612d7082613762565b602082019050919050565b6000612d88600e83613349565b9150612d938261378b565b602082019050919050565b6000612dab602683613349565b9150612db6826137b4565b604082019050919050565b6000612dce602283613349565b9150612dd982613803565b604082019050919050565b6000612df1601783613349565b9150612dfc82613852565b602082019050919050565b6000612e1460058361335a565b9150612e1f8261387b565b600582019050919050565b6000612e37602083613349565b9150612e42826138a4565b602082019050919050565b6000612e5a601883613349565b9150612e65826138cd565b602082019050919050565b6000612e7d602f83613349565b9150612e88826138f6565b604082019050919050565b6000612ea060008361333e565b9150612eab82613945565b600082019050919050565b6000612ec3602283613349565b9150612ece82613948565b604082019050919050565b6000612ee6601383613349565b9150612ef182613997565b602082019050919050565b6000612f09601883613349565b9150612f14826139c0565b602082019050919050565b6000612f2c601f83613349565b9150612f37826139e9565b602082019050919050565b6000612f4f601783613349565b9150612f5a82613a12565b602082019050919050565b6000612f7260018361335a565b9150612f7d82613a3b565b600182019050919050565b612f91816134ee565b82525050565b6000612fa38284612c01565b60148201915081905092915050565b6000612fbe8285612cd9565b9150612fc982612f65565b9150612fd58284612ca8565b9150612fe082612e07565b91508190509392505050565b6000612ff782612e93565b9150819050919050565b60006020820190506130166000830184612bf2565b92915050565b60006080820190506130316000830187612bf2565b61303e6020830186612bf2565b61304b6040830185612f88565b818103606083015261305d8184612c36565b905095945050505050565b600060208201905061307d6000830184612c18565b92915050565b60006020820190506130986000830184612c27565b92915050565b600060208201905081810360008301526130b88184612c6f565b905092915050565b600060208201905081810360008301526130d981612d58565b9050919050565b600060208201905081810360008301526130f981612d7b565b9050919050565b6000602082019050818103600083015261311981612d9e565b9050919050565b6000602082019050818103600083015261313981612dc1565b9050919050565b6000602082019050818103600083015261315981612de4565b9050919050565b6000602082019050818103600083015261317981612e2a565b9050919050565b6000602082019050818103600083015261319981612e4d565b9050919050565b600060208201905081810360008301526131b981612e70565b9050919050565b600060208201905081810360008301526131d981612eb6565b9050919050565b600060208201905081810360008301526131f981612ed9565b9050919050565b6000602082019050818103600083015261321981612efc565b9050919050565b6000602082019050818103600083015261323981612f1f565b9050919050565b6000602082019050818103600083015261325981612f42565b9050919050565b60006020820190506132756000830184612f88565b92915050565b6000613285613296565b9050613291828261356c565b919050565b6000604051905090565b600067ffffffffffffffff8211156132bb576132ba6136f7565b5b6132c482613744565b9050602081019050919050565b600067ffffffffffffffff8211156132ec576132eb6136f7565b5b6132f582613744565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613370826134ee565b915061337b836134ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133b0576133af61363b565b5b828201905092915050565b60006133c6826134ee565b91506133d1836134ee565b9250826133e1576133e061366a565b5b828204905092915050565b60006133f7826134ee565b9150613402836134ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561343b5761343a61363b565b5b828202905092915050565b6000613451826134ee565b915061345c836134ee565b92508282101561346f5761346e61363b565b5b828203905092915050565b6000613485826134ce565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561352557808201518184015260208101905061350a565b83811115613534576000848401525b50505050565b6000600282049050600182168061355257607f821691505b6020821081141561356657613565613699565b5b50919050565b61357582613744565b810181811067ffffffffffffffff82111715613594576135936136f7565b5b80604052505050565b60006135a8826134ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135db576135da61363b565b5b600182019050919050565b60006135f1826135f8565b9050919050565b600061360382613755565b9050919050565b6000613615826134ee565b9150613620836134ee565b9250826136305761362f61366a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613a6d8161347a565b8114613a7857600080fd5b50565b613a848161348c565b8114613a8f57600080fd5b50565b613a9b816134a2565b8114613aa657600080fd5b50565b613ab2816134ee565b8114613abd57600080fd5b5056fea2646970667358221220717a111af9daf8a2d3328297668efc094f2713f0fc221b9aa1675aa74c099a6464736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f47656e65736973204b617473756d69000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034b415400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Genesis Katsumi
Arg [1] : _tokenSymbol (string): KAT
Arg [2] : _hiddenMetadataUri (string):

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 47656e65736973204b617473756d690000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4b41540000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

71155:4823:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23615:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75185:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29262:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71510:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31208:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30756:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74685:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22669:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74820:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71647:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71691:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75849:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40473:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74395:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71293:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73455:475;;;;;;;;;;;;;:::i;:::-;;32098:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74547:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73053:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29051:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71735:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24294:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8206:103;;;;;;;;;;;;;:::i;:::-;;74939:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7558:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29431:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71562:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71603:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75054:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71998:1049;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31484:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71256:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32354:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71468:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73936:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75331:512;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71379:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71430:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71324:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31863:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73167:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8464:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23615:615;23700:4;24015:10;24000:25;;:11;:25;;;;:102;;;;24092:10;24077:25;;:11;:25;;;;24000:102;:179;;;;24169:10;24154:25;;:11;:25;;;;24000:179;23980:199;;23615:615;;;:::o;75185:142::-;7444:13;:11;:13::i;:::-;75307:14:::1;75284:20;;:37;;;;;;;;;;;;;;;;;;75185:142:::0;:::o;29262:100::-;29316:13;29349:5;29342:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29262:100;:::o;71510:47::-;;;;:::o;31208:204::-;31276:7;31301:16;31309:7;31301;:16::i;:::-;31296:64;;31326:34;;;;;;;;;;;;;;31296:64;31380:15;:24;31396:7;31380:24;;;;;;;;;;;;;;;;;;;;;31373:31;;31208:204;;;:::o;30756:386::-;30829:13;30845:16;30853:7;30845;:16::i;:::-;30829:32;;30901:5;30878:28;;:19;:17;:19::i;:::-;:28;;;30874:175;;30926:44;30943:5;30950:19;:17;:19::i;:::-;30926:16;:44::i;:::-;30921:128;;30998:35;;;;;;;;;;;;;;30921:128;30874:175;31088:2;31061:15;:24;31077:7;31061:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31126:7;31122:2;31106:28;;31115:5;31106:28;;;;;;;;;;;;30818:324;30756:386;;:::o;74685:129::-;7444:13;:11;:13::i;:::-;74795::::1;74778:14;:30;;;;74685:129:::0;:::o;22669:315::-;22722:7;22950:15;:13;:15::i;:::-;22935:12;;22919:13;;:28;:46;22912:53;;22669:315;:::o;74820:115::-;7444:13;:11;:13::i;:::-;74923:6:::1;74903:17;:26;;;;74820:115:::0;:::o;71647:39::-;;;;:::o;71691:38::-;;;;;;;;;;;;;:::o;75849:126::-;7444:13;:11;:13::i;:::-;75963:6:::1;75941:19;:28;;;;75849:126:::0;:::o;40473:2800::-;40607:27;40637;40656:7;40637:18;:27::i;:::-;40607:57;;40722:4;40681:45;;40697:19;40681:45;;;40677:86;;40735:28;;;;;;;;;;;;;;40677:86;40777:27;40806:23;40833:28;40853:7;40833:19;:28::i;:::-;40776:85;;;;40961:62;40980:15;40997:4;41003:19;:17;:19::i;:::-;40961:18;:62::i;:::-;40956:174;;41043:43;41060:4;41066:19;:17;:19::i;:::-;41043:16;:43::i;:::-;41038:92;;41095:35;;;;;;;;;;;;;;41038:92;40956:174;41161:1;41147:16;;:2;:16;;;41143:52;;;41172:23;;;;;;;;;;;;;;41143:52;41208:43;41230:4;41236:2;41240:7;41249:1;41208:21;:43::i;:::-;41344:15;41341:160;;;41484:1;41463:19;41456:30;41341:160;41879:18;:24;41898:4;41879:24;;;;;;;;;;;;;;;;41877:26;;;;;;;;;;;;41948:18;:22;41967:2;41948:22;;;;;;;;;;;;;;;;41946:24;;;;;;;;;;;42270:145;42307:2;42355:45;42370:4;42376:2;42380:19;42355:14;:45::i;:::-;19897:8;42328:72;42270:18;:145::i;:::-;42241:17;:26;42259:7;42241:26;;;;;;;;;;;:174;;;;42585:1;19897:8;42535:19;:46;:51;42531:626;;;42607:19;42639:1;42629:7;:11;42607:33;;42796:1;42762:17;:30;42780:11;42762:30;;;;;;;;;;;;:35;42758:384;;;42900:13;;42885:11;:28;42881:242;;43080:19;43047:17;:30;43065:11;43047:30;;;;;;;;;;;:52;;;;42881:242;42758:384;42588:569;42531:626;43204:7;43200:2;43185:27;;43194:4;43185:27;;;;;;;;;;;;43223:42;43244:4;43250:2;43254:7;43263:1;43223:20;:42::i;:::-;40596:2677;;;40473:2800;;;:::o;74395:148::-;7444:13;:11;:13::i;:::-;74518:19:::1;74497:18;;:40;;;;;;;;;;;;;;;;;;74395:148:::0;:::o;71293:25::-;;;;:::o;73455:475::-;7444:13;:11;:13::i;:::-;1984:1:::1;2582:7;;:19;;2574:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1984:1;2715:7;:18;;;;73752:7:::2;73773;:5;:7::i;:::-;73765:21;;73794;73765:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73751:69;;;73835:2;73827:11;;;::::0;::::2;;73505:425;1940:1:::1;2894:7;:22;;;;73455:475::o:0;32098:185::-;32236:39;32253:4;32259:2;32263:7;32236:39;;;;;;;;;;;;:16;:39::i;:::-;32098:185;;;:::o;74547:132::-;7444:13;:11;:13::i;:::-;74655:18:::1;74635:17;:38;;;;;;;;;;;;:::i;:::-;;74547:132:::0;:::o;73053:108::-;7444:13;:11;:13::i;:::-;73148:7:::1;73133:12;:22;;;;;;;;;;;;:::i;:::-;;73053:108:::0;:::o;29051:144::-;29115:7;29158:27;29177:7;29158:18;:27::i;:::-;29135:52;;29051:144;;;:::o;71735:40::-;;;;;;;;;;;;;:::o;24294:224::-;24358:7;24399:1;24382:19;;:5;:19;;;24378:60;;;24410:28;;;;;;;;;;;;;;24378:60;18849:13;24456:18;:25;24475:5;24456:25;;;;;;;;;;;;;;;;:54;24449:61;;24294:224;;;:::o;8206:103::-;7444:13;:11;:13::i;:::-;8271:30:::1;8298:1;8271:18;:30::i;:::-;8206:103::o:0;74939:109::-;7444:13;:11;:13::i;:::-;75034:8:::1;75022:9;:20;;;;74939:109:::0;:::o;7558:87::-;7604:7;7631:6;;;;;;;;;;;7624:13;;7558:87;:::o;29431:104::-;29487:13;29520:7;29513:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29431:104;:::o;71562:36::-;;;;:::o;71603:39::-;;;;:::o;75054:127::-;7444:13;:11;:13::i;:::-;75169:6:::1;75150:16;:25;;;;75054:127:::0;:::o;71998:1049::-;72085:18;;;;;;;;;;;72077:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;72191:1;72179:9;;:13;;;;:::i;:::-;72162:14;72146:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;72138:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;72256:14;;72239;72216:20;;:37;;;;:::i;:::-;:54;72213:784;;;72344:9;72325:14;72305:17;;:34;;;;:::i;:::-;72304:49;;72282:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;72213:784;;;72475:19;;72458:14;72434:21;72444:10;72434:9;:21::i;:::-;:38;;;;:::i;:::-;:60;72430:560;;;72569:9;72550:14;72530:17;;:34;;;;:::i;:::-;72529:49;;72507:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;72681:16;;72663:14;:34;;72641:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;72430:560;;;72836:19;;72818:14;:37;;72792:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;72964:14;72940:20;;:38;;;;;;;:::i;:::-;;;;;;;;72430:560;72213:784;73003:37;73013:10;73025:14;73003:9;:37::i;:::-;71998:1049;:::o;31484:308::-;31595:19;:17;:19::i;:::-;31583:31;;:8;:31;;;31579:61;;;31623:17;;;;;;;;;;;;;;31579:61;31705:8;31653:18;:39;31672:19;:17;:19::i;:::-;31653:39;;;;;;;;;;;;;;;:49;31693:8;31653:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31765:8;31729:55;;31744:19;:17;:19::i;:::-;31729:55;;;31775:8;31729:55;;;;;;:::i;:::-;;;;;;;;31484:308;;:::o;71256:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32354:399::-;32521:31;32534:4;32540:2;32544:7;32521:12;:31::i;:::-;32585:1;32567:2;:14;;;:19;32563:183;;32606:56;32637:4;32643:2;32647:7;32656:5;32606:30;:56::i;:::-;32601:145;;32690:40;;;;;;;;;;;;;;32601:145;32563:183;32354:399;;;;:::o;71468:37::-;;;;:::o;73936:312::-;74032:13;74073:17;74081:8;74073:7;:17::i;:::-;74057:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;74193:12;74212:19;:8;:17;:19::i;:::-;74176:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74162:80;;73936:312;;;:::o;75331:512::-;75472:20;;;;;;;;;;;75464:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;75547:16;:30;75564:12;:10;:12::i;:::-;75547:30;;;;;;;;;;;;;;;;;;;;;;;;;75546:31;75538:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75613:12;75655;:10;:12::i;:::-;75638:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;75628:41;;;;;;75613:56;;75684:50;75703:12;;75684:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75717:10;;75729:4;75684:18;:50::i;:::-;75676:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;75795:4;75762:16;:30;75779:12;:10;:12::i;:::-;75762:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;75806:31;75816:12;:10;:12::i;:::-;75830:6;75806:9;:31::i;:::-;75419:424;75331:512;;;:::o;71379:46::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71430:33::-;;;;:::o;71324:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;31863:164::-;31960:4;31984:18;:25;32003:5;31984:25;;;;;;;;;;;;;;;:35;32010:8;31984:35;;;;;;;;;;;;;;;;;;;;;;;;;31977:42;;31863:164;;;;:::o;73167:284::-;7444:13;:11;:13::i;:::-;73268:1:::1;73257:8;:12;73241:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;73357:9;;73345:8;73329:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;73313:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;73414:31;73424:10;73436:8;73414:9;:31::i;:::-;73167:284:::0;:::o;8464:201::-;7444:13;:11;:13::i;:::-;8573:1:::1;8553:22;;:8;:22;;;;8545:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8629:28;8648:8;8629:18;:28::i;:::-;8464:201:::0;:::o;7723:132::-;7798:12;:10;:12::i;:::-;7787:23;;:7;:5;:7::i;:::-;:23;;;7779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7723:132::o;33008:273::-;33065:4;33121:7;33102:15;:13;:15::i;:::-;:26;;:66;;;;;33155:13;;33145:7;:23;33102:66;:152;;;;;33253:1;19619:8;33206:17;:26;33224:7;33206:26;;;;;;;;;;;;:43;:48;33102:152;33082:172;;33008:273;;;:::o;51569:105::-;51629:7;51656:10;51649:17;;51569:105;:::o;22193:92::-;22249:7;22193:92;:::o;25968:1129::-;26035:7;26055:12;26070:7;26055:22;;26138:4;26119:15;:13;:15::i;:::-;:23;26115:915;;26172:13;;26165:4;:20;26161:869;;;26210:14;26227:17;:23;26245:4;26227:23;;;;;;;;;;;;26210:40;;26343:1;19619:8;26316:6;:23;:28;26312:699;;;26835:113;26852:1;26842:6;:11;26835:113;;;26895:17;:25;26913:6;;;;;;;26895:25;;;;;;;;;;;;26886:34;;26835:113;;;26981:6;26974:13;;;;;;26312:699;26187:843;26161:869;26115:915;27058:31;;;;;;;;;;;;;;25968:1129;;;;:::o;38809:652::-;38904:27;38933:23;38974:53;39030:15;38974:71;;39216:7;39210:4;39203:21;39251:22;39245:4;39238:36;39327:4;39321;39311:21;39288:44;;39423:19;39417:26;39398:45;;39154:300;38809:652;;;:::o;39574:645::-;39716:11;39878:15;39872:4;39868:26;39860:34;;40037:15;40026:9;40022:31;40009:44;;40184:15;40173:9;40170:30;40163:4;40152:9;40149:19;40146:55;40136:65;;39574:645;;;;;:::o;50402:159::-;;;;;:::o;48714:309::-;48849:7;48869:16;20020:3;48895:19;:40;;48869:67;;20020:3;48962:31;48973:4;48979:2;48983:9;48962:10;:31::i;:::-;48954:40;;:61;;48947:68;;;48714:309;;;;;:::o;28542:447::-;28622:14;28790:15;28783:5;28779:27;28770:36;;28964:5;28950:11;28926:22;28922:40;28919:51;28912:5;28909:62;28899:72;;28542:447;;;;:::o;51220:158::-;;;;;:::o;8825:191::-;8899:16;8918:6;;;;;;;;;;;8899:25;;8944:8;8935:6;;:17;;;;;;;;;;;;;;;;;;8999:8;8968:40;;8989:8;8968:40;;;;;;;;;;;;8888:128;8825:191;:::o;33365:104::-;33434:27;33444:2;33448:8;33434:27;;;;;;;;;;;;:9;:27::i;:::-;33365:104;;:::o;47224:716::-;47387:4;47433:2;47408:45;;;47454:19;:17;:19::i;:::-;47475:4;47481:7;47490:5;47408:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47404:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47708:1;47691:6;:13;:18;47687:235;;;47737:40;;;;;;;;;;;;;;47687:235;47880:6;47874:13;47865:6;47861:2;47857:15;47850:38;47404:529;47577:54;;;47567:64;;;:6;:64;;;;47560:71;;;47224:716;;;;;;:::o;3361:723::-;3417:13;3647:1;3638:5;:10;3634:53;;;3665:10;;;;;;;;;;;;;;;;;;;;;3634:53;3697:12;3712:5;3697:20;;3728:14;3753:78;3768:1;3760:4;:9;3753:78;;3786:8;;;;;:::i;:::-;;;;3817:2;3809:10;;;;;:::i;:::-;;;3753:78;;;3841:19;3873:6;3863:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3841:39;;3891:154;3907:1;3898:5;:10;3891:154;;3935:1;3925:11;;;;;:::i;:::-;;;4002:2;3994:5;:10;;;;:::i;:::-;3981:2;:24;;;;:::i;:::-;3968:39;;3951:6;3958;3951:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4031:2;4022:11;;;;;:::i;:::-;;;3891:154;;;4069:6;4055:21;;;;;3361:723;;;;:::o;6109:98::-;6162:7;6189:10;6182:17;;6109:98;:::o;63622:190::-;63747:4;63800;63771:25;63784:5;63791:4;63771:12;:25::i;:::-;:33;63764:40;;63622:190;;;;;:::o;49599:147::-;49736:6;49599:147;;;;;:::o;33885:681::-;34008:19;34014:2;34018:8;34008:5;:19::i;:::-;34087:1;34069:2;:14;;;:19;34065:483;;34109:11;34123:13;;34109:27;;34155:13;34177:8;34171:3;:14;34155:30;;34204:233;34235:62;34274:1;34278:2;34282:7;;;;;;34291:5;34235:30;:62::i;:::-;34230:167;;34333:40;;;;;;;;;;;;;;34230:167;34432:3;34424:5;:11;34204:233;;34519:3;34502:13;;:20;34498:34;;34524:8;;;34498:34;34090:458;;34065:483;33885:681;;;:::o;64489:296::-;64572:7;64592:20;64615:4;64592:27;;64635:9;64630:118;64654:5;:12;64650:1;:16;64630:118;;;64703:33;64713:12;64727:5;64733:1;64727:8;;;;;;;;:::i;:::-;;;;;;;;64703:9;:33::i;:::-;64688:48;;64668:3;;;;;:::i;:::-;;;;64630:118;;;;64765:12;64758:19;;;64489:296;;;;:::o;34839:1529::-;34904:20;34927:13;;34904:36;;34969:1;34955:16;;:2;:16;;;34951:48;;;34980:19;;;;;;;;;;;;;;34951:48;35026:1;35014:8;:13;35010:44;;;35036:18;;;;;;;;;;;;;;35010:44;35067:61;35097:1;35101:2;35105:12;35119:8;35067:21;:61::i;:::-;35610:1;18986:2;35581:1;:25;;35580:31;35568:8;:44;35542:18;:22;35561:2;35542:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;35889:139;35926:2;35980:33;36003:1;36007:2;36011:1;35980:14;:33::i;:::-;35947:30;35968:8;35947:20;:30::i;:::-;:66;35889:18;:139::i;:::-;35855:17;:31;35873:12;35855:31;;;;;;;;;;;:173;;;;36045:15;36063:12;36045:30;;36090:11;36119:8;36104:12;:23;36090:37;;36142:101;36194:9;;;;;;36190:2;36169:35;;36186:1;36169:35;;;;;;;;;;;;36238:3;36228:7;:13;36142:101;;36275:3;36259:13;:19;;;;35316:974;;36300:60;36329:1;36333:2;36337:12;36351:8;36300:20;:60::i;:::-;34893:1475;34839:1529;;:::o;70696:149::-;70759:7;70790:1;70786;:5;:51;;70817:20;70832:1;70835;70817:14;:20::i;:::-;70786:51;;;70794:20;70809:1;70812;70794:14;:20::i;:::-;70786:51;70779:58;;70696:149;;;;:::o;30372:322::-;30442:14;30673:1;30663:8;30660:15;30635:23;30631:45;30621:55;;30372:322;;;:::o;70853:268::-;70921:13;71028:1;71022:4;71015:15;71057:1;71051:4;71044:15;71098:4;71092;71082:21;71073:30;;70853:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:323::-;6267:6;6316:2;6304:9;6295:7;6291:23;6287:32;6284:119;;;6322:79;;:::i;:::-;6284:119;6442:1;6467:50;6509:7;6500:6;6489:9;6485:22;6467:50;:::i;:::-;6457:60;;6413:114;6211:323;;;;:::o;6540:327::-;6598:6;6647:2;6635:9;6626:7;6622:23;6618:32;6615:119;;;6653:79;;:::i;:::-;6615:119;6773:1;6798:52;6842:7;6833:6;6822:9;6818:22;6798:52;:::i;:::-;6788:62;;6744:116;6540:327;;;;:::o;6873:349::-;6942:6;6991:2;6979:9;6970:7;6966:23;6962:32;6959:119;;;6997:79;;:::i;:::-;6959:119;7117:1;7142:63;7197:7;7188:6;7177:9;7173:22;7142:63;:::i;:::-;7132:73;;7088:127;6873:349;;;;:::o;7228:509::-;7297:6;7346:2;7334:9;7325:7;7321:23;7317:32;7314:119;;;7352:79;;:::i;:::-;7314:119;7500:1;7489:9;7485:17;7472:31;7530:18;7522:6;7519:30;7516:117;;;7552:79;;:::i;:::-;7516:117;7657:63;7712:7;7703:6;7692:9;7688:22;7657:63;:::i;:::-;7647:73;;7443:287;7228:509;;;;:::o;7743:329::-;7802:6;7851:2;7839:9;7830:7;7826:23;7822:32;7819:119;;;7857:79;;:::i;:::-;7819:119;7977:1;8002:53;8047:7;8038:6;8027:9;8023:22;8002:53;:::i;:::-;7992:63;;7948:117;7743:329;;;;:::o;8078:704::-;8173:6;8181;8189;8238:2;8226:9;8217:7;8213:23;8209:32;8206:119;;;8244:79;;:::i;:::-;8206:119;8364:1;8389:53;8434:7;8425:6;8414:9;8410:22;8389:53;:::i;:::-;8379:63;;8335:117;8519:2;8508:9;8504:18;8491:32;8550:18;8542:6;8539:30;8536:117;;;8572:79;;:::i;:::-;8536:117;8685:80;8757:7;8748:6;8737:9;8733:22;8685:80;:::i;:::-;8667:98;;;;8462:313;8078:704;;;;;:::o;8788:118::-;8875:24;8893:5;8875:24;:::i;:::-;8870:3;8863:37;8788:118;;:::o;8912:157::-;9017:45;9037:24;9055:5;9037:24;:::i;:::-;9017:45;:::i;:::-;9012:3;9005:58;8912:157;;:::o;9075:109::-;9156:21;9171:5;9156:21;:::i;:::-;9151:3;9144:34;9075:109;;:::o;9190:118::-;9277:24;9295:5;9277:24;:::i;:::-;9272:3;9265:37;9190:118;;:::o;9314:360::-;9400:3;9428:38;9460:5;9428:38;:::i;:::-;9482:70;9545:6;9540:3;9482:70;:::i;:::-;9475:77;;9561:52;9606:6;9601:3;9594:4;9587:5;9583:16;9561:52;:::i;:::-;9638:29;9660:6;9638:29;:::i;:::-;9633:3;9629:39;9622:46;;9404:270;9314:360;;;;:::o;9680:364::-;9768:3;9796:39;9829:5;9796:39;:::i;:::-;9851:71;9915:6;9910:3;9851:71;:::i;:::-;9844:78;;9931:52;9976:6;9971:3;9964:4;9957:5;9953:16;9931:52;:::i;:::-;10008:29;10030:6;10008:29;:::i;:::-;10003:3;9999:39;9992:46;;9772:272;9680:364;;;;:::o;10050:377::-;10156:3;10184:39;10217:5;10184:39;:::i;:::-;10239:89;10321:6;10316:3;10239:89;:::i;:::-;10232:96;;10337:52;10382:6;10377:3;10370:4;10363:5;10359:16;10337:52;:::i;:::-;10414:6;10409:3;10405:16;10398:23;;10160:267;10050:377;;;;:::o;10457:845::-;10560:3;10597:5;10591:12;10626:36;10652:9;10626:36;:::i;:::-;10678:89;10760:6;10755:3;10678:89;:::i;:::-;10671:96;;10798:1;10787:9;10783:17;10814:1;10809:137;;;;10960:1;10955:341;;;;10776:520;;10809:137;10893:4;10889:9;10878;10874:25;10869:3;10862:38;10929:6;10924:3;10920:16;10913:23;;10809:137;;10955:341;11022:38;11054:5;11022:38;:::i;:::-;11082:1;11096:154;11110:6;11107:1;11104:13;11096:154;;;11184:7;11178:14;11174:1;11169:3;11165:11;11158:35;11234:1;11225:7;11221:15;11210:26;;11132:4;11129:1;11125:12;11120:17;;11096:154;;;11279:6;11274:3;11270:16;11263:23;;10962:334;;10776:520;;10564:738;;10457:845;;;;:::o;11308:365::-;11450:3;11471:66;11535:1;11530:3;11471:66;:::i;:::-;11464:73;;11546:93;11635:3;11546:93;:::i;:::-;11664:2;11659:3;11655:12;11648:19;;11308:365;;;:::o;11679:366::-;11821:3;11842:67;11906:2;11901:3;11842:67;:::i;:::-;11835:74;;11918:93;12007:3;11918:93;:::i;:::-;12036:2;12031:3;12027:12;12020:19;;11679:366;;;:::o;12051:::-;12193:3;12214:67;12278:2;12273:3;12214:67;:::i;:::-;12207:74;;12290:93;12379:3;12290:93;:::i;:::-;12408:2;12403:3;12399:12;12392:19;;12051:366;;;:::o;12423:::-;12565:3;12586:67;12650:2;12645:3;12586:67;:::i;:::-;12579:74;;12662:93;12751:3;12662:93;:::i;:::-;12780:2;12775:3;12771:12;12764:19;;12423:366;;;:::o;12795:::-;12937:3;12958:67;13022:2;13017:3;12958:67;:::i;:::-;12951:74;;13034:93;13123:3;13034:93;:::i;:::-;13152:2;13147:3;13143:12;13136:19;;12795:366;;;:::o;13167:400::-;13327:3;13348:84;13430:1;13425:3;13348:84;:::i;:::-;13341:91;;13441:93;13530:3;13441:93;:::i;:::-;13559:1;13554:3;13550:11;13543:18;;13167:400;;;:::o;13573:366::-;13715:3;13736:67;13800:2;13795:3;13736:67;:::i;:::-;13729:74;;13812:93;13901:3;13812:93;:::i;:::-;13930:2;13925:3;13921:12;13914:19;;13573:366;;;:::o;13945:::-;14087:3;14108:67;14172:2;14167:3;14108:67;:::i;:::-;14101:74;;14184:93;14273:3;14184:93;:::i;:::-;14302:2;14297:3;14293:12;14286:19;;13945:366;;;:::o;14317:::-;14459:3;14480:67;14544:2;14539:3;14480:67;:::i;:::-;14473:74;;14556:93;14645:3;14556:93;:::i;:::-;14674:2;14669:3;14665:12;14658:19;;14317:366;;;:::o;14689:398::-;14848:3;14869:83;14950:1;14945:3;14869:83;:::i;:::-;14862:90;;14961:93;15050:3;14961:93;:::i;:::-;15079:1;15074:3;15070:11;15063:18;;14689:398;;;:::o;15093:366::-;15235:3;15256:67;15320:2;15315:3;15256:67;:::i;:::-;15249:74;;15332:93;15421:3;15332:93;:::i;:::-;15450:2;15445:3;15441:12;15434:19;;15093:366;;;:::o;15465:::-;15607:3;15628:67;15692:2;15687:3;15628:67;:::i;:::-;15621:74;;15704:93;15793:3;15704:93;:::i;:::-;15822:2;15817:3;15813:12;15806:19;;15465:366;;;:::o;15837:::-;15979:3;16000:67;16064:2;16059:3;16000:67;:::i;:::-;15993:74;;16076:93;16165:3;16076:93;:::i;:::-;16194:2;16189:3;16185:12;16178:19;;15837:366;;;:::o;16209:::-;16351:3;16372:67;16436:2;16431:3;16372:67;:::i;:::-;16365:74;;16448:93;16537:3;16448:93;:::i;:::-;16566:2;16561:3;16557:12;16550:19;;16209:366;;;:::o;16581:::-;16723:3;16744:67;16808:2;16803:3;16744:67;:::i;:::-;16737:74;;16820:93;16909:3;16820:93;:::i;:::-;16938:2;16933:3;16929:12;16922:19;;16581:366;;;:::o;16953:400::-;17113:3;17134:84;17216:1;17211:3;17134:84;:::i;:::-;17127:91;;17227:93;17316:3;17227:93;:::i;:::-;17345:1;17340:3;17336:11;17329:18;;16953:400;;;:::o;17359:118::-;17446:24;17464:5;17446:24;:::i;:::-;17441:3;17434:37;17359:118;;:::o;17483:256::-;17595:3;17610:75;17681:3;17672:6;17610:75;:::i;:::-;17710:2;17705:3;17701:12;17694:19;;17730:3;17723:10;;17483:256;;;;:::o;17745:961::-;18124:3;18146:92;18234:3;18225:6;18146:92;:::i;:::-;18139:99;;18255:148;18399:3;18255:148;:::i;:::-;18248:155;;18420:95;18511:3;18502:6;18420:95;:::i;:::-;18413:102;;18532:148;18676:3;18532:148;:::i;:::-;18525:155;;18697:3;18690:10;;17745:961;;;;;:::o;18712:379::-;18896:3;18918:147;19061:3;18918:147;:::i;:::-;18911:154;;19082:3;19075:10;;18712:379;;;:::o;19097:222::-;19190:4;19228:2;19217:9;19213:18;19205:26;;19241:71;19309:1;19298:9;19294:17;19285:6;19241:71;:::i;:::-;19097:222;;;;:::o;19325:640::-;19520:4;19558:3;19547:9;19543:19;19535:27;;19572:71;19640:1;19629:9;19625:17;19616:6;19572:71;:::i;:::-;19653:72;19721:2;19710:9;19706:18;19697:6;19653:72;:::i;:::-;19735;19803:2;19792:9;19788:18;19779:6;19735:72;:::i;:::-;19854:9;19848:4;19844:20;19839:2;19828:9;19824:18;19817:48;19882:76;19953:4;19944:6;19882:76;:::i;:::-;19874:84;;19325:640;;;;;;;:::o;19971:210::-;20058:4;20096:2;20085:9;20081:18;20073:26;;20109:65;20171:1;20160:9;20156:17;20147:6;20109:65;:::i;:::-;19971:210;;;;:::o;20187:222::-;20280:4;20318:2;20307:9;20303:18;20295:26;;20331:71;20399:1;20388:9;20384:17;20375:6;20331:71;:::i;:::-;20187:222;;;;:::o;20415:313::-;20528:4;20566:2;20555:9;20551:18;20543:26;;20615:9;20609:4;20605:20;20601:1;20590:9;20586:17;20579:47;20643:78;20716:4;20707:6;20643:78;:::i;:::-;20635:86;;20415:313;;;;:::o;20734:419::-;20900:4;20938:2;20927:9;20923:18;20915:26;;20987:9;20981:4;20977:20;20973:1;20962:9;20958:17;20951:47;21015:131;21141:4;21015:131;:::i;:::-;21007:139;;20734:419;;;:::o;21159:::-;21325:4;21363:2;21352:9;21348:18;21340:26;;21412:9;21406:4;21402:20;21398:1;21387:9;21383:17;21376:47;21440:131;21566:4;21440:131;:::i;:::-;21432:139;;21159:419;;;:::o;21584:::-;21750:4;21788:2;21777:9;21773:18;21765:26;;21837:9;21831:4;21827:20;21823:1;21812:9;21808:17;21801:47;21865:131;21991:4;21865:131;:::i;:::-;21857:139;;21584:419;;;:::o;22009:::-;22175:4;22213:2;22202:9;22198:18;22190:26;;22262:9;22256:4;22252:20;22248:1;22237:9;22233:17;22226:47;22290:131;22416:4;22290:131;:::i;:::-;22282:139;;22009:419;;;:::o;22434:::-;22600:4;22638:2;22627:9;22623:18;22615:26;;22687:9;22681:4;22677:20;22673:1;22662:9;22658:17;22651:47;22715:131;22841:4;22715:131;:::i;:::-;22707:139;;22434:419;;;:::o;22859:::-;23025:4;23063:2;23052:9;23048:18;23040:26;;23112:9;23106:4;23102:20;23098:1;23087:9;23083:17;23076:47;23140:131;23266:4;23140:131;:::i;:::-;23132:139;;22859:419;;;:::o;23284:::-;23450:4;23488:2;23477:9;23473:18;23465:26;;23537:9;23531:4;23527:20;23523:1;23512:9;23508:17;23501:47;23565:131;23691:4;23565:131;:::i;:::-;23557:139;;23284:419;;;:::o;23709:::-;23875:4;23913:2;23902:9;23898:18;23890:26;;23962:9;23956:4;23952:20;23948:1;23937:9;23933:17;23926:47;23990:131;24116:4;23990:131;:::i;:::-;23982:139;;23709:419;;;:::o;24134:::-;24300:4;24338:2;24327:9;24323:18;24315:26;;24387:9;24381:4;24377:20;24373:1;24362:9;24358:17;24351:47;24415:131;24541:4;24415:131;:::i;:::-;24407:139;;24134:419;;;:::o;24559:::-;24725:4;24763:2;24752:9;24748:18;24740:26;;24812:9;24806:4;24802:20;24798:1;24787:9;24783:17;24776:47;24840:131;24966:4;24840:131;:::i;:::-;24832:139;;24559:419;;;:::o;24984:::-;25150:4;25188:2;25177:9;25173:18;25165:26;;25237:9;25231:4;25227:20;25223:1;25212:9;25208:17;25201:47;25265:131;25391:4;25265:131;:::i;:::-;25257:139;;24984:419;;;:::o;25409:::-;25575:4;25613:2;25602:9;25598:18;25590:26;;25662:9;25656:4;25652:20;25648:1;25637:9;25633:17;25626:47;25690:131;25816:4;25690:131;:::i;:::-;25682:139;;25409:419;;;:::o;25834:::-;26000:4;26038:2;26027:9;26023:18;26015:26;;26087:9;26081:4;26077:20;26073:1;26062:9;26058:17;26051:47;26115:131;26241:4;26115:131;:::i;:::-;26107:139;;25834:419;;;:::o;26259:222::-;26352:4;26390:2;26379:9;26375:18;26367:26;;26403:71;26471:1;26460:9;26456:17;26447:6;26403:71;:::i;:::-;26259:222;;;;:::o;26487:129::-;26521:6;26548:20;;:::i;:::-;26538:30;;26577:33;26605:4;26597:6;26577:33;:::i;:::-;26487:129;;;:::o;26622:75::-;26655:6;26688:2;26682:9;26672:19;;26622:75;:::o;26703:307::-;26764:4;26854:18;26846:6;26843:30;26840:56;;;26876:18;;:::i;:::-;26840:56;26914:29;26936:6;26914:29;:::i;:::-;26906:37;;26998:4;26992;26988:15;26980:23;;26703:307;;;:::o;27016:308::-;27078:4;27168:18;27160:6;27157:30;27154:56;;;27190:18;;:::i;:::-;27154:56;27228:29;27250:6;27228:29;:::i;:::-;27220:37;;27312:4;27306;27302:15;27294:23;;27016:308;;;:::o;27330:141::-;27379:4;27402:3;27394:11;;27425:3;27422:1;27415:14;27459:4;27456:1;27446:18;27438:26;;27330:141;;;:::o;27477:98::-;27528:6;27562:5;27556:12;27546:22;;27477:98;;;:::o;27581:99::-;27633:6;27667:5;27661:12;27651:22;;27581:99;;;:::o;27686:168::-;27769:11;27803:6;27798:3;27791:19;27843:4;27838:3;27834:14;27819:29;;27686:168;;;;:::o;27860:147::-;27961:11;27998:3;27983:18;;27860:147;;;;:::o;28013:169::-;28097:11;28131:6;28126:3;28119:19;28171:4;28166:3;28162:14;28147:29;;28013:169;;;;:::o;28188:148::-;28290:11;28327:3;28312:18;;28188:148;;;;:::o;28342:305::-;28382:3;28401:20;28419:1;28401:20;:::i;:::-;28396:25;;28435:20;28453:1;28435:20;:::i;:::-;28430:25;;28589:1;28521:66;28517:74;28514:1;28511:81;28508:107;;;28595:18;;:::i;:::-;28508:107;28639:1;28636;28632:9;28625:16;;28342:305;;;;:::o;28653:185::-;28693:1;28710:20;28728:1;28710:20;:::i;:::-;28705:25;;28744:20;28762:1;28744:20;:::i;:::-;28739:25;;28783:1;28773:35;;28788:18;;:::i;:::-;28773:35;28830:1;28827;28823:9;28818:14;;28653:185;;;;:::o;28844:348::-;28884:7;28907:20;28925:1;28907:20;:::i;:::-;28902:25;;28941:20;28959:1;28941:20;:::i;:::-;28936:25;;29129:1;29061:66;29057:74;29054:1;29051:81;29046:1;29039:9;29032:17;29028:105;29025:131;;;29136:18;;:::i;:::-;29025:131;29184:1;29181;29177:9;29166:20;;28844:348;;;;:::o;29198:191::-;29238:4;29258:20;29276:1;29258:20;:::i;:::-;29253:25;;29292:20;29310:1;29292:20;:::i;:::-;29287:25;;29331:1;29328;29325:8;29322:34;;;29336:18;;:::i;:::-;29322:34;29381:1;29378;29374:9;29366:17;;29198:191;;;;:::o;29395:96::-;29432:7;29461:24;29479:5;29461:24;:::i;:::-;29450:35;;29395:96;;;:::o;29497:90::-;29531:7;29574:5;29567:13;29560:21;29549:32;;29497:90;;;:::o;29593:77::-;29630:7;29659:5;29648:16;;29593:77;;;:::o;29676:149::-;29712:7;29752:66;29745:5;29741:78;29730:89;;29676:149;;;:::o;29831:126::-;29868:7;29908:42;29901:5;29897:54;29886:65;;29831:126;;;:::o;29963:77::-;30000:7;30029:5;30018:16;;29963:77;;;:::o;30046:154::-;30130:6;30125:3;30120;30107:30;30192:1;30183:6;30178:3;30174:16;30167:27;30046:154;;;:::o;30206:307::-;30274:1;30284:113;30298:6;30295:1;30292:13;30284:113;;;30383:1;30378:3;30374:11;30368:18;30364:1;30359:3;30355:11;30348:39;30320:2;30317:1;30313:10;30308:15;;30284:113;;;30415:6;30412:1;30409:13;30406:101;;;30495:1;30486:6;30481:3;30477:16;30470:27;30406:101;30255:258;30206:307;;;:::o;30519:320::-;30563:6;30600:1;30594:4;30590:12;30580:22;;30647:1;30641:4;30637:12;30668:18;30658:81;;30724:4;30716:6;30712:17;30702:27;;30658:81;30786:2;30778:6;30775:14;30755:18;30752:38;30749:84;;;30805:18;;:::i;:::-;30749:84;30570:269;30519:320;;;:::o;30845:281::-;30928:27;30950:4;30928:27;:::i;:::-;30920:6;30916:40;31058:6;31046:10;31043:22;31022:18;31010:10;31007:34;31004:62;31001:88;;;31069:18;;:::i;:::-;31001:88;31109:10;31105:2;31098:22;30888:238;30845:281;;:::o;31132:233::-;31171:3;31194:24;31212:5;31194:24;:::i;:::-;31185:33;;31240:66;31233:5;31230:77;31227:103;;;31310:18;;:::i;:::-;31227:103;31357:1;31350:5;31346:13;31339:20;;31132:233;;;:::o;31371:100::-;31410:7;31439:26;31459:5;31439:26;:::i;:::-;31428:37;;31371:100;;;:::o;31477:94::-;31516:7;31545:20;31559:5;31545:20;:::i;:::-;31534:31;;31477:94;;;:::o;31577:176::-;31609:1;31626:20;31644:1;31626:20;:::i;:::-;31621:25;;31660:20;31678:1;31660:20;:::i;:::-;31655:25;;31699:1;31689:35;;31704:18;;:::i;:::-;31689:35;31745:1;31742;31738:9;31733:14;;31577:176;;;;:::o;31759:180::-;31807:77;31804:1;31797:88;31904:4;31901:1;31894:15;31928:4;31925:1;31918:15;31945:180;31993:77;31990:1;31983:88;32090:4;32087:1;32080:15;32114:4;32111:1;32104:15;32131:180;32179:77;32176:1;32169:88;32276:4;32273:1;32266:15;32300:4;32297:1;32290:15;32317:180;32365:77;32362:1;32355:88;32462:4;32459:1;32452:15;32486:4;32483:1;32476:15;32503:180;32551:77;32548:1;32541:88;32648:4;32645:1;32638:15;32672:4;32669:1;32662:15;32689:117;32798:1;32795;32788:12;32812:117;32921:1;32918;32911:12;32935:117;33044:1;33041;33034:12;33058:117;33167:1;33164;33157:12;33181:117;33290:1;33287;33280:12;33304:117;33413:1;33410;33403:12;33427:102;33468:6;33519:2;33515:7;33510:2;33503:5;33499:14;33495:28;33485:38;;33427:102;;;:::o;33535:94::-;33568:8;33616:5;33612:2;33608:14;33587:35;;33535:94;;;:::o;33635:157::-;33775:9;33771:1;33763:6;33759:14;33752:33;33635:157;:::o;33798:164::-;33938:16;33934:1;33926:6;33922:14;33915:40;33798:164;:::o;33968:225::-;34108:34;34104:1;34096:6;34092:14;34085:58;34177:8;34172:2;34164:6;34160:15;34153:33;33968:225;:::o;34199:221::-;34339:34;34335:1;34327:6;34323:14;34316:58;34408:4;34403:2;34395:6;34391:15;34384:29;34199:221;:::o;34426:173::-;34566:25;34562:1;34554:6;34550:14;34543:49;34426:173;:::o;34605:155::-;34745:7;34741:1;34733:6;34729:14;34722:31;34605:155;:::o;34766:182::-;34906:34;34902:1;34894:6;34890:14;34883:58;34766:182;:::o;34954:174::-;35094:26;35090:1;35082:6;35078:14;35071:50;34954:174;:::o;35134:234::-;35274:34;35270:1;35262:6;35258:14;35251:58;35343:17;35338:2;35330:6;35326:15;35319:42;35134:234;:::o;35374:114::-;;:::o;35494:221::-;35634:34;35630:1;35622:6;35618:14;35611:58;35703:4;35698:2;35690:6;35686:15;35679:29;35494:221;:::o;35721:169::-;35861:21;35857:1;35849:6;35845:14;35838:45;35721:169;:::o;35896:174::-;36036:26;36032:1;36024:6;36020:14;36013:50;35896:174;:::o;36076:181::-;36216:33;36212:1;36204:6;36200:14;36193:57;36076:181;:::o;36263:173::-;36403:25;36399:1;36391:6;36387:14;36380:49;36263:173;:::o;36442:151::-;36582:3;36578:1;36570:6;36566:14;36559:27;36442:151;:::o;36599:122::-;36672:24;36690:5;36672:24;:::i;:::-;36665:5;36662:35;36652:63;;36711:1;36708;36701:12;36652:63;36599:122;:::o;36727:116::-;36797:21;36812:5;36797:21;:::i;:::-;36790:5;36787:32;36777:60;;36833:1;36830;36823:12;36777:60;36727:116;:::o;36849:120::-;36921:23;36938:5;36921:23;:::i;:::-;36914:5;36911:34;36901:62;;36959:1;36956;36949:12;36901:62;36849:120;:::o;36975:122::-;37048:24;37066:5;37048:24;:::i;:::-;37041:5;37038:35;37028:63;;37087:1;37084;37077:12;37028:63;36975:122;:::o

Swarm Source

ipfs://717a111af9daf8a2d3328297668efc094f2713f0fc221b9aa1675aa74c099a64
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.