ETH Price: $2,653.99 (+1.24%)

Token

KzcHArt (KzcHArt)
 

Overview

Max Total Supply

444 KzcHArt

Holders

56

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
hodlmopz.eth
Balance
2 KzcHArt
0x4EAAFA39d6Fe1c57128684Ff77683AF617312DDf
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:
KzcHArt

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        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(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // 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) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: contracts/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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

// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

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

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

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

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

    /**
     * @dev 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) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

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

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

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

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: contracts/ReMyth.sol


pragma solidity ^0.8.13;






contract KzcHArt is ERC721A, Ownable, DefaultOperatorFilterer {

    using Strings for uint;

    enum Step {
        StandBy,
        WhitelistSale,
        PublicSale,
        SoldOut,
        Reveal
    }

    Step public step;

    string public baseURI;
    string public notRevealedURI;

    uint public MAX_SUPPLY = 111;
    uint public MAX_TEAM = 2222;
    uint public MAX_TX = 10;

    bool private isRevealed = false;

    uint public wl_price = 0 ether;
    uint public public_price = 0 ether;

    uint public saleStartTime = 1849298400;

    bytes32 public merkleRoot;

    constructor(string memory _baseURI, bytes32 _merkleRoot) ERC721A("KzcHArt", "KzcHArt")
    {
        baseURI = _baseURI;
        merkleRoot = _merkleRoot;
    }

    modifier isNotContract() {
        require(tx.origin == msg.sender, "Reentrancy Guard is watching");
        _;
    }

    function getStep() public view returns(Step actualStep) {
        if(block.timestamp < saleStartTime) {
            return Step.StandBy;
        }
        if(block.timestamp >= saleStartTime
        &&block.timestamp < saleStartTime + 30 minutes) {
            return Step.WhitelistSale;
        }
        if(block.timestamp >= saleStartTime + 30 minutes) {
            return Step.PublicSale;
        }
    }

    function TeamMint(address _to, uint _quantity) external payable onlyOwner {
        require(totalSupply() + _quantity <= MAX_TEAM, "NFT can't be minted anymore");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "NFT can't be minted anymore");
        _safeMint(_to,  _quantity);
    }

    function whitelistMint(address _account, uint _quantity, bytes32[] calldata _proof) external payable isNotContract {
        require(getStep() == Step.WhitelistSale, "Whitelist Mint is not activated");
        require(isWhiteListed(msg.sender, _proof), "Not whitelisted");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "NFT can't be minted anymore");
        require(_quantity <= MAX_TX, "Exceeded Max per TX");
        require(msg.value >= wl_price * _quantity, "Not enought funds");
        _safeMint(_account, _quantity);
    }

    function PublicMint(address _account, uint _quantity) external payable isNotContract {
        require(getStep() == Step.PublicSale, "Public Mint is not activated");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "NFT can't be mint anymore");
        require(_quantity <= MAX_TX, "Exceeded Max per TX");
        require(msg.value >= public_price * _quantity, "Not enought funds");
        _safeMint(_account, _quantity);
    }

    function setBaseUri(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function setSaleStartTime(uint _newSaleStartTime) external onlyOwner {
        saleStartTime = _newSaleStartTime;
    }

    function setMaxSupply(uint _newMAX_SUPPLY) external onlyOwner {
        MAX_SUPPLY = _newMAX_SUPPLY;
    }

    function revealCollection() external onlyOwner {
        isRevealed = true;
    }

    function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "URI query for nonexistent token");
        if(isRevealed == true) {
            return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json"));
        }
        else {
            return string(abi.encodePacked(baseURI, notRevealedURI));
        }
    }

   function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function isWhiteListed(address _account, bytes32[] calldata _proof) internal view returns(bool) {
        return _verify(leaf(_account), _proof);
    }

    function leaf(address _account) internal pure returns(bytes32) {
        return keccak256(abi.encodePacked(_account));
    }

    function _verify(bytes32 _leaf, bytes32[] memory _proof) internal view returns(bool) {
        return MerkleProof.verify(_proof, merkleRoot, _leaf);
    }

    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 Refund(uint amount) public onlyOwner {
        payable(msg.sender).transfer(amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TEAM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Refund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"TeamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStep","outputs":[{"internalType":"enum KzcHArt.Step","name":"actualStep","type":"uint8"}],"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":[],"name":"public_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMAX_SUPPLY","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSaleStartTime","type":"uint256"}],"name":"setSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"step","outputs":[{"internalType":"enum KzcHArt.Step","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wl_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052606f600b556108ae600c55600a600d55600e805460ff191690556000600f819055601055636e3a0de06011553480156200003d57600080fd5b5060405162002f6e38038062002f6e8339810160408190526200006091620002b2565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600781526020016612de98d2105c9d60ca1b8152506040518060400160405280600781526020016612de98d2105c9d60ca1b8152508160029081620000c891906200041c565b506003620000d782826200041c565b50506000805550620000e9336200024a565b6daaeb6d7670e522a718067333cd4e3b156200022e5780156200017c57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200015d57600080fd5b505af115801562000172573d6000803e3d6000fd5b505050506200022e565b6001600160a01b03821615620001cd5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000142565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200021457600080fd5b505af115801562000229573d6000803e3d6000fd5b505050505b50600990506200023f83826200041c565b5060125550620004e8565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215620002c657600080fd5b82516001600160401b0380821115620002de57600080fd5b818501915085601f830112620002f357600080fd5b8151818111156200030857620003086200029c565b604051601f8201601f19908116603f011681019083821181831017156200033357620003336200029c565b816040528281526020935088848487010111156200035057600080fd5b600091505b8282101562000374578482018401518183018501529083019062000355565b6000928101840192909252509401519395939450505050565b600181811c90821680620003a257607f821691505b602082108103620003c357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200041757600081815260208120601f850160051c81016020861015620003f25750805b601f850160051c820191505b818110156200041357828155600101620003fe565b5050505b505050565b81516001600160401b038111156200043857620004386200029c565b62000450816200044984546200038d565b84620003c9565b602080601f8311600181146200048857600084156200046f5750858301515b600019600386901b1c1916600185901b17855562000413565b600085815260208120601f198616915b82811015620004b95788860151825594840194600190910190840162000498565b5085821015620004d85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612a7680620004f86000396000f3fe60806040526004361061026a5760003560e01c80636f8b44b011610153578063a0bcfc7f116100cb578063c87b56dd1161007f578063e985e9c511610064578063e985e9c51461065b578063f2fde38b146106a4578063f3b2db3f146106c457600080fd5b8063c87b56dd14610609578063e25fe1751461062957600080fd5b8063a69f6750116100b0578063a69f6750146105bd578063b88d4fde146105d3578063bfe2a08a146105f357600080fd5b8063a0bcfc7f1461057d578063a22cb4651461059d57600080fd5b8063748a2986116101225780638da5cb5b116101075780638da5cb5b1461052857806395d89b41146105465780639e5288a01461055b57600080fd5b8063748a2986146104f55780637cb647591461050857600080fd5b80636f8b44b01461048b57806370a08231146104ab578063715018a6146104cb57806372250380146104e057600080fd5b806332c7189e116101e65780634b11faaf116101b55780635d3a6b0d1161019a5780635d3a6b0d146104435780636352211e146104565780636c0360eb1461047657600080fd5b80634b11faaf14610410578063525f8a5c1461042357600080fd5b806332c7189e146103af57806332cb6b0c146103c557806340d0b4a9146103db57806342842e0e146103f057600080fd5b806318160ddd1161023d57806323b872dd1161022257806323b872dd146103595780632e1897b0146103795780632eb4a7ab1461039957600080fd5b806318160ddd146103205780631cbaee2d1461034357600080fd5b806301ffc9a71461026f57806306fdde03146102a4578063081812fc146102c6578063095ea7b3146102fe575b600080fd5b34801561027b57600080fd5b5061028f61028a366004612332565b6106da565b60405190151581526020015b60405180910390f35b3480156102b057600080fd5b506102b96107bf565b60405161029b919061239f565b3480156102d257600080fd5b506102e66102e13660046123b2565b610851565b6040516001600160a01b03909116815260200161029b565b34801561030a57600080fd5b5061031e6103193660046123e2565b6108ae565b005b34801561032c57600080fd5b50600154600054035b60405190815260200161029b565b34801561034f57600080fd5b5061033560115481565b34801561036557600080fd5b5061031e61037436600461240c565b6109dc565b34801561038557600080fd5b5061031e6103943660046123b2565b610b3d565b3480156103a557600080fd5b5061033560125481565b3480156103bb57600080fd5b50610335600c5481565b3480156103d157600080fd5b50610335600b5481565b3480156103e757600080fd5b5061031e610bc8565b3480156103fc57600080fd5b5061031e61040b36600461240c565b610c31565b61031e61041e366004612448565b610d82565b34801561042f57600080fd5b5061031e61043e3660046123b2565b610fb2565b61031e6104513660046123e2565b611011565b34801561046257600080fd5b506102e66104713660046123b2565b611147565b34801561048257600080fd5b506102b9611152565b34801561049757600080fd5b5061031e6104a63660046123b2565b6111e0565b3480156104b757600080fd5b506103356104c63660046124d2565b61123f565b3480156104d757600080fd5b5061031e6112a1565b3480156104ec57600080fd5b506102b9611307565b61031e6105033660046123e2565b611314565b34801561051457600080fd5b5061031e6105233660046123b2565b6114e3565b34801561053457600080fd5b506008546001600160a01b03166102e6565b34801561055257600080fd5b506102b9611542565b34801561056757600080fd5b50610570611551565b60405161029b9190612503565b34801561058957600080fd5b5061031e6105983660046125b7565b6115ab565b3480156105a957600080fd5b5061031e6105b836600461260e565b611611565b3480156105c957600080fd5b5061033560105481565b3480156105df57600080fd5b5061031e6105ee366004612645565b6116bf565b3480156105ff57600080fd5b50610335600f5481565b34801561061557600080fd5b506102b96106243660046123b2565b61181e565b34801561063557600080fd5b506008546105709074010000000000000000000000000000000000000000900460ff1681565b34801561066757600080fd5b5061028f6106763660046126c1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106b057600080fd5b5061031e6106bf3660046124d2565b6118d0565b3480156106d057600080fd5b50610335600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061076d57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806107b957507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546107ce906126f4565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa906126f4565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b600061085c826119b2565b610892576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108b9826119f2565b9050806001600160a01b0316836001600160a01b031603610906576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614610973576001600160a01b038116600090815260076020908152604080832033845290915290205460ff16610973576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b826daaeb6d7670e522a718067333cd4e3b15610b2c57336001600160a01b03821603610a1257610a0d848484611a92565b610b37565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a85919061272e565b8015610b085750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ae4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b08919061272e565b610b2c57604051633b79c77360e21b81523360048201526024015b60405180910390fd5b610b37848484611a92565b50505050565b6008546001600160a01b03163314610b975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b604051339082156108fc029083906000818181858888f19350505050158015610bc4573d6000803e3d6000fd5b5050565b6008546001600160a01b03163314610c225760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b600e805460ff19166001179055565b826daaeb6d7670e522a718067333cd4e3b15610d7757336001600160a01b03821603610c6257610a0d848484611aa2565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610cb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd5919061272e565b8015610d585750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d58919061272e565b610d7757604051633b79c77360e21b8152336004820152602401610b23565b610b37848484611aa2565b323314610dd15760405162461bcd60e51b815260206004820152601c60248201527f5265656e7472616e6379204775617264206973207761746368696e67000000006044820152606401610b23565b6001610ddb611551565b6004811115610dec57610dec6124ed565b14610e395760405162461bcd60e51b815260206004820152601f60248201527f57686974656c697374204d696e74206973206e6f7420616374697661746564006044820152606401610b23565b610e44338383611abd565b610e905760405162461bcd60e51b815260206004820152600f60248201527f4e6f742077686974656c697374656400000000000000000000000000000000006044820152606401610b23565b600b5483610ea16001546000540390565b610eab9190612761565b1115610ef95760405162461bcd60e51b815260206004820152601b60248201527f4e46542063616e2774206265206d696e74656420616e796d6f726500000000006044820152606401610b23565b600d54831115610f4b5760405162461bcd60e51b815260206004820152601360248201527f4578636565646564204d617820706572205458000000000000000000000000006044820152606401610b23565b82600f54610f599190612774565b341015610fa85760405162461bcd60e51b815260206004820152601160248201527f4e6f7420656e6f756768742066756e64730000000000000000000000000000006044820152606401610b23565b610b378484611b59565b6008546001600160a01b0316331461100c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b601155565b6008546001600160a01b0316331461106b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b600c548161107c6001546000540390565b6110869190612761565b11156110d45760405162461bcd60e51b815260206004820152601b60248201527f4e46542063616e2774206265206d696e74656420616e796d6f726500000000006044820152606401610b23565b600b54816110e56001546000540390565b6110ef9190612761565b111561113d5760405162461bcd60e51b815260206004820152601b60248201527f4e46542063616e2774206265206d696e74656420616e796d6f726500000000006044820152606401610b23565b610bc48282611b59565b60006107b9826119f2565b6009805461115f906126f4565b80601f016020809104026020016040519081016040528092919081815260200182805461118b906126f4565b80156111d85780601f106111ad576101008083540402835291602001916111d8565b820191906000526020600020905b8154815290600101906020018083116111bb57829003601f168201915b505050505081565b6008546001600160a01b0316331461123a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b600b55565b60008160000361127b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146112fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b6113056000611b73565b565b600a805461115f906126f4565b3233146113635760405162461bcd60e51b815260206004820152601c60248201527f5265656e7472616e6379204775617264206973207761746368696e67000000006044820152606401610b23565b600261136d611551565b600481111561137e5761137e6124ed565b146113cb5760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963204d696e74206973206e6f7420616374697661746564000000006044820152606401610b23565b600b54816113dc6001546000540390565b6113e69190612761565b11156114345760405162461bcd60e51b815260206004820152601960248201527f4e46542063616e2774206265206d696e7420616e796d6f7265000000000000006044820152606401610b23565b600d548111156114865760405162461bcd60e51b815260206004820152601360248201527f4578636565646564204d617820706572205458000000000000000000000000006044820152606401610b23565b806010546114949190612774565b34101561113d5760405162461bcd60e51b815260206004820152601160248201527f4e6f7420656e6f756768742066756e64730000000000000000000000000000006044820152606401610b23565b6008546001600160a01b0316331461153d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b601255565b6060600380546107ce906126f4565b60006011544210156115635750600090565b6011544210158015611582575060115461157f90610708612761565b42105b1561158d5750600190565b60115461159c90610708612761565b42106115a85750600290565b90565b6008546001600160a01b031633146116055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b6009610bc482826127d1565b336001600160a01b03831603611653576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b1561180b57336001600160a01b038216036116f6576116f185858585611bd2565b611817565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611745573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611769919061272e565b80156117ec5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156117c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ec919061272e565b61180b57604051633b79c77360e21b8152336004820152602401610b23565b61181785858585611bd2565b5050505050565b6060611829826119b2565b6118755760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610b23565b600e5460ff1615156001036118b657600961188f83611c16565b6040516020016118a0929190612904565b6040516020818303038152906040529050919050565b6009600a6040516020016118a0929190612951565b919050565b6008546001600160a01b0316331461192a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b6001600160a01b0381166119a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b23565b6119af81611b73565b50565b60008054821080156107b95750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b600081600054811015611a6057600081815260046020526040812054907c010000000000000000000000000000000000000000000000000000000082169003611a5e575b80600003611a57575060001901600081815260046020526040902054611a36565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a9d838383611d4b565b505050565b611a9d838383604051806020016040528060008152506116bf565b6000611b51611b18856040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611f9592505050565b949350505050565b610bc4828260405180602001604052806000815250611fa4565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611bdd848484611d4b565b6001600160a01b0383163b15610b3757611bf984848484612145565b610b37576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611c5957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611c835780611c6d81612966565b9150611c7c9050600a83612996565b9150611c5d565b60008167ffffffffffffffff811115611c9e57611c9e61252b565b6040519080825280601f01601f191660200182016040528015611cc8576020820181803683370190505b5090505b8415611b5157611cdd6001836129aa565b9150611cea600a866129bd565b611cf5906030612761565b60f81b818381518110611d0a57611d0a6129d1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d44600a86612996565b9450611ccc565b6000611d56826119f2565b9050836001600160a01b0316816001600160a01b031614611da3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480611df157506001600160a01b038616600090815260076020908152604080832033845290915290205460ff165b80611e0457506001600160a01b03821633145b905080611e3d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84600003611e77576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8115611ea7576000848152600660205260409020805473ffffffffffffffffffffffffffffffffffffffff191690555b6001600160a01b0386811660009081526005602090815260408083208054600019019055928816825282822080546001019055868252600490529081207c02000000000000000000000000000000000000000000000000000000004260a01b8817811790915584169003611f4b57600184016000818152600460205260408120549003611f49576000548114611f495760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000611a57826012548561227a565b60005483600003611fe1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8260000361201b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156120f0575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120b96000878480600101955087612145565b6120d6576040516368d2bf6b60e11b815260040160405180910390fd5b80821061206e5782600054146120eb57600080fd5b612135565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106120f1575b506000908155610b379085838684565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a02906121939033908990889088906004016129e7565b6020604051808303816000875af19250505080156121ce575060408051601f3d908101601f191682019092526121cb91810190612a23565b60015b61222c573d8080156121fc576040519150601f19603f3d011682016040523d82523d6000602084013e612201565b606091505b508051600003612224576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b6000826122878584612290565b14949350505050565b600081815b84518110156122fc5760008582815181106122b2576122b26129d1565b602002602001015190508083116122d857600083815260208290526040902092506122e9565b600081815260208490526040902092505b50806122f481612966565b915050612295565b509392505050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146119af57600080fd5b60006020828403121561234457600080fd5b8135611a5781612304565b60005b8381101561236a578181015183820152602001612352565b50506000910152565b6000815180845261238b81602086016020860161234f565b601f01601f19169290920160200192915050565b602081526000611a576020830184612373565b6000602082840312156123c457600080fd5b5035919050565b80356001600160a01b03811681146118cb57600080fd5b600080604083850312156123f557600080fd5b6123fe836123cb565b946020939093013593505050565b60008060006060848603121561242157600080fd5b61242a846123cb565b9250612438602085016123cb565b9150604084013590509250925092565b6000806000806060858703121561245e57600080fd5b612467856123cb565b935060208501359250604085013567ffffffffffffffff8082111561248b57600080fd5b818701915087601f83011261249f57600080fd5b8135818111156124ae57600080fd5b8860208260051b85010111156124c357600080fd5b95989497505060200194505050565b6000602082840312156124e457600080fd5b611a57826123cb565b634e487b7160e01b600052602160045260246000fd5b602081016005831061252557634e487b7160e01b600052602160045260246000fd5b91905290565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561255c5761255c61252b565b604051601f8501601f19908116603f011681019082821181831017156125845761258461252b565b8160405280935085815286868601111561259d57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125c957600080fd5b813567ffffffffffffffff8111156125e057600080fd5b8201601f810184136125f157600080fd5b611b5184823560208401612541565b80151581146119af57600080fd5b6000806040838503121561262157600080fd5b61262a836123cb565b9150602083013561263a81612600565b809150509250929050565b6000806000806080858703121561265b57600080fd5b612664856123cb565b9350612672602086016123cb565b925060408501359150606085013567ffffffffffffffff81111561269557600080fd5b8501601f810187136126a657600080fd5b6126b587823560208401612541565b91505092959194509250565b600080604083850312156126d457600080fd5b6126dd836123cb565b91506126eb602084016123cb565b90509250929050565b600181811c9082168061270857607f821691505b60208210810361272857634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561274057600080fd5b8151611a5781612600565b634e487b7160e01b600052601160045260246000fd5b808201808211156107b9576107b961274b565b80820281158282048414176107b9576107b961274b565b601f821115611a9d57600081815260208120601f850160051c810160208610156127b25750805b601f850160051c820191505b81811015611f8d578281556001016127be565b815167ffffffffffffffff8111156127eb576127eb61252b565b6127ff816127f984546126f4565b8461278b565b602080601f831160018114612834576000841561281c5750858301515b600019600386901b1c1916600185901b178555611f8d565b600085815260208120601f198616915b8281101561286357888601518255948401946001909101908401612844565b50858210156128815787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000815461289e816126f4565b600182811680156128b657600181146128cb576128fa565b60ff19841687528215158302870194506128fa565b8560005260208060002060005b858110156128f15781548a8201529084019082016128d8565b50505082870194505b5050505092915050565b60006129108285612891565b835161292081836020880161234f565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b6000611b516129608386612891565b84612891565b600060001982036129795761297961274b565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826129a5576129a5612980565b500490565b818103818111156107b9576107b961274b565b6000826129cc576129cc612980565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160a01b03808716835280861660208401525083604083015260806060830152612a196080830184612373565b9695505050505050565b600060208284031215612a3557600080fd5b8151611a578161230456fea264697066735822122035bb126a4e55a7d92aba2c1bd37584d2ef73e72fa690d1dad8bc0c3b57534bea64736f6c63430008130033000000000000000000000000000000000000000000000000000000000000004053aaf442e8045ec89001854cee59c122cbfc2d22d9e5900e4bf839ed04e1ccbc000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f70616e6c6f6e66742e636f6d2f697066732f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061026a5760003560e01c80636f8b44b011610153578063a0bcfc7f116100cb578063c87b56dd1161007f578063e985e9c511610064578063e985e9c51461065b578063f2fde38b146106a4578063f3b2db3f146106c457600080fd5b8063c87b56dd14610609578063e25fe1751461062957600080fd5b8063a69f6750116100b0578063a69f6750146105bd578063b88d4fde146105d3578063bfe2a08a146105f357600080fd5b8063a0bcfc7f1461057d578063a22cb4651461059d57600080fd5b8063748a2986116101225780638da5cb5b116101075780638da5cb5b1461052857806395d89b41146105465780639e5288a01461055b57600080fd5b8063748a2986146104f55780637cb647591461050857600080fd5b80636f8b44b01461048b57806370a08231146104ab578063715018a6146104cb57806372250380146104e057600080fd5b806332c7189e116101e65780634b11faaf116101b55780635d3a6b0d1161019a5780635d3a6b0d146104435780636352211e146104565780636c0360eb1461047657600080fd5b80634b11faaf14610410578063525f8a5c1461042357600080fd5b806332c7189e146103af57806332cb6b0c146103c557806340d0b4a9146103db57806342842e0e146103f057600080fd5b806318160ddd1161023d57806323b872dd1161022257806323b872dd146103595780632e1897b0146103795780632eb4a7ab1461039957600080fd5b806318160ddd146103205780631cbaee2d1461034357600080fd5b806301ffc9a71461026f57806306fdde03146102a4578063081812fc146102c6578063095ea7b3146102fe575b600080fd5b34801561027b57600080fd5b5061028f61028a366004612332565b6106da565b60405190151581526020015b60405180910390f35b3480156102b057600080fd5b506102b96107bf565b60405161029b919061239f565b3480156102d257600080fd5b506102e66102e13660046123b2565b610851565b6040516001600160a01b03909116815260200161029b565b34801561030a57600080fd5b5061031e6103193660046123e2565b6108ae565b005b34801561032c57600080fd5b50600154600054035b60405190815260200161029b565b34801561034f57600080fd5b5061033560115481565b34801561036557600080fd5b5061031e61037436600461240c565b6109dc565b34801561038557600080fd5b5061031e6103943660046123b2565b610b3d565b3480156103a557600080fd5b5061033560125481565b3480156103bb57600080fd5b50610335600c5481565b3480156103d157600080fd5b50610335600b5481565b3480156103e757600080fd5b5061031e610bc8565b3480156103fc57600080fd5b5061031e61040b36600461240c565b610c31565b61031e61041e366004612448565b610d82565b34801561042f57600080fd5b5061031e61043e3660046123b2565b610fb2565b61031e6104513660046123e2565b611011565b34801561046257600080fd5b506102e66104713660046123b2565b611147565b34801561048257600080fd5b506102b9611152565b34801561049757600080fd5b5061031e6104a63660046123b2565b6111e0565b3480156104b757600080fd5b506103356104c63660046124d2565b61123f565b3480156104d757600080fd5b5061031e6112a1565b3480156104ec57600080fd5b506102b9611307565b61031e6105033660046123e2565b611314565b34801561051457600080fd5b5061031e6105233660046123b2565b6114e3565b34801561053457600080fd5b506008546001600160a01b03166102e6565b34801561055257600080fd5b506102b9611542565b34801561056757600080fd5b50610570611551565b60405161029b9190612503565b34801561058957600080fd5b5061031e6105983660046125b7565b6115ab565b3480156105a957600080fd5b5061031e6105b836600461260e565b611611565b3480156105c957600080fd5b5061033560105481565b3480156105df57600080fd5b5061031e6105ee366004612645565b6116bf565b3480156105ff57600080fd5b50610335600f5481565b34801561061557600080fd5b506102b96106243660046123b2565b61181e565b34801561063557600080fd5b506008546105709074010000000000000000000000000000000000000000900460ff1681565b34801561066757600080fd5b5061028f6106763660046126c1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106b057600080fd5b5061031e6106bf3660046124d2565b6118d0565b3480156106d057600080fd5b50610335600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061076d57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806107b957507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546107ce906126f4565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa906126f4565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b600061085c826119b2565b610892576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108b9826119f2565b9050806001600160a01b0316836001600160a01b031603610906576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614610973576001600160a01b038116600090815260076020908152604080832033845290915290205460ff16610973576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b826daaeb6d7670e522a718067333cd4e3b15610b2c57336001600160a01b03821603610a1257610a0d848484611a92565b610b37565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a85919061272e565b8015610b085750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ae4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b08919061272e565b610b2c57604051633b79c77360e21b81523360048201526024015b60405180910390fd5b610b37848484611a92565b50505050565b6008546001600160a01b03163314610b975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b604051339082156108fc029083906000818181858888f19350505050158015610bc4573d6000803e3d6000fd5b5050565b6008546001600160a01b03163314610c225760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b600e805460ff19166001179055565b826daaeb6d7670e522a718067333cd4e3b15610d7757336001600160a01b03821603610c6257610a0d848484611aa2565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610cb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd5919061272e565b8015610d585750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d58919061272e565b610d7757604051633b79c77360e21b8152336004820152602401610b23565b610b37848484611aa2565b323314610dd15760405162461bcd60e51b815260206004820152601c60248201527f5265656e7472616e6379204775617264206973207761746368696e67000000006044820152606401610b23565b6001610ddb611551565b6004811115610dec57610dec6124ed565b14610e395760405162461bcd60e51b815260206004820152601f60248201527f57686974656c697374204d696e74206973206e6f7420616374697661746564006044820152606401610b23565b610e44338383611abd565b610e905760405162461bcd60e51b815260206004820152600f60248201527f4e6f742077686974656c697374656400000000000000000000000000000000006044820152606401610b23565b600b5483610ea16001546000540390565b610eab9190612761565b1115610ef95760405162461bcd60e51b815260206004820152601b60248201527f4e46542063616e2774206265206d696e74656420616e796d6f726500000000006044820152606401610b23565b600d54831115610f4b5760405162461bcd60e51b815260206004820152601360248201527f4578636565646564204d617820706572205458000000000000000000000000006044820152606401610b23565b82600f54610f599190612774565b341015610fa85760405162461bcd60e51b815260206004820152601160248201527f4e6f7420656e6f756768742066756e64730000000000000000000000000000006044820152606401610b23565b610b378484611b59565b6008546001600160a01b0316331461100c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b601155565b6008546001600160a01b0316331461106b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b600c548161107c6001546000540390565b6110869190612761565b11156110d45760405162461bcd60e51b815260206004820152601b60248201527f4e46542063616e2774206265206d696e74656420616e796d6f726500000000006044820152606401610b23565b600b54816110e56001546000540390565b6110ef9190612761565b111561113d5760405162461bcd60e51b815260206004820152601b60248201527f4e46542063616e2774206265206d696e74656420616e796d6f726500000000006044820152606401610b23565b610bc48282611b59565b60006107b9826119f2565b6009805461115f906126f4565b80601f016020809104026020016040519081016040528092919081815260200182805461118b906126f4565b80156111d85780601f106111ad576101008083540402835291602001916111d8565b820191906000526020600020905b8154815290600101906020018083116111bb57829003601f168201915b505050505081565b6008546001600160a01b0316331461123a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b600b55565b60008160000361127b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146112fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b6113056000611b73565b565b600a805461115f906126f4565b3233146113635760405162461bcd60e51b815260206004820152601c60248201527f5265656e7472616e6379204775617264206973207761746368696e67000000006044820152606401610b23565b600261136d611551565b600481111561137e5761137e6124ed565b146113cb5760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963204d696e74206973206e6f7420616374697661746564000000006044820152606401610b23565b600b54816113dc6001546000540390565b6113e69190612761565b11156114345760405162461bcd60e51b815260206004820152601960248201527f4e46542063616e2774206265206d696e7420616e796d6f7265000000000000006044820152606401610b23565b600d548111156114865760405162461bcd60e51b815260206004820152601360248201527f4578636565646564204d617820706572205458000000000000000000000000006044820152606401610b23565b806010546114949190612774565b34101561113d5760405162461bcd60e51b815260206004820152601160248201527f4e6f7420656e6f756768742066756e64730000000000000000000000000000006044820152606401610b23565b6008546001600160a01b0316331461153d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b601255565b6060600380546107ce906126f4565b60006011544210156115635750600090565b6011544210158015611582575060115461157f90610708612761565b42105b1561158d5750600190565b60115461159c90610708612761565b42106115a85750600290565b90565b6008546001600160a01b031633146116055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b6009610bc482826127d1565b336001600160a01b03831603611653576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b1561180b57336001600160a01b038216036116f6576116f185858585611bd2565b611817565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611745573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611769919061272e565b80156117ec5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156117c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ec919061272e565b61180b57604051633b79c77360e21b8152336004820152602401610b23565b61181785858585611bd2565b5050505050565b6060611829826119b2565b6118755760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610b23565b600e5460ff1615156001036118b657600961188f83611c16565b6040516020016118a0929190612904565b6040516020818303038152906040529050919050565b6009600a6040516020016118a0929190612951565b919050565b6008546001600160a01b0316331461192a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b6001600160a01b0381166119a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b23565b6119af81611b73565b50565b60008054821080156107b95750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b600081600054811015611a6057600081815260046020526040812054907c010000000000000000000000000000000000000000000000000000000082169003611a5e575b80600003611a57575060001901600081815260046020526040902054611a36565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a9d838383611d4b565b505050565b611a9d838383604051806020016040528060008152506116bf565b6000611b51611b18856040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611f9592505050565b949350505050565b610bc4828260405180602001604052806000815250611fa4565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611bdd848484611d4b565b6001600160a01b0383163b15610b3757611bf984848484612145565b610b37576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611c5957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611c835780611c6d81612966565b9150611c7c9050600a83612996565b9150611c5d565b60008167ffffffffffffffff811115611c9e57611c9e61252b565b6040519080825280601f01601f191660200182016040528015611cc8576020820181803683370190505b5090505b8415611b5157611cdd6001836129aa565b9150611cea600a866129bd565b611cf5906030612761565b60f81b818381518110611d0a57611d0a6129d1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d44600a86612996565b9450611ccc565b6000611d56826119f2565b9050836001600160a01b0316816001600160a01b031614611da3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480611df157506001600160a01b038616600090815260076020908152604080832033845290915290205460ff165b80611e0457506001600160a01b03821633145b905080611e3d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84600003611e77576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8115611ea7576000848152600660205260409020805473ffffffffffffffffffffffffffffffffffffffff191690555b6001600160a01b0386811660009081526005602090815260408083208054600019019055928816825282822080546001019055868252600490529081207c02000000000000000000000000000000000000000000000000000000004260a01b8817811790915584169003611f4b57600184016000818152600460205260408120549003611f49576000548114611f495760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000611a57826012548561227a565b60005483600003611fe1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8260000361201b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156120f0575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120b96000878480600101955087612145565b6120d6576040516368d2bf6b60e11b815260040160405180910390fd5b80821061206e5782600054146120eb57600080fd5b612135565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106120f1575b506000908155610b379085838684565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a02906121939033908990889088906004016129e7565b6020604051808303816000875af19250505080156121ce575060408051601f3d908101601f191682019092526121cb91810190612a23565b60015b61222c573d8080156121fc576040519150601f19603f3d011682016040523d82523d6000602084013e612201565b606091505b508051600003612224576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b6000826122878584612290565b14949350505050565b600081815b84518110156122fc5760008582815181106122b2576122b26129d1565b602002602001015190508083116122d857600083815260208290526040902092506122e9565b600081815260208490526040902092505b50806122f481612966565b915050612295565b509392505050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146119af57600080fd5b60006020828403121561234457600080fd5b8135611a5781612304565b60005b8381101561236a578181015183820152602001612352565b50506000910152565b6000815180845261238b81602086016020860161234f565b601f01601f19169290920160200192915050565b602081526000611a576020830184612373565b6000602082840312156123c457600080fd5b5035919050565b80356001600160a01b03811681146118cb57600080fd5b600080604083850312156123f557600080fd5b6123fe836123cb565b946020939093013593505050565b60008060006060848603121561242157600080fd5b61242a846123cb565b9250612438602085016123cb565b9150604084013590509250925092565b6000806000806060858703121561245e57600080fd5b612467856123cb565b935060208501359250604085013567ffffffffffffffff8082111561248b57600080fd5b818701915087601f83011261249f57600080fd5b8135818111156124ae57600080fd5b8860208260051b85010111156124c357600080fd5b95989497505060200194505050565b6000602082840312156124e457600080fd5b611a57826123cb565b634e487b7160e01b600052602160045260246000fd5b602081016005831061252557634e487b7160e01b600052602160045260246000fd5b91905290565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561255c5761255c61252b565b604051601f8501601f19908116603f011681019082821181831017156125845761258461252b565b8160405280935085815286868601111561259d57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125c957600080fd5b813567ffffffffffffffff8111156125e057600080fd5b8201601f810184136125f157600080fd5b611b5184823560208401612541565b80151581146119af57600080fd5b6000806040838503121561262157600080fd5b61262a836123cb565b9150602083013561263a81612600565b809150509250929050565b6000806000806080858703121561265b57600080fd5b612664856123cb565b9350612672602086016123cb565b925060408501359150606085013567ffffffffffffffff81111561269557600080fd5b8501601f810187136126a657600080fd5b6126b587823560208401612541565b91505092959194509250565b600080604083850312156126d457600080fd5b6126dd836123cb565b91506126eb602084016123cb565b90509250929050565b600181811c9082168061270857607f821691505b60208210810361272857634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561274057600080fd5b8151611a5781612600565b634e487b7160e01b600052601160045260246000fd5b808201808211156107b9576107b961274b565b80820281158282048414176107b9576107b961274b565b601f821115611a9d57600081815260208120601f850160051c810160208610156127b25750805b601f850160051c820191505b81811015611f8d578281556001016127be565b815167ffffffffffffffff8111156127eb576127eb61252b565b6127ff816127f984546126f4565b8461278b565b602080601f831160018114612834576000841561281c5750858301515b600019600386901b1c1916600185901b178555611f8d565b600085815260208120601f198616915b8281101561286357888601518255948401946001909101908401612844565b50858210156128815787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000815461289e816126f4565b600182811680156128b657600181146128cb576128fa565b60ff19841687528215158302870194506128fa565b8560005260208060002060005b858110156128f15781548a8201529084019082016128d8565b50505082870194505b5050505092915050565b60006129108285612891565b835161292081836020880161234f565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b6000611b516129608386612891565b84612891565b600060001982036129795761297961274b565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826129a5576129a5612980565b500490565b818103818111156107b9576107b961274b565b6000826129cc576129cc612980565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160a01b03808716835280861660208401525083604083015260806060830152612a196080830184612373565b9695505050505050565b600060208284031215612a3557600080fd5b8151611a578161230456fea264697066735822122035bb126a4e55a7d92aba2c1bd37584d2ef73e72fa690d1dad8bc0c3b57534bea64736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000004053aaf442e8045ec89001854cee59c122cbfc2d22d9e5900e4bf839ed04e1ccbc000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f70616e6c6f6e66742e636f6d2f697066732f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): https://panlonft.com/ipfs/hidden.json
Arg [1] : _merkleRoot (bytes32): 0x53aaf442e8045ec89001854cee59c122cbfc2d22d9e5900e4bf839ed04e1ccbc

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 53aaf442e8045ec89001854cee59c122cbfc2d22d9e5900e4bf839ed04e1ccbc
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [3] : 68747470733a2f2f70616e6c6f6e66742e636f6d2f697066732f68696464656e
Arg [4] : 2e6a736f6e000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51594:4770:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17738:615;;;;;;;;;;-1:-1:-1;17738:615:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;17738:615:0;;;;;;;;22761:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24829:204::-;;;;;;;;;;-1:-1:-1;24829:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1802:55:1;;;1784:74;;1772:2;1757:18;24829:204:0;1638:226:1;24289:474:0;;;;;;;;;;-1:-1:-1;24289:474:0;;;;;:::i;:::-;;:::i;:::-;;16792:315;;;;;;;;;;-1:-1:-1;17058:12:0;;16845:7;17042:13;:28;16792:315;;;2475:25:1;;;2463:2;2448:18;16792:315:0;2329:177:1;52130:38:0;;;;;;;;;;;;;;;;55674:163;;;;;;;;;;-1:-1:-1;55674:163:0;;;;;:::i;:::-;;:::i;56260:101::-;;;;;;;;;;-1:-1:-1;56260:101:0;;;;;:::i;:::-;;:::i;52177:25::-;;;;;;;;;;;;;;;;51944:27;;;;;;;;;;;;;;;;51909:28;;;;;;;;;;;;;;;;54609:83;;;;;;;;;;;;;:::i;55845:171::-;;;;;;;;;;-1:-1:-1;55845:171:0;;;;;:::i;:::-;;:::i;53244:548::-;;;;;;:::i;:::-;;:::i;54364:121::-;;;;;;;;;;-1:-1:-1;54364:121:0;;;;;:::i;:::-;;:::i;52939:297::-;;;;;;:::i;:::-;;:::i;22550:144::-;;;;;;;;;;-1:-1:-1;22550:144:0;;;;;:::i;:::-;;:::i;51844:21::-;;;;;;;;;;;;;:::i;54493:108::-;;;;;;;;;;-1:-1:-1;54493:108:0;;;;;:::i;:::-;;:::i;18417:234::-;;;;;;;;;;-1:-1:-1;18417:234:0;;;;;:::i;:::-;;:::i;48019:103::-;;;;;;;;;;;;;:::i;51872:28::-;;;;;;;;;;;;;:::i;53800:442::-;;;;;;:::i;:::-;;:::i;55101:106::-;;;;;;;;;;-1:-1:-1;55101:106:0;;;;;:::i;:::-;;:::i;47368:87::-;;;;;;;;;;-1:-1:-1;47441:6:0;;-1:-1:-1;;;;;47441:6:0;47368:87;;22930:104;;;;;;;;;;;;;:::i;52511:420::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54250:106::-;;;;;;;;;;-1:-1:-1;54250:106:0;;;;;:::i;:::-;;:::i;25105:308::-;;;;;;;;;;-1:-1:-1;25105:308:0;;;;;:::i;:::-;;:::i;52087:34::-;;;;;;;;;;;;;;;;56024:228;;;;;;;;;;-1:-1:-1;56024:228:0;;;;;:::i;:::-;;:::i;52050:30::-;;;;;;;;;;;;;;;;54700:394;;;;;;;;;;-1:-1:-1;54700:394:0;;;;;:::i;:::-;;:::i;51819:16::-;;;;;;;;;;-1:-1:-1;51819:16:0;;;;;;;;;;;25484:164;;;;;;;;;;-1:-1:-1;25484:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25605:25:0;;;25581:4;25605:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25484:164;48277:201;;;;;;;;;;-1:-1:-1;48277:201:0;;;;;:::i;:::-;;:::i;51978:23::-;;;;;;;;;;;;;;;;17738:615;17823:4;18123:25;;;;;;:102;;-1:-1:-1;18200:25:0;;;;;18123:102;:179;;;-1:-1:-1;18277:25:0;;;;;18123:179;18103:199;17738:615;-1:-1:-1;;17738:615:0:o;22761:100::-;22815:13;22848:5;22841:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22761:100;:::o;24829:204::-;24897:7;24922:16;24930:7;24922;:16::i;:::-;24917:64;;24947:34;;;;;;;;;;;;;;24917:64;-1:-1:-1;25001:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25001:24:0;;24829:204::o;24289:474::-;24362:13;24394:27;24413:7;24394:18;:27::i;:::-;24362:61;;24444:5;-1:-1:-1;;;;;24438:11:0;:2;-1:-1:-1;;;;;24438:11:0;;24434:48;;24458:24;;;;;;;;;;;;;;24434:48;41217:10;-1:-1:-1;;;;;24499:28:0;;;24495:175;;-1:-1:-1;;;;;25605:25:0;;25581:4;25605:25;;;:18;:25;;;;;;;;41217:10;25605:35;;;;;;;;;;24542:128;;24619:35;;;;;;;;;;;;;;24542:128;24682:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;24682:29:0;-1:-1:-1;;;;;24682:29:0;;;;;;;;;24727:28;;24682:24;;24727:28;;;;;;;24351:412;24289:474;;:::o;55674:163::-;55775:4;2509:42;3649:43;:47;3645:699;;3936:10;-1:-1:-1;;;;;3928:18:0;;;3924:85;;55792:37:::1;55811:4;55817:2;55821:7;55792:18;:37::i;:::-;3987:7:::0;;3924:85;4069:67;;-1:-1:-1;;;4069:67:0;;4118:4;4069:67;;;8150:34:1;4125:10:0;8200:18:1;;;8193:43;2509:42:0;;4069:40;;8062:18:1;;4069:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4165:61:0;;-1:-1:-1;;;4165:61:0;;4214:4;4165:61;;;8150:34:1;-1:-1:-1;;;;;8220:15:1;;8200:18;;;8193:43;2509:42:0;;4165:40;;8062:18:1;;4165:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4023:310;;4287:30;;-1:-1:-1;;;4287:30:0;;4306:10;4287:30;;;1784:74:1;1757:18;;4287:30:0;;;;;;;;4023:310;55792:37:::1;55811:4;55817:2;55821:7;55792:18;:37::i;:::-;55674:163:::0;;;;:::o;56260:101::-;47441:6;;-1:-1:-1;;;;;47441:6:0;41217:10;47588:23;47580:68;;;;-1:-1:-1;;;47580:68:0;;8699:2:1;47580:68:0;;;8681:21:1;;;8718:18;;;8711:30;8777:34;8757:18;;;8750:62;8829:18;;47580:68:0;8497:356:1;47580:68:0;56317:36:::1;::::0;56325:10:::1;::::0;56317:36;::::1;;;::::0;56346:6;;56317:36:::1;::::0;;;56346:6;56325:10;56317:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;56260:101:::0;:::o;54609:83::-;47441:6;;-1:-1:-1;;;;;47441:6:0;41217:10;47588:23;47580:68;;;;-1:-1:-1;;;47580:68:0;;8699:2:1;47580:68:0;;;8681:21:1;;;8718:18;;;8711:30;8777:34;8757:18;;;8750:62;8829:18;;47580:68:0;8497:356:1;47580:68:0;54667:10:::1;:17:::0;;-1:-1:-1;;54667:17:0::1;54680:4;54667:17;::::0;;54609:83::o;55845:171::-;55950:4;2509:42;3649:43;:47;3645:699;;3936:10;-1:-1:-1;;;;;3928:18:0;;;3924:85;;55967:41:::1;55990:4;55996:2;56000:7;55967:22;:41::i;3924:85::-:0;4069:67;;-1:-1:-1;;;4069:67:0;;4118:4;4069:67;;;8150:34:1;4125:10:0;8200:18:1;;;8193:43;2509:42:0;;4069:40;;8062:18:1;;4069:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4165:61:0;;-1:-1:-1;;;4165:61:0;;4214:4;4165:61;;;8150:34:1;-1:-1:-1;;;;;8220:15:1;;8200:18;;;8193:43;2509:42:0;;4165:40;;8062:18:1;;4165:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4023:310;;4287:30;;-1:-1:-1;;;4287:30:0;;4306:10;4287:30;;;1784:74:1;1757:18;;4287:30:0;1638:226:1;4023:310:0;55967:41:::1;55990:4;55996:2;56000:7;55967:22;:41::i;53244:548::-:0;52427:9;52440:10;52427:23;52419:64;;;;-1:-1:-1;;;52419:64:0;;9060:2:1;52419:64:0;;;9042:21:1;9099:2;9079:18;;;9072:30;9138;9118:18;;;9111:58;9186:18;;52419:64:0;8858:352:1;52419:64:0;53391:18:::1;53378:9;:7;:9::i;:::-;:31;;;;;;;;:::i;:::-;;53370:75;;;::::0;-1:-1:-1;;;53370:75:0;;9417:2:1;53370:75:0::1;::::0;::::1;9399:21:1::0;9456:2;9436:18;;;9429:30;9495:33;9475:18;;;9468:61;9546:18;;53370:75:0::1;9215:355:1::0;53370:75:0::1;53464:33;53478:10;53490:6;;53464:13;:33::i;:::-;53456:61;;;::::0;-1:-1:-1;;;53456:61:0;;9777:2:1;53456:61:0::1;::::0;::::1;9759:21:1::0;9816:2;9796:18;;;9789:30;9855:17;9835:18;;;9828:45;9890:18;;53456:61:0::1;9575:339:1::0;53456:61:0::1;53565:10;;53552:9;53536:13;17058:12:::0;;16845:7;17042:13;:28;;16792:315;53536:13:::1;:25;;;;:::i;:::-;:39;;53528:79;;;::::0;-1:-1:-1;;;53528:79:0;;10440:2:1;53528:79:0::1;::::0;::::1;10422:21:1::0;10479:2;10459:18;;;10452:30;10518:29;10498:18;;;10491:57;10565:18;;53528:79:0::1;10238:351:1::0;53528:79:0::1;53639:6;;53626:9;:19;;53618:51;;;::::0;-1:-1:-1;;;53618:51:0;;10796:2:1;53618:51:0::1;::::0;::::1;10778:21:1::0;10835:2;10815:18;;;10808:30;10874:21;10854:18;;;10847:49;10913:18;;53618:51:0::1;10594:343:1::0;53618:51:0::1;53712:9;53701:8;;:20;;;;:::i;:::-;53688:9;:33;;53680:63;;;::::0;-1:-1:-1;;;53680:63:0;;11317:2:1;53680:63:0::1;::::0;::::1;11299:21:1::0;11356:2;11336:18;;;11329:30;11395:19;11375:18;;;11368:47;11432:18;;53680:63:0::1;11115:341:1::0;53680:63:0::1;53754:30;53764:8;53774:9;53754;:30::i;54364:121::-:0;47441:6;;-1:-1:-1;;;;;47441:6:0;41217:10;47588:23;47580:68;;;;-1:-1:-1;;;47580:68:0;;8699:2:1;47580:68:0;;;8681:21:1;;;8718:18;;;8711:30;8777:34;8757:18;;;8750:62;8829:18;;47580:68:0;8497:356:1;47580:68:0;54444:13:::1;:33:::0;54364:121::o;52939:297::-;47441:6;;-1:-1:-1;;;;;47441:6:0;41217:10;47588:23;47580:68;;;;-1:-1:-1;;;47580:68:0;;8699:2:1;47580:68:0;;;8681:21:1;;;8718:18;;;8711:30;8777:34;8757:18;;;8750:62;8829:18;;47580:68:0;8497:356:1;47580:68:0;53061:8:::1;;53048:9;53032:13;17058:12:::0;;16845:7;17042:13;:28;;16792:315;53032:13:::1;:25;;;;:::i;:::-;:37;;53024:77;;;::::0;-1:-1:-1;;;53024:77:0;;10440:2:1;53024:77:0::1;::::0;::::1;10422:21:1::0;10479:2;10459:18;;;10452:30;10518:29;10498:18;;;10491:57;10565:18;;53024:77:0::1;10238:351:1::0;53024:77:0::1;53149:10;;53136:9;53120:13;17058:12:::0;;16845:7;17042:13;:28;;16792:315;53120:13:::1;:25;;;;:::i;:::-;:39;;53112:79;;;::::0;-1:-1:-1;;;53112:79:0;;10440:2:1;53112:79:0::1;::::0;::::1;10422:21:1::0;10479:2;10459:18;;;10452:30;10518:29;10498:18;;;10491:57;10565:18;;53112:79:0::1;10238:351:1::0;53112:79:0::1;53202:26;53212:3;53218:9;53202;:26::i;22550:144::-:0;22614:7;22657:27;22676:7;22657:18;:27::i;51844:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54493:108::-;47441:6;;-1:-1:-1;;;;;47441:6:0;41217:10;47588:23;47580:68;;;;-1:-1:-1;;;47580:68:0;;8699:2:1;47580:68:0;;;8681:21:1;;;8718:18;;;8711:30;8777:34;8757:18;;;8750:62;8829:18;;47580:68:0;8497:356:1;47580:68:0;54566:10:::1;:27:::0;54493:108::o;18417:234::-;18481:7;18523:5;18533:1;18505:29;18501:70;;18543:28;;;;;;;;;;;;;;18501:70;-1:-1:-1;;;;;;18589:25:0;;;;;:18;:25;;;;;;13762:13;18589:54;;18417:234::o;48019:103::-;47441:6;;-1:-1:-1;;;;;47441:6:0;41217:10;47588:23;47580:68;;;;-1:-1:-1;;;47580:68:0;;8699:2:1;47580:68:0;;;8681:21:1;;;8718:18;;;8711:30;8777:34;8757:18;;;8750:62;8829:18;;47580:68:0;8497:356:1;47580:68:0;48084:30:::1;48111:1;48084:18;:30::i;:::-;48019:103::o:0;51872:28::-;;;;;;;:::i;53800:442::-;52427:9;52440:10;52427:23;52419:64;;;;-1:-1:-1;;;52419:64:0;;9060:2:1;52419:64:0;;;9042:21:1;9099:2;9079:18;;;9072:30;9138;9118:18;;;9111:58;9186:18;;52419:64:0;8858:352:1;52419:64:0;53917:15:::1;53904:9;:7;:9::i;:::-;:28;;;;;;;;:::i;:::-;;53896:69;;;::::0;-1:-1:-1;;;53896:69:0;;11663:2:1;53896:69:0::1;::::0;::::1;11645:21:1::0;11702:2;11682:18;;;11675:30;11741;11721:18;;;11714:58;11789:18;;53896:69:0::1;11461:352:1::0;53896:69:0::1;54013:10;;54000:9;53984:13;17058:12:::0;;16845:7;17042:13;:28;;16792:315;53984:13:::1;:25;;;;:::i;:::-;:39;;53976:77;;;::::0;-1:-1:-1;;;53976:77:0;;12020:2:1;53976:77:0::1;::::0;::::1;12002:21:1::0;12059:2;12039:18;;;12032:30;12098:27;12078:18;;;12071:55;12143:18;;53976:77:0::1;11818:349:1::0;53976:77:0::1;54085:6;;54072:9;:19;;54064:51;;;::::0;-1:-1:-1;;;54064:51:0;;10796:2:1;54064:51:0::1;::::0;::::1;10778:21:1::0;10835:2;10815:18;;;10808:30;10874:21;10854:18;;;10847:49;10913:18;;54064:51:0::1;10594:343:1::0;54064:51:0::1;54162:9;54147:12;;:24;;;;:::i;:::-;54134:9;:37;;54126:67;;;::::0;-1:-1:-1;;;54126:67:0;;11317:2:1;54126:67:0::1;::::0;::::1;11299:21:1::0;11356:2;11336:18;;;11329:30;11395:19;11375:18;;;11368:47;11432:18;;54126:67:0::1;11115:341:1::0;55101:106:0;47441:6;;-1:-1:-1;;;;;47441:6:0;41217:10;47588:23;47580:68;;;;-1:-1:-1;;;47580:68:0;;8699:2:1;47580:68:0;;;8681:21:1;;;8718:18;;;8711:30;8777:34;8757:18;;;8750:62;8829:18;;47580:68:0;8497:356:1;47580:68:0;55175:10:::1;:24:::0;55101:106::o;22930:104::-;22986:13;23019:7;23012:14;;;;;:::i;52511:420::-;52550:15;52599:13;;52581:15;:31;52578:82;;;-1:-1:-1;52636:12:0;;52511:420::o;52578:82::-;52692:13;;52673:15;:32;;:88;;;;-1:-1:-1;52735:13:0;;:26;;52751:10;52735:26;:::i;:::-;52717:15;:44;52673:88;52670:145;;;-1:-1:-1;52785:18:0;;52511:420::o;52670:145::-;52847:13;;:26;;52863:10;52847:26;:::i;:::-;52828:15;:45;52825:99;;-1:-1:-1;52897:15:0;;52511:420::o;52825:99::-;52511:420;:::o;54250:106::-;47441:6;;-1:-1:-1;;;;;47441:6:0;41217:10;47588:23;47580:68;;;;-1:-1:-1;;;47580:68:0;;8699:2:1;47580:68:0;;;8681:21:1;;;8718:18;;;8711:30;8777:34;8757:18;;;8750:62;8829:18;;47580:68:0;8497:356:1;47580:68:0;54327:7:::1;:21;54337:11:::0;54327:7;:21:::1;:::i;25105:308::-:0;41217:10;-1:-1:-1;;;;;25204:31:0;;;25200:61;;25244:17;;;;;;;;;;;;;;25200:61;41217:10;25274:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;25274:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;25274:60:0;;;;;;;;;;25350:55;;586:41:1;;;25274:49:0;;41217:10;25350:55;;559:18:1;25350:55:0;;;;;;;25105:308;;:::o;56024:228::-;56175:4;2509:42;3649:43;:47;3645:699;;3936:10;-1:-1:-1;;;;;3928:18:0;;;3924:85;;56197:47:::1;56220:4;56226:2;56230:7;56239:4;56197:22;:47::i;:::-;3987:7:::0;;3924:85;4069:67;;-1:-1:-1;;;4069:67:0;;4118:4;4069:67;;;8150:34:1;4125:10:0;8200:18:1;;;8193:43;2509:42:0;;4069:40;;8062:18:1;;4069:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4165:61:0;;-1:-1:-1;;;4165:61:0;;4214:4;4165:61;;;8150:34:1;-1:-1:-1;;;;;8220:15:1;;8200:18;;;8193:43;2509:42:0;;4165:40;;8062:18:1;;4165:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4023:310;;4287:30;;-1:-1:-1;;;4287:30:0;;4306:10;4287:30;;;1784:74:1;1757:18;;4287:30:0;1638:226:1;4023:310:0;56197:47:::1;56220:4;56226:2;56230:7;56239:4;56197:22;:47::i;:::-;56024:228:::0;;;;;:::o;54700:394::-;54771:13;54805:17;54813:8;54805:7;:17::i;:::-;54797:61;;;;-1:-1:-1;;;54797:61:0;;14757:2:1;54797:61:0;;;14739:21:1;14796:2;14776:18;;;14769:30;14835:33;14815:18;;;14808:61;14886:18;;54797:61:0;14555:355:1;54797:61:0;54872:10;;;;:18;;:10;:18;54869:218;;54938:7;54947:19;:8;:17;:19::i;:::-;54921:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54907:70;;54700:394;;;:::o;54869:218::-;55050:7;55059:14;55033:41;;;;;;;;;:::i;54869:218::-;54700:394;;;:::o;48277:201::-;47441:6;;-1:-1:-1;;;;;47441:6:0;41217:10;47588:23;47580:68;;;;-1:-1:-1;;;47580:68:0;;8699:2:1;47580:68:0;;;8681:21:1;;;8718:18;;;8711:30;8777:34;8757:18;;;8750:62;8829:18;;47580:68:0;8497:356:1;47580:68:0;-1:-1:-1;;;;;48366:22:0;::::1;48358:73;;;::::0;-1:-1:-1;;;48358:73:0;;16745:2:1;48358:73:0::1;::::0;::::1;16727:21:1::0;16784:2;16764:18;;;16757:30;16823:34;16803:18;;;16796:62;16894:8;16874:18;;;16867:36;16920:19;;48358:73:0::1;16543:402:1::0;48358:73:0::1;48442:28;48461:8;48442:18;:28::i;:::-;48277:201:::0;:::o;26863:273::-;26920:4;27010:13;;27000:7;:23;26957:152;;;;-1:-1:-1;;27061:26:0;;;;:17;:26;;;;;;14532:8;27061:43;:48;;26863:273::o;20065:1129::-;20132:7;20167;20269:13;;20262:4;:20;20258:869;;;20307:14;20324:23;;;:17;:23;;;;;;;14532:8;20413:23;;:28;;20409:699;;20932:113;20939:6;20949:1;20939:11;20932:113;;-1:-1:-1;;;21010:6:0;20992:25;;;;:17;:25;;;;;;20932:113;;;21078:6;20065:1129;-1:-1:-1;;;20065:1129:0:o;20409:699::-;20284:843;20258:869;21155:31;;;;;;;;;;;;;;25715:170;25849:28;25859:4;25865:2;25869:7;25849:9;:28::i;:::-;25715:170;;;:::o;25956:185::-;26094:39;26111:4;26117:2;26121:7;26094:39;;;;;;;;;;;;:16;:39::i;55215:153::-;55305:4;55329:31;55337:14;55342:8;55467:26;;18065:66:1;18052:2;18048:15;;;18044:88;55467:26:0;;;18032:101:1;55430:7:0;;18149:12:1;;55467:26:0;;;;;;;;;;;;55457:37;;;;;;55450:44;;55376:126;;;;55337:14;55353:6;;55329:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55329:7:0;;-1:-1:-1;;;55329:31:0:i;:::-;55322:38;55215:153;-1:-1:-1;;;;55215:153:0:o;27220:104::-;27289:27;27299:2;27303:8;27289:27;;;;;;;;;;;;:9;:27::i;48638:191::-;48731:6;;;-1:-1:-1;;;;;48748:17:0;;;-1:-1:-1;;48748:17:0;;;;;;;48781:40;;48731:6;;;48748:17;48731:6;;48781:40;;48712:16;;48781:40;48701:128;48638:191;:::o;26212:396::-;26379:28;26389:4;26395:2;26399:7;26379:9;:28::i;:::-;-1:-1:-1;;;;;26422:14:0;;;:19;26418:183;;26461:56;26492:4;26498:2;26502:7;26511:5;26461:30;:56::i;:::-;26456:145;;26545:40;;-1:-1:-1;;;26545:40:0;;;;;;;;;;;43654:723;43710:13;43931:5;43940:1;43931:10;43927:53;;-1:-1:-1;;43958:10:0;;;;;;;;;;;;;;;;;;43654:723::o;43927:53::-;44005:5;43990:12;44046:78;44053:9;;44046:78;;44079:8;;;;:::i;:::-;;-1:-1:-1;44102:10:0;;-1:-1:-1;44110:2:0;44102:10;;:::i;:::-;;;44046:78;;;44134:19;44166:6;44156:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44156:17:0;;44134:39;;44184:154;44191:10;;44184:154;;44218:11;44228:1;44218:11;;:::i;:::-;;-1:-1:-1;44287:10:0;44295:2;44287:5;:10;:::i;:::-;44274:24;;:2;:24;:::i;:::-;44261:39;;44244:6;44251;44244:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;44315:11:0;44324:2;44315:11;;:::i;:::-;;;44184:154;;32122:2654;32237:27;32267;32286:7;32267:18;:27::i;:::-;32237:57;;32352:4;-1:-1:-1;;;;;32311:45:0;32327:19;-1:-1:-1;;;;;32311:45:0;;32307:86;;32365:28;;;;;;;;;;;;;;32307:86;32406:23;32432:24;;;:15;:24;;;;;;-1:-1:-1;;;;;32432:24:0;;;;32406:23;32495:27;;41217:10;32495:27;;:87;;-1:-1:-1;;;;;;25605:25:0;;25581:4;25605:25;;;:18;:25;;;;;;;;41217:10;25605:35;;;;;;;;;;32539:43;32495:142;;;-1:-1:-1;;;;;;32599:38:0;;41217:10;32599:38;32495:142;32469:169;;32656:17;32651:66;;32682:35;;;;;;;;;;;;;;32651:66;32750:2;32757:1;32732:26;32728:62;;32767:23;;;;;;;;;;;;;;32728:62;32934:15;32916:39;32912:103;;32979:24;;;;:15;:24;;;;;32972:31;;-1:-1:-1;;32972:31:0;;;32912:103;-1:-1:-1;;;;;33382:24:0;;;;;;;:18;:24;;;;;;;;33380:26;;-1:-1:-1;;33380:26:0;;;33451:22;;;;;;;;33449:24;;-1:-1:-1;33449:24:0;;;33744:26;;;:17;:26;;;;;14810:8;33832:15;14416:3;33832:41;33790:84;;:128;;33744:174;;;34038:46;;:51;;34034:626;;34142:1;34132:11;;34110:19;34265:30;;;:17;:30;;;;;;:35;;34261:384;;34403:13;;34388:11;:28;34384:242;;34550:30;;;;:17;:30;;;;;:52;;;34384:242;34091:569;34034:626;34707:7;34703:2;-1:-1:-1;;;;;34688:27:0;34697:4;-1:-1:-1;;;;;34688:27:0;;;;;;;;;;;34726:42;32226:2550;;;32122:2654;;;:::o;55510:156::-;55589:4;55613:45;55632:6;55640:10;;55652:5;55613:18;:45::i;27697:2246::-;27820:20;27843:13;27889:2;27896:1;27871:26;27867:58;;27906:19;;;;;;;;;;;;;;27867:58;27940:8;27952:1;27940:13;27936:44;;27962:18;;;;;;;;;;;;;;27936:44;-1:-1:-1;;;;;28529:22:0;;;;;;:18;:22;;;;13899:2;28529:22;;;:70;;28567:31;28555:44;;28529:70;;;28842:31;;;:17;:31;;;;;28935:15;14416:3;28935:41;28893:84;;-1:-1:-1;29013:13:0;;14675:3;28998:56;28893:162;28842:213;;:31;;29136:23;;;;29180:14;:19;29176:635;;29220:313;29251:38;;29276:12;;-1:-1:-1;;;;;29251:38:0;;;29268:1;;29251:38;;29268:1;;29251:38;29317:69;29356:1;29360:2;29364:14;;;;;;29380:5;29317:30;:69::i;:::-;29312:174;;29422:40;;-1:-1:-1;;;29422:40:0;;;;;;;;;;;29312:174;29528:3;29513:12;:18;29220:313;;29614:12;29597:13;;:29;29593:43;;29628:8;;;29593:43;29176:635;;;29677:119;29708:40;;29733:14;;;;;-1:-1:-1;;;;;29708:40:0;;;29725:1;;29708:40;;29725:1;;29708:40;29791:3;29776:12;:18;29677:119;;29176:635;-1:-1:-1;29825:13:0;:28;;;29875:60;;29908:2;29912:12;29926:8;29875:60;:::i;38599:716::-;38783:88;;;;;38762:4;;-1:-1:-1;;;;;38783:45:0;;;;;:88;;41217:10;;38850:4;;38856:7;;38865:5;;38783:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38783:88:0;;;;;;;;-1:-1:-1;;38783:88:0;;;;;;;;;;;;:::i;:::-;;;38779:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39066:6;:13;39083:1;39066:18;39062:235;;39112:40;;-1:-1:-1;;;39112:40:0;;;;;;;;;;;39062:235;39255:6;39249:13;39240:6;39236:2;39232:15;39225:38;38779:529;38942:64;;38952:54;38942:64;;-1:-1:-1;38599:716:0;;;;;;:::o;50056:190::-;50181:4;50234;50205:25;50218:5;50225:4;50205:12;:25::i;:::-;:33;;50056:190;-1:-1:-1;;;;50056:190:0:o;50607:675::-;50690:7;50733:4;50690:7;50748:497;50772:5;:12;50768:1;:16;50748:497;;;50806:20;50829:5;50835:1;50829:8;;;;;;;;:::i;:::-;;;;;;;50806:31;;50872:12;50856;:28;50852:382;;51358:13;51408:15;;;51444:4;51437:15;;;51491:4;51475:21;;50984:57;;50852:382;;;51358:13;51408:15;;;51444:4;51437:15;;;51491:4;51475:21;;51161:57;;50852:382;-1:-1:-1;50786:3:0;;;;:::i;:::-;;;;50748:497;;;-1:-1:-1;51262:12:0;50607:675;-1:-1:-1;;;50607:675:0:o;14:177:1:-;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:250::-;723:1;733:113;747:6;744:1;741:13;733:113;;;823:11;;;817:18;804:11;;;797:39;769:2;762:10;733:113;;;-1:-1:-1;;880:1:1;862:16;;855:27;638:250::o;893:330::-;935:3;973:5;967:12;1000:6;995:3;988:19;1016:76;1085:6;1078:4;1073:3;1069:14;1062:4;1055:5;1051:16;1016:76;:::i;:::-;1137:2;1125:15;-1:-1:-1;;1121:88:1;1112:98;;;;1212:4;1108:109;;893:330;-1:-1:-1;;893:330:1:o;1228:220::-;1377:2;1366:9;1359:21;1340:4;1397:45;1438:2;1427:9;1423:18;1415:6;1397:45;:::i;1453:180::-;1512:6;1565:2;1553:9;1544:7;1540:23;1536:32;1533:52;;;1581:1;1578;1571:12;1533:52;-1:-1:-1;1604:23:1;;1453:180;-1:-1:-1;1453:180:1:o;1869:196::-;1937:20;;-1:-1:-1;;;;;1986:54:1;;1976:65;;1966:93;;2055:1;2052;2045:12;2070:254;2138:6;2146;2199:2;2187:9;2178:7;2174:23;2170:32;2167:52;;;2215:1;2212;2205:12;2167:52;2238:29;2257:9;2238:29;:::i;:::-;2228:39;2314:2;2299:18;;;;2286:32;;-1:-1:-1;;;2070:254:1:o;2511:328::-;2588:6;2596;2604;2657:2;2645:9;2636:7;2632:23;2628:32;2625:52;;;2673:1;2670;2663:12;2625:52;2696:29;2715:9;2696:29;:::i;:::-;2686:39;;2744:38;2778:2;2767:9;2763:18;2744:38;:::i;:::-;2734:48;;2829:2;2818:9;2814:18;2801:32;2791:42;;2511:328;;;;;:::o;3026:757::-;3130:6;3138;3146;3154;3207:2;3195:9;3186:7;3182:23;3178:32;3175:52;;;3223:1;3220;3213:12;3175:52;3246:29;3265:9;3246:29;:::i;:::-;3236:39;;3322:2;3311:9;3307:18;3294:32;3284:42;;3377:2;3366:9;3362:18;3349:32;3400:18;3441:2;3433:6;3430:14;3427:34;;;3457:1;3454;3447:12;3427:34;3495:6;3484:9;3480:22;3470:32;;3540:7;3533:4;3529:2;3525:13;3521:27;3511:55;;3562:1;3559;3552:12;3511:55;3602:2;3589:16;3628:2;3620:6;3617:14;3614:34;;;3644:1;3641;3634:12;3614:34;3697:7;3692:2;3682:6;3679:1;3675:14;3671:2;3667:23;3663:32;3660:45;3657:65;;;3718:1;3715;3708:12;3657:65;3026:757;;;;-1:-1:-1;;3749:2:1;3741:11;;-1:-1:-1;;;3026:757:1:o;3788:186::-;3847:6;3900:2;3888:9;3879:7;3875:23;3871:32;3868:52;;;3916:1;3913;3906:12;3868:52;3939:29;3958:9;3939:29;:::i;4164:184::-;-1:-1:-1;;;4213:1:1;4206:88;4313:4;4310:1;4303:15;4337:4;4334:1;4327:15;4353:394;4494:2;4479:18;;4527:1;4516:13;;4506:201;;-1:-1:-1;;;4560:1:1;4553:88;4664:4;4661:1;4654:15;4692:4;4689:1;4682:15;4506:201;4716:25;;;4353:394;:::o;4752:184::-;-1:-1:-1;;;4801:1:1;4794:88;4901:4;4898:1;4891:15;4925:4;4922:1;4915:15;4941:691;5006:5;5036:18;5077:2;5069:6;5066:14;5063:40;;;5083:18;;:::i;:::-;5217:2;5211:9;5283:2;5271:15;;-1:-1:-1;;5267:24:1;;;5293:2;5263:33;5259:42;5247:55;;;5317:18;;;5337:22;;;5314:46;5311:72;;;5363:18;;:::i;:::-;5403:10;5399:2;5392:22;5432:6;5423:15;;5462:6;5454;5447:22;5502:3;5493:6;5488:3;5484:16;5481:25;5478:45;;;5519:1;5516;5509:12;5478:45;5569:6;5564:3;5557:4;5549:6;5545:17;5532:44;5624:1;5617:4;5608:6;5600;5596:19;5592:30;5585:41;;;;4941:691;;;;;:::o;5637:451::-;5706:6;5759:2;5747:9;5738:7;5734:23;5730:32;5727:52;;;5775:1;5772;5765:12;5727:52;5815:9;5802:23;5848:18;5840:6;5837:30;5834:50;;;5880:1;5877;5870:12;5834:50;5903:22;;5956:4;5948:13;;5944:27;-1:-1:-1;5934:55:1;;5985:1;5982;5975:12;5934:55;6008:74;6074:7;6069:2;6056:16;6051:2;6047;6043:11;6008:74;:::i;6093:118::-;6179:5;6172:13;6165:21;6158:5;6155:32;6145:60;;6201:1;6198;6191:12;6216:315;6281:6;6289;6342:2;6330:9;6321:7;6317:23;6313:32;6310:52;;;6358:1;6355;6348:12;6310:52;6381:29;6400:9;6381:29;:::i;:::-;6371:39;;6460:2;6449:9;6445:18;6432:32;6473:28;6495:5;6473:28;:::i;:::-;6520:5;6510:15;;;6216:315;;;;;:::o;6536:667::-;6631:6;6639;6647;6655;6708:3;6696:9;6687:7;6683:23;6679:33;6676:53;;;6725:1;6722;6715:12;6676:53;6748:29;6767:9;6748:29;:::i;:::-;6738:39;;6796:38;6830:2;6819:9;6815:18;6796:38;:::i;:::-;6786:48;;6881:2;6870:9;6866:18;6853:32;6843:42;;6936:2;6925:9;6921:18;6908:32;6963:18;6955:6;6952:30;6949:50;;;6995:1;6992;6985:12;6949:50;7018:22;;7071:4;7063:13;;7059:27;-1:-1:-1;7049:55:1;;7100:1;7097;7090:12;7049:55;7123:74;7189:7;7184:2;7171:16;7166:2;7162;7158:11;7123:74;:::i;:::-;7113:84;;;6536:667;;;;;;;:::o;7208:260::-;7276:6;7284;7337:2;7325:9;7316:7;7312:23;7308:32;7305:52;;;7353:1;7350;7343:12;7305:52;7376:29;7395:9;7376:29;:::i;:::-;7366:39;;7424:38;7458:2;7447:9;7443:18;7424:38;:::i;:::-;7414:48;;7208:260;;;;;:::o;7473:437::-;7552:1;7548:12;;;;7595;;;7616:61;;7670:4;7662:6;7658:17;7648:27;;7616:61;7723:2;7715:6;7712:14;7692:18;7689:38;7686:218;;-1:-1:-1;;;7757:1:1;7750:88;7861:4;7858:1;7851:15;7889:4;7886:1;7879:15;7686:218;;7473:437;;;:::o;8247:245::-;8314:6;8367:2;8355:9;8346:7;8342:23;8338:32;8335:52;;;8383:1;8380;8373:12;8335:52;8415:9;8409:16;8434:28;8456:5;8434:28;:::i;9919:184::-;-1:-1:-1;;;9968:1:1;9961:88;10068:4;10065:1;10058:15;10092:4;10089:1;10082:15;10108:125;10173:9;;;10194:10;;;10191:36;;;10207:18;;:::i;10942:168::-;11015:9;;;11046;;11063:15;;;11057:22;;11043:37;11033:71;;11084:18;;:::i;12298:545::-;12400:2;12395:3;12392:11;12389:448;;;12436:1;12461:5;12457:2;12450:17;12506:4;12502:2;12492:19;12576:2;12564:10;12560:19;12557:1;12553:27;12547:4;12543:38;12612:4;12600:10;12597:20;12594:47;;;-1:-1:-1;12635:4:1;12594:47;12690:2;12685:3;12681:12;12678:1;12674:20;12668:4;12664:31;12654:41;;12745:82;12763:2;12756:5;12753:13;12745:82;;;12808:17;;;12789:1;12778:13;12745:82;;13079:1471;13205:3;13199:10;13232:18;13224:6;13221:30;13218:56;;;13254:18;;:::i;:::-;13283:97;13373:6;13333:38;13365:4;13359:11;13333:38;:::i;:::-;13327:4;13283:97;:::i;:::-;13435:4;;13499:2;13488:14;;13516:1;13511:782;;;;14337:1;14354:6;14351:89;;;-1:-1:-1;14406:19:1;;;14400:26;14351:89;-1:-1:-1;;12976:1:1;12972:11;;;12968:84;12964:89;12954:100;13060:1;13056:11;;;12951:117;14453:81;;13481:1063;;13511:782;12245:1;12238:14;;;12282:4;12269:18;;-1:-1:-1;;13547:79:1;;;13724:236;13738:7;13735:1;13732:14;13724:236;;;13827:19;;;13821:26;13806:42;;13919:27;;;;13887:1;13875:14;;;;13754:19;;13724:236;;;13728:3;13988:6;13979:7;13976:19;13973:261;;;14049:19;;;14043:26;-1:-1:-1;;14132:1:1;14128:14;;;14144:3;14124:24;14120:97;14116:102;14101:118;14086:134;;13973:261;-1:-1:-1;;;;;14280:1:1;14264:14;;;14260:22;14247:36;;-1:-1:-1;13079:1471:1:o;14915:780::-;14965:3;15006:5;15000:12;15035:36;15061:9;15035:36;:::i;:::-;15090:1;15107:18;;;15134:191;;;;15339:1;15334:355;;;;15100:589;;15134:191;-1:-1:-1;;15171:9:1;15167:82;15162:3;15155:95;15305:6;15298:14;15291:22;15283:6;15279:35;15274:3;15270:45;15263:52;;15134:191;;15334:355;15365:5;15362:1;15355:16;15394:4;15439:2;15436:1;15426:16;15464:1;15478:165;15492:6;15489:1;15486:13;15478:165;;;15570:14;;15557:11;;;15550:35;15613:16;;;;15507:10;;15478:165;;;15482:3;;;15672:6;15667:3;15663:16;15656:23;;15100:589;;;;;14915:780;;;;:::o;15700:556::-;15977:3;16005:38;16039:3;16031:6;16005:38;:::i;:::-;16072:6;16066:13;16088:65;16146:6;16142:2;16135:4;16127:6;16123:17;16088:65;:::i;:::-;16213:7;16175:15;;16199:22;;;16248:1;16237:13;;15700:556;-1:-1:-1;;;;15700:556:1:o;16261:277::-;16434:3;16459:73;16493:38;16527:3;16519:6;16493:38;:::i;:::-;16485:6;16459:73;:::i;16950:195::-;16989:3;-1:-1:-1;;17013:5:1;17010:77;17007:103;;17090:18;;:::i;:::-;-1:-1:-1;17137:1:1;17126:13;;16950:195::o;17150:184::-;-1:-1:-1;;;17199:1:1;17192:88;17299:4;17296:1;17289:15;17323:4;17320:1;17313:15;17339:120;17379:1;17405;17395:35;;17410:18;;:::i;:::-;-1:-1:-1;17444:9:1;;17339:120::o;17464:128::-;17531:9;;;17552:11;;;17549:37;;;17566:18;;:::i;17597:112::-;17629:1;17655;17645:35;;17660:18;;:::i;:::-;-1:-1:-1;17694:9:1;;17597:112::o;17714:184::-;-1:-1:-1;;;17763:1:1;17756:88;17863:4;17860:1;17853:15;17887:4;17884:1;17877:15;18172:512;18366:4;-1:-1:-1;;;;;18476:2:1;18468:6;18464:15;18453:9;18446:34;18528:2;18520:6;18516:15;18511:2;18500:9;18496:18;18489:43;;18568:6;18563:2;18552:9;18548:18;18541:34;18611:3;18606:2;18595:9;18591:18;18584:31;18632:46;18673:3;18662:9;18658:19;18650:6;18632:46;:::i;:::-;18624:54;18172:512;-1:-1:-1;;;;;;18172:512:1:o;18689:249::-;18758:6;18811:2;18799:9;18790:7;18786:23;18782:32;18779:52;;;18827:1;18824;18817:12;18779:52;18859:9;18853:16;18878:30;18902:5;18878:30;:::i

Swarm Source

ipfs://35bb126a4e55a7d92aba2c1bd37584d2ef73e72fa690d1dad8bc0c3b57534bea
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.