ETH Price: $3,305.42 (-3.34%)
Gas: 16 Gwei

Token

KatZen (KatZen)
 

Overview

Max Total Supply

4,444 KatZen

Holders

2,128

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 KatZen
0x09d816ec0b4b27f3d7b247f0ff6e0280c73fd295
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:
KatZen

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-18
*/

// SPDX-License-Identifier: MIT
// File: IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// File: MerkleProof.sol

// contracts/MerkleProofVerify.sol

// based upon https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.1/contracts/mocks/MerkleProofWrapper.sol

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle trees (hash trees),
 */
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[] calldata proof, bytes32 leaf, bytes32 root) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}


/*

pragma solidity ^0.8.0;



contract MerkleProofVerify {
    function verify(bytes32[] calldata proof, bytes32 root)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        return MerkleProof.verify(proof, root, leaf);
    }
}
*/
// File: Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits;
        temp = value;
        while (temp != 0) {
            buffer[--index] = bytes1(uint8(48 + uint256(temp % 10)));
            temp /= 10;
        }
        return string(buffer);
    }
}

// File: 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 GSN 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 memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: 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: Address.sol



pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: IERC165.sol


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

pragma solidity ^0.8.0;

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


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}
// File: ERC165.sol


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

pragma solidity ^0.8.0;


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


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}
// File: IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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

pragma solidity ^0.8.4;


contract KatZen is ERC721A, Ownable, ERC2981, DefaultOperatorFilterer {
    using Strings for uint256;

    string private baseURI;
    string public notRevealedUri;
    string public contractURI;

    bool public public_mint_status = true;
    bool public free_mint_status = true;

    uint256 public MAX_SUPPLY = 4444;    
    
    bool public revealed = true;

    uint256 public publicSaleCost = 0.004 ether;
    uint256 public max_per_wallet = 10;    
    uint256 public max_per_txn = 10;    
    uint256 public max_free_per_wallet = 1;    

    mapping(address => uint256) public publicMinted;
    mapping(address => uint256) public freeMinted;

    constructor(string memory _initBaseURI, string memory _initNotRevealedUri, string memory _contractURI) ERC721A("KatZen", "KatZen") {
     
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);   
    setRoyaltyInfo(owner(),690);
    contractURI = _contractURI;  
    mint(1);
    }

    function airdrop(address[] calldata receiver, uint256[] calldata quantity) public payable onlyOwner {
  
        require(receiver.length == quantity.length, "Airdrop data does not match");

        for(uint256 x = 0; x < receiver.length; x++){
        _safeMint(receiver[x], quantity[x]);
        }
    }

    //Normal Mint

    function mint(uint256 quantity) public payable  {
        require(totalSupply() + quantity <= MAX_SUPPLY,"No More NFTs to Mint");

        if (msg.sender != owner()) {

            require(public_mint_status, "Public mint status is off");           
          
            require(balanceOf(msg.sender) + quantity <= max_per_wallet, "Per Wallet Limit Reached");
            require(quantity <= max_per_txn, "Max per txn exceeded");

            require(msg.value >= (publicSaleCost * quantity), "Not Enough ETH Sent");  
                       
        }

        _safeMint(msg.sender, quantity);
        
    }

    // Free Mint
  
    function freeMint(uint256 quantity) public payable  {

        require(totalSupply() + quantity <= MAX_SUPPLY,"No More NFTs to Mint");

            require(free_mint_status, "Free mint status is off");           
          
            require(balanceOf(msg.sender) + quantity <= max_per_wallet, "Per Wallet Limit Reached");
            require(freeMinted[msg.sender] + quantity <= max_free_per_wallet, "Free mint limit exceeded");

            freeMinted[msg.sender] = freeMinted[msg.sender] + quantity;
     
        _safeMint(msg.sender, quantity);
        
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        if(revealed == false) {
        return notRevealedUri;
        }
      
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : '';
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

     function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, ERC2981)
        returns (bool)
    {
        // Supports the following `interfaceId`s:
        // - IERC165: 0x01ffc9a7
        // - IERC721: 0x80ac58cd
        // - IERC721Metadata: 0x5b5e139f
        // - IERC2981: 0x2a55205a
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId);
    }

      function setRoyaltyInfo(address _receiver, uint96 _royaltyFeesInBips) public onlyOwner {
        _setDefaultRoyalty(_receiver, _royaltyFeesInBips);
    }
   

    //only owner      
    
    function toggleReveal() external onlyOwner {
        
        if(revealed==false){
            revealed = true;
        }else{
            revealed = false;
        }
    }   
        
    function toggle_public_mint_status() external onlyOwner {
        
        if(public_mint_status==false){
            public_mint_status = true;
        }else{
            public_mint_status = false;
        }
    }  

    function toggle_free_mint_status() external onlyOwner {
        
        if(free_mint_status==false){
            free_mint_status = true;
        }else{
            free_mint_status = false;
        }
    }  

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }    

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }
   
    function withdraw() external payable onlyOwner {
  
    (bool main, ) = payable(owner()).call{value: address(this).balance}("");
    require(main);
    }

    function setPublicSaleCost(uint256 _publicSaleCost) external onlyOwner {
        publicSaleCost = _publicSaleCost;
    }

    function setMax_per_wallet(uint256 _max_per_wallet) external onlyOwner {
        max_per_wallet = _max_per_wallet;
    }

    function setMax_free_per_wallet(uint256 _max_free_per_wallet) external onlyOwner {
        max_free_per_wallet = _max_free_per_wallet;
    }

    function setMax_per_txn(uint256 _max_per_txn) external onlyOwner {
        max_per_txn = _max_per_txn;
    }

    function setMAX_SUPPLY(uint256 _MAX_SUPPLY) external onlyOwner {
        MAX_SUPPLY = _MAX_SUPPLY;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receiver","type":"address[]"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_free_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_per_txn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_free_per_wallet","type":"uint256"}],"name":"setMax_free_per_wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_per_txn","type":"uint256"}],"name":"setMax_per_txn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_per_wallet","type":"uint256"}],"name":"setMax_per_wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggle_free_mint_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggle_public_mint_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600d805461ffff191661010117905561115c600e55600f805460ff19166001908117909155660e35fa931a0000601055600a60118190556012556013553480156200004e57600080fd5b506040516200365c3803806200365c833981016040819052620000719162000ad7565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600681526020016525b0ba2d32b760d11b8152506040518060400160405280600681526020016525b0ba2d32b760d11b8152508160019081620000d7919062000bf6565b506002620000e6828262000bf6565b50505062000103620000fd620002a560201b60201c565b620002a9565b6daaeb6d7670e522a718067333cd4e3b15620002485780156200019657604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017757600080fd5b505af11580156200018c573d6000803e3d6000fd5b5050505062000248565b6001600160a01b03821615620001e75760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200015c565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200022e57600080fd5b505af115801562000243573d6000803e3d6000fd5b505050505b5062000256905083620002fb565b620002618262000317565b62000281620002786007546001600160a01b031690565b6102b26200032f565b600c6200028f828262000bf6565b506200029c600162000345565b50505062000d97565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200030562000562565b600a62000313828262000bf6565b5050565b6200032162000562565b600b62000313828262000bf6565b6200033962000562565b620003138282620005c0565b600e54816200036c6000546001600160801b03600160801b82048116918116919091031690565b62000378919062000cd8565b1115620003cc5760405162461bcd60e51b815260206004820152601460248201527f4e6f204d6f7265204e46547320746f204d696e7400000000000000000000000060448201526064015b60405180910390fd5b6007546001600160a01b031633146200055357600d5460ff16620004335760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401620003c3565b601154816200044233620006c1565b6200044e919062000cd8565b11156200049e5760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401620003c3565b601254811115620004f25760405162461bcd60e51b815260206004820152601460248201527f4d6178207065722074786e2065786365656465640000000000000000000000006044820152606401620003c3565b8060105462000502919062000cf4565b341015620005535760405162461bcd60e51b815260206004820152601360248201527f4e6f7420456e6f756768204554482053656e74000000000000000000000000006044820152606401620003c3565b6200055f338262000710565b50565b6007546001600160a01b03163314620005be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003c3565b565b6127106001600160601b0382161115620006305760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620003c3565b6001600160a01b038216620006885760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620003c3565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b60006001600160a01b038216620006eb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b620003138282604051806020016040528060008152506200073260201b60201c565b62000741838383600162000746565b505050565b6000546001600160801b03166001600160a01b0385166200077957604051622e076360e81b815260040160405180910390fd5b836000036200079b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015620008b25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015620008865750620008846000888488620008e2565b155b15620008a5576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016200082b565b50600080546001600160801b0319166001600160801b0392909216919091178155620008db9050565b5050505050565b600062000903846001600160a01b031662000a0460201b620015491760201c565b15620009f857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200093d90339089908890889060040162000d0e565b6020604051808303816000875af19250505080156200097b575060408051601f3d908101601f19168201909252620009789181019062000d64565b60015b620009dd573d808015620009ac576040519150601f19603f3d011682016040523d82523d6000602084013e620009b1565b606091505b508051600003620009d5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620009fc565b5060015b949350505050565b3b151590565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000a3d57818101518382015260200162000a23565b50506000910152565b600082601f83011262000a5857600080fd5b81516001600160401b038082111562000a755762000a7562000a0a565b604051601f8301601f19908116603f0116810190828211818310171562000aa05762000aa062000a0a565b8160405283815286602085880101111562000aba57600080fd5b62000acd84602083016020890162000a20565b9695505050505050565b60008060006060848603121562000aed57600080fd5b83516001600160401b038082111562000b0557600080fd5b62000b138783880162000a46565b9450602086015191508082111562000b2a57600080fd5b62000b388783880162000a46565b9350604086015191508082111562000b4f57600080fd5b5062000b5e8682870162000a46565b9150509250925092565b600181811c9082168062000b7d57607f821691505b60208210810362000b9e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200074157600081815260208120601f850160051c8101602086101562000bcd5750805b601f850160051c820191505b8181101562000bee5782815560010162000bd9565b505050505050565b81516001600160401b0381111562000c125762000c1262000a0a565b62000c2a8162000c23845462000b68565b8462000ba4565b602080601f83116001811462000c62576000841562000c495750858301515b600019600386901b1c1916600185901b17855562000bee565b600085815260208120601f198616915b8281101562000c935788860151825594840194600190910190840162000c72565b508582101562000cb25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111562000cee5762000cee62000cc2565b92915050565b808202811582820484141762000cee5762000cee62000cc2565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000d4d8160a085016020870162000a20565b601f01601f19169190910160a00195945050505050565b60006020828403121562000d7757600080fd5b81516001600160e01b03198116811462000d9057600080fd5b9392505050565b6128b58062000da76000396000f3fe6080604052600436106102ae5760003560e01c80636352211e11610175578063a22cb465116100dc578063d685b64511610095578063e985e9c51161006f578063e985e9c5146107f5578063ec9496ba1461083e578063f2c4ce1e1461085e578063f2fde38b1461087e57600080fd5b8063d685b645146107b5578063dcc7eb35146107cb578063e8a3d485146107e057600080fd5b8063a22cb46514610700578063aab3e3cf14610720578063ab53fcaa14610740578063b88d4fde14610756578063c87b56dd14610776578063d1e145771461079657600080fd5b8063835d997e1161012e578063835d997e1461065a5780638da5cb5b1461067a5780638dbb7c0614610698578063938e3d7b146106b857806395d89b41146106d8578063a0712d68146106ed57600080fd5b80636352211e146105c557806367243482146105e557806370a08231146105f8578063715018a6146106185780637c928fe91461062d57806381c4cede1461064057600080fd5b806332a825ce1161021957806342842e0e116101d257806342842e0e14610520578063453afb0f146105405780634f6ccce714610556578063518302271461057657806355f804b3146105905780635b8ad429146105b057600080fd5b806332a825ce1461048857806332cb6b0c1461049e578063389fcf06146104b457806339eea013146104e15780633ccfd60b146104f657806341f43434146104fe57600080fd5b8063095ea7b31161026b578063095ea7b3146103995780631015805b146103b957806318160ddd146103f457806323b872dd146104095780632a55205a146104295780632f745c591461046857600080fd5b806301ffc9a7146102b357806302fa7c47146102e8578063040d19241461030a57806306fdde031461032a578063081812fc1461034c578063081c8c4414610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce36600461215a565b61089e565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b5061030861030336600461219a565b6108be565b005b34801561031657600080fd5b506103086103253660046121dd565b6108d4565b34801561033657600080fd5b5061033f6108e1565b6040516102df9190612246565b34801561035857600080fd5b5061036c6103673660046121dd565b610973565b6040516001600160a01b0390911681526020016102df565b34801561039057600080fd5b5061033f6109b7565b3480156103a557600080fd5b506103086103b4366004612259565b610a45565b3480156103c557600080fd5b506103e66103d4366004612283565b60146020526000908152604090205481565b6040519081526020016102df565b34801561040057600080fd5b506103e6610a5e565b34801561041557600080fd5b5061030861042436600461229e565b610a7d565b34801561043557600080fd5b506104496104443660046122da565b610aa8565b604080516001600160a01b0390931683526020830191909152016102df565b34801561047457600080fd5b506103e6610483366004612259565b610b56565b34801561049457600080fd5b506103e660135481565b3480156104aa57600080fd5b506103e6600e5481565b3480156104c057600080fd5b506103e66104cf366004612283565b60156020526000908152604090205481565b3480156104ed57600080fd5b50610308610c4a565b610308610c85565b34801561050a57600080fd5b5061036c6daaeb6d7670e522a718067333cd4e81565b34801561052c57600080fd5b5061030861053b36600461229e565b610d01565b34801561054c57600080fd5b506103e660105481565b34801561056257600080fd5b506103e66105713660046121dd565b610d26565b34801561058257600080fd5b50600f546102d39060ff1681565b34801561059c57600080fd5b506103086105ab366004612387565b610dcf565b3480156105bc57600080fd5b50610308610de3565b3480156105d157600080fd5b5061036c6105e03660046121dd565b610e15565b6103086105f3366004612413565b610e27565b34801561060457600080fd5b506103e6610613366004612283565b610eef565b34801561062457600080fd5b50610308610f3d565b61030861063b3660046121dd565b610f4f565b34801561064c57600080fd5b50600d546102d39060ff1681565b34801561066657600080fd5b506103086106753660046121dd565b611105565b34801561068657600080fd5b506007546001600160a01b031661036c565b3480156106a457600080fd5b506103086106b33660046121dd565b611112565b3480156106c457600080fd5b506103086106d3366004612387565b61111f565b3480156106e457600080fd5b5061033f611133565b6103086106fb3660046121dd565b611142565b34801561070c57600080fd5b5061030861071b36600461248c565b611307565b34801561072c57600080fd5b5061030861073b3660046121dd565b61131b565b34801561074c57600080fd5b506103e660115481565b34801561076257600080fd5b506103086107713660046124b8565b611328565b34801561078257600080fd5b5061033f6107913660046121dd565b61134e565b3480156107a257600080fd5b50600d546102d390610100900460ff1681565b3480156107c157600080fd5b506103e660125481565b3480156107d757600080fd5b50610308611473565b3480156107ec57600080fd5b5061033f6114a5565b34801561080157600080fd5b506102d3610810366004612533565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561084a57600080fd5b506103086108593660046121dd565b6114b2565b34801561086a57600080fd5b50610308610879366004612387565b6114bf565b34801561088a57600080fd5b50610308610899366004612283565b6114d3565b60006108a98261154f565b806108b857506108b8826115ba565b92915050565b6108c66115df565b6108d08282611639565b5050565b6108dc6115df565b601355565b6060600180546108f090612566565b80601f016020809104026020016040519081016040528092919081815260200182805461091c90612566565b80156109695780601f1061093e57610100808354040283529160200191610969565b820191906000526020600020905b81548152906001019060200180831161094c57829003601f168201915b5050505050905090565b600061097e82611736565b61099b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600b80546109c490612566565b80601f01602080910402602001604051908101604052809291908181526020018280546109f090612566565b8015610a3d5780601f10610a1257610100808354040283529160200191610a3d565b820191906000526020600020905b815481529060010190602001808311610a2057829003601f168201915b505050505081565b81610a4f8161176a565b610a598383611823565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b826001600160a01b0381163314610a9757610a973361176a565b610aa28484846118ab565b50505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b1d5750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610b3c906001600160601b0316876125b6565b610b4691906125e3565b91519350909150505b9250929050565b6000610b6183610eef565b8210610b80576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b838110156102ae57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610bf85750610c42565b80516001600160a01b031615610c0d57805192505b876001600160a01b0316836001600160a01b031603610c4057868403610c39575093506108b892505050565b6001909301925b505b600101610b91565b610c526115df565b600d54610100900460ff161515600003610c7757600d805461ff001916610100179055565b600d805461ff00191690555b565b610c8d6115df565b6000610ca16007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ceb576040519150601f19603f3d011682016040523d82523d6000602084013e610cf0565b606091505b5050905080610cfe57600080fd5b50565b826001600160a01b0381163314610d1b57610d1b3361176a565b610aa28484846118b6565b600080546001600160801b031681805b82811015610db557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610dac57858303610da55750949350505050565b6001909201915b50600101610d36565b506040516329c8c00760e21b815260040160405180910390fd5b610dd76115df565b600a6108d08282612645565b610deb6115df565b600f5460ff161515600003610e0957600f805460ff19166001179055565b600f805460ff19169055565b6000610e20826118d1565b5192915050565b610e2f6115df565b828114610e835760405162461bcd60e51b815260206004820152601b60248201527f41697264726f70206461746120646f6573206e6f74206d61746368000000000060448201526064015b60405180910390fd5b60005b83811015610ee857610ed6858583818110610ea357610ea3612704565b9050602002016020810190610eb89190612283565b848484818110610eca57610eca612704565b905060200201356119f3565b80610ee08161271a565b915050610e86565b5050505050565b60006001600160a01b038216610f18576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b610f456115df565b610c836000611a0d565b600e5481610f5b610a5e565b610f659190612733565b1115610faa5760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401610e7a565b600d54610100900460ff166110015760405162461bcd60e51b815260206004820152601760248201527f46726565206d696e7420737461747573206973206f66660000000000000000006044820152606401610e7a565b6011548161100e33610eef565b6110189190612733565b11156110615760405162461bcd60e51b815260206004820152601860248201527714195c8815d85b1b195d08131a5b5a5d0814995858da195960421b6044820152606401610e7a565b6013543360009081526015602052604090205461107f908390612733565b11156110cd5760405162461bcd60e51b815260206004820152601860248201527f46726565206d696e74206c696d697420657863656564656400000000000000006044820152606401610e7a565b336000908152601560205260409020546110e8908290612733565b33600081815260156020526040902091909155610cfe90826119f3565b61110d6115df565b601155565b61111a6115df565b601055565b6111276115df565b600c6108d08282612645565b6060600280546108f090612566565b600e548161114e610a5e565b6111589190612733565b111561119d5760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401610e7a565b6007546001600160a01b031633146112fd57600d5460ff166112015760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401610e7a565b6011548161120e33610eef565b6112189190612733565b11156112615760405162461bcd60e51b815260206004820152601860248201527714195c8815d85b1b195d08131a5b5a5d0814995858da195960421b6044820152606401610e7a565b6012548111156112aa5760405162461bcd60e51b815260206004820152601460248201527313585e081c195c881d1e1b88195e18d95959195960621b6044820152606401610e7a565b806010546112b891906125b6565b3410156112fd5760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401610e7a565b610cfe33826119f3565b816113118161176a565b610a598383611a5f565b6113236115df565b601255565b836001600160a01b0381163314611342576113423361176a565b610ee885858585611af4565b606061135982611736565b61137657604051630a14c4b560e41b815260040160405180910390fd5b600f5460ff16151560000361141757600b805461139290612566565b80601f01602080910402602001604051908101604052809291908181526020018280546113be90612566565b801561140b5780601f106113e05761010080835404028352916020019161140b565b820191906000526020600020905b8154815290600101906020018083116113ee57829003601f168201915b50505050509050919050565b600a805461142490612566565b905060000361144257604051806020016040528060008152506108b8565b600a61144d83611b28565b60405160200161145e929190612746565b60405160208183030381529060405292915050565b61147b6115df565b600d5460ff16151560000361149957600d805460ff19166001179055565b600d805460ff19169055565b600c80546109c490612566565b6114ba6115df565b600e55565b6114c76115df565b600b6108d08282612645565b6114db6115df565b6001600160a01b0381166115405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e7a565b610cfe81611a0d565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061158057506001600160e01b03198216635b5e139f60e01b145b8061159b57506001600160e01b0319821663780e9d6360e01b145b806108b857506301ffc9a760e01b6001600160e01b03198316146108b8565b60006001600160e01b0319821663152a902d60e11b14806108b857506108b88261154f565b6007546001600160a01b03163314610c835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e7a565b6127106001600160601b03821611156116a75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610e7a565b6001600160a01b0382166116fd5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610e7a565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b600080546001600160801b0316821080156108b8575050600090815260036020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610cfe57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156117d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117fb91906127dd565b610cfe57604051633b79c77360e21b81526001600160a01b0382166004820152602401610e7a565b600061182e82610e15565b9050806001600160a01b0316836001600160a01b0316036118625760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061188257506118808133610810565b155b156118a0576040516367d9dca160e11b815260040160405180910390fd5b610a59838383611c33565b610a59838383611c8f565b610a5983838360405180602001604052806000815250611328565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156119da57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119d85780516001600160a01b03161561196f579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119d3579392505050565b61196f565b505b604051636f96cda160e11b815260040160405180910390fd5b6108d0828260405180602001604052806000815250611ea9565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b03831603611a885760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611aff848484611c8f565b611b0b84848484611eb6565b610aa2576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611b4f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b795780611b638161271a565b9150611b729050600a836125e3565b9150611b53565b6000816001600160401b03811115611b9357611b936122fc565b6040519080825280601f01601f191660200182016040528015611bbd576020820181803683370190505b508593509050815b8315611c2a57611bd6600a856127fa565b611be1906030612733565b60f81b82611bee8361280e565b92508281518110611c0157611c01612704565b60200101906001600160f81b031916908160001a905350611c23600a856125e3565b9350611bc5565b50949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611c9a826118d1565b80519091506000906001600160a01b0316336001600160a01b03161480611cc857508151611cc89033610810565b80611ce3575033611cd884610973565b6001600160a01b0316145b905080611d0357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611d385760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611d5f57604051633a954ecd60e21b815260040160405180910390fd5b611d6f6000848460000151611c33565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611e62576000546001600160801b0316811015611e6257825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ee8565b610a598383836001611fb9565b60006001600160a01b0384163b15611fad57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611efa903390899088908890600401612825565b6020604051808303816000875af1925050508015611f35575060408051601f3d908101601f19168201909252611f3291810190612862565b60015b611f93573d808015611f63576040519150601f19603f3d011682016040523d82523d6000602084013e611f68565b606091505b508051600003611f8b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fb1565b5060015b949350505050565b6000546001600160801b03166001600160a01b038516611feb57604051622e076360e81b815260040160405180910390fd5b8360000361200c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561211e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156120f457506120f26000888488611eb6565b155b15612112576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161209d565b50600080546001600160801b0319166001600160801b0392909216919091179055610ee8565b6001600160e01b031981168114610cfe57600080fd5b60006020828403121561216c57600080fd5b813561217781612144565b9392505050565b80356001600160a01b038116811461219557600080fd5b919050565b600080604083850312156121ad57600080fd5b6121b68361217e565b915060208301356001600160601b03811681146121d257600080fd5b809150509250929050565b6000602082840312156121ef57600080fd5b5035919050565b60005b838110156122115781810151838201526020016121f9565b50506000910152565b600081518084526122328160208601602086016121f6565b601f01601f19169290920160200192915050565b602081526000612177602083018461221a565b6000806040838503121561226c57600080fd5b6122758361217e565b946020939093013593505050565b60006020828403121561229557600080fd5b6121778261217e565b6000806000606084860312156122b357600080fd5b6122bc8461217e565b92506122ca6020850161217e565b9150604084013590509250925092565b600080604083850312156122ed57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561232c5761232c6122fc565b604051601f8501601f19908116603f01168101908282118183101715612354576123546122fc565b8160405280935085815286868601111561236d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561239957600080fd5b81356001600160401b038111156123af57600080fd5b8201601f810184136123c057600080fd5b611fb184823560208401612312565b60008083601f8401126123e157600080fd5b5081356001600160401b038111156123f857600080fd5b6020830191508360208260051b8501011115610b4f57600080fd5b6000806000806040858703121561242957600080fd5b84356001600160401b038082111561244057600080fd5b61244c888389016123cf565b9096509450602087013591508082111561246557600080fd5b50612472878288016123cf565b95989497509550505050565b8015158114610cfe57600080fd5b6000806040838503121561249f57600080fd5b6124a88361217e565b915060208301356121d28161247e565b600080600080608085870312156124ce57600080fd5b6124d78561217e565b93506124e56020860161217e565b92506040850135915060608501356001600160401b0381111561250757600080fd5b8501601f8101871361251857600080fd5b61252787823560208401612312565b91505092959194509250565b6000806040838503121561254657600080fd5b61254f8361217e565b915061255d6020840161217e565b90509250929050565b600181811c9082168061257a57607f821691505b60208210810361259a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176108b8576108b86125a0565b634e487b7160e01b600052601260045260246000fd5b6000826125f2576125f26125cd565b500490565b601f821115610a5957600081815260208120601f850160051c8101602086101561261e5750805b601f850160051c820191505b8181101561263d5782815560010161262a565b505050505050565b81516001600160401b0381111561265e5761265e6122fc565b6126728161266c8454612566565b846125f7565b602080601f8311600181146126a7576000841561268f5750858301515b600019600386901b1c1916600185901b17855561263d565b600085815260208120601f198616915b828110156126d6578886015182559484019460019091019084016126b7565b50858210156126f45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b60006001820161272c5761272c6125a0565b5060010190565b808201808211156108b8576108b86125a0565b600080845461275481612566565b6001828116801561276c5760018114612781576127b0565b60ff19841687528215158302870194506127b0565b8860005260208060002060005b858110156127a75781548a82015290840190820161278e565b50505082870194505b5050505083516127c48183602088016121f6565b64173539b7b760d91b9101908152600501949350505050565b6000602082840312156127ef57600080fd5b81516121778161247e565b600082612809576128096125cd565b500690565b60008161281d5761281d6125a0565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128589083018461221a565b9695505050505050565b60006020828403121561287457600080fd5b81516121778161214456fea264697066735822122072a100a9d16e9c6d24422801958920cd6e61fc40fed516fd905723bc17b05b6f64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f626166796265696537776572706e626769646274377a7278676374376335377561346574746874646c666d7672346e756c6b6477766f73737977792e697066732e6e667473746f726167652e6c696e6b2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006968747470733a2f2f6261667962656967693373757837336e69796e72756c726c327375787267686872633663643576776477743778336f716b646e676c7571333779652e697066732e6e667473746f726167652e6c696e6b2f636f6e74726163745552492e6a736f6e0000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80636352211e11610175578063a22cb465116100dc578063d685b64511610095578063e985e9c51161006f578063e985e9c5146107f5578063ec9496ba1461083e578063f2c4ce1e1461085e578063f2fde38b1461087e57600080fd5b8063d685b645146107b5578063dcc7eb35146107cb578063e8a3d485146107e057600080fd5b8063a22cb46514610700578063aab3e3cf14610720578063ab53fcaa14610740578063b88d4fde14610756578063c87b56dd14610776578063d1e145771461079657600080fd5b8063835d997e1161012e578063835d997e1461065a5780638da5cb5b1461067a5780638dbb7c0614610698578063938e3d7b146106b857806395d89b41146106d8578063a0712d68146106ed57600080fd5b80636352211e146105c557806367243482146105e557806370a08231146105f8578063715018a6146106185780637c928fe91461062d57806381c4cede1461064057600080fd5b806332a825ce1161021957806342842e0e116101d257806342842e0e14610520578063453afb0f146105405780634f6ccce714610556578063518302271461057657806355f804b3146105905780635b8ad429146105b057600080fd5b806332a825ce1461048857806332cb6b0c1461049e578063389fcf06146104b457806339eea013146104e15780633ccfd60b146104f657806341f43434146104fe57600080fd5b8063095ea7b31161026b578063095ea7b3146103995780631015805b146103b957806318160ddd146103f457806323b872dd146104095780632a55205a146104295780632f745c591461046857600080fd5b806301ffc9a7146102b357806302fa7c47146102e8578063040d19241461030a57806306fdde031461032a578063081812fc1461034c578063081c8c4414610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce36600461215a565b61089e565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b5061030861030336600461219a565b6108be565b005b34801561031657600080fd5b506103086103253660046121dd565b6108d4565b34801561033657600080fd5b5061033f6108e1565b6040516102df9190612246565b34801561035857600080fd5b5061036c6103673660046121dd565b610973565b6040516001600160a01b0390911681526020016102df565b34801561039057600080fd5b5061033f6109b7565b3480156103a557600080fd5b506103086103b4366004612259565b610a45565b3480156103c557600080fd5b506103e66103d4366004612283565b60146020526000908152604090205481565b6040519081526020016102df565b34801561040057600080fd5b506103e6610a5e565b34801561041557600080fd5b5061030861042436600461229e565b610a7d565b34801561043557600080fd5b506104496104443660046122da565b610aa8565b604080516001600160a01b0390931683526020830191909152016102df565b34801561047457600080fd5b506103e6610483366004612259565b610b56565b34801561049457600080fd5b506103e660135481565b3480156104aa57600080fd5b506103e6600e5481565b3480156104c057600080fd5b506103e66104cf366004612283565b60156020526000908152604090205481565b3480156104ed57600080fd5b50610308610c4a565b610308610c85565b34801561050a57600080fd5b5061036c6daaeb6d7670e522a718067333cd4e81565b34801561052c57600080fd5b5061030861053b36600461229e565b610d01565b34801561054c57600080fd5b506103e660105481565b34801561056257600080fd5b506103e66105713660046121dd565b610d26565b34801561058257600080fd5b50600f546102d39060ff1681565b34801561059c57600080fd5b506103086105ab366004612387565b610dcf565b3480156105bc57600080fd5b50610308610de3565b3480156105d157600080fd5b5061036c6105e03660046121dd565b610e15565b6103086105f3366004612413565b610e27565b34801561060457600080fd5b506103e6610613366004612283565b610eef565b34801561062457600080fd5b50610308610f3d565b61030861063b3660046121dd565b610f4f565b34801561064c57600080fd5b50600d546102d39060ff1681565b34801561066657600080fd5b506103086106753660046121dd565b611105565b34801561068657600080fd5b506007546001600160a01b031661036c565b3480156106a457600080fd5b506103086106b33660046121dd565b611112565b3480156106c457600080fd5b506103086106d3366004612387565b61111f565b3480156106e457600080fd5b5061033f611133565b6103086106fb3660046121dd565b611142565b34801561070c57600080fd5b5061030861071b36600461248c565b611307565b34801561072c57600080fd5b5061030861073b3660046121dd565b61131b565b34801561074c57600080fd5b506103e660115481565b34801561076257600080fd5b506103086107713660046124b8565b611328565b34801561078257600080fd5b5061033f6107913660046121dd565b61134e565b3480156107a257600080fd5b50600d546102d390610100900460ff1681565b3480156107c157600080fd5b506103e660125481565b3480156107d757600080fd5b50610308611473565b3480156107ec57600080fd5b5061033f6114a5565b34801561080157600080fd5b506102d3610810366004612533565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561084a57600080fd5b506103086108593660046121dd565b6114b2565b34801561086a57600080fd5b50610308610879366004612387565b6114bf565b34801561088a57600080fd5b50610308610899366004612283565b6114d3565b60006108a98261154f565b806108b857506108b8826115ba565b92915050565b6108c66115df565b6108d08282611639565b5050565b6108dc6115df565b601355565b6060600180546108f090612566565b80601f016020809104026020016040519081016040528092919081815260200182805461091c90612566565b80156109695780601f1061093e57610100808354040283529160200191610969565b820191906000526020600020905b81548152906001019060200180831161094c57829003601f168201915b5050505050905090565b600061097e82611736565b61099b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600b80546109c490612566565b80601f01602080910402602001604051908101604052809291908181526020018280546109f090612566565b8015610a3d5780601f10610a1257610100808354040283529160200191610a3d565b820191906000526020600020905b815481529060010190602001808311610a2057829003601f168201915b505050505081565b81610a4f8161176a565b610a598383611823565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b826001600160a01b0381163314610a9757610a973361176a565b610aa28484846118ab565b50505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b1d5750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610b3c906001600160601b0316876125b6565b610b4691906125e3565b91519350909150505b9250929050565b6000610b6183610eef565b8210610b80576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b838110156102ae57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610bf85750610c42565b80516001600160a01b031615610c0d57805192505b876001600160a01b0316836001600160a01b031603610c4057868403610c39575093506108b892505050565b6001909301925b505b600101610b91565b610c526115df565b600d54610100900460ff161515600003610c7757600d805461ff001916610100179055565b600d805461ff00191690555b565b610c8d6115df565b6000610ca16007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ceb576040519150601f19603f3d011682016040523d82523d6000602084013e610cf0565b606091505b5050905080610cfe57600080fd5b50565b826001600160a01b0381163314610d1b57610d1b3361176a565b610aa28484846118b6565b600080546001600160801b031681805b82811015610db557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610dac57858303610da55750949350505050565b6001909201915b50600101610d36565b506040516329c8c00760e21b815260040160405180910390fd5b610dd76115df565b600a6108d08282612645565b610deb6115df565b600f5460ff161515600003610e0957600f805460ff19166001179055565b600f805460ff19169055565b6000610e20826118d1565b5192915050565b610e2f6115df565b828114610e835760405162461bcd60e51b815260206004820152601b60248201527f41697264726f70206461746120646f6573206e6f74206d61746368000000000060448201526064015b60405180910390fd5b60005b83811015610ee857610ed6858583818110610ea357610ea3612704565b9050602002016020810190610eb89190612283565b848484818110610eca57610eca612704565b905060200201356119f3565b80610ee08161271a565b915050610e86565b5050505050565b60006001600160a01b038216610f18576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b610f456115df565b610c836000611a0d565b600e5481610f5b610a5e565b610f659190612733565b1115610faa5760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401610e7a565b600d54610100900460ff166110015760405162461bcd60e51b815260206004820152601760248201527f46726565206d696e7420737461747573206973206f66660000000000000000006044820152606401610e7a565b6011548161100e33610eef565b6110189190612733565b11156110615760405162461bcd60e51b815260206004820152601860248201527714195c8815d85b1b195d08131a5b5a5d0814995858da195960421b6044820152606401610e7a565b6013543360009081526015602052604090205461107f908390612733565b11156110cd5760405162461bcd60e51b815260206004820152601860248201527f46726565206d696e74206c696d697420657863656564656400000000000000006044820152606401610e7a565b336000908152601560205260409020546110e8908290612733565b33600081815260156020526040902091909155610cfe90826119f3565b61110d6115df565b601155565b61111a6115df565b601055565b6111276115df565b600c6108d08282612645565b6060600280546108f090612566565b600e548161114e610a5e565b6111589190612733565b111561119d5760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401610e7a565b6007546001600160a01b031633146112fd57600d5460ff166112015760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401610e7a565b6011548161120e33610eef565b6112189190612733565b11156112615760405162461bcd60e51b815260206004820152601860248201527714195c8815d85b1b195d08131a5b5a5d0814995858da195960421b6044820152606401610e7a565b6012548111156112aa5760405162461bcd60e51b815260206004820152601460248201527313585e081c195c881d1e1b88195e18d95959195960621b6044820152606401610e7a565b806010546112b891906125b6565b3410156112fd5760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401610e7a565b610cfe33826119f3565b816113118161176a565b610a598383611a5f565b6113236115df565b601255565b836001600160a01b0381163314611342576113423361176a565b610ee885858585611af4565b606061135982611736565b61137657604051630a14c4b560e41b815260040160405180910390fd5b600f5460ff16151560000361141757600b805461139290612566565b80601f01602080910402602001604051908101604052809291908181526020018280546113be90612566565b801561140b5780601f106113e05761010080835404028352916020019161140b565b820191906000526020600020905b8154815290600101906020018083116113ee57829003601f168201915b50505050509050919050565b600a805461142490612566565b905060000361144257604051806020016040528060008152506108b8565b600a61144d83611b28565b60405160200161145e929190612746565b60405160208183030381529060405292915050565b61147b6115df565b600d5460ff16151560000361149957600d805460ff19166001179055565b600d805460ff19169055565b600c80546109c490612566565b6114ba6115df565b600e55565b6114c76115df565b600b6108d08282612645565b6114db6115df565b6001600160a01b0381166115405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e7a565b610cfe81611a0d565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061158057506001600160e01b03198216635b5e139f60e01b145b8061159b57506001600160e01b0319821663780e9d6360e01b145b806108b857506301ffc9a760e01b6001600160e01b03198316146108b8565b60006001600160e01b0319821663152a902d60e11b14806108b857506108b88261154f565b6007546001600160a01b03163314610c835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e7a565b6127106001600160601b03821611156116a75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610e7a565b6001600160a01b0382166116fd5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610e7a565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b600080546001600160801b0316821080156108b8575050600090815260036020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610cfe57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156117d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117fb91906127dd565b610cfe57604051633b79c77360e21b81526001600160a01b0382166004820152602401610e7a565b600061182e82610e15565b9050806001600160a01b0316836001600160a01b0316036118625760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061188257506118808133610810565b155b156118a0576040516367d9dca160e11b815260040160405180910390fd5b610a59838383611c33565b610a59838383611c8f565b610a5983838360405180602001604052806000815250611328565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156119da57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119d85780516001600160a01b03161561196f579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119d3579392505050565b61196f565b505b604051636f96cda160e11b815260040160405180910390fd5b6108d0828260405180602001604052806000815250611ea9565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b03831603611a885760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611aff848484611c8f565b611b0b84848484611eb6565b610aa2576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611b4f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b795780611b638161271a565b9150611b729050600a836125e3565b9150611b53565b6000816001600160401b03811115611b9357611b936122fc565b6040519080825280601f01601f191660200182016040528015611bbd576020820181803683370190505b508593509050815b8315611c2a57611bd6600a856127fa565b611be1906030612733565b60f81b82611bee8361280e565b92508281518110611c0157611c01612704565b60200101906001600160f81b031916908160001a905350611c23600a856125e3565b9350611bc5565b50949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611c9a826118d1565b80519091506000906001600160a01b0316336001600160a01b03161480611cc857508151611cc89033610810565b80611ce3575033611cd884610973565b6001600160a01b0316145b905080611d0357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611d385760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611d5f57604051633a954ecd60e21b815260040160405180910390fd5b611d6f6000848460000151611c33565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611e62576000546001600160801b0316811015611e6257825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ee8565b610a598383836001611fb9565b60006001600160a01b0384163b15611fad57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611efa903390899088908890600401612825565b6020604051808303816000875af1925050508015611f35575060408051601f3d908101601f19168201909252611f3291810190612862565b60015b611f93573d808015611f63576040519150601f19603f3d011682016040523d82523d6000602084013e611f68565b606091505b508051600003611f8b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fb1565b5060015b949350505050565b6000546001600160801b03166001600160a01b038516611feb57604051622e076360e81b815260040160405180910390fd5b8360000361200c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561211e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156120f457506120f26000888488611eb6565b155b15612112576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161209d565b50600080546001600160801b0319166001600160801b0392909216919091179055610ee8565b6001600160e01b031981168114610cfe57600080fd5b60006020828403121561216c57600080fd5b813561217781612144565b9392505050565b80356001600160a01b038116811461219557600080fd5b919050565b600080604083850312156121ad57600080fd5b6121b68361217e565b915060208301356001600160601b03811681146121d257600080fd5b809150509250929050565b6000602082840312156121ef57600080fd5b5035919050565b60005b838110156122115781810151838201526020016121f9565b50506000910152565b600081518084526122328160208601602086016121f6565b601f01601f19169290920160200192915050565b602081526000612177602083018461221a565b6000806040838503121561226c57600080fd5b6122758361217e565b946020939093013593505050565b60006020828403121561229557600080fd5b6121778261217e565b6000806000606084860312156122b357600080fd5b6122bc8461217e565b92506122ca6020850161217e565b9150604084013590509250925092565b600080604083850312156122ed57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561232c5761232c6122fc565b604051601f8501601f19908116603f01168101908282118183101715612354576123546122fc565b8160405280935085815286868601111561236d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561239957600080fd5b81356001600160401b038111156123af57600080fd5b8201601f810184136123c057600080fd5b611fb184823560208401612312565b60008083601f8401126123e157600080fd5b5081356001600160401b038111156123f857600080fd5b6020830191508360208260051b8501011115610b4f57600080fd5b6000806000806040858703121561242957600080fd5b84356001600160401b038082111561244057600080fd5b61244c888389016123cf565b9096509450602087013591508082111561246557600080fd5b50612472878288016123cf565b95989497509550505050565b8015158114610cfe57600080fd5b6000806040838503121561249f57600080fd5b6124a88361217e565b915060208301356121d28161247e565b600080600080608085870312156124ce57600080fd5b6124d78561217e565b93506124e56020860161217e565b92506040850135915060608501356001600160401b0381111561250757600080fd5b8501601f8101871361251857600080fd5b61252787823560208401612312565b91505092959194509250565b6000806040838503121561254657600080fd5b61254f8361217e565b915061255d6020840161217e565b90509250929050565b600181811c9082168061257a57607f821691505b60208210810361259a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176108b8576108b86125a0565b634e487b7160e01b600052601260045260246000fd5b6000826125f2576125f26125cd565b500490565b601f821115610a5957600081815260208120601f850160051c8101602086101561261e5750805b601f850160051c820191505b8181101561263d5782815560010161262a565b505050505050565b81516001600160401b0381111561265e5761265e6122fc565b6126728161266c8454612566565b846125f7565b602080601f8311600181146126a7576000841561268f5750858301515b600019600386901b1c1916600185901b17855561263d565b600085815260208120601f198616915b828110156126d6578886015182559484019460019091019084016126b7565b50858210156126f45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b60006001820161272c5761272c6125a0565b5060010190565b808201808211156108b8576108b86125a0565b600080845461275481612566565b6001828116801561276c5760018114612781576127b0565b60ff19841687528215158302870194506127b0565b8860005260208060002060005b858110156127a75781548a82015290840190820161278e565b50505082870194505b5050505083516127c48183602088016121f6565b64173539b7b760d91b9101908152600501949350505050565b6000602082840312156127ef57600080fd5b81516121778161247e565b600082612809576128096125cd565b500690565b60008161281d5761281d6125a0565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128589083018461221a565b9695505050505050565b60006020828403121561287457600080fd5b81516121778161214456fea264697066735822122072a100a9d16e9c6d24422801958920cd6e61fc40fed516fd905723bc17b05b6f64736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f626166796265696537776572706e626769646274377a7278676374376335377561346574746874646c666d7672346e756c6b6477766f73737977792e697066732e6e667473746f726167652e6c696e6b2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006968747470733a2f2f6261667962656967693373757837336e69796e72756c726c327375787267686872633663643576776477743778336f716b646e676c7571333779652e697066732e6e667473746f726167652e6c696e6b2f636f6e74726163745552492e6a736f6e0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://bafybeie7werpnbgidbt7zrxgct7c57ua4etthtdlfmvr4nulkdwvossywy.ipfs.nftstorage.link/
Arg [1] : _initNotRevealedUri (string):
Arg [2] : _contractURI (string): https://bafybeigi3sux73niynrulrl2suxrghhrc6cd5vwdwt7x3oqkdngluq37ye.ipfs.nftstorage.link/contractURI.json

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [4] : 68747470733a2f2f626166796265696537776572706e626769646274377a7278
Arg [5] : 676374376335377561346574746874646c666d7672346e756c6b6477766f7373
Arg [6] : 7977792e697066732e6e667473746f726167652e6c696e6b2f00000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000069
Arg [9] : 68747470733a2f2f6261667962656967693373757837336e69796e72756c726c
Arg [10] : 327375787267686872633663643576776477743778336f716b646e676c757133
Arg [11] : 3779652e697066732e6e667473746f726167652e6c696e6b2f636f6e74726163
Arg [12] : 745552492e6a736f6e0000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56345:6424:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60232:487;;;;;;;;;;-1:-1:-1;60232:487:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;60232:487:0;;;;;;;;60729:155;;;;;;;;;;-1:-1:-1;60729:155:0;;;;;:::i;:::-;;:::i;:::-;;62271:142;;;;;;;;;;-1:-1:-1;62271:142:0;;;;;:::i;:::-;;:::i;42448:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43959:204::-;;;;;;;;;;-1:-1:-1;43959:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2246:32:1;;;2228:51;;2216:2;2201:18;43959:204:0;2082:203:1;56485:28:0;;;;;;;;;;;;;:::i;59480:157::-;;;;;;;;;;-1:-1:-1;59480:157:0;;;;;:::i;:::-;;:::i;56915:47::-;;;;;;;;;;-1:-1:-1;56915:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2886:25:1;;;2874:2;2859:18;56915:47:0;2740:177:1;37075:280:0;;;;;;;;;;;;;:::i;59645:163::-;;;;;;;;;;-1:-1:-1;59645:163:0;;;;;:::i;:::-;;:::i;24954:442::-;;;;;;;;;;-1:-1:-1;24954:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3700:32:1;;;3682:51;;3764:2;3749:18;;3742:34;;;;3655:18;24954:442:0;3508:274:1;38661:1105:0;;;;;;;;;;-1:-1:-1;38661:1105:0;;;;;:::i;:::-;;:::i;56864:38::-;;;;;;;;;;;;;;;;56642:32;;;;;;;;;;;;;;;;56969:45;;;;;;;;;;-1:-1:-1;56969:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;61357:214;;;;;;;;;;;;;:::i;61846:157::-;;;:::i;2902:143::-;;;;;;;;;;;;3002:42;2902:143;;59816:171;;;;;;;;;;-1:-1:-1;59816:171:0;;;;;:::i;:::-;;:::i;56727:43::-;;;;;;;;;;;;;;;;37648:713;;;;;;;;;;-1:-1:-1;37648:713:0;;;;;:::i;:::-;;:::i;56691:27::-;;;;;;;;;;-1:-1:-1;56691:27:0;;;;;;;;62653:103;;;;;;;;;;-1:-1:-1;62653:103:0;;;;;:::i;:::-;;:::i;60927:179::-;;;;;;;;;;;;;:::i;42257:124::-;;;;;;;;;;-1:-1:-1;42257:124:0;;;;;:::i;:::-;;:::i;57339:311::-;;;;;;:::i;:::-;;:::i;40274:206::-;;;;;;;;;;-1:-1:-1;40274:206:0;;;;;:::i;:::-;;:::i;10928:103::-;;;;;;;;;;;;;:::i;58336:579::-;;;;;;:::i;:::-;;:::i;56554:37::-;;;;;;;;;;-1:-1:-1;56554:37:0;;;;;;;;62141:122;;;;;;;;;;-1:-1:-1;62141:122:0;;;;;:::i;:::-;;:::i;10280:87::-;;;;;;;;;;-1:-1:-1;10353:6:0;;-1:-1:-1;;;;;10353:6:0;10280:87;;62011:122;;;;;;;;;;-1:-1:-1;62011:122:0;;;;;:::i;:::-;;:::i;61719:116::-;;;;;;;;;;-1:-1:-1;61719:116:0;;;;;:::i;:::-;;:::i;42617:104::-;;;;;;;;;;;;;:::i;57679:627::-;;;;;;:::i;:::-;;:::i;59296:176::-;;;;;;;;;;-1:-1:-1;59296:176:0;;;;;:::i;:::-;;:::i;62421:110::-;;;;;;;;;;-1:-1:-1;62421:110:0;;;;;:::i;:::-;;:::i;56777:34::-;;;;;;;;;;;;;;;;59995:228;;;;;;;;;;-1:-1:-1;59995:228:0;;;;;:::i;:::-;;:::i;58923:365::-;;;;;;;;;;-1:-1:-1;58923:365:0;;;;;:::i;:::-;;:::i;56598:35::-;;;;;;;;;;-1:-1:-1;56598:35:0;;;;;;;;;;;56822:31;;;;;;;;;;;;;;;;61125:222;;;;;;;;;;;;;:::i;56520:25::-;;;;;;;;;;;;;:::i;44593:164::-;;;;;;;;;;-1:-1:-1;44593:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;44714:25:0;;;44690:4;44714:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44593:164;62539:106;;;;;;;;;;-1:-1:-1;62539:106:0;;;;;:::i;:::-;;:::i;61581:126::-;;;;;;;;;;-1:-1:-1;61581:126:0;;;;;:::i;:::-;;:::i;11186:201::-;;;;;;;;;;-1:-1:-1;11186:201:0;;;;;:::i;:::-;;:::i;60232:487::-;60380:4;60618:38;60644:11;60618:25;:38::i;:::-;:93;;;;60673:38;60699:11;60673:25;:38::i;:::-;60598:113;60232:487;-1:-1:-1;;60232:487:0:o;60729:155::-;10166:13;:11;:13::i;:::-;60827:49:::1;60846:9;60857:18;60827;:49::i;:::-;60729:155:::0;;:::o;62271:142::-;10166:13;:11;:13::i;:::-;62363:19:::1;:42:::0;62271:142::o;42448:100::-;42502:13;42535:5;42528:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42448:100;:::o;43959:204::-;44027:7;44052:16;44060:7;44052;:16::i;:::-;44047:64;;44077:34;;-1:-1:-1;;;44077:34:0;;;;;;;;;;;44047:64;-1:-1:-1;44131:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44131:24:0;;43959:204::o;56485:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59480:157::-;59576:8;4423:30;4444:8;4423:20;:30::i;:::-;59597:32:::1;59611:8;59621:7;59597:13;:32::i;:::-;59480:157:::0;;;:::o;37075:280::-;37128:7;37320:12;-1:-1:-1;;;;;;;;37320:12:0;;;;37304:13;;;:28;;;;37297:35;;37075:280::o;59645:163::-;59746:4;-1:-1:-1;;;;;4243:18:0;;4251:10;4243:18;4239:83;;4278:32;4299:10;4278:20;:32::i;:::-;59763:37:::1;59782:4;59788:2;59792:7;59763:18;:37::i;:::-;59645:163:::0;;;;:::o;24954:442::-;25051:7;25109:27;;;:17;:27;;;;;;;;25080:56;;;;;;;;;-1:-1:-1;;;;;25080:56:0;;;;;-1:-1:-1;;;25080:56:0;;;-1:-1:-1;;;;;25080:56:0;;;;;;;;25051:7;;25149:92;;-1:-1:-1;25200:29:0;;;;;;;;;25210:19;25200:29;-1:-1:-1;;;;;25200:29:0;;;;-1:-1:-1;;;25200:29:0;;-1:-1:-1;;;;;25200:29:0;;;;;25149:92;25291:23;;;;25253:21;;25762:5;;25278:36;;-1:-1:-1;;;;;25278:36:0;:10;:36;:::i;:::-;25277:58;;;;:::i;:::-;25356:16;;;-1:-1:-1;25253:82:0;;-1:-1:-1;;24954:442:0;;;;;;:::o;38661:1105::-;38750:7;38783:16;38793:5;38783:9;:16::i;:::-;38774:5;:25;38770:61;;38808:23;;-1:-1:-1;;;38808:23:0;;;;;;;;;;;38770:61;38842:22;38867:13;;-1:-1:-1;;;;;38867:13:0;;38842:22;;39117:557;39137:14;39133:1;:18;39117:557;;;39177:31;39211:14;;;:11;:14;;;;;;;;;39177:48;;;;;;;;;-1:-1:-1;;;;;39177:48:0;;;;-1:-1:-1;;;39177:48:0;;-1:-1:-1;;;;;39177:48:0;;;;;;;;-1:-1:-1;;;39177:48:0;;;;;;;;;;;;;;;;39244:73;;39289:8;;;39244:73;39339:14;;-1:-1:-1;;;;;39339:28:0;;39335:111;;39412:14;;;-1:-1:-1;39335:111:0;39489:5;-1:-1:-1;;;;;39468:26:0;:17;-1:-1:-1;;;;;39468:26:0;;39464:195;;39538:5;39523:11;:20;39519:85;;-1:-1:-1;39579:1:0;-1:-1:-1;39572:8:0;;-1:-1:-1;;;39572:8:0;39519:85;39626:13;;;;;39464:195;39158:516;39117:557;39153:3;;39117:557;;61357:214;10166:13;:11;:13::i;:::-;61435:16:::1;::::0;::::1;::::0;::::1;;;:23;;61453:5;61435:23:::0;61432:132:::1;;61474:16;:23:::0;;-1:-1:-1;;61474:23:0::1;;;::::0;;61357:214::o;61432:132::-:1;61528:16;:24:::0;;-1:-1:-1;;61528:24:0::1;::::0;;61432:132:::1;61357:214::o:0;61846:157::-;10166:13;:11;:13::i;:::-;61905:9:::1;61928:7;10353:6:::0;;-1:-1:-1;;;;;10353:6:0;;10280:87;61928:7:::1;-1:-1:-1::0;;;;;61920:21:0::1;61949;61920:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61904:71;;;61990:4;61982:13;;;::::0;::::1;;61893:110;61846:157::o:0;59816:171::-;59921:4;-1:-1:-1;;;;;4243:18:0;;4251:10;4243:18;4239:83;;4278:32;4299:10;4278:20;:32::i;:::-;59938:41:::1;59961:4;59967:2;59971:7;59938:22;:41::i;37648:713::-:0;37715:7;37760:13;;-1:-1:-1;;;;;37760:13:0;37715:7;;37974:328;37994:14;37990:1;:18;37974:328;;;38034:31;38068:14;;;:11;:14;;;;;;;;;38034:48;;;;;;;;;-1:-1:-1;;;;;38034:48:0;;;;-1:-1:-1;;;38034:48:0;;-1:-1:-1;;;;;38034:48:0;;;;;;;;-1:-1:-1;;;38034:48:0;;;;;;;;;;;;;;38101:186;;38166:5;38151:11;:20;38147:85;;-1:-1:-1;38207:1:0;37648:713;-1:-1:-1;;;;37648:713:0:o;38147:85::-;38254:13;;;;;38101:186;-1:-1:-1;38010:3:0;;37974:328;;;;38330:23;;-1:-1:-1;;;38330:23:0;;;;;;;;;;;62653:103;10166:13;:11;:13::i;:::-;62728:7:::1;:21;62738:11:::0;62728:7;:21:::1;:::i;60927:179::-:0;10166:13;:11;:13::i;:::-;60994:8:::1;::::0;::::1;;:15;;:8;:15:::0;60991:108:::1;;61025:8;:15:::0;;-1:-1:-1;;61025:15:0::1;61036:4;61025:15;::::0;;61357:214::o;60991:108::-:1;61071:8;:16:::0;;-1:-1:-1;;61071:16:0::1;::::0;;60927:179::o;42257:124::-;42321:7;42348:20;42360:7;42348:11;:20::i;:::-;:25;;42257:124;-1:-1:-1;;42257:124:0:o;57339:311::-;10166:13;:11;:13::i;:::-;57462:34;;::::1;57454:74;;;::::0;-1:-1:-1;;;57454:74:0;;11344:2:1;57454:74:0::1;::::0;::::1;11326:21:1::0;11383:2;11363:18;;;11356:30;11422:29;11402:18;;;11395:57;11469:18;;57454:74:0::1;;;;;;;;;57545:9;57541:102;57560:19:::0;;::::1;57541:102;;;57596:35;57606:8;;57615:1;57606:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;57619:8;;57628:1;57619:11;;;;;;;:::i;:::-;;;;;;;57596:9;:35::i;:::-;57581:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57541:102;;;;57339:311:::0;;;;:::o;40274:206::-;40338:7;-1:-1:-1;;;;;40362:19:0;;40358:60;;40390:28;;-1:-1:-1;;;40390:28:0;;;;;;;;;;;40358:60;-1:-1:-1;;;;;;40444:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;40444:27:0;;40274:206::o;10928:103::-;10166:13;:11;:13::i;:::-;10993:30:::1;11020:1;10993:18;:30::i;58336:579::-:0;58437:10;;58425:8;58409:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;58401:70;;;;-1:-1:-1;;;58401:70:0;;12102:2:1;58401:70:0;;;12084:21:1;12141:2;12121:18;;;12114:30;-1:-1:-1;;;12160:18:1;;;12153:50;12220:18;;58401:70:0;11900:344:1;58401:70:0;58496:16;;;;;;;58488:52;;;;-1:-1:-1;;;58488:52:0;;12451:2:1;58488:52:0;;;12433:21:1;12490:2;12470:18;;;12463:30;12529:25;12509:18;;;12502:53;12572:18;;58488:52:0;12249:347:1;58488:52:0;58622:14;;58610:8;58586:21;58596:10;58586:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;58578:87;;;;-1:-1:-1;;;58578:87:0;;12803:2:1;58578:87:0;;;12785:21:1;12842:2;12822:18;;;12815:30;-1:-1:-1;;;12861:18:1;;;12854:54;12925:18;;58578:87:0;12601:348:1;58578:87:0;58725:19;;58699:10;58688:22;;;;:10;:22;;;;;;:33;;58713:8;;58688:33;:::i;:::-;:56;;58680:93;;;;-1:-1:-1;;;58680:93:0;;13156:2:1;58680:93:0;;;13138:21:1;13195:2;13175:18;;;13168:30;13234:26;13214:18;;;13207:54;13278:18;;58680:93:0;12954:348:1;58680:93:0;58826:10;58815:22;;;;:10;:22;;;;;;:33;;58840:8;;58815:33;:::i;:::-;58801:10;58790:22;;;;:10;:22;;;;;:58;;;;58866:31;;58888:8;58866:9;:31::i;62141:122::-;10166:13;:11;:13::i;:::-;62223:14:::1;:32:::0;62141:122::o;62011:::-;10166:13;:11;:13::i;:::-;62093:14:::1;:32:::0;62011:122::o;61719:116::-;10166:13;:11;:13::i;:::-;61801:11:::1;:26;61815:12:::0;61801:11;:26:::1;:::i;42617:104::-:0;42673:13;42706:7;42699:14;;;;;:::i;57679:627::-;57774:10;;57762:8;57746:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;57738:70;;;;-1:-1:-1;;;57738:70:0;;12102:2:1;57738:70:0;;;12084:21:1;12141:2;12121:18;;;12114:30;-1:-1:-1;;;12160:18:1;;;12153:50;12220:18;;57738:70:0;11900:344:1;57738:70:0;10353:6;;-1:-1:-1;;;;;10353:6:0;57825:10;:21;57821:424;;57873:18;;;;57865:56;;;;-1:-1:-1;;;57865:56:0;;13509:2:1;57865:56:0;;;13491:21:1;13548:2;13528:18;;;13521:30;13587:27;13567:18;;;13560:55;13632:18;;57865:56:0;13307:349:1;57865:56:0;58003:14;;57991:8;57967:21;57977:10;57967:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;57959:87;;;;-1:-1:-1;;;57959:87:0;;12803:2:1;57959:87:0;;;12785:21:1;12842:2;12822:18;;;12815:30;-1:-1:-1;;;12861:18:1;;;12854:54;12925:18;;57959:87:0;12601:348:1;57959:87:0;58081:11;;58069:8;:23;;58061:56;;;;-1:-1:-1;;;58061:56:0;;13863:2:1;58061:56:0;;;13845:21:1;13902:2;13882:18;;;13875:30;-1:-1:-1;;;13921:18:1;;;13914:50;13981:18;;58061:56:0;13661:344:1;58061:56:0;58173:8;58156:14;;:25;;;;:::i;:::-;58142:9;:40;;58134:72;;;;-1:-1:-1;;;58134:72:0;;14212:2:1;58134:72:0;;;14194:21:1;14251:2;14231:18;;;14224:30;-1:-1:-1;;;14270:18:1;;;14263:49;14329:18;;58134:72:0;14010:343:1;58134:72:0;58257:31;58267:10;58279:8;58257:9;:31::i;59296:176::-;59400:8;4423:30;4444:8;4423:20;:30::i;:::-;59421:43:::1;59445:8;59455;59421:23;:43::i;62421:110::-:0;10166:13;:11;:13::i;:::-;62497:11:::1;:26:::0;62421:110::o;59995:228::-;60146:4;-1:-1:-1;;;;;4243:18:0;;4251:10;4243:18;4239:83;;4278:32;4299:10;4278:20;:32::i;:::-;60168:47:::1;60191:4;60197:2;60201:7;60210:4;60168:22;:47::i;58923:365::-:0;58996:13;59027:16;59035:7;59027;:16::i;:::-;59022:59;;59052:29;;-1:-1:-1;;;59052:29:0;;;;;;;;;;;59022:59;59097:8;;;;:17;;:8;:17;59094:66;;59134:14;59127:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58923:365;;;:::o;59094:66::-;59191:7;59185:21;;;;;:::i;:::-;;;59210:1;59185:26;:95;;;;;;;;;;;;;;;;;59238:7;59247:18;:7;:16;:18::i;:::-;59221:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59178:102;58923:365;-1:-1:-1;;58923:365:0:o;61125:222::-;10166:13;:11;:13::i;:::-;61205:18:::1;::::0;::::1;;:25;;:18;:25:::0;61202:138:::1;;61246:18;:25:::0;;-1:-1:-1;;61246:25:0::1;61267:4;61246:25;::::0;;61357:214::o;61202:138::-:1;61302:18;:26:::0;;-1:-1:-1;;61302:26:0::1;::::0;;61125:222::o;56520:25::-;;;;;;;:::i;62539:106::-;10166:13;:11;:13::i;:::-;62613:10:::1;:24:::0;62539:106::o;61581:126::-;10166:13;:11;:13::i;:::-;61667:14:::1;:32;61684:15:::0;61667:14;:32:::1;:::i;11186:201::-:0;10166:13;:11;:13::i;:::-;-1:-1:-1;;;;;11275:22:0;::::1;11267:73;;;::::0;-1:-1:-1;;;11267:73:0;;15752:2:1;11267:73:0::1;::::0;::::1;15734:21:1::0;15791:2;15771:18;;;15764:30;15830:34;15810:18;;;15803:62;-1:-1:-1;;;15881:18:1;;;15874:36;15927:19;;11267:73:0::1;15550:402:1::0;11267:73:0::1;11351:28;11370:8;11351:18;:28::i;12479:422::-:0;12846:20;12885:8;;;12479:422::o;39838:372::-;39940:4;-1:-1:-1;;;;;;39977:40:0;;-1:-1:-1;;;39977:40:0;;:105;;-1:-1:-1;;;;;;;40034:48:0;;-1:-1:-1;;;40034:48:0;39977:105;:172;;;-1:-1:-1;;;;;;;40099:50:0;;-1:-1:-1;;;40099:50:0;39977:172;:225;;;-1:-1:-1;;;;;;;;;;23282:40:0;;;40166:36;23173:157;24684:215;24786:4;-1:-1:-1;;;;;;24810:41:0;;-1:-1:-1;;;24810:41:0;;:81;;;24855:36;24879:11;24855:23;:36::i;10445:132::-;10353:6;;-1:-1:-1;;;;;10353:6:0;8810:10;10509:23;10501:68;;;;-1:-1:-1;;;10501:68:0;;16159:2:1;10501:68:0;;;16141:21:1;;;16178:18;;;16171:30;16237:34;16217:18;;;16210:62;16289:18;;10501:68:0;15957:356:1;26046:332:0;25762:5;-1:-1:-1;;;;;26149:33:0;;;;26141:88;;;;-1:-1:-1;;;26141:88:0;;16520:2:1;26141:88:0;;;16502:21:1;16559:2;16539:18;;;16532:30;16598:34;16578:18;;;16571:62;-1:-1:-1;;;16649:18:1;;;16642:40;16699:19;;26141:88:0;16318:406:1;26141:88:0;-1:-1:-1;;;;;26248:22:0;;26240:60;;;;-1:-1:-1;;;26240:60:0;;16931:2:1;26240:60:0;;;16913:21:1;16970:2;16950:18;;;16943:30;17009:27;16989:18;;;16982:55;17054:18;;26240:60:0;16729:349:1;26240:60:0;26335:35;;;;;;;;;-1:-1:-1;;;;;26335:35:0;;;;;;-1:-1:-1;;;;;26335:35:0;;;;;;;;;;-1:-1:-1;;;26313:57:0;;;;:19;:57;26046:332::o;45918:144::-;45975:4;46009:13;;-1:-1:-1;;;;;46009:13:0;45999:23;;:55;;;;-1:-1:-1;;46027:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;46027:27:0;;;;46026:28;;45918:144::o;4481:419::-;3002:42;4672:45;:49;4668:225;;4743:67;;-1:-1:-1;;;4743:67:0;;4794:4;4743:67;;;17295:34:1;-1:-1:-1;;;;;17365:15:1;;17345:18;;;17338:43;3002:42:0;;4743;;17230:18:1;;4743:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4738:144;;4838:28;;-1:-1:-1;;;4838:28:0;;-1:-1:-1;;;;;2246:32:1;;4838:28:0;;;2228:51:1;2201:18;;4838:28:0;2082:203:1;43514:379:0;43595:13;43611:24;43627:7;43611:15;:24::i;:::-;43595:40;;43656:5;-1:-1:-1;;;;;43650:11:0;:2;-1:-1:-1;;;;;43650:11:0;;43646:48;;43670:24;;-1:-1:-1;;;43670:24:0;;;;;;;;;;;43646:48;8810:10;-1:-1:-1;;;;;43711:21:0;;;;;;:63;;-1:-1:-1;43737:37:0;43754:5;8810:10;44593:164;:::i;43737:37::-;43736:38;43711:63;43707:138;;;43798:35;;-1:-1:-1;;;43798:35:0;;;;;;;;;;;43707:138;43857:28;43866:2;43870:7;43879:5;43857:8;:28::i;44824:170::-;44958:28;44968:4;44974:2;44978:7;44958:9;:28::i;45065:185::-;45203:39;45220:4;45226:2;45230:7;45203:39;;;;;;;;;;;;:16;:39::i;41112:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;41278:13:0;;41222:7;;-1:-1:-1;;;;;41278:13:0;41271:20;;41267:861;;;41312:31;41346:17;;;:11;:17;;;;;;;;;41312:51;;;;;;;;;-1:-1:-1;;;;;41312:51:0;;;;-1:-1:-1;;;41312:51:0;;-1:-1:-1;;;;;41312:51:0;;;;;;;;-1:-1:-1;;;41312:51:0;;;;;;;;;;;;;;41382:731;;41432:14;;-1:-1:-1;;;;;41432:28:0;;41428:101;;41496:9;41112:1083;-1:-1:-1;;;41112:1083:0:o;41428:101::-;-1:-1:-1;;;41873:6:0;41918:17;;;;:11;:17;;;;;;;;;41906:29;;;;;;;;;-1:-1:-1;;;;;41906:29:0;;;;;-1:-1:-1;;;41906:29:0;;-1:-1:-1;;;;;41906:29:0;;;;;;;;-1:-1:-1;;;41906:29:0;;;;;;;;;;;;;41966:28;41962:109;;42034:9;41112:1083;-1:-1:-1;;;41112:1083:0:o;41962:109::-;41833:261;;;41293:835;41267:861;42156:31;;-1:-1:-1;;;42156:31:0;;;;;;;;;;;46070:104;46139:27;46149:2;46153:8;46139:27;;;;;;;;;;;;:9;:27::i;11547:191::-;11640:6;;;-1:-1:-1;;;;;11657:17:0;;;-1:-1:-1;;;;;;11657:17:0;;;;;;;11690:40;;11640:6;;;11657:17;11640:6;;11690:40;;11621:16;;11690:40;11610:128;11547:191;:::o;44235:287::-;8810:10;-1:-1:-1;;;;;44334:24:0;;;44330:54;;44367:17;;-1:-1:-1;;;44367:17:0;;;;;;;;;;;44330:54;8810:10;44397:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44397:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;44397:53:0;;;;;;;;;;44466:48;;540:41:1;;;44397:42:0;;8810:10;44466:48;;513:18:1;44466:48:0;;;;;;;44235:287;;:::o;45321:342::-;45488:28;45498:4;45504:2;45508:7;45488:9;:28::i;:::-;45532:48;45555:4;45561:2;45565:7;45574:5;45532:22;:48::i;:::-;45527:129;;45604:40;;-1:-1:-1;;;45604:40:0;;;;;;;;;;;7374:751;7430:13;7651:5;7660:1;7651:10;7647:53;;-1:-1:-1;;7678:10:0;;;;;;;;;;;;-1:-1:-1;;;7678:10:0;;;;;7374:751::o;7647:53::-;7725:5;7710:12;7766:78;7773:9;;7766:78;;7799:8;;;;:::i;:::-;;-1:-1:-1;7822:10:0;;-1:-1:-1;7830:2:0;7822:10;;:::i;:::-;;;7766:78;;;7854:19;7886:6;-1:-1:-1;;;;;7876:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7876:17:0;-1:-1:-1;7944:5:0;;-1:-1:-1;7854:39:0;-1:-1:-1;7920:6:0;7960:126;7967:9;;7960:126;;8037:9;8044:2;8037:4;:9;:::i;:::-;8024:23;;:2;:23;:::i;:::-;8011:38;;7993:6;8000:7;;;:::i;:::-;;;;7993:15;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7993:56:0;;;;;;;;-1:-1:-1;8064:10:0;8072:2;8064:10;;:::i;:::-;;;7960:126;;;-1:-1:-1;8110:6:0;7374:751;-1:-1:-1;;;;7374:751:0:o;53134:196::-;53249:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;53249:29:0;-1:-1:-1;;;;;53249:29:0;;;;;;;;;53294:28;;53249:24;;53294:28;;;;;;;53134:196;;;:::o;48635:2112::-;48750:35;48788:20;48800:7;48788:11;:20::i;:::-;48863:18;;48750:58;;-1:-1:-1;48821:22:0;;-1:-1:-1;;;;;48847:34:0;8810:10;-1:-1:-1;;;;;48847:34:0;;:101;;;-1:-1:-1;48915:18:0;;48898:50;;8810:10;44593:164;:::i;48898:50::-;48847:154;;;-1:-1:-1;8810:10:0;48965:20;48977:7;48965:11;:20::i;:::-;-1:-1:-1;;;;;48965:36:0;;48847:154;48821:181;;49020:17;49015:66;;49046:35;;-1:-1:-1;;;49046:35:0;;;;;;;;;;;49015:66;49118:4;-1:-1:-1;;;;;49096:26:0;:13;:18;;;-1:-1:-1;;;;;49096:26:0;;49092:67;;49131:28;;-1:-1:-1;;;49131:28:0;;;;;;;;;;;49092:67;-1:-1:-1;;;;;49174:16:0;;49170:52;;49199:23;;-1:-1:-1;;;49199:23:0;;;;;;;;;;;49170:52;49343:49;49360:1;49364:7;49373:13;:18;;;49343:8;:49::i;:::-;-1:-1:-1;;;;;49688:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;49688:31:0;;;-1:-1:-1;;;;;49688:31:0;;;-1:-1:-1;;49688:31:0;;;;;;;49734:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49734:29:0;;;;;;;;;;;49780:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;49825:61:0;;;;-1:-1:-1;;;49870:15:0;49825:61;;;;;;;;;;;50160:11;;;50190:24;;;;;:29;50160:11;;50190:29;50186:445;;50415:13;;-1:-1:-1;;;;;50415:13:0;50401:27;;50397:219;;;50485:18;;;50453:24;;;:11;:24;;;;;;;;:50;;50568:28;;;;-1:-1:-1;;;;;50526:70:0;-1:-1:-1;;;50526:70:0;-1:-1:-1;;;;;;50526:70:0;;;-1:-1:-1;;;;;50453:50:0;;;50526:70;;;;;;;50397:219;49663:979;50678:7;50674:2;-1:-1:-1;;;;;50659:27:0;50668:4;-1:-1:-1;;;;;50659:27:0;;;;;;;;;;;50697:42;59645:163;46537;46660:32;46666:2;46670:8;46680:5;46687:4;46660:5;:32::i;53895:790::-;54050:4;-1:-1:-1;;;;;54071:13:0;;12846:20;12885:8;54067:611;;54107:72;;-1:-1:-1;;;54107:72:0;;-1:-1:-1;;;;;54107:36:0;;;;;:72;;8810:10;;54158:4;;54164:7;;54173:5;;54107:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54107:72:0;;;;;;;;-1:-1:-1;;54107:72:0;;;;;;;;;;;;:::i;:::-;;;54103:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54353:6;:13;54370:1;54353:18;54349:259;;54403:40;;-1:-1:-1;;;54403:40:0;;;;;;;;;;;54349:259;54558:6;54552:13;54543:6;54539:2;54535:15;54528:38;54103:520;-1:-1:-1;;;;;;54230:55:0;-1:-1:-1;;;54230:55:0;;-1:-1:-1;54223:62:0;;54067:611;-1:-1:-1;54662:4:0;54067:611;53895:790;;;;;;:::o;46959:1422::-;47098:20;47121:13;-1:-1:-1;;;;;47121:13:0;-1:-1:-1;;;;;47149:16:0;;47145:48;;47174:19;;-1:-1:-1;;;47174:19:0;;;;;;;;;;;47145:48;47208:8;47220:1;47208:13;47204:44;;47230:18;;-1:-1:-1;;;47230:18:0;;;;;;;;;;;47204:44;-1:-1:-1;;;;;47600:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;47659:49:0;;-1:-1:-1;;;;;47600:44:0;;;;;;;47659:49;;;;-1:-1:-1;;47600:44:0;;;;;;47659:49;;;;;;;;;;;;;;;;47725:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;47775:66:0;;;;-1:-1:-1;;;47825:15:0;47775:66;;;;;;;;;;;47725:25;;47910:328;47930:8;47926:1;:12;47910:328;;;47969:38;;47994:12;;-1:-1:-1;;;;;47969:38:0;;;47986:1;;47969:38;;47986:1;;47969:38;48030:4;:68;;;;;48039:59;48070:1;48074:2;48078:12;48092:5;48039:22;:59::i;:::-;48038:60;48030:68;48026:164;;;48130:40;;-1:-1:-1;;;48130:40:0;;;;;;;;;;;48026:164;48208:14;;;;;47940:3;47910:328;;;-1:-1:-1;48254:13:0;:37;;-1:-1:-1;;;;;;48254:37:0;-1:-1:-1;;;;;48254:37:0;;;;;;;;;;48313:60;59645:163;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:366::-;837:6;845;898:2;886:9;877:7;873:23;869:32;866:52;;;914:1;911;904:12;866:52;937:29;956:9;937:29;:::i;:::-;927:39;;1016:2;1005:9;1001:18;988:32;-1:-1:-1;;;;;1053:5:1;1049:38;1042:5;1039:49;1029:77;;1102:1;1099;1092:12;1029:77;1125:5;1115:15;;;770:366;;;;;:::o;1141:180::-;1200:6;1253:2;1241:9;1232:7;1228:23;1224:32;1221:52;;;1269:1;1266;1259:12;1221:52;-1:-1:-1;1292:23:1;;1141:180;-1:-1:-1;1141:180:1:o;1326:250::-;1411:1;1421:113;1435:6;1432:1;1429:13;1421:113;;;1511:11;;;1505:18;1492:11;;;1485:39;1457:2;1450:10;1421:113;;;-1:-1:-1;;1568:1:1;1550:16;;1543:27;1326:250::o;1581:271::-;1623:3;1661:5;1655:12;1688:6;1683:3;1676:19;1704:76;1773:6;1766:4;1761:3;1757:14;1750:4;1743:5;1739:16;1704:76;:::i;:::-;1834:2;1813:15;-1:-1:-1;;1809:29:1;1800:39;;;;1841:4;1796:50;;1581:271;-1:-1:-1;;1581:271:1:o;1857:220::-;2006:2;1995:9;1988:21;1969:4;2026:45;2067:2;2056:9;2052:18;2044:6;2026:45;:::i;2290:254::-;2358:6;2366;2419:2;2407:9;2398:7;2394:23;2390:32;2387:52;;;2435:1;2432;2425:12;2387:52;2458:29;2477:9;2458:29;:::i;:::-;2448:39;2534:2;2519:18;;;;2506:32;;-1:-1:-1;;;2290:254:1:o;2549:186::-;2608:6;2661:2;2649:9;2640:7;2636:23;2632:32;2629:52;;;2677:1;2674;2667:12;2629:52;2700:29;2719:9;2700:29;:::i;2922:328::-;2999:6;3007;3015;3068:2;3056:9;3047:7;3043:23;3039:32;3036:52;;;3084:1;3081;3074:12;3036:52;3107:29;3126:9;3107:29;:::i;:::-;3097:39;;3155:38;3189:2;3178:9;3174:18;3155:38;:::i;:::-;3145:48;;3240:2;3229:9;3225:18;3212:32;3202:42;;2922:328;;;;;:::o;3255:248::-;3323:6;3331;3384:2;3372:9;3363:7;3359:23;3355:32;3352:52;;;3400:1;3397;3390:12;3352:52;-1:-1:-1;;3423:23:1;;;3493:2;3478:18;;;3465:32;;-1:-1:-1;3255:248:1:o;4026:127::-;4087:10;4082:3;4078:20;4075:1;4068:31;4118:4;4115:1;4108:15;4142:4;4139:1;4132:15;4158:632;4223:5;-1:-1:-1;;;;;4294:2:1;4286:6;4283:14;4280:40;;;4300:18;;:::i;:::-;4375:2;4369:9;4343:2;4429:15;;-1:-1:-1;;4425:24:1;;;4451:2;4421:33;4417:42;4405:55;;;4475:18;;;4495:22;;;4472:46;4469:72;;;4521:18;;:::i;:::-;4561:10;4557:2;4550:22;4590:6;4581:15;;4620:6;4612;4605:22;4660:3;4651:6;4646:3;4642:16;4639:25;4636:45;;;4677:1;4674;4667:12;4636:45;4727:6;4722:3;4715:4;4707:6;4703:17;4690:44;4782:1;4775:4;4766:6;4758;4754:19;4750:30;4743:41;;;;4158:632;;;;;:::o;4795:451::-;4864:6;4917:2;4905:9;4896:7;4892:23;4888:32;4885:52;;;4933:1;4930;4923:12;4885:52;4973:9;4960:23;-1:-1:-1;;;;;4998:6:1;4995:30;4992:50;;;5038:1;5035;5028:12;4992:50;5061:22;;5114:4;5106:13;;5102:27;-1:-1:-1;5092:55:1;;5143:1;5140;5133:12;5092:55;5166:74;5232:7;5227:2;5214:16;5209:2;5205;5201:11;5166:74;:::i;5251:367::-;5314:8;5324:6;5378:3;5371:4;5363:6;5359:17;5355:27;5345:55;;5396:1;5393;5386:12;5345:55;-1:-1:-1;5419:20:1;;-1:-1:-1;;;;;5451:30:1;;5448:50;;;5494:1;5491;5484:12;5448:50;5531:4;5523:6;5519:17;5507:29;;5591:3;5584:4;5574:6;5571:1;5567:14;5559:6;5555:27;5551:38;5548:47;5545:67;;;5608:1;5605;5598:12;5623:773;5745:6;5753;5761;5769;5822:2;5810:9;5801:7;5797:23;5793:32;5790:52;;;5838:1;5835;5828:12;5790:52;5878:9;5865:23;-1:-1:-1;;;;;5948:2:1;5940:6;5937:14;5934:34;;;5964:1;5961;5954:12;5934:34;6003:70;6065:7;6056:6;6045:9;6041:22;6003:70;:::i;:::-;6092:8;;-1:-1:-1;5977:96:1;-1:-1:-1;6180:2:1;6165:18;;6152:32;;-1:-1:-1;6196:16:1;;;6193:36;;;6225:1;6222;6215:12;6193:36;;6264:72;6328:7;6317:8;6306:9;6302:24;6264:72;:::i;:::-;5623:773;;;;-1:-1:-1;6355:8:1;-1:-1:-1;;;;5623:773:1:o;6401:118::-;6487:5;6480:13;6473:21;6466:5;6463:32;6453:60;;6509:1;6506;6499:12;6524:315;6589:6;6597;6650:2;6638:9;6629:7;6625:23;6621:32;6618:52;;;6666:1;6663;6656:12;6618:52;6689:29;6708:9;6689:29;:::i;:::-;6679:39;;6768:2;6757:9;6753:18;6740:32;6781:28;6803:5;6781:28;:::i;6844:667::-;6939:6;6947;6955;6963;7016:3;7004:9;6995:7;6991:23;6987:33;6984:53;;;7033:1;7030;7023:12;6984:53;7056:29;7075:9;7056:29;:::i;:::-;7046:39;;7104:38;7138:2;7127:9;7123:18;7104:38;:::i;:::-;7094:48;;7189:2;7178:9;7174:18;7161:32;7151:42;;7244:2;7233:9;7229:18;7216:32;-1:-1:-1;;;;;7263:6:1;7260:30;7257:50;;;7303:1;7300;7293:12;7257:50;7326:22;;7379:4;7371:13;;7367:27;-1:-1:-1;7357:55:1;;7408:1;7405;7398:12;7357:55;7431:74;7497:7;7492:2;7479:16;7474:2;7470;7466:11;7431:74;:::i;:::-;7421:84;;;6844:667;;;;;;;:::o;7516:260::-;7584:6;7592;7645:2;7633:9;7624:7;7620:23;7616:32;7613:52;;;7661:1;7658;7651:12;7613:52;7684:29;7703:9;7684:29;:::i;:::-;7674:39;;7732:38;7766:2;7755:9;7751:18;7732:38;:::i;:::-;7722:48;;7516:260;;;;;:::o;7781:380::-;7860:1;7856:12;;;;7903;;;7924:61;;7978:4;7970:6;7966:17;7956:27;;7924:61;8031:2;8023:6;8020:14;8000:18;7997:38;7994:161;;8077:10;8072:3;8068:20;8065:1;8058:31;8112:4;8109:1;8102:15;8140:4;8137:1;8130:15;7994:161;;7781:380;;;:::o;8166:127::-;8227:10;8222:3;8218:20;8215:1;8208:31;8258:4;8255:1;8248:15;8282:4;8279:1;8272:15;8298:168;8371:9;;;8402;;8419:15;;;8413:22;;8399:37;8389:71;;8440:18;;:::i;8471:127::-;8532:10;8527:3;8523:20;8520:1;8513:31;8563:4;8560:1;8553:15;8587:4;8584:1;8577:15;8603:120;8643:1;8669;8659:35;;8674:18;;:::i;:::-;-1:-1:-1;8708:9:1;;8603:120::o;9064:545::-;9166:2;9161:3;9158:11;9155:448;;;9202:1;9227:5;9223:2;9216:17;9272:4;9268:2;9258:19;9342:2;9330:10;9326:19;9323:1;9319:27;9313:4;9309:38;9378:4;9366:10;9363:20;9360:47;;;-1:-1:-1;9401:4:1;9360:47;9456:2;9451:3;9447:12;9444:1;9440:20;9434:4;9430:31;9420:41;;9511:82;9529:2;9522:5;9519:13;9511:82;;;9574:17;;;9555:1;9544:13;9511:82;;;9515:3;;;9064:545;;;:::o;9785:1352::-;9911:3;9905:10;-1:-1:-1;;;;;9930:6:1;9927:30;9924:56;;;9960:18;;:::i;:::-;9989:97;10079:6;10039:38;10071:4;10065:11;10039:38;:::i;:::-;10033:4;9989:97;:::i;:::-;10141:4;;10205:2;10194:14;;10222:1;10217:663;;;;10924:1;10941:6;10938:89;;;-1:-1:-1;10993:19:1;;;10987:26;10938:89;-1:-1:-1;;9742:1:1;9738:11;;;9734:24;9730:29;9720:40;9766:1;9762:11;;;9717:57;11040:81;;10187:944;;10217:663;9011:1;9004:14;;;9048:4;9035:18;;-1:-1:-1;;10253:20:1;;;10371:236;10385:7;10382:1;10379:14;10371:236;;;10474:19;;;10468:26;10453:42;;10566:27;;;;10534:1;10522:14;;;;10401:19;;10371:236;;;10375:3;10635:6;10626:7;10623:19;10620:201;;;10696:19;;;10690:26;-1:-1:-1;;10779:1:1;10775:14;;;10791:3;10771:24;10767:37;10763:42;10748:58;10733:74;;10620:201;-1:-1:-1;;;;;10867:1:1;10851:14;;;10847:22;10834:36;;-1:-1:-1;9785:1352:1:o;11498:127::-;11559:10;11554:3;11550:20;11547:1;11540:31;11590:4;11587:1;11580:15;11614:4;11611:1;11604:15;11630:135;11669:3;11690:17;;;11687:43;;11710:18;;:::i;:::-;-1:-1:-1;11757:1:1;11746:13;;11630:135::o;11770:125::-;11835:9;;;11856:10;;;11853:36;;;11869:18;;:::i;14358:1187::-;14635:3;14664:1;14697:6;14691:13;14727:36;14753:9;14727:36;:::i;:::-;14782:1;14799:18;;;14826:133;;;;14973:1;14968:356;;;;14792:532;;14826:133;-1:-1:-1;;14859:24:1;;14847:37;;14932:14;;14925:22;14913:35;;14904:45;;;-1:-1:-1;14826:133:1;;14968:356;14999:6;14996:1;14989:17;15029:4;15074:2;15071:1;15061:16;15099:1;15113:165;15127:6;15124:1;15121:13;15113:165;;;15205:14;;15192:11;;;15185:35;15248:16;;;;15142:10;;15113:165;;;15117:3;;;15307:6;15302:3;15298:16;15291:23;;14792:532;;;;;15355:6;15349:13;15371:68;15430:8;15425:3;15418:4;15410:6;15406:17;15371:68;:::i;:::-;-1:-1:-1;;;15461:18:1;;15488:22;;;15537:1;15526:13;;14358:1187;-1:-1:-1;;;;14358:1187:1:o;17392:245::-;17459:6;17512:2;17500:9;17491:7;17487:23;17483:32;17480:52;;;17528:1;17525;17518:12;17480:52;17560:9;17554:16;17579:28;17601:5;17579:28;:::i;17642:112::-;17674:1;17700;17690:35;;17705:18;;:::i;:::-;-1:-1:-1;17739:9:1;;17642:112::o;17759:136::-;17798:3;17826:5;17816:39;;17835:18;;:::i;:::-;-1:-1:-1;;;17871:18:1;;17759:136::o;17900:489::-;-1:-1:-1;;;;;18169:15:1;;;18151:34;;18221:15;;18216:2;18201:18;;18194:43;18268:2;18253:18;;18246:34;;;18316:3;18311:2;18296:18;;18289:31;;;18094:4;;18337:46;;18363:19;;18355:6;18337:46;:::i;:::-;18329:54;17900:489;-1:-1:-1;;;;;;17900:489:1:o;18394:249::-;18463:6;18516:2;18504:9;18495:7;18491:23;18487:32;18484:52;;;18532:1;18529;18522:12;18484:52;18564:9;18558:16;18583:30;18607:5;18583:30;:::i

Swarm Source

ipfs://72a100a9d16e9c6d24422801958920cd6e61fc40fed516fd905723bc17b05b6f
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.