ETH Price: $3,476.51 (-1.18%)
Gas: 5 Gwei

Token

Nakapepes (NKPP)
 

Overview

Max Total Supply

10,000 NKPP

Holders

1,044

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*ㄏㄏㄏㄏㄏㄏ.eth
Balance
1 NKPP
0xA629b23BF24E4DBE1DfC912cF7E67C3C2921FeFc
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:
Nakapepes

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: lib/Constants.sol


pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

// File: IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

// File: OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

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

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

// File: Nakapepes.sol


pragma solidity ^0.8.13;





contract Nakapepes is ERC721A, DefaultOperatorFilterer, Ownable {
    uint256 MAX_SUPPLY = 10000;
    uint256 TOTAL_FREE = 2500;

    uint256 MAX_MINT_PER_TX = 10;
    uint256 MAX_MINT_PER_WALLET = 20;
    uint256 MAX_FREE = 2;

    uint256 Price = 0.004 ether;

    bool public Active;
    string public baseURI;


    mapping(address => uint) public amountMinted;



    constructor(string memory _baseUri) ERC721A("Nakapepes", "NKPP") 
    {baseURI = _baseUri; Active = false;}



    function Mint(uint256 quantity) external payable {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        //Mint must be active
        require(Active, "Sale is not active");


        //Max per tx and per wallet
        require(quantity <= MAX_MINT_PER_TX, "Exceeded the limit per tx");
        require(quantity + amountMinted[msg.sender] <= MAX_MINT_PER_WALLET, "Exceeded the max amount of mints");

        //Not exceeding supply
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        
        
        uint256 txPrice;
        if(totalSupply() <= 2500){
            txPrice = 0 * Price;

        }
        else if(amountMinted[msg.sender] == 0 && quantity == 1){
            txPrice = 0 * Price;
        }
        else if(amountMinted[msg.sender] < MAX_FREE){
            txPrice = Price * (quantity - (MAX_FREE - amountMinted[msg.sender]));
        }else{
            txPrice = Price * quantity;
        }
        require(msg.value >= txPrice, "Not enough ether sent");

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

    
  

    function changeAllParams(uint256 _maxFree, uint256 _mintPrice, uint256 _totalFree) external onlyOwner{
        MAX_FREE = _maxFree;
        Price = _mintPrice * 10**15;
        TOTAL_FREE = _totalFree;

    }


    function mintForteam(uint256 quantity) external payable onlyOwner {
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        _safeMint(msg.sender, quantity);
    }


    function toggleSaleState() public onlyOwner{
        if(Active){
            Active = false;
        }else{
            Active = true;
        }
    }




    function withdraw() external payable onlyOwner {

        address second = 0x6ff28304b04978c311790eD9FAFcf09A37ebD8B1;
        payable(second).transfer((address(this).balance * 10 / 100));

        address marketing = 0x28760129A48cDF92a57cFebE71dc3C9b71355bFe;
        payable(marketing).transfer((address(this).balance * 50 / 100));


        payable(owner()).transfer(address(this).balance);
    }


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

    function getMintRate() external view returns(uint256){
        return Price;
    }
    function getMaxFree() external view returns(uint256){
        return MAX_FREE;
    }
    

    function setMintRate(uint256 _mintRate) public onlyOwner {
        
        Price = _mintRate * 10**15;
    }
    function setMaxFree(uint256 _max) public onlyOwner {
        MAX_FREE = _max;
    }
    function setTotalFree(uint256 _total) public onlyOwner {
        TOTAL_FREE = _total;
    }
    function setBaseURI(string calldata _base) public onlyOwner {
        baseURI = _base;
    }





    /////////////////////////////
    // OPENSEA FILTER REGISTRY 
    /////////////////////////////

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","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":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","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":"_maxFree","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_totalFree","type":"uint256"}],"name":"changeAllParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintForteam","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"_base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_total","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526127106009556109c4600a55600a600b556014600c556002600d55660e35fa931a0000600e553480156200003757600080fd5b50604051620039f5380380620039f583398181016040528101906200005d91906200069c565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600981526020017f4e616b61706570657300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e4b5050000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f89291906200044f565b508060039080519060200190620001119291906200044f565b50620001226200037c60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200031f578015620001e5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001ab92919062000732565b600060405180830381600087803b158015620001c657600080fd5b505af1158015620001db573d6000803e3d6000fd5b505050506200031e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200029f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200026592919062000732565b600060405180830381600087803b1580156200028057600080fd5b505af115801562000295573d6000803e3d6000fd5b505050506200031d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002e891906200075f565b600060405180830381600087803b1580156200030357600080fd5b505af115801562000318573d6000803e3d6000fd5b505050505b5b5b505062000341620003356200038160201b60201c565b6200038960201b60201c565b8060109080519060200190620003599291906200044f565b506000600f60006101000a81548160ff02191690831515021790555050620007e0565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200045d90620007ab565b90600052602060002090601f016020900481019282620004815760008555620004cd565b82601f106200049c57805160ff1916838001178555620004cd565b82800160010185558215620004cd579182015b82811115620004cc578251825591602001919060010190620004af565b5b509050620004dc9190620004e0565b5090565b5b80821115620004fb576000816000905550600101620004e1565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000568826200051d565b810181811067ffffffffffffffff821117156200058a57620005896200052e565b5b80604052505050565b60006200059f620004ff565b9050620005ad82826200055d565b919050565b600067ffffffffffffffff821115620005d057620005cf6200052e565b5b620005db826200051d565b9050602081019050919050565b60005b8381101562000608578082015181840152602081019050620005eb565b8381111562000618576000848401525b50505050565b6000620006356200062f84620005b2565b62000593565b90508281526020810184848401111562000654576200065362000518565b5b62000661848285620005e8565b509392505050565b600082601f83011262000681576200068062000513565b5b8151620006938482602086016200061e565b91505092915050565b600060208284031215620006b557620006b462000509565b5b600082015167ffffffffffffffff811115620006d657620006d56200050e565b5b620006e48482850162000669565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200071a82620006ed565b9050919050565b6200072c816200070d565b82525050565b600060408201905062000749600083018562000721565b62000758602083018462000721565b9392505050565b600060208201905062000776600083018462000721565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007c457607f821691505b602082108103620007da57620007d96200077c565b5b50919050565b61320580620007f06000396000f3fe6080604052600436106101e35760003560e01c80636a69f55311610102578063b88d4fde11610095578063daaeec8611610064578063daaeec861461066f578063dbe2193f14610686578063e985e9c5146106af578063f2fde38b146106ec576101e3565b8063b88d4fde146105c2578063c87b56dd146105de578063c9b0a2a71461061b578063d755bf9914610646576101e3565b80638da5cb5b116100d15780638da5cb5b1461051857806395d89b411461054357806396f0bd611461056e578063a22cb46514610599576101e3565b80636a69f553146104705780636c0360eb1461049957806370a08231146104c4578063715018a614610501576101e3565b806323b872dd1161017a578063438a67e711610149578063438a67e7146103a457806355f804b3146103e1578063563aaf111461040a5780636352211e14610433576101e3565b806323b872dd146103375780633ccfd60b1461035357806341f434341461035d57806342842e0e14610388576101e3565b8063095ea7b3116101b6578063095ea7b3146102a957806315ef3061146102c557806318160ddd146102f05780631d9b9efc1461031b576101e3565b806301ffc9a7146101e857806306fdde03146102255780630788370314610250578063081812fc1461026c575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612463565b610715565b60405161021c91906124ab565b60405180910390f35b34801561023157600080fd5b5061023a6107a7565b604051610247919061255f565b60405180910390f35b61026a600480360381019061026591906125b7565b610839565b005b34801561027857600080fd5b50610293600480360381019061028e91906125b7565b610bb4565b6040516102a09190612625565b60405180910390f35b6102c360048036038101906102be919061266c565b610c33565b005b3480156102d157600080fd5b506102da610c4c565b6040516102e791906126bb565b60405180910390f35b3480156102fc57600080fd5b50610305610c56565b60405161031291906126bb565b60405180910390f35b610335600480360381019061033091906125b7565b610c6d565b005b610351600480360381019061034c91906126d6565b610cd9565b005b61035b610d28565b005b34801561036957600080fd5b50610372610e72565b60405161037f9190612788565b60405180910390f35b6103a2600480360381019061039d91906126d6565b610e84565b005b3480156103b057600080fd5b506103cb60048036038101906103c691906127a3565b610ed3565b6040516103d891906126bb565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190612835565b610eeb565b005b34801561041657600080fd5b50610431600480360381019061042c91906125b7565b610f09565b005b34801561043f57600080fd5b5061045a600480360381019061045591906125b7565b610f1b565b6040516104679190612625565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190612882565b610f2d565b005b3480156104a557600080fd5b506104ae610f61565b6040516104bb919061255f565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e691906127a3565b610fef565b6040516104f891906126bb565b60405180910390f35b34801561050d57600080fd5b506105166110a7565b005b34801561052457600080fd5b5061052d6110bb565b60405161053a9190612625565b60405180910390f35b34801561054f57600080fd5b506105586110e5565b604051610565919061255f565b60405180910390f35b34801561057a57600080fd5b50610583611177565b60405161059091906126bb565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612901565b611181565b005b6105dc60048036038101906105d79190612a71565b61119a565b005b3480156105ea57600080fd5b50610605600480360381019061060091906125b7565b6111eb565b604051610612919061255f565b60405180910390f35b34801561062757600080fd5b50610630611289565b60405161063d91906124ab565b60405180910390f35b34801561065257600080fd5b5061066d600480360381019061066891906125b7565b61129c565b005b34801561067b57600080fd5b506106846112ae565b005b34801561069257600080fd5b506106ad60048036038101906106a891906125b7565b611309565b005b3480156106bb57600080fd5b506106d660048036038101906106d19190612af4565b61132d565b6040516106e391906124ab565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e91906127a3565b6113c1565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107b690612b63565b80601f01602080910402602001604051908101604052809291908181526020018280546107e290612b63565b801561082f5780601f106108045761010080835404028352916020019161082f565b820191906000526020600020905b81548152906001019060200180831161081257829003601f168201915b5050505050905090565b600f60009054906101000a900460ff16610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f90612be0565b60405180910390fd5b600b548111156108cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c490612c4c565b60405180910390fd5b600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548261091b9190612c9b565b111561095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390612d3d565b60405180910390fd5b60095481610968610c56565b6109729190612c9b565b11156109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90612da9565b60405180910390fd5b60006109c46109c0610c56565b116109db57600e5460006109d49190612dc9565b9050610b0d565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015610a2a5750600182145b15610a4557600e546000610a3e9190612dc9565b9050610b0c565b600d54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610afa57601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54610adb9190612e23565b82610ae69190612e23565b600e54610af39190612dc9565b9050610b0b565b81600e54610b089190612dc9565b90505b5b5b80341015610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4790612ea3565b60405180910390fd5b610b5a3383611444565b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ba99190612c9b565b925050819055505050565b6000610bbf82611462565b610bf5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c3d816114c1565b610c4783836115be565b505050565b6000600d54905090565b6000610c60611702565b6001546000540303905090565b610c75611707565b60095481610c81610c56565b610c8b9190612c9b565b1115610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc390612da9565b60405180910390fd5b610cd63382611444565b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d1757610d16336114c1565b5b610d22848484611785565b50505050565b610d30611707565b6000736ff28304b04978c311790ed9fafcf09a37ebd8b190508073ffffffffffffffffffffffffffffffffffffffff166108fc6064600a47610d729190612dc9565b610d7c9190612ef2565b9081150290604051600060405180830381858888f19350505050158015610da7573d6000803e3d6000fd5b5060007328760129a48cdf92a57cfebe71dc3c9b71355bfe90508073ffffffffffffffffffffffffffffffffffffffff166108fc6064603247610dea9190612dc9565b610df49190612ef2565b9081150290604051600060405180830381858888f19350505050158015610e1f573d6000803e3d6000fd5b50610e286110bb565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e6d573d6000803e3d6000fd5b505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ec257610ec1336114c1565b5b610ecd848484611aa7565b50505050565b60116020528060005260406000206000915090505481565b610ef3611707565b818160109190610f04929190612354565b505050565b610f11611707565b80600a8190555050565b6000610f2682611ac7565b9050919050565b610f35611707565b82600d8190555066038d7ea4c6800082610f4f9190612dc9565b600e8190555080600a81905550505050565b60108054610f6e90612b63565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9a90612b63565b8015610fe75780601f10610fbc57610100808354040283529160200191610fe7565b820191906000526020600020905b815481529060010190602001808311610fca57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611056576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110af611707565b6110b96000611b93565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110f490612b63565b80601f016020809104026020016040519081016040528092919081815260200182805461112090612b63565b801561116d5780601f106111425761010080835404028352916020019161116d565b820191906000526020600020905b81548152906001019060200180831161115057829003601f168201915b5050505050905090565b6000600e54905090565b8161118b816114c1565b6111958383611c59565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111d8576111d7336114c1565b5b6111e485858585611d64565b5050505050565b60606111f682611462565b61122c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611236611dd7565b905060008151036112565760405180602001604052806000815250611281565b8061126084611e69565b604051602001611271929190612f5f565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b6112a4611707565b80600d8190555050565b6112b6611707565b600f60009054906101000a900460ff16156112eb576000600f60006101000a81548160ff021916908315150217905550611307565b6001600f60006101000a81548160ff0219169083151502179055505b565b611311611707565b66038d7ea4c68000816113249190612dc9565b600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113c9611707565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90612ff5565b60405180910390fd5b61144181611b93565b50565b61145e828260405180602001604052806000815250611eb9565b5050565b60008161146d611702565b1115801561147c575060005482105b80156114ba575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156115bb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611538929190613015565b602060405180830381865afa158015611555573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115799190613053565b6115ba57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016115b19190612625565b60405180910390fd5b5b50565b60006115c982610f1b565b90508073ffffffffffffffffffffffffffffffffffffffff166115ea611f56565b73ffffffffffffffffffffffffffffffffffffffff161461164d5761161681611611611f56565b61132d565b61164c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61170f611f5e565b73ffffffffffffffffffffffffffffffffffffffff1661172d6110bb565b73ffffffffffffffffffffffffffffffffffffffff1614611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a906130cc565b60405180910390fd5b565b600061179082611ac7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117f7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061180384611f66565b915091506118198187611814611f56565b611f8d565b6118655761182e86611829611f56565b61132d565b611864576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118cb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118d88686866001611fd1565b80156118e357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506119b18561198d888887611fd7565b7c020000000000000000000000000000000000000000000000000000000017611fff565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a375760006001850190506000600460008381526020019081526020016000205403611a35576000548114611a34578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a9f868686600161202a565b505050505050565b611ac28383836040518060200160405280600081525061119a565b505050565b60008082905080611ad6611702565b11611b5c57600054811015611b5b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b59575b60008103611b4f576004600083600190039350838152602001908152602001600020549050611b25565b8092505050611b8e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611c66611f56565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d13611f56565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d5891906124ab565b60405180910390a35050565b611d6f848484610cd9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dd157611d9a84848484612030565b611dd0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060108054611de690612b63565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1290612b63565b8015611e5f5780601f10611e3457610100808354040283529160200191611e5f565b820191906000526020600020905b815481529060010190602001808311611e4257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611ea457600184039350600a81066030018453600a8104905080611e82575b50828103602084039350808452505050919050565b611ec38383612180565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f5157600080549050600083820390505b611f036000868380600101945086612030565b611f39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ef0578160005414611f4e57600080fd5b50505b505050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fee86868461233b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612056611f56565b8786866040518563ffffffff1660e01b81526004016120789493929190613141565b6020604051808303816000875af19250505080156120b457506040513d601f19601f820116820180604052508101906120b191906131a2565b60015b61212d573d80600081146120e4576040519150601f19603f3d011682016040523d82523d6000602084013e6120e9565b606091505b506000815103612125576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600082036121c0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121cd6000848385611fd1565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612244836122356000866000611fd7565b61223e85612344565b17611fff565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122e557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122aa565b5060008203612320576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612336600084838561202a565b505050565b60009392505050565b60006001821460e11b9050919050565b82805461236090612b63565b90600052602060002090601f01602090048101928261238257600085556123c9565b82601f1061239b57803560ff19168380011785556123c9565b828001600101855582156123c9579182015b828111156123c85782358255916020019190600101906123ad565b5b5090506123d691906123da565b5090565b5b808211156123f35760008160009055506001016123db565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124408161240b565b811461244b57600080fd5b50565b60008135905061245d81612437565b92915050565b60006020828403121561247957612478612401565b5b60006124878482850161244e565b91505092915050565b60008115159050919050565b6124a581612490565b82525050565b60006020820190506124c0600083018461249c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125005780820151818401526020810190506124e5565b8381111561250f576000848401525b50505050565b6000601f19601f8301169050919050565b6000612531826124c6565b61253b81856124d1565b935061254b8185602086016124e2565b61255481612515565b840191505092915050565b600060208201905081810360008301526125798184612526565b905092915050565b6000819050919050565b61259481612581565b811461259f57600080fd5b50565b6000813590506125b18161258b565b92915050565b6000602082840312156125cd576125cc612401565b5b60006125db848285016125a2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061260f826125e4565b9050919050565b61261f81612604565b82525050565b600060208201905061263a6000830184612616565b92915050565b61264981612604565b811461265457600080fd5b50565b60008135905061266681612640565b92915050565b6000806040838503121561268357612682612401565b5b600061269185828601612657565b92505060206126a2858286016125a2565b9150509250929050565b6126b581612581565b82525050565b60006020820190506126d060008301846126ac565b92915050565b6000806000606084860312156126ef576126ee612401565b5b60006126fd86828701612657565b935050602061270e86828701612657565b925050604061271f868287016125a2565b9150509250925092565b6000819050919050565b600061274e612749612744846125e4565b612729565b6125e4565b9050919050565b600061276082612733565b9050919050565b600061277282612755565b9050919050565b61278281612767565b82525050565b600060208201905061279d6000830184612779565b92915050565b6000602082840312156127b9576127b8612401565b5b60006127c784828501612657565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126127f5576127f46127d0565b5b8235905067ffffffffffffffff811115612812576128116127d5565b5b60208301915083600182028301111561282e5761282d6127da565b5b9250929050565b6000806020838503121561284c5761284b612401565b5b600083013567ffffffffffffffff81111561286a57612869612406565b5b612876858286016127df565b92509250509250929050565b60008060006060848603121561289b5761289a612401565b5b60006128a9868287016125a2565b93505060206128ba868287016125a2565b92505060406128cb868287016125a2565b9150509250925092565b6128de81612490565b81146128e957600080fd5b50565b6000813590506128fb816128d5565b92915050565b6000806040838503121561291857612917612401565b5b600061292685828601612657565b9250506020612937858286016128ec565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61297e82612515565b810181811067ffffffffffffffff8211171561299d5761299c612946565b5b80604052505050565b60006129b06123f7565b90506129bc8282612975565b919050565b600067ffffffffffffffff8211156129dc576129db612946565b5b6129e582612515565b9050602081019050919050565b82818337600083830152505050565b6000612a14612a0f846129c1565b6129a6565b905082815260208101848484011115612a3057612a2f612941565b5b612a3b8482856129f2565b509392505050565b600082601f830112612a5857612a576127d0565b5b8135612a68848260208601612a01565b91505092915050565b60008060008060808587031215612a8b57612a8a612401565b5b6000612a9987828801612657565b9450506020612aaa87828801612657565b9350506040612abb878288016125a2565b925050606085013567ffffffffffffffff811115612adc57612adb612406565b5b612ae887828801612a43565b91505092959194509250565b60008060408385031215612b0b57612b0a612401565b5b6000612b1985828601612657565b9250506020612b2a85828601612657565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b7b57607f821691505b602082108103612b8e57612b8d612b34565b5b50919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000612bca6012836124d1565b9150612bd582612b94565b602082019050919050565b60006020820190508181036000830152612bf981612bbd565b9050919050565b7f457863656564656420746865206c696d69742070657220747800000000000000600082015250565b6000612c366019836124d1565b9150612c4182612c00565b602082019050919050565b60006020820190508181036000830152612c6581612c29565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ca682612581565b9150612cb183612581565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ce657612ce5612c6c565b5b828201905092915050565b7f457863656564656420746865206d617820616d6f756e74206f66206d696e7473600082015250565b6000612d276020836124d1565b9150612d3282612cf1565b602082019050919050565b60006020820190508181036000830152612d5681612d1a565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b6000612d936016836124d1565b9150612d9e82612d5d565b602082019050919050565b60006020820190508181036000830152612dc281612d86565b9050919050565b6000612dd482612581565b9150612ddf83612581565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e1857612e17612c6c565b5b828202905092915050565b6000612e2e82612581565b9150612e3983612581565b925082821015612e4c57612e4b612c6c565b5b828203905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6000612e8d6015836124d1565b9150612e9882612e57565b602082019050919050565b60006020820190508181036000830152612ebc81612e80565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612efd82612581565b9150612f0883612581565b925082612f1857612f17612ec3565b5b828204905092915050565b600081905092915050565b6000612f39826124c6565b612f438185612f23565b9350612f538185602086016124e2565b80840191505092915050565b6000612f6b8285612f2e565b9150612f778284612f2e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fdf6026836124d1565b9150612fea82612f83565b604082019050919050565b6000602082019050818103600083015261300e81612fd2565b9050919050565b600060408201905061302a6000830185612616565b6130376020830184612616565b9392505050565b60008151905061304d816128d5565b92915050565b60006020828403121561306957613068612401565b5b60006130778482850161303e565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130b66020836124d1565b91506130c182613080565b602082019050919050565b600060208201905081810360008301526130e5816130a9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613113826130ec565b61311d81856130f7565b935061312d8185602086016124e2565b61313681612515565b840191505092915050565b60006080820190506131566000830187612616565b6131636020830186612616565b61317060408301856126ac565b81810360608301526131828184613108565b905095945050505050565b60008151905061319c81612437565b92915050565b6000602082840312156131b8576131b7612401565b5b60006131c68482850161318d565b9150509291505056fea2646970667358221220a1dc372c205c59d0d6ee7c59a713e74ffe4bdbc2694d159d9fb7a8ed93f25eeb64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d66546f77724367465358347a4863366e786e4d586b4d6f454551425176594c6263614e3765576a5861744c362f00000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636a69f55311610102578063b88d4fde11610095578063daaeec8611610064578063daaeec861461066f578063dbe2193f14610686578063e985e9c5146106af578063f2fde38b146106ec576101e3565b8063b88d4fde146105c2578063c87b56dd146105de578063c9b0a2a71461061b578063d755bf9914610646576101e3565b80638da5cb5b116100d15780638da5cb5b1461051857806395d89b411461054357806396f0bd611461056e578063a22cb46514610599576101e3565b80636a69f553146104705780636c0360eb1461049957806370a08231146104c4578063715018a614610501576101e3565b806323b872dd1161017a578063438a67e711610149578063438a67e7146103a457806355f804b3146103e1578063563aaf111461040a5780636352211e14610433576101e3565b806323b872dd146103375780633ccfd60b1461035357806341f434341461035d57806342842e0e14610388576101e3565b8063095ea7b3116101b6578063095ea7b3146102a957806315ef3061146102c557806318160ddd146102f05780631d9b9efc1461031b576101e3565b806301ffc9a7146101e857806306fdde03146102255780630788370314610250578063081812fc1461026c575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612463565b610715565b60405161021c91906124ab565b60405180910390f35b34801561023157600080fd5b5061023a6107a7565b604051610247919061255f565b60405180910390f35b61026a600480360381019061026591906125b7565b610839565b005b34801561027857600080fd5b50610293600480360381019061028e91906125b7565b610bb4565b6040516102a09190612625565b60405180910390f35b6102c360048036038101906102be919061266c565b610c33565b005b3480156102d157600080fd5b506102da610c4c565b6040516102e791906126bb565b60405180910390f35b3480156102fc57600080fd5b50610305610c56565b60405161031291906126bb565b60405180910390f35b610335600480360381019061033091906125b7565b610c6d565b005b610351600480360381019061034c91906126d6565b610cd9565b005b61035b610d28565b005b34801561036957600080fd5b50610372610e72565b60405161037f9190612788565b60405180910390f35b6103a2600480360381019061039d91906126d6565b610e84565b005b3480156103b057600080fd5b506103cb60048036038101906103c691906127a3565b610ed3565b6040516103d891906126bb565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190612835565b610eeb565b005b34801561041657600080fd5b50610431600480360381019061042c91906125b7565b610f09565b005b34801561043f57600080fd5b5061045a600480360381019061045591906125b7565b610f1b565b6040516104679190612625565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190612882565b610f2d565b005b3480156104a557600080fd5b506104ae610f61565b6040516104bb919061255f565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e691906127a3565b610fef565b6040516104f891906126bb565b60405180910390f35b34801561050d57600080fd5b506105166110a7565b005b34801561052457600080fd5b5061052d6110bb565b60405161053a9190612625565b60405180910390f35b34801561054f57600080fd5b506105586110e5565b604051610565919061255f565b60405180910390f35b34801561057a57600080fd5b50610583611177565b60405161059091906126bb565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612901565b611181565b005b6105dc60048036038101906105d79190612a71565b61119a565b005b3480156105ea57600080fd5b50610605600480360381019061060091906125b7565b6111eb565b604051610612919061255f565b60405180910390f35b34801561062757600080fd5b50610630611289565b60405161063d91906124ab565b60405180910390f35b34801561065257600080fd5b5061066d600480360381019061066891906125b7565b61129c565b005b34801561067b57600080fd5b506106846112ae565b005b34801561069257600080fd5b506106ad60048036038101906106a891906125b7565b611309565b005b3480156106bb57600080fd5b506106d660048036038101906106d19190612af4565b61132d565b6040516106e391906124ab565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e91906127a3565b6113c1565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107b690612b63565b80601f01602080910402602001604051908101604052809291908181526020018280546107e290612b63565b801561082f5780601f106108045761010080835404028352916020019161082f565b820191906000526020600020905b81548152906001019060200180831161081257829003601f168201915b5050505050905090565b600f60009054906101000a900460ff16610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f90612be0565b60405180910390fd5b600b548111156108cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c490612c4c565b60405180910390fd5b600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548261091b9190612c9b565b111561095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390612d3d565b60405180910390fd5b60095481610968610c56565b6109729190612c9b565b11156109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90612da9565b60405180910390fd5b60006109c46109c0610c56565b116109db57600e5460006109d49190612dc9565b9050610b0d565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054148015610a2a5750600182145b15610a4557600e546000610a3e9190612dc9565b9050610b0c565b600d54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610afa57601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54610adb9190612e23565b82610ae69190612e23565b600e54610af39190612dc9565b9050610b0b565b81600e54610b089190612dc9565b90505b5b5b80341015610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4790612ea3565b60405180910390fd5b610b5a3383611444565b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ba99190612c9b565b925050819055505050565b6000610bbf82611462565b610bf5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c3d816114c1565b610c4783836115be565b505050565b6000600d54905090565b6000610c60611702565b6001546000540303905090565b610c75611707565b60095481610c81610c56565b610c8b9190612c9b565b1115610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc390612da9565b60405180910390fd5b610cd63382611444565b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d1757610d16336114c1565b5b610d22848484611785565b50505050565b610d30611707565b6000736ff28304b04978c311790ed9fafcf09a37ebd8b190508073ffffffffffffffffffffffffffffffffffffffff166108fc6064600a47610d729190612dc9565b610d7c9190612ef2565b9081150290604051600060405180830381858888f19350505050158015610da7573d6000803e3d6000fd5b5060007328760129a48cdf92a57cfebe71dc3c9b71355bfe90508073ffffffffffffffffffffffffffffffffffffffff166108fc6064603247610dea9190612dc9565b610df49190612ef2565b9081150290604051600060405180830381858888f19350505050158015610e1f573d6000803e3d6000fd5b50610e286110bb565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e6d573d6000803e3d6000fd5b505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ec257610ec1336114c1565b5b610ecd848484611aa7565b50505050565b60116020528060005260406000206000915090505481565b610ef3611707565b818160109190610f04929190612354565b505050565b610f11611707565b80600a8190555050565b6000610f2682611ac7565b9050919050565b610f35611707565b82600d8190555066038d7ea4c6800082610f4f9190612dc9565b600e8190555080600a81905550505050565b60108054610f6e90612b63565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9a90612b63565b8015610fe75780601f10610fbc57610100808354040283529160200191610fe7565b820191906000526020600020905b815481529060010190602001808311610fca57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611056576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110af611707565b6110b96000611b93565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110f490612b63565b80601f016020809104026020016040519081016040528092919081815260200182805461112090612b63565b801561116d5780601f106111425761010080835404028352916020019161116d565b820191906000526020600020905b81548152906001019060200180831161115057829003601f168201915b5050505050905090565b6000600e54905090565b8161118b816114c1565b6111958383611c59565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111d8576111d7336114c1565b5b6111e485858585611d64565b5050505050565b60606111f682611462565b61122c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611236611dd7565b905060008151036112565760405180602001604052806000815250611281565b8061126084611e69565b604051602001611271929190612f5f565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b6112a4611707565b80600d8190555050565b6112b6611707565b600f60009054906101000a900460ff16156112eb576000600f60006101000a81548160ff021916908315150217905550611307565b6001600f60006101000a81548160ff0219169083151502179055505b565b611311611707565b66038d7ea4c68000816113249190612dc9565b600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113c9611707565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90612ff5565b60405180910390fd5b61144181611b93565b50565b61145e828260405180602001604052806000815250611eb9565b5050565b60008161146d611702565b1115801561147c575060005482105b80156114ba575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156115bb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611538929190613015565b602060405180830381865afa158015611555573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115799190613053565b6115ba57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016115b19190612625565b60405180910390fd5b5b50565b60006115c982610f1b565b90508073ffffffffffffffffffffffffffffffffffffffff166115ea611f56565b73ffffffffffffffffffffffffffffffffffffffff161461164d5761161681611611611f56565b61132d565b61164c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61170f611f5e565b73ffffffffffffffffffffffffffffffffffffffff1661172d6110bb565b73ffffffffffffffffffffffffffffffffffffffff1614611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a906130cc565b60405180910390fd5b565b600061179082611ac7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117f7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061180384611f66565b915091506118198187611814611f56565b611f8d565b6118655761182e86611829611f56565b61132d565b611864576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118cb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118d88686866001611fd1565b80156118e357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506119b18561198d888887611fd7565b7c020000000000000000000000000000000000000000000000000000000017611fff565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a375760006001850190506000600460008381526020019081526020016000205403611a35576000548114611a34578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a9f868686600161202a565b505050505050565b611ac28383836040518060200160405280600081525061119a565b505050565b60008082905080611ad6611702565b11611b5c57600054811015611b5b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b59575b60008103611b4f576004600083600190039350838152602001908152602001600020549050611b25565b8092505050611b8e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611c66611f56565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d13611f56565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d5891906124ab565b60405180910390a35050565b611d6f848484610cd9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dd157611d9a84848484612030565b611dd0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060108054611de690612b63565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1290612b63565b8015611e5f5780601f10611e3457610100808354040283529160200191611e5f565b820191906000526020600020905b815481529060010190602001808311611e4257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611ea457600184039350600a81066030018453600a8104905080611e82575b50828103602084039350808452505050919050565b611ec38383612180565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f5157600080549050600083820390505b611f036000868380600101945086612030565b611f39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ef0578160005414611f4e57600080fd5b50505b505050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fee86868461233b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612056611f56565b8786866040518563ffffffff1660e01b81526004016120789493929190613141565b6020604051808303816000875af19250505080156120b457506040513d601f19601f820116820180604052508101906120b191906131a2565b60015b61212d573d80600081146120e4576040519150601f19603f3d011682016040523d82523d6000602084013e6120e9565b606091505b506000815103612125576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600082036121c0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121cd6000848385611fd1565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612244836122356000866000611fd7565b61223e85612344565b17611fff565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122e557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122aa565b5060008203612320576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612336600084838561202a565b505050565b60009392505050565b60006001821460e11b9050919050565b82805461236090612b63565b90600052602060002090601f01602090048101928261238257600085556123c9565b82601f1061239b57803560ff19168380011785556123c9565b828001600101855582156123c9579182015b828111156123c85782358255916020019190600101906123ad565b5b5090506123d691906123da565b5090565b5b808211156123f35760008160009055506001016123db565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124408161240b565b811461244b57600080fd5b50565b60008135905061245d81612437565b92915050565b60006020828403121561247957612478612401565b5b60006124878482850161244e565b91505092915050565b60008115159050919050565b6124a581612490565b82525050565b60006020820190506124c0600083018461249c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125005780820151818401526020810190506124e5565b8381111561250f576000848401525b50505050565b6000601f19601f8301169050919050565b6000612531826124c6565b61253b81856124d1565b935061254b8185602086016124e2565b61255481612515565b840191505092915050565b600060208201905081810360008301526125798184612526565b905092915050565b6000819050919050565b61259481612581565b811461259f57600080fd5b50565b6000813590506125b18161258b565b92915050565b6000602082840312156125cd576125cc612401565b5b60006125db848285016125a2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061260f826125e4565b9050919050565b61261f81612604565b82525050565b600060208201905061263a6000830184612616565b92915050565b61264981612604565b811461265457600080fd5b50565b60008135905061266681612640565b92915050565b6000806040838503121561268357612682612401565b5b600061269185828601612657565b92505060206126a2858286016125a2565b9150509250929050565b6126b581612581565b82525050565b60006020820190506126d060008301846126ac565b92915050565b6000806000606084860312156126ef576126ee612401565b5b60006126fd86828701612657565b935050602061270e86828701612657565b925050604061271f868287016125a2565b9150509250925092565b6000819050919050565b600061274e612749612744846125e4565b612729565b6125e4565b9050919050565b600061276082612733565b9050919050565b600061277282612755565b9050919050565b61278281612767565b82525050565b600060208201905061279d6000830184612779565b92915050565b6000602082840312156127b9576127b8612401565b5b60006127c784828501612657565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126127f5576127f46127d0565b5b8235905067ffffffffffffffff811115612812576128116127d5565b5b60208301915083600182028301111561282e5761282d6127da565b5b9250929050565b6000806020838503121561284c5761284b612401565b5b600083013567ffffffffffffffff81111561286a57612869612406565b5b612876858286016127df565b92509250509250929050565b60008060006060848603121561289b5761289a612401565b5b60006128a9868287016125a2565b93505060206128ba868287016125a2565b92505060406128cb868287016125a2565b9150509250925092565b6128de81612490565b81146128e957600080fd5b50565b6000813590506128fb816128d5565b92915050565b6000806040838503121561291857612917612401565b5b600061292685828601612657565b9250506020612937858286016128ec565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61297e82612515565b810181811067ffffffffffffffff8211171561299d5761299c612946565b5b80604052505050565b60006129b06123f7565b90506129bc8282612975565b919050565b600067ffffffffffffffff8211156129dc576129db612946565b5b6129e582612515565b9050602081019050919050565b82818337600083830152505050565b6000612a14612a0f846129c1565b6129a6565b905082815260208101848484011115612a3057612a2f612941565b5b612a3b8482856129f2565b509392505050565b600082601f830112612a5857612a576127d0565b5b8135612a68848260208601612a01565b91505092915050565b60008060008060808587031215612a8b57612a8a612401565b5b6000612a9987828801612657565b9450506020612aaa87828801612657565b9350506040612abb878288016125a2565b925050606085013567ffffffffffffffff811115612adc57612adb612406565b5b612ae887828801612a43565b91505092959194509250565b60008060408385031215612b0b57612b0a612401565b5b6000612b1985828601612657565b9250506020612b2a85828601612657565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b7b57607f821691505b602082108103612b8e57612b8d612b34565b5b50919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000612bca6012836124d1565b9150612bd582612b94565b602082019050919050565b60006020820190508181036000830152612bf981612bbd565b9050919050565b7f457863656564656420746865206c696d69742070657220747800000000000000600082015250565b6000612c366019836124d1565b9150612c4182612c00565b602082019050919050565b60006020820190508181036000830152612c6581612c29565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ca682612581565b9150612cb183612581565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ce657612ce5612c6c565b5b828201905092915050565b7f457863656564656420746865206d617820616d6f756e74206f66206d696e7473600082015250565b6000612d276020836124d1565b9150612d3282612cf1565b602082019050919050565b60006020820190508181036000830152612d5681612d1a565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b6000612d936016836124d1565b9150612d9e82612d5d565b602082019050919050565b60006020820190508181036000830152612dc281612d86565b9050919050565b6000612dd482612581565b9150612ddf83612581565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e1857612e17612c6c565b5b828202905092915050565b6000612e2e82612581565b9150612e3983612581565b925082821015612e4c57612e4b612c6c565b5b828203905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6000612e8d6015836124d1565b9150612e9882612e57565b602082019050919050565b60006020820190508181036000830152612ebc81612e80565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612efd82612581565b9150612f0883612581565b925082612f1857612f17612ec3565b5b828204905092915050565b600081905092915050565b6000612f39826124c6565b612f438185612f23565b9350612f538185602086016124e2565b80840191505092915050565b6000612f6b8285612f2e565b9150612f778284612f2e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fdf6026836124d1565b9150612fea82612f83565b604082019050919050565b6000602082019050818103600083015261300e81612fd2565b9050919050565b600060408201905061302a6000830185612616565b6130376020830184612616565b9392505050565b60008151905061304d816128d5565b92915050565b60006020828403121561306957613068612401565b5b60006130778482850161303e565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130b66020836124d1565b91506130c182613080565b602082019050919050565b600060208201905081810360008301526130e5816130a9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613113826130ec565b61311d81856130f7565b935061312d8185602086016124e2565b61313681612515565b840191505092915050565b60006080820190506131566000830187612616565b6131636020830186612616565b61317060408301856126ac565b81810360608301526131828184613108565b905095945050505050565b60008151905061319c81612437565b92915050565b6000602082840312156131b8576131b7612401565b5b60006131c68482850161318d565b9150509291505056fea2646970667358221220a1dc372c205c59d0d6ee7c59a713e74ffe4bdbc2694d159d9fb7a8ed93f25eeb64736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d66546f77724367465358347a4863366e786e4d586b4d6f454551425176594c6263614e3765576a5861744c362f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseUri (string): ipfs://QmfTowrCgFSX4zHc6nxnMXkMoEEQBQvYLbcaN7eWjXatL6/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d66546f77724367465358347a4863366e786e4d586b4d6f
Arg [3] : 454551425176594c6263614e3765576a5861744c362f00000000000000000000


Deployed Bytecode Sourcemap

75658:4531:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18437:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19339:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76169:1185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25830:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79402:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78595:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15090:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77597:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79575:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77977:410;;;:::i;:::-;;72270:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79754:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75992:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79003:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78904:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20732:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77374:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75960:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16274:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63805:103;;;;;;;;;;;;;:::i;:::-;;63157:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19515:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78505:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79218:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79941:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19725:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75935:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78813:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77807:156;;;;;;;;;;;;;:::i;:::-;;78695:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26779:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64063:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18437:639;18522:4;18861:10;18846:25;;:11;:25;;;;:102;;;;18938:10;18923:25;;:11;:25;;;;18846:102;:179;;;;19015:10;19000:25;;:11;:25;;;;18846:179;18826:199;;18437:639;;;:::o;19339:100::-;19393:13;19426:5;19419:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19339:100;:::o;76169:1185::-;76348:6;;;;;;;;;;;76340:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;76449:15;;76437:8;:27;;76429:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;76552:19;;76524:12;:24;76537:10;76524:24;;;;;;;;;;;;;;;;76513:8;:35;;;;:::i;:::-;:58;;76505:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;76689:10;;76677:8;76661:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;76653:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;76757:15;76803:4;76786:13;:11;:13::i;:::-;:21;76783:390;;76837:5;;76833:1;:9;;;;:::i;:::-;76823:19;;76783:390;;;76902:1;76874:12;:24;76887:10;76874:24;;;;;;;;;;;;;;;;:29;:46;;;;;76919:1;76907:8;:13;76874:46;76871:302;;;76950:5;;76946:1;:9;;;;:::i;:::-;76936:19;;76871:302;;;77012:8;;76985:12;:24;76998:10;76985:24;;;;;;;;;;;;;;;;:35;76982:191;;;77078:12;:24;77091:10;77078:24;;;;;;;;;;;;;;;;77067:8;;:35;;;;:::i;:::-;77055:8;:48;;;;:::i;:::-;77046:5;;:58;;;;:::i;:::-;77036:68;;76982:191;;;77153:8;77145:5;;:16;;;;:::i;:::-;77135:26;;76982:191;76871:302;76783:390;77204:7;77191:9;:20;;77183:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;77250:31;77260:10;77272:8;77250:9;:31::i;:::-;77320:8;77292:12;:24;77305:10;77292:24;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;76218:1136;76169:1185;:::o;25830:218::-;25906:7;25931:16;25939:7;25931;:16::i;:::-;25926:64;;25956:34;;;;;;;;;;;;;;25926:64;26010:15;:24;26026:7;26010:24;;;;;;;;;;;:30;;;;;;;;;;;;26003:37;;25830:218;;;:::o;79402:165::-;79506:8;74052:30;74073:8;74052:20;:30::i;:::-;79527:32:::1;79541:8;79551:7;79527:13;:32::i;:::-;79402:165:::0;;;:::o;78595:86::-;78639:7;78665:8;;78658:15;;78595:86;:::o;15090:323::-;15151:7;15379:15;:13;:15::i;:::-;15364:12;;15348:13;;:28;:46;15341:53;;15090:323;:::o;77597:200::-;63043:13;:11;:13::i;:::-;77710:10:::1;;77698:8;77682:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;77674:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;77758:31;77768:10;77780:8;77758:9;:31::i;:::-;77597:200:::0;:::o;79575:171::-;79684:4;73786:10;73778:18;;:4;:18;;;73774:83;;73813:32;73834:10;73813:20;:32::i;:::-;73774:83;79701:37:::1;79720:4;79726:2;79730:7;79701:18;:37::i;:::-;79575:171:::0;;;;:::o;77977:410::-;63043:13;:11;:13::i;:::-;78037:14:::1;78054:42;78037:59;;78115:6;78107:24;;:60;78162:3;78157:2;78133:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;78107:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;78180:17;78200:42;78180:62;;78261:9;78253:27;;:63;78311:3;78306:2;78282:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;78253:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;78339:7;:5;:7::i;:::-;78331:25;;:48;78357:21;78331:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;78024:363;;77977:410::o:0;72270:143::-;64744:42;72270:143;:::o;79754:179::-;79867:4;73786:10;73778:18;;:4;:18;;;73774:83;;73813:32;73834:10;73813:20;:32::i;:::-;73774:83;79884:41:::1;79907:4;79913:2;79917:7;79884:22;:41::i;:::-;79754:179:::0;;;;:::o;75992:44::-;;;;;;;;;;;;;;;;;:::o;79003:94::-;63043:13;:11;:13::i;:::-;79084:5:::1;;79074:7;:15;;;;;;;:::i;:::-;;79003:94:::0;;:::o;78904:93::-;63043:13;:11;:13::i;:::-;78983:6:::1;78970:10;:19;;;;78904:93:::0;:::o;20732:152::-;20804:7;20847:27;20866:7;20847:18;:27::i;:::-;20824:52;;20732:152;;;:::o;77374:213::-;63043:13;:11;:13::i;:::-;77497:8:::1;77486;:19;;;;77537:6;77524:10;:19;;;;:::i;:::-;77516:5;:27;;;;77567:10;77554;:23;;;;77374:213:::0;;;:::o;75960:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16274:233::-;16346:7;16387:1;16370:19;;:5;:19;;;16366:60;;16398:28;;;;;;;;;;;;;;16366:60;10433:13;16444:18;:25;16463:5;16444:25;;;;;;;;;;;;;;;;:55;16437:62;;16274:233;;;:::o;63805:103::-;63043:13;:11;:13::i;:::-;63870:30:::1;63897:1;63870:18;:30::i;:::-;63805:103::o:0;63157:87::-;63203:7;63230:6;;;;;;;;;;;63223:13;;63157:87;:::o;19515:104::-;19571:13;19604:7;19597:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19515:104;:::o;78505:84::-;78550:7;78576:5;;78569:12;;78505:84;:::o;79218:176::-;79322:8;74052:30;74073:8;74052:20;:30::i;:::-;79343:43:::1;79367:8;79377;79343:23;:43::i;:::-;79218:176:::0;;;:::o;79941:245::-;80109:4;73786:10;73778:18;;:4;:18;;;73774:83;;73813:32;73834:10;73813:20;:32::i;:::-;73774:83;80131:47:::1;80154:4;80160:2;80164:7;80173:4;80131:22;:47::i;:::-;79941:245:::0;;;;;:::o;19725:318::-;19798:13;19829:16;19837:7;19829;:16::i;:::-;19824:59;;19854:29;;;;;;;;;;;;;;19824:59;19896:21;19920:10;:8;:10::i;:::-;19896:34;;19973:1;19954:7;19948:21;:26;:87;;;;;;;;;;;;;;;;;20001:7;20010:18;20020:7;20010:9;:18::i;:::-;19984:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19948:87;19941:94;;;19725:318;;;:::o;75935:18::-;;;;;;;;;;;;;:::o;78813:85::-;63043:13;:11;:13::i;:::-;78886:4:::1;78875:8;:15;;;;78813:85:::0;:::o;77807:156::-;63043:13;:11;:13::i;:::-;77864:6:::1;;;;;;;;;;;77861:95;;;77895:5;77886:6;;:14;;;;;;;;;;;;;;;;;;77861:95;;;77940:4;77931:6;;:13;;;;;;;;;;;;;;;;;;77861:95;77807:156::o:0;78695:112::-;63043:13;:11;:13::i;:::-;78793:6:::1;78781:9;:18;;;;:::i;:::-;78773:5;:26;;;;78695:112:::0;:::o;26779:164::-;26876:4;26900:18;:25;26919:5;26900:25;;;;;;;;;;;;;;;:35;26926:8;26900:35;;;;;;;;;;;;;;;;;;;;;;;;;26893:42;;26779:164;;;;:::o;64063:201::-;63043:13;:11;:13::i;:::-;64172:1:::1;64152:22;;:8;:22;;::::0;64144:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;64228:28;64247:8;64228:18;:28::i;:::-;64063:201:::0;:::o;43341:112::-;43418:27;43428:2;43432:8;43418:27;;;;;;;;;;;;:9;:27::i;:::-;43341:112;;:::o;27201:282::-;27266:4;27322:7;27303:15;:13;:15::i;:::-;:26;;:66;;;;;27356:13;;27346:7;:23;27303:66;:153;;;;;27455:1;11209:8;27407:17;:26;27425:7;27407:26;;;;;;;;;;;;:44;:49;27303:153;27283:173;;27201:282;;;:::o;74195:647::-;74434:1;64744:42;74386:45;;;:49;74382:453;;;64744:42;74685;;;74736:4;74743:8;74685:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;74680:144;;74799:8;74780:28;;;;;;;;;;;:::i;:::-;;;;;;;;74680:144;74382:453;74195:647;:::o;25263:408::-;25352:13;25368:16;25376:7;25368;:16::i;:::-;25352:32;;25424:5;25401:28;;:19;:17;:19::i;:::-;:28;;;25397:175;;25449:44;25466:5;25473:19;:17;:19::i;:::-;25449:16;:44::i;:::-;25444:128;;25521:35;;;;;;;;;;;;;;25444:128;25397:175;25617:2;25584:15;:24;25600:7;25584:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25655:7;25651:2;25635:28;;25644:5;25635:28;;;;;;;;;;;;25341:330;25263:408;;:::o;14606:92::-;14662:7;14606:92;:::o;63322:132::-;63397:12;:10;:12::i;:::-;63386:23;;:7;:5;:7::i;:::-;:23;;;63378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63322:132::o;29469:2825::-;29611:27;29641;29660:7;29641:18;:27::i;:::-;29611:57;;29726:4;29685:45;;29701:19;29685:45;;;29681:86;;29739:28;;;;;;;;;;;;;;29681:86;29781:27;29810:23;29837:35;29864:7;29837:26;:35::i;:::-;29780:92;;;;29972:68;29997:15;30014:4;30020:19;:17;:19::i;:::-;29972:24;:68::i;:::-;29967:180;;30060:43;30077:4;30083:19;:17;:19::i;:::-;30060:16;:43::i;:::-;30055:92;;30112:35;;;;;;;;;;;;;;30055:92;29967:180;30178:1;30164:16;;:2;:16;;;30160:52;;30189:23;;;;;;;;;;;;;;30160:52;30225:43;30247:4;30253:2;30257:7;30266:1;30225:21;:43::i;:::-;30361:15;30358:160;;;30501:1;30480:19;30473:30;30358:160;30898:18;:24;30917:4;30898:24;;;;;;;;;;;;;;;;30896:26;;;;;;;;;;;;30967:18;:22;30986:2;30967:22;;;;;;;;;;;;;;;;30965:24;;;;;;;;;;;31289:146;31326:2;31375:45;31390:4;31396:2;31400:19;31375:14;:45::i;:::-;11489:8;31347:73;31289:18;:146::i;:::-;31260:17;:26;31278:7;31260:26;;;;;;;;;;;:175;;;;31606:1;11489:8;31555:19;:47;:52;31551:627;;31628:19;31660:1;31650:7;:11;31628:33;;31817:1;31783:17;:30;31801:11;31783:30;;;;;;;;;;;;:35;31779:384;;31921:13;;31906:11;:28;31902:242;;32101:19;32068:17;:30;32086:11;32068:30;;;;;;;;;;;:52;;;;31902:242;31779:384;31609:569;31551:627;32225:7;32221:2;32206:27;;32215:4;32206:27;;;;;;;;;;;;32244:42;32265:4;32271:2;32275:7;32284:1;32244:20;:42::i;:::-;29600:2694;;;29469:2825;;;:::o;32390:193::-;32536:39;32553:4;32559:2;32563:7;32536:39;;;;;;;;;;;;:16;:39::i;:::-;32390:193;;;:::o;21887:1275::-;21954:7;21974:12;21989:7;21974:22;;22057:4;22038:15;:13;:15::i;:::-;:23;22034:1061;;22091:13;;22084:4;:20;22080:1015;;;22129:14;22146:17;:23;22164:4;22146:23;;;;;;;;;;;;22129:40;;22263:1;11209:8;22235:6;:24;:29;22231:845;;22900:113;22917:1;22907:6;:11;22900:113;;22960:17;:25;22978:6;;;;;;;22960:25;;;;;;;;;;;;22951:34;;22900:113;;;23046:6;23039:13;;;;;;22231:845;22106:989;22080:1015;22034:1061;23123:31;;;;;;;;;;;;;;21887:1275;;;;:::o;64424:191::-;64498:16;64517:6;;;;;;;;;;;64498:25;;64543:8;64534:6;;:17;;;;;;;;;;;;;;;;;;64598:8;64567:40;;64588:8;64567:40;;;;;;;;;;;;64487:128;64424:191;:::o;26388:234::-;26535:8;26483:18;:39;26502:19;:17;:19::i;:::-;26483:39;;;;;;;;;;;;;;;:49;26523:8;26483:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26595:8;26559:55;;26574:19;:17;:19::i;:::-;26559:55;;;26605:8;26559:55;;;;;;:::i;:::-;;;;;;;;26388:234;;:::o;33181:407::-;33356:31;33369:4;33375:2;33379:7;33356:12;:31::i;:::-;33420:1;33402:2;:14;;;:19;33398:183;;33441:56;33472:4;33478:2;33482:7;33491:5;33441:30;:56::i;:::-;33436:145;;33525:40;;;;;;;;;;;;;;33436:145;33398:183;33181:407;;;;:::o;78397:100::-;78449:13;78482:7;78475:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78397:100;:::o;49716:1745::-;49781:17;50215:4;50208;50202:11;50198:22;50307:1;50301:4;50294:15;50382:4;50379:1;50375:12;50368:19;;50464:1;50459:3;50452:14;50568:3;50807:5;50789:428;50815:1;50789:428;;;50855:1;50850:3;50846:11;50839:18;;51026:2;51020:4;51016:13;51012:2;51008:22;51003:3;50995:36;51120:2;51114:4;51110:13;51102:21;;51187:4;50789:428;51177:25;50789:428;50793:21;51256:3;51251;51247:13;51371:4;51366:3;51362:14;51355:21;;51436:6;51431:3;51424:19;49820:1634;;;49716:1745;;;:::o;42568:689::-;42699:19;42705:2;42709:8;42699:5;:19::i;:::-;42778:1;42760:2;:14;;;:19;42756:483;;42800:11;42814:13;;42800:27;;42846:13;42868:8;42862:3;:14;42846:30;;42895:233;42926:62;42965:1;42969:2;42973:7;;;;;;42982:5;42926:30;:62::i;:::-;42921:167;;43024:40;;;;;;;;;;;;;;42921:167;43123:3;43115:5;:11;42895:233;;43210:3;43193:13;;:20;43189:34;;43215:8;;;43189:34;42781:458;;42756:483;42568:689;;;:::o;49509:105::-;49569:7;49596:10;49589:17;;49509:105;:::o;61708:98::-;61761:7;61788:10;61781:17;;61708:98;:::o;28364:485::-;28466:27;28495:23;28536:38;28577:15;:24;28593:7;28577:24;;;;;;;;;;;28536:65;;28754:18;28731:41;;28811:19;28805:26;28786:45;;28716:126;28364:485;;;:::o;27592:659::-;27741:11;27906:16;27899:5;27895:28;27886:37;;28066:16;28055:9;28051:32;28038:45;;28216:15;28205:9;28202:30;28194:5;28183:9;28180:20;28177:56;28167:66;;27592:659;;;;;:::o;34250:159::-;;;;;:::o;48818:311::-;48953:7;48973:16;11613:3;48999:19;:41;;48973:68;;11613:3;49067:31;49078:4;49084:2;49088:9;49067:10;:31::i;:::-;49059:40;;:62;;49052:69;;;48818:311;;;;;:::o;23710:450::-;23790:14;23958:16;23951:5;23947:28;23938:37;;24135:5;24121:11;24096:23;24092:41;24089:52;24082:5;24079:63;24069:73;;23710:450;;;;:::o;35074:158::-;;;;;:::o;35672:716::-;35835:4;35881:2;35856:45;;;35902:19;:17;:19::i;:::-;35923:4;35929:7;35938:5;35856:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35852:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36156:1;36139:6;:13;:18;36135:235;;36185:40;;;;;;;;;;;;;;36135:235;36328:6;36322:13;36313:6;36309:2;36305:15;36298:38;35852:529;36025:54;;;36015:64;;;:6;:64;;;;36008:71;;;35672:716;;;;;;:::o;36850:2966::-;36923:20;36946:13;;36923:36;;36986:1;36974:8;:13;36970:44;;36996:18;;;;;;;;;;;;;;36970:44;37027:61;37057:1;37061:2;37065:12;37079:8;37027:21;:61::i;:::-;37571:1;10571:2;37541:1;:26;;37540:32;37528:8;:45;37502:18;:22;37521:2;37502:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37850:139;37887:2;37941:33;37964:1;37968:2;37972:1;37941:14;:33::i;:::-;37908:30;37929:8;37908:20;:30::i;:::-;:66;37850:18;:139::i;:::-;37816:17;:31;37834:12;37816:31;;;;;;;;;;;:173;;;;38006:16;38037:11;38066:8;38051:12;:23;38037:37;;38587:16;38583:2;38579:25;38567:37;;38959:12;38919:8;38878:1;38816:25;38757:1;38696;38669:335;39330:1;39316:12;39312:20;39270:346;39371:3;39362:7;39359:16;39270:346;;39589:7;39579:8;39576:1;39549:25;39546:1;39543;39538:59;39424:1;39415:7;39411:15;39400:26;;39270:346;;;39274:77;39661:1;39649:8;:13;39645:45;;39671:19;;;;;;;;;;;;;;39645:45;39723:3;39707:13;:19;;;;37276:2462;;39748:60;39777:1;39781:2;39785:12;39799:8;39748:20;:60::i;:::-;36912:2904;36850:2966;;:::o;48519:147::-;48656:6;48519:147;;;;;:::o;24262:324::-;24332:14;24565:1;24555:8;24552:15;24526:24;24522:46;24512:56;;24262:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:60::-;5943:3;5964:5;5957:12;;5915:60;;;:::o;5981:142::-;6031:9;6064:53;6082:34;6091:24;6109:5;6091:24;:::i;:::-;6082:34;:::i;:::-;6064:53;:::i;:::-;6051:66;;5981:142;;;:::o;6129:126::-;6179:9;6212:37;6243:5;6212:37;:::i;:::-;6199:50;;6129:126;;;:::o;6261:158::-;6343:9;6376:37;6407:5;6376:37;:::i;:::-;6363:50;;6261:158;;;:::o;6425:195::-;6544:69;6607:5;6544:69;:::i;:::-;6539:3;6532:82;6425:195;;:::o;6626:286::-;6751:4;6789:2;6778:9;6774:18;6766:26;;6802:103;6902:1;6891:9;6887:17;6878:6;6802:103;:::i;:::-;6626:286;;;;:::o;6918:329::-;6977:6;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;6918:329;;;;:::o;7253:117::-;7362:1;7359;7352:12;7376:117;7485:1;7482;7475:12;7499:117;7608:1;7605;7598:12;7636:553;7694:8;7704:6;7754:3;7747:4;7739:6;7735:17;7731:27;7721:122;;7762:79;;:::i;:::-;7721:122;7875:6;7862:20;7852:30;;7905:18;7897:6;7894:30;7891:117;;;7927:79;;:::i;:::-;7891:117;8041:4;8033:6;8029:17;8017:29;;8095:3;8087:4;8079:6;8075:17;8065:8;8061:32;8058:41;8055:128;;;8102:79;;:::i;:::-;8055:128;7636:553;;;;;:::o;8195:529::-;8266:6;8274;8323:2;8311:9;8302:7;8298:23;8294:32;8291:119;;;8329:79;;:::i;:::-;8291:119;8477:1;8466:9;8462:17;8449:31;8507:18;8499:6;8496:30;8493:117;;;8529:79;;:::i;:::-;8493:117;8642:65;8699:7;8690:6;8679:9;8675:22;8642:65;:::i;:::-;8624:83;;;;8420:297;8195:529;;;;;:::o;8730:619::-;8807:6;8815;8823;8872:2;8860:9;8851:7;8847:23;8843:32;8840:119;;;8878:79;;:::i;:::-;8840:119;8998:1;9023:53;9068:7;9059:6;9048:9;9044:22;9023:53;:::i;:::-;9013:63;;8969:117;9125:2;9151:53;9196:7;9187:6;9176:9;9172:22;9151:53;:::i;:::-;9141:63;;9096:118;9253:2;9279:53;9324:7;9315:6;9304:9;9300:22;9279:53;:::i;:::-;9269:63;;9224:118;8730:619;;;;;:::o;9355:116::-;9425:21;9440:5;9425:21;:::i;:::-;9418:5;9415:32;9405:60;;9461:1;9458;9451:12;9405:60;9355:116;:::o;9477:133::-;9520:5;9558:6;9545:20;9536:29;;9574:30;9598:5;9574:30;:::i;:::-;9477:133;;;;:::o;9616:468::-;9681:6;9689;9738:2;9726:9;9717:7;9713:23;9709:32;9706:119;;;9744:79;;:::i;:::-;9706:119;9864:1;9889:53;9934:7;9925:6;9914:9;9910:22;9889:53;:::i;:::-;9879:63;;9835:117;9991:2;10017:50;10059:7;10050:6;10039:9;10035:22;10017:50;:::i;:::-;10007:60;;9962:115;9616:468;;;;;:::o;10090:117::-;10199:1;10196;10189:12;10213:180;10261:77;10258:1;10251:88;10358:4;10355:1;10348:15;10382:4;10379:1;10372:15;10399:281;10482:27;10504:4;10482:27;:::i;:::-;10474:6;10470:40;10612:6;10600:10;10597:22;10576:18;10564:10;10561:34;10558:62;10555:88;;;10623:18;;:::i;:::-;10555:88;10663:10;10659:2;10652:22;10442:238;10399:281;;:::o;10686:129::-;10720:6;10747:20;;:::i;:::-;10737:30;;10776:33;10804:4;10796:6;10776:33;:::i;:::-;10686:129;;;:::o;10821:307::-;10882:4;10972:18;10964:6;10961:30;10958:56;;;10994:18;;:::i;:::-;10958:56;11032:29;11054:6;11032:29;:::i;:::-;11024:37;;11116:4;11110;11106:15;11098:23;;10821:307;;;:::o;11134:154::-;11218:6;11213:3;11208;11195:30;11280:1;11271:6;11266:3;11262:16;11255:27;11134:154;;;:::o;11294:410::-;11371:5;11396:65;11412:48;11453:6;11412:48;:::i;:::-;11396:65;:::i;:::-;11387:74;;11484:6;11477:5;11470:21;11522:4;11515:5;11511:16;11560:3;11551:6;11546:3;11542:16;11539:25;11536:112;;;11567:79;;:::i;:::-;11536:112;11657:41;11691:6;11686:3;11681;11657:41;:::i;:::-;11377:327;11294:410;;;;;:::o;11723:338::-;11778:5;11827:3;11820:4;11812:6;11808:17;11804:27;11794:122;;11835:79;;:::i;:::-;11794:122;11952:6;11939:20;11977:78;12051:3;12043:6;12036:4;12028:6;12024:17;11977:78;:::i;:::-;11968:87;;11784:277;11723:338;;;;:::o;12067:943::-;12162:6;12170;12178;12186;12235:3;12223:9;12214:7;12210:23;12206:33;12203:120;;;12242:79;;:::i;:::-;12203:120;12362:1;12387:53;12432:7;12423:6;12412:9;12408:22;12387:53;:::i;:::-;12377:63;;12333:117;12489:2;12515:53;12560:7;12551:6;12540:9;12536:22;12515:53;:::i;:::-;12505:63;;12460:118;12617:2;12643:53;12688:7;12679:6;12668:9;12664:22;12643:53;:::i;:::-;12633:63;;12588:118;12773:2;12762:9;12758:18;12745:32;12804:18;12796:6;12793:30;12790:117;;;12826:79;;:::i;:::-;12790:117;12931:62;12985:7;12976:6;12965:9;12961:22;12931:62;:::i;:::-;12921:72;;12716:287;12067:943;;;;;;;:::o;13016:474::-;13084:6;13092;13141:2;13129:9;13120:7;13116:23;13112:32;13109:119;;;13147:79;;:::i;:::-;13109:119;13267:1;13292:53;13337:7;13328:6;13317:9;13313:22;13292:53;:::i;:::-;13282:63;;13238:117;13394:2;13420:53;13465:7;13456:6;13445:9;13441:22;13420:53;:::i;:::-;13410:63;;13365:118;13016:474;;;;;:::o;13496:180::-;13544:77;13541:1;13534:88;13641:4;13638:1;13631:15;13665:4;13662:1;13655:15;13682:320;13726:6;13763:1;13757:4;13753:12;13743:22;;13810:1;13804:4;13800:12;13831:18;13821:81;;13887:4;13879:6;13875:17;13865:27;;13821:81;13949:2;13941:6;13938:14;13918:18;13915:38;13912:84;;13968:18;;:::i;:::-;13912:84;13733:269;13682:320;;;:::o;14008:168::-;14148:20;14144:1;14136:6;14132:14;14125:44;14008:168;:::o;14182:366::-;14324:3;14345:67;14409:2;14404:3;14345:67;:::i;:::-;14338:74;;14421:93;14510:3;14421:93;:::i;:::-;14539:2;14534:3;14530:12;14523:19;;14182:366;;;:::o;14554:419::-;14720:4;14758:2;14747:9;14743:18;14735:26;;14807:9;14801:4;14797:20;14793:1;14782:9;14778:17;14771:47;14835:131;14961:4;14835:131;:::i;:::-;14827:139;;14554:419;;;:::o;14979:175::-;15119:27;15115:1;15107:6;15103:14;15096:51;14979:175;:::o;15160:366::-;15302:3;15323:67;15387:2;15382:3;15323:67;:::i;:::-;15316:74;;15399:93;15488:3;15399:93;:::i;:::-;15517:2;15512:3;15508:12;15501:19;;15160:366;;;:::o;15532:419::-;15698:4;15736:2;15725:9;15721:18;15713:26;;15785:9;15779:4;15775:20;15771:1;15760:9;15756:17;15749:47;15813:131;15939:4;15813:131;:::i;:::-;15805:139;;15532:419;;;:::o;15957:180::-;16005:77;16002:1;15995:88;16102:4;16099:1;16092:15;16126:4;16123:1;16116:15;16143:305;16183:3;16202:20;16220:1;16202:20;:::i;:::-;16197:25;;16236:20;16254:1;16236:20;:::i;:::-;16231:25;;16390:1;16322:66;16318:74;16315:1;16312:81;16309:107;;;16396:18;;:::i;:::-;16309:107;16440:1;16437;16433:9;16426:16;;16143:305;;;;:::o;16454:182::-;16594:34;16590:1;16582:6;16578:14;16571:58;16454:182;:::o;16642:366::-;16784:3;16805:67;16869:2;16864:3;16805:67;:::i;:::-;16798:74;;16881:93;16970:3;16881:93;:::i;:::-;16999:2;16994:3;16990:12;16983:19;;16642:366;;;:::o;17014:419::-;17180:4;17218:2;17207:9;17203:18;17195:26;;17267:9;17261:4;17257:20;17253:1;17242:9;17238:17;17231:47;17295:131;17421:4;17295:131;:::i;:::-;17287:139;;17014:419;;;:::o;17439:172::-;17579:24;17575:1;17567:6;17563:14;17556:48;17439:172;:::o;17617:366::-;17759:3;17780:67;17844:2;17839:3;17780:67;:::i;:::-;17773:74;;17856:93;17945:3;17856:93;:::i;:::-;17974:2;17969:3;17965:12;17958:19;;17617:366;;;:::o;17989:419::-;18155:4;18193:2;18182:9;18178:18;18170:26;;18242:9;18236:4;18232:20;18228:1;18217:9;18213:17;18206:47;18270:131;18396:4;18270:131;:::i;:::-;18262:139;;17989:419;;;:::o;18414:348::-;18454:7;18477:20;18495:1;18477:20;:::i;:::-;18472:25;;18511:20;18529:1;18511:20;:::i;:::-;18506:25;;18699:1;18631:66;18627:74;18624:1;18621:81;18616:1;18609:9;18602:17;18598:105;18595:131;;;18706:18;;:::i;:::-;18595:131;18754:1;18751;18747:9;18736:20;;18414:348;;;;:::o;18768:191::-;18808:4;18828:20;18846:1;18828:20;:::i;:::-;18823:25;;18862:20;18880:1;18862:20;:::i;:::-;18857:25;;18901:1;18898;18895:8;18892:34;;;18906:18;;:::i;:::-;18892:34;18951:1;18948;18944:9;18936:17;;18768:191;;;;:::o;18965:171::-;19105:23;19101:1;19093:6;19089:14;19082:47;18965:171;:::o;19142:366::-;19284:3;19305:67;19369:2;19364:3;19305:67;:::i;:::-;19298:74;;19381:93;19470:3;19381:93;:::i;:::-;19499:2;19494:3;19490:12;19483:19;;19142:366;;;:::o;19514:419::-;19680:4;19718:2;19707:9;19703:18;19695:26;;19767:9;19761:4;19757:20;19753:1;19742:9;19738:17;19731:47;19795:131;19921:4;19795:131;:::i;:::-;19787:139;;19514:419;;;:::o;19939:180::-;19987:77;19984:1;19977:88;20084:4;20081:1;20074:15;20108:4;20105:1;20098:15;20125:185;20165:1;20182:20;20200:1;20182:20;:::i;:::-;20177:25;;20216:20;20234:1;20216:20;:::i;:::-;20211:25;;20255:1;20245:35;;20260:18;;:::i;:::-;20245:35;20302:1;20299;20295:9;20290:14;;20125:185;;;;:::o;20316:148::-;20418:11;20455:3;20440:18;;20316:148;;;;:::o;20470:377::-;20576:3;20604:39;20637:5;20604:39;:::i;:::-;20659:89;20741:6;20736:3;20659:89;:::i;:::-;20652:96;;20757:52;20802:6;20797:3;20790:4;20783:5;20779:16;20757:52;:::i;:::-;20834:6;20829:3;20825:16;20818:23;;20580:267;20470:377;;;;:::o;20853:435::-;21033:3;21055:95;21146:3;21137:6;21055:95;:::i;:::-;21048:102;;21167:95;21258:3;21249:6;21167:95;:::i;:::-;21160:102;;21279:3;21272:10;;20853:435;;;;;:::o;21294:225::-;21434:34;21430:1;21422:6;21418:14;21411:58;21503:8;21498:2;21490:6;21486:15;21479:33;21294:225;:::o;21525:366::-;21667:3;21688:67;21752:2;21747:3;21688:67;:::i;:::-;21681:74;;21764:93;21853:3;21764:93;:::i;:::-;21882:2;21877:3;21873:12;21866:19;;21525:366;;;:::o;21897:419::-;22063:4;22101:2;22090:9;22086:18;22078:26;;22150:9;22144:4;22140:20;22136:1;22125:9;22121:17;22114:47;22178:131;22304:4;22178:131;:::i;:::-;22170:139;;21897:419;;;:::o;22322:332::-;22443:4;22481:2;22470:9;22466:18;22458:26;;22494:71;22562:1;22551:9;22547:17;22538:6;22494:71;:::i;:::-;22575:72;22643:2;22632:9;22628:18;22619:6;22575:72;:::i;:::-;22322:332;;;;;:::o;22660:137::-;22714:5;22745:6;22739:13;22730:22;;22761:30;22785:5;22761:30;:::i;:::-;22660:137;;;;:::o;22803:345::-;22870:6;22919:2;22907:9;22898:7;22894:23;22890:32;22887:119;;;22925:79;;:::i;:::-;22887:119;23045:1;23070:61;23123:7;23114:6;23103:9;23099:22;23070:61;:::i;:::-;23060:71;;23016:125;22803:345;;;;:::o;23154:182::-;23294:34;23290:1;23282:6;23278:14;23271:58;23154:182;:::o;23342:366::-;23484:3;23505:67;23569:2;23564:3;23505:67;:::i;:::-;23498:74;;23581:93;23670:3;23581:93;:::i;:::-;23699:2;23694:3;23690:12;23683:19;;23342:366;;;:::o;23714:419::-;23880:4;23918:2;23907:9;23903:18;23895:26;;23967:9;23961:4;23957:20;23953:1;23942:9;23938:17;23931:47;23995:131;24121:4;23995:131;:::i;:::-;23987:139;;23714:419;;;:::o;24139:98::-;24190:6;24224:5;24218:12;24208:22;;24139:98;;;:::o;24243:168::-;24326:11;24360:6;24355:3;24348:19;24400:4;24395:3;24391:14;24376:29;;24243:168;;;;:::o;24417:360::-;24503:3;24531:38;24563:5;24531:38;:::i;:::-;24585:70;24648:6;24643:3;24585:70;:::i;:::-;24578:77;;24664:52;24709:6;24704:3;24697:4;24690:5;24686:16;24664:52;:::i;:::-;24741:29;24763:6;24741:29;:::i;:::-;24736:3;24732:39;24725:46;;24507:270;24417:360;;;;:::o;24783:640::-;24978:4;25016:3;25005:9;25001:19;24993:27;;25030:71;25098:1;25087:9;25083:17;25074:6;25030:71;:::i;:::-;25111:72;25179:2;25168:9;25164:18;25155:6;25111:72;:::i;:::-;25193;25261:2;25250:9;25246:18;25237:6;25193:72;:::i;:::-;25312:9;25306:4;25302:20;25297:2;25286:9;25282:18;25275:48;25340:76;25411:4;25402:6;25340:76;:::i;:::-;25332:84;;24783:640;;;;;;;:::o;25429:141::-;25485:5;25516:6;25510:13;25501:22;;25532:32;25558:5;25532:32;:::i;:::-;25429:141;;;;:::o;25576:349::-;25645:6;25694:2;25682:9;25673:7;25669:23;25665:32;25662:119;;;25700:79;;:::i;:::-;25662:119;25820:1;25845:63;25900:7;25891:6;25880:9;25876:22;25845:63;:::i;:::-;25835:73;;25791:127;25576:349;;;;:::o

Swarm Source

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