ETH Price: $2,734.86 (-0.81%)

Token

Nakazuki (NKAZKI)
 

Overview

Max Total Supply

328 NKAZKI

Holders

15

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 NKAZKI
0x98a1157631510186e6d5D3e607233E8321029c6B
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:
Nakazuki

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-10
*/

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



pragma solidity ^0.8.13;








contract Nakazuki is ERC721A, DefaultOperatorFilterer, Ownable {
    uint256 supply = 20000;
    uint256 TOTAL_FREE = 5000;

    uint256 max_per_tx = 20;
    uint256 max_per_wallet = 50;
    uint256 MAX_FREE = 1;

    uint256 Price = 0.003 ether;

    bool public Active;
    string public baseURI;


    mapping(address => uint) public amountMinted;



    constructor(string memory _baseUri) ERC721A("Nakazuki", "NKAZKI") 
    {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
        uint256 minted = amountMinted[msg.sender];
        require(Active, "Sale is not active");


        //Max per tx and per wallet
        require(quantity <= max_per_tx, "Exceeded the max amount per tx");
        require(quantity + minted <= max_per_wallet, "Exceeded the max amount of mints");

        //Not exceeding supply
        require(totalSupply() + quantity <= supply, "Not enough Nakazuki NFTs left");
        
        
        uint256 pay = quantity;
        if(totalSupply() <= TOTAL_FREE){
            pay = 0;

        }
        else if(minted < MAX_FREE){
            if(MAX_FREE - minted > quantity){
                pay = 0;
            }
            else {
                pay = quantity - (MAX_FREE - minted);
            }
        }

        require(msg.value >= pay * Price, "Not enough ether sent");

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

    
  

    function setSpecifics(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 <= supply, "Not enough Nakazuki left");
        _safeMint(msg.sender, quantity);
    }


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




    function withdraw() external payable onlyOwner {

        address team1 = 0x779964E81a5dF8307fEAfDD71a6D55817EaE603f;
        payable(team1).transfer((address(this).balance * 20 / 100));

        address team2 = 0xBe47e5b1E71Cf8f2Cb0E85722b9257C09fb0DDA7;
        payable(team2).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 getTotalFree() external view returns(uint256){
        return TOTAL_FREE;
    }
    

    function setPrice(uint256 _price) public onlyOwner {
        
        Price = _price * 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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"MintForTeam","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":"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":[],"name":"getTotalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFree","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_totalFree","type":"uint256"}],"name":"setSpecifics","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":"toggleSale","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"}]

6080604052614e20600955611388600a556014600b556032600c556001600d55660aa87bee538000600e553480156200003757600080fd5b50604051620039be380380620039be83398181016040528101906200005d91906200069c565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f4e616b617a756b690000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4e4b415a4b4900000000000000000000000000000000000000000000000000008152508160029080519060200190620000f89291906200044f565b508060039080519060200190620001119291906200044f565b50620001226200037c60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200031f578015620001e5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001ab92919062000732565b600060405180830381600087803b158015620001c657600080fd5b505af1158015620001db573d6000803e3d6000fd5b505050506200031e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200029f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200026592919062000732565b600060405180830381600087803b1580156200028057600080fd5b505af115801562000295573d6000803e3d6000fd5b505050506200031d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002e891906200075f565b600060405180830381600087803b1580156200030357600080fd5b505af115801562000318573d6000803e3d6000fd5b505050505b5b5b505062000341620003356200038160201b60201c565b6200038960201b60201c565b8060109080519060200190620003599291906200044f565b506000600f60006101000a81548160ff02191690831515021790555050620007e0565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200045d90620007ab565b90600052602060002090601f016020900481019282620004815760008555620004cd565b82601f106200049c57805160ff1916838001178555620004cd565b82800160010185558215620004cd579182015b82811115620004cc578251825591602001919060010190620004af565b5b509050620004dc9190620004e0565b5090565b5b80821115620004fb576000816000905550600101620004e1565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000568826200051d565b810181811067ffffffffffffffff821117156200058a57620005896200052e565b5b80604052505050565b60006200059f620004ff565b9050620005ad82826200055d565b919050565b600067ffffffffffffffff821115620005d057620005cf6200052e565b5b620005db826200051d565b9050602081019050919050565b60005b8381101562000608578082015181840152602081019050620005eb565b8381111562000618576000848401525b50505050565b6000620006356200062f84620005b2565b62000593565b90508281526020810184848401111562000654576200065362000518565b5b62000661848285620005e8565b509392505050565b600082601f83011262000681576200068062000513565b5b8151620006938482602086016200061e565b91505092915050565b600060208284031215620006b557620006b462000509565b5b600082015167ffffffffffffffff811115620006d657620006d56200050e565b5b620006e48482850162000669565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200071a82620006ed565b9050919050565b6200072c816200070d565b82525050565b600060408201905062000749600083018562000721565b62000758602083018462000721565b9392505050565b600060208201905062000776600083018462000721565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007c457607f821691505b602082108103620007da57620007d96200077c565b5b50919050565b6131ce80620007f06000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd14610654578063c9b0a2a714610691578063d755bf99146106bc578063e985e9c5146106e5578063f2fde38b14610722576101ee565b806395d89b41146105b957806396f0bd61146105e4578063a22cb4651461060f578063b88d4fde14610638576101ee565b80637d8966e4116100dc5780637d8966e4146105325780638da5cb5b1461054957806391b7f5ed1461057457806395d2a8371461059d576101ee565b80636352211e146104765780636c0360eb146104b357806370a08231146104de578063715018a61461051b576101ee565b806323b872dd11610185578063438a67e711610154578063438a67e7146103bc57806347aa9a5b146103f957806355f804b314610424578063563aaf111461044d576101ee565b806323b872dd1461034f5780633ccfd60b1461036b57806341f434341461037557806342842e0e146103a0576101ee565b8063095ea7b3116101c1578063095ea7b3146102b45780630b405e9c146102d057806315ef3061146102f957806318160ddd14610324576101ee565b806301ffc9a7146101f357806306fdde0314610230578063078837031461025b578063081812fc14610277575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906123c0565b61074b565b6040516102279190612408565b60405180910390f35b34801561023c57600080fd5b506102456107dd565b60405161025291906124bc565b60405180910390f35b61027560048036038101906102709190612514565b61086f565b005b34801561028357600080fd5b5061029e60048036038101906102999190612514565b610b07565b6040516102ab9190612582565b60405180910390f35b6102ce60048036038101906102c991906125c9565b610b86565b005b3480156102dc57600080fd5b506102f760048036038101906102f29190612609565b610b9f565b005b34801561030557600080fd5b5061030e610bd3565b60405161031b919061266b565b60405180910390f35b34801561033057600080fd5b50610339610bdd565b604051610346919061266b565b60405180910390f35b61036960048036038101906103649190612686565b610bf4565b005b610373610c43565b005b34801561038157600080fd5b5061038a610d8d565b6040516103979190612738565b60405180910390f35b6103ba60048036038101906103b59190612686565b610d9f565b005b3480156103c857600080fd5b506103e360048036038101906103de9190612753565b610dee565b6040516103f0919061266b565b60405180910390f35b34801561040557600080fd5b5061040e610e06565b60405161041b919061266b565b60405180910390f35b34801561043057600080fd5b5061044b600480360381019061044691906127e5565b610e10565b005b34801561045957600080fd5b50610474600480360381019061046f9190612514565b610e2e565b005b34801561048257600080fd5b5061049d60048036038101906104989190612514565b610e40565b6040516104aa9190612582565b60405180910390f35b3480156104bf57600080fd5b506104c8610e52565b6040516104d591906124bc565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190612753565b610ee0565b604051610512919061266b565b60405180910390f35b34801561052757600080fd5b50610530610f98565b005b34801561053e57600080fd5b50610547610fac565b005b34801561055557600080fd5b5061055e611007565b60405161056b9190612582565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190612514565b611031565b005b6105b760048036038101906105b29190612514565b611055565b005b3480156105c557600080fd5b506105ce6110c1565b6040516105db91906124bc565b60405180910390f35b3480156105f057600080fd5b506105f9611153565b604051610606919061266b565b60405180910390f35b34801561061b57600080fd5b506106366004803603810190610631919061285e565b61115d565b005b610652600480360381019061064d91906129ce565b611176565b005b34801561066057600080fd5b5061067b60048036038101906106769190612514565b6111c7565b60405161068891906124bc565b60405180910390f35b34801561069d57600080fd5b506106a6611265565b6040516106b39190612408565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190612514565b611278565b005b3480156106f157600080fd5b5061070c60048036038101906107079190612a51565b61128a565b6040516107199190612408565b60405180910390f35b34801561072e57600080fd5b5061074960048036038101906107449190612753565b61131e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107ec90612ac0565b80601f016020809104026020016040519081016040528092919081815260200182805461081890612ac0565b80156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f60009054906101000a900460ff16610902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f990612b3d565b60405180910390fd5b600b54821115610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90612ba9565b60405180910390fd5b600c5481836109569190612bf8565b1115610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90612c9a565b60405180910390fd5b600954826109a3610bdd565b6109ad9190612bf8565b11156109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590612d06565b60405180910390fd5b6000829050600a546109fe610bdd565b11610a0c5760009050610a52565b600d54821015610a51578282600d54610a259190612d26565b1115610a345760009050610a50565b81600d54610a429190612d26565b83610a4d9190612d26565b90505b5b5b600e5481610a609190612d5a565b341015610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990612e00565b60405180910390fd5b610aac33846113a1565b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610afb9190612bf8565b92505081905550505050565b6000610b12826113bf565b610b48576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b908161141e565b610b9a838361151b565b505050565b610ba761165f565b82600d8190555066038d7ea4c6800082610bc19190612d5a565b600e8190555080600a81905550505050565b6000600d54905090565b6000610be76116dd565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c3257610c313361141e565b5b610c3d8484846116e2565b50505050565b610c4b61165f565b600073779964e81a5df8307feafdd71a6d55817eae603f90508073ffffffffffffffffffffffffffffffffffffffff166108fc6064601447610c8d9190612d5a565b610c979190612e4f565b9081150290604051600060405180830381858888f19350505050158015610cc2573d6000803e3d6000fd5b50600073be47e5b1e71cf8f2cb0e85722b9257c09fb0dda790508073ffffffffffffffffffffffffffffffffffffffff166108fc6064603247610d059190612d5a565b610d0f9190612e4f565b9081150290604051600060405180830381858888f19350505050158015610d3a573d6000803e3d6000fd5b50610d43611007565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d88573d6000803e3d6000fd5b505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ddd57610ddc3361141e565b5b610de8848484611a04565b50505050565b60116020528060005260406000206000915090505481565b6000600a54905090565b610e1861165f565b818160109190610e299291906122b1565b505050565b610e3661165f565b80600a8190555050565b6000610e4b82611a24565b9050919050565b60108054610e5f90612ac0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8b90612ac0565b8015610ed85780601f10610ead57610100808354040283529160200191610ed8565b820191906000526020600020905b815481529060010190602001808311610ebb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f47576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fa061165f565b610faa6000611af0565b565b610fb461165f565b600f60009054906101000a900460ff1615610fe9576000600f60006101000a81548160ff021916908315150217905550611005565b6001600f60006101000a81548160ff0219169083151502179055505b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61103961165f565b66038d7ea4c680008161104c9190612d5a565b600e8190555050565b61105d61165f565b60095481611069610bdd565b6110739190612bf8565b11156110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90612ecc565b60405180910390fd5b6110be33826113a1565b50565b6060600380546110d090612ac0565b80601f01602080910402602001604051908101604052809291908181526020018280546110fc90612ac0565b80156111495780601f1061111e57610100808354040283529160200191611149565b820191906000526020600020905b81548152906001019060200180831161112c57829003601f168201915b5050505050905090565b6000600e54905090565b816111678161141e565b6111718383611bb6565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111b4576111b33361141e565b5b6111c085858585611cc1565b5050505050565b60606111d2826113bf565b611208576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611212611d34565b90506000815103611232576040518060200160405280600081525061125d565b8061123c84611dc6565b60405160200161124d929190612f28565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b61128061165f565b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61132661165f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90612fbe565b60405180910390fd5b61139e81611af0565b50565b6113bb828260405180602001604052806000815250611e16565b5050565b6000816113ca6116dd565b111580156113d9575060005482105b8015611417575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611518576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611495929190612fde565b602060405180830381865afa1580156114b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d6919061301c565b61151757806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161150e9190612582565b60405180910390fd5b5b50565b600061152682610e40565b90508073ffffffffffffffffffffffffffffffffffffffff16611547611eb3565b73ffffffffffffffffffffffffffffffffffffffff16146115aa576115738161156e611eb3565b61128a565b6115a9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611667611ebb565b73ffffffffffffffffffffffffffffffffffffffff16611685611007565b73ffffffffffffffffffffffffffffffffffffffff16146116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290613095565b60405180910390fd5b565b600090565b60006116ed82611a24565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611754576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061176084611ec3565b915091506117768187611771611eb3565b611eea565b6117c25761178b86611786611eb3565b61128a565b6117c1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611828576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118358686866001611f2e565b801561184057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061190e856118ea888887611f34565b7c020000000000000000000000000000000000000000000000000000000017611f5c565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036119945760006001850190506000600460008381526020019081526020016000205403611992576000548114611991578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119fc8686866001611f87565b505050505050565b611a1f83838360405180602001604052806000815250611176565b505050565b60008082905080611a336116dd565b11611ab957600054811015611ab85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ab6575b60008103611aac576004600083600190039350838152602001908152602001600020549050611a82565b8092505050611aeb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611bc3611eb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c70611eb3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cb59190612408565b60405180910390a35050565b611ccc848484610bf4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d2e57611cf784848484611f8d565b611d2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060108054611d4390612ac0565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6f90612ac0565b8015611dbc5780601f10611d9157610100808354040283529160200191611dbc565b820191906000526020600020905b815481529060010190602001808311611d9f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e0157600184039350600a81066030018453600a8104905080611ddf575b50828103602084039350808452505050919050565b611e2083836120dd565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611eae57600080549050600083820390505b611e606000868380600101945086611f8d565b611e96576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e4d578160005414611eab57600080fd5b50505b505050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f4b868684612298565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fb3611eb3565b8786866040518563ffffffff1660e01b8152600401611fd5949392919061310a565b6020604051808303816000875af192505050801561201157506040513d601f19601f8201168201806040525081019061200e919061316b565b60015b61208a573d8060008114612041576040519150601f19603f3d011682016040523d82523d6000602084013e612046565b606091505b506000815103612082576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000820361211d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61212a6000848385611f2e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121a1836121926000866000611f34565b61219b856122a1565b17611f5c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461224257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612207565b506000820361227d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122936000848385611f87565b505050565b60009392505050565b60006001821460e11b9050919050565b8280546122bd90612ac0565b90600052602060002090601f0160209004810192826122df5760008555612326565b82601f106122f857803560ff1916838001178555612326565b82800160010185558215612326579182015b8281111561232557823582559160200191906001019061230a565b5b5090506123339190612337565b5090565b5b80821115612350576000816000905550600101612338565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61239d81612368565b81146123a857600080fd5b50565b6000813590506123ba81612394565b92915050565b6000602082840312156123d6576123d561235e565b5b60006123e4848285016123ab565b91505092915050565b60008115159050919050565b612402816123ed565b82525050565b600060208201905061241d60008301846123f9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561245d578082015181840152602081019050612442565b8381111561246c576000848401525b50505050565b6000601f19601f8301169050919050565b600061248e82612423565b612498818561242e565b93506124a881856020860161243f565b6124b181612472565b840191505092915050565b600060208201905081810360008301526124d68184612483565b905092915050565b6000819050919050565b6124f1816124de565b81146124fc57600080fd5b50565b60008135905061250e816124e8565b92915050565b60006020828403121561252a5761252961235e565b5b6000612538848285016124ff565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061256c82612541565b9050919050565b61257c81612561565b82525050565b60006020820190506125976000830184612573565b92915050565b6125a681612561565b81146125b157600080fd5b50565b6000813590506125c38161259d565b92915050565b600080604083850312156125e0576125df61235e565b5b60006125ee858286016125b4565b92505060206125ff858286016124ff565b9150509250929050565b6000806000606084860312156126225761262161235e565b5b6000612630868287016124ff565b9350506020612641868287016124ff565b9250506040612652868287016124ff565b9150509250925092565b612665816124de565b82525050565b6000602082019050612680600083018461265c565b92915050565b60008060006060848603121561269f5761269e61235e565b5b60006126ad868287016125b4565b93505060206126be868287016125b4565b92505060406126cf868287016124ff565b9150509250925092565b6000819050919050565b60006126fe6126f96126f484612541565b6126d9565b612541565b9050919050565b6000612710826126e3565b9050919050565b600061272282612705565b9050919050565b61273281612717565b82525050565b600060208201905061274d6000830184612729565b92915050565b6000602082840312156127695761276861235e565b5b6000612777848285016125b4565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126127a5576127a4612780565b5b8235905067ffffffffffffffff8111156127c2576127c1612785565b5b6020830191508360018202830111156127de576127dd61278a565b5b9250929050565b600080602083850312156127fc576127fb61235e565b5b600083013567ffffffffffffffff81111561281a57612819612363565b5b6128268582860161278f565b92509250509250929050565b61283b816123ed565b811461284657600080fd5b50565b60008135905061285881612832565b92915050565b600080604083850312156128755761287461235e565b5b6000612883858286016125b4565b925050602061289485828601612849565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128db82612472565b810181811067ffffffffffffffff821117156128fa576128f96128a3565b5b80604052505050565b600061290d612354565b905061291982826128d2565b919050565b600067ffffffffffffffff821115612939576129386128a3565b5b61294282612472565b9050602081019050919050565b82818337600083830152505050565b600061297161296c8461291e565b612903565b90508281526020810184848401111561298d5761298c61289e565b5b61299884828561294f565b509392505050565b600082601f8301126129b5576129b4612780565b5b81356129c584826020860161295e565b91505092915050565b600080600080608085870312156129e8576129e761235e565b5b60006129f6878288016125b4565b9450506020612a07878288016125b4565b9350506040612a18878288016124ff565b925050606085013567ffffffffffffffff811115612a3957612a38612363565b5b612a45878288016129a0565b91505092959194509250565b60008060408385031215612a6857612a6761235e565b5b6000612a76858286016125b4565b9250506020612a87858286016125b4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ad857607f821691505b602082108103612aeb57612aea612a91565b5b50919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000612b2760128361242e565b9150612b3282612af1565b602082019050919050565b60006020820190508181036000830152612b5681612b1a565b9050919050565b7f457863656564656420746865206d617820616d6f756e74207065722074780000600082015250565b6000612b93601e8361242e565b9150612b9e82612b5d565b602082019050919050565b60006020820190508181036000830152612bc281612b86565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c03826124de565b9150612c0e836124de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c4357612c42612bc9565b5b828201905092915050565b7f457863656564656420746865206d617820616d6f756e74206f66206d696e7473600082015250565b6000612c8460208361242e565b9150612c8f82612c4e565b602082019050919050565b60006020820190508181036000830152612cb381612c77565b9050919050565b7f4e6f7420656e6f756768204e616b617a756b69204e465473206c656674000000600082015250565b6000612cf0601d8361242e565b9150612cfb82612cba565b602082019050919050565b60006020820190508181036000830152612d1f81612ce3565b9050919050565b6000612d31826124de565b9150612d3c836124de565b925082821015612d4f57612d4e612bc9565b5b828203905092915050565b6000612d65826124de565b9150612d70836124de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612da957612da8612bc9565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6000612dea60158361242e565b9150612df582612db4565b602082019050919050565b60006020820190508181036000830152612e1981612ddd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e5a826124de565b9150612e65836124de565b925082612e7557612e74612e20565b5b828204905092915050565b7f4e6f7420656e6f756768204e616b617a756b69206c6566740000000000000000600082015250565b6000612eb660188361242e565b9150612ec182612e80565b602082019050919050565b60006020820190508181036000830152612ee581612ea9565b9050919050565b600081905092915050565b6000612f0282612423565b612f0c8185612eec565b9350612f1c81856020860161243f565b80840191505092915050565b6000612f348285612ef7565b9150612f408284612ef7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fa860268361242e565b9150612fb382612f4c565b604082019050919050565b60006020820190508181036000830152612fd781612f9b565b9050919050565b6000604082019050612ff36000830185612573565b6130006020830184612573565b9392505050565b60008151905061301681612832565b92915050565b6000602082840312156130325761303161235e565b5b600061304084828501613007565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061307f60208361242e565b915061308a82613049565b602082019050919050565b600060208201905081810360008301526130ae81613072565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130dc826130b5565b6130e681856130c0565b93506130f681856020860161243f565b6130ff81612472565b840191505092915050565b600060808201905061311f6000830187612573565b61312c6020830186612573565b613139604083018561265c565b818103606083015261314b81846130d1565b905095945050505050565b60008151905061316581612394565b92915050565b6000602082840312156131815761318061235e565b5b600061318f84828501613156565b9150509291505056fea2646970667358221220cbdd8343151de2f58de9d783747c82bddd185369485ff501a20aec4b5fb4de3f64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d506569486a38366b7576574268726a4673314734706664397a4d5064334466347a6f353145695746377931672f00000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636352211e1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd14610654578063c9b0a2a714610691578063d755bf99146106bc578063e985e9c5146106e5578063f2fde38b14610722576101ee565b806395d89b41146105b957806396f0bd61146105e4578063a22cb4651461060f578063b88d4fde14610638576101ee565b80637d8966e4116100dc5780637d8966e4146105325780638da5cb5b1461054957806391b7f5ed1461057457806395d2a8371461059d576101ee565b80636352211e146104765780636c0360eb146104b357806370a08231146104de578063715018a61461051b576101ee565b806323b872dd11610185578063438a67e711610154578063438a67e7146103bc57806347aa9a5b146103f957806355f804b314610424578063563aaf111461044d576101ee565b806323b872dd1461034f5780633ccfd60b1461036b57806341f434341461037557806342842e0e146103a0576101ee565b8063095ea7b3116101c1578063095ea7b3146102b45780630b405e9c146102d057806315ef3061146102f957806318160ddd14610324576101ee565b806301ffc9a7146101f357806306fdde0314610230578063078837031461025b578063081812fc14610277575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906123c0565b61074b565b6040516102279190612408565b60405180910390f35b34801561023c57600080fd5b506102456107dd565b60405161025291906124bc565b60405180910390f35b61027560048036038101906102709190612514565b61086f565b005b34801561028357600080fd5b5061029e60048036038101906102999190612514565b610b07565b6040516102ab9190612582565b60405180910390f35b6102ce60048036038101906102c991906125c9565b610b86565b005b3480156102dc57600080fd5b506102f760048036038101906102f29190612609565b610b9f565b005b34801561030557600080fd5b5061030e610bd3565b60405161031b919061266b565b60405180910390f35b34801561033057600080fd5b50610339610bdd565b604051610346919061266b565b60405180910390f35b61036960048036038101906103649190612686565b610bf4565b005b610373610c43565b005b34801561038157600080fd5b5061038a610d8d565b6040516103979190612738565b60405180910390f35b6103ba60048036038101906103b59190612686565b610d9f565b005b3480156103c857600080fd5b506103e360048036038101906103de9190612753565b610dee565b6040516103f0919061266b565b60405180910390f35b34801561040557600080fd5b5061040e610e06565b60405161041b919061266b565b60405180910390f35b34801561043057600080fd5b5061044b600480360381019061044691906127e5565b610e10565b005b34801561045957600080fd5b50610474600480360381019061046f9190612514565b610e2e565b005b34801561048257600080fd5b5061049d60048036038101906104989190612514565b610e40565b6040516104aa9190612582565b60405180910390f35b3480156104bf57600080fd5b506104c8610e52565b6040516104d591906124bc565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190612753565b610ee0565b604051610512919061266b565b60405180910390f35b34801561052757600080fd5b50610530610f98565b005b34801561053e57600080fd5b50610547610fac565b005b34801561055557600080fd5b5061055e611007565b60405161056b9190612582565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190612514565b611031565b005b6105b760048036038101906105b29190612514565b611055565b005b3480156105c557600080fd5b506105ce6110c1565b6040516105db91906124bc565b60405180910390f35b3480156105f057600080fd5b506105f9611153565b604051610606919061266b565b60405180910390f35b34801561061b57600080fd5b506106366004803603810190610631919061285e565b61115d565b005b610652600480360381019061064d91906129ce565b611176565b005b34801561066057600080fd5b5061067b60048036038101906106769190612514565b6111c7565b60405161068891906124bc565b60405180910390f35b34801561069d57600080fd5b506106a6611265565b6040516106b39190612408565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190612514565b611278565b005b3480156106f157600080fd5b5061070c60048036038101906107079190612a51565b61128a565b6040516107199190612408565b60405180910390f35b34801561072e57600080fd5b5061074960048036038101906107449190612753565b61131e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107ec90612ac0565b80601f016020809104026020016040519081016040528092919081815260200182805461081890612ac0565b80156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f60009054906101000a900460ff16610902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f990612b3d565b60405180910390fd5b600b54821115610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90612ba9565b60405180910390fd5b600c5481836109569190612bf8565b1115610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90612c9a565b60405180910390fd5b600954826109a3610bdd565b6109ad9190612bf8565b11156109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590612d06565b60405180910390fd5b6000829050600a546109fe610bdd565b11610a0c5760009050610a52565b600d54821015610a51578282600d54610a259190612d26565b1115610a345760009050610a50565b81600d54610a429190612d26565b83610a4d9190612d26565b90505b5b5b600e5481610a609190612d5a565b341015610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990612e00565b60405180910390fd5b610aac33846113a1565b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610afb9190612bf8565b92505081905550505050565b6000610b12826113bf565b610b48576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b908161141e565b610b9a838361151b565b505050565b610ba761165f565b82600d8190555066038d7ea4c6800082610bc19190612d5a565b600e8190555080600a81905550505050565b6000600d54905090565b6000610be76116dd565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c3257610c313361141e565b5b610c3d8484846116e2565b50505050565b610c4b61165f565b600073779964e81a5df8307feafdd71a6d55817eae603f90508073ffffffffffffffffffffffffffffffffffffffff166108fc6064601447610c8d9190612d5a565b610c979190612e4f565b9081150290604051600060405180830381858888f19350505050158015610cc2573d6000803e3d6000fd5b50600073be47e5b1e71cf8f2cb0e85722b9257c09fb0dda790508073ffffffffffffffffffffffffffffffffffffffff166108fc6064603247610d059190612d5a565b610d0f9190612e4f565b9081150290604051600060405180830381858888f19350505050158015610d3a573d6000803e3d6000fd5b50610d43611007565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d88573d6000803e3d6000fd5b505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ddd57610ddc3361141e565b5b610de8848484611a04565b50505050565b60116020528060005260406000206000915090505481565b6000600a54905090565b610e1861165f565b818160109190610e299291906122b1565b505050565b610e3661165f565b80600a8190555050565b6000610e4b82611a24565b9050919050565b60108054610e5f90612ac0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8b90612ac0565b8015610ed85780601f10610ead57610100808354040283529160200191610ed8565b820191906000526020600020905b815481529060010190602001808311610ebb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f47576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fa061165f565b610faa6000611af0565b565b610fb461165f565b600f60009054906101000a900460ff1615610fe9576000600f60006101000a81548160ff021916908315150217905550611005565b6001600f60006101000a81548160ff0219169083151502179055505b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61103961165f565b66038d7ea4c680008161104c9190612d5a565b600e8190555050565b61105d61165f565b60095481611069610bdd565b6110739190612bf8565b11156110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90612ecc565b60405180910390fd5b6110be33826113a1565b50565b6060600380546110d090612ac0565b80601f01602080910402602001604051908101604052809291908181526020018280546110fc90612ac0565b80156111495780601f1061111e57610100808354040283529160200191611149565b820191906000526020600020905b81548152906001019060200180831161112c57829003601f168201915b5050505050905090565b6000600e54905090565b816111678161141e565b6111718383611bb6565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111b4576111b33361141e565b5b6111c085858585611cc1565b5050505050565b60606111d2826113bf565b611208576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611212611d34565b90506000815103611232576040518060200160405280600081525061125d565b8061123c84611dc6565b60405160200161124d929190612f28565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b61128061165f565b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61132661165f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90612fbe565b60405180910390fd5b61139e81611af0565b50565b6113bb828260405180602001604052806000815250611e16565b5050565b6000816113ca6116dd565b111580156113d9575060005482105b8015611417575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611518576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611495929190612fde565b602060405180830381865afa1580156114b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d6919061301c565b61151757806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161150e9190612582565b60405180910390fd5b5b50565b600061152682610e40565b90508073ffffffffffffffffffffffffffffffffffffffff16611547611eb3565b73ffffffffffffffffffffffffffffffffffffffff16146115aa576115738161156e611eb3565b61128a565b6115a9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611667611ebb565b73ffffffffffffffffffffffffffffffffffffffff16611685611007565b73ffffffffffffffffffffffffffffffffffffffff16146116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290613095565b60405180910390fd5b565b600090565b60006116ed82611a24565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611754576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061176084611ec3565b915091506117768187611771611eb3565b611eea565b6117c25761178b86611786611eb3565b61128a565b6117c1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611828576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118358686866001611f2e565b801561184057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061190e856118ea888887611f34565b7c020000000000000000000000000000000000000000000000000000000017611f5c565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036119945760006001850190506000600460008381526020019081526020016000205403611992576000548114611991578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119fc8686866001611f87565b505050505050565b611a1f83838360405180602001604052806000815250611176565b505050565b60008082905080611a336116dd565b11611ab957600054811015611ab85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ab6575b60008103611aac576004600083600190039350838152602001908152602001600020549050611a82565b8092505050611aeb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611bc3611eb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c70611eb3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cb59190612408565b60405180910390a35050565b611ccc848484610bf4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d2e57611cf784848484611f8d565b611d2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060108054611d4390612ac0565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6f90612ac0565b8015611dbc5780601f10611d9157610100808354040283529160200191611dbc565b820191906000526020600020905b815481529060010190602001808311611d9f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e0157600184039350600a81066030018453600a8104905080611ddf575b50828103602084039350808452505050919050565b611e2083836120dd565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611eae57600080549050600083820390505b611e606000868380600101945086611f8d565b611e96576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e4d578160005414611eab57600080fd5b50505b505050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f4b868684612298565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fb3611eb3565b8786866040518563ffffffff1660e01b8152600401611fd5949392919061310a565b6020604051808303816000875af192505050801561201157506040513d601f19601f8201168201806040525081019061200e919061316b565b60015b61208a573d8060008114612041576040519150601f19603f3d011682016040523d82523d6000602084013e612046565b606091505b506000815103612082576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000820361211d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61212a6000848385611f2e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121a1836121926000866000611f34565b61219b856122a1565b17611f5c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461224257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612207565b506000820361227d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122936000848385611f87565b505050565b60009392505050565b60006001821460e11b9050919050565b8280546122bd90612ac0565b90600052602060002090601f0160209004810192826122df5760008555612326565b82601f106122f857803560ff1916838001178555612326565b82800160010185558215612326579182015b8281111561232557823582559160200191906001019061230a565b5b5090506123339190612337565b5090565b5b80821115612350576000816000905550600101612338565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61239d81612368565b81146123a857600080fd5b50565b6000813590506123ba81612394565b92915050565b6000602082840312156123d6576123d561235e565b5b60006123e4848285016123ab565b91505092915050565b60008115159050919050565b612402816123ed565b82525050565b600060208201905061241d60008301846123f9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561245d578082015181840152602081019050612442565b8381111561246c576000848401525b50505050565b6000601f19601f8301169050919050565b600061248e82612423565b612498818561242e565b93506124a881856020860161243f565b6124b181612472565b840191505092915050565b600060208201905081810360008301526124d68184612483565b905092915050565b6000819050919050565b6124f1816124de565b81146124fc57600080fd5b50565b60008135905061250e816124e8565b92915050565b60006020828403121561252a5761252961235e565b5b6000612538848285016124ff565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061256c82612541565b9050919050565b61257c81612561565b82525050565b60006020820190506125976000830184612573565b92915050565b6125a681612561565b81146125b157600080fd5b50565b6000813590506125c38161259d565b92915050565b600080604083850312156125e0576125df61235e565b5b60006125ee858286016125b4565b92505060206125ff858286016124ff565b9150509250929050565b6000806000606084860312156126225761262161235e565b5b6000612630868287016124ff565b9350506020612641868287016124ff565b9250506040612652868287016124ff565b9150509250925092565b612665816124de565b82525050565b6000602082019050612680600083018461265c565b92915050565b60008060006060848603121561269f5761269e61235e565b5b60006126ad868287016125b4565b93505060206126be868287016125b4565b92505060406126cf868287016124ff565b9150509250925092565b6000819050919050565b60006126fe6126f96126f484612541565b6126d9565b612541565b9050919050565b6000612710826126e3565b9050919050565b600061272282612705565b9050919050565b61273281612717565b82525050565b600060208201905061274d6000830184612729565b92915050565b6000602082840312156127695761276861235e565b5b6000612777848285016125b4565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126127a5576127a4612780565b5b8235905067ffffffffffffffff8111156127c2576127c1612785565b5b6020830191508360018202830111156127de576127dd61278a565b5b9250929050565b600080602083850312156127fc576127fb61235e565b5b600083013567ffffffffffffffff81111561281a57612819612363565b5b6128268582860161278f565b92509250509250929050565b61283b816123ed565b811461284657600080fd5b50565b60008135905061285881612832565b92915050565b600080604083850312156128755761287461235e565b5b6000612883858286016125b4565b925050602061289485828601612849565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128db82612472565b810181811067ffffffffffffffff821117156128fa576128f96128a3565b5b80604052505050565b600061290d612354565b905061291982826128d2565b919050565b600067ffffffffffffffff821115612939576129386128a3565b5b61294282612472565b9050602081019050919050565b82818337600083830152505050565b600061297161296c8461291e565b612903565b90508281526020810184848401111561298d5761298c61289e565b5b61299884828561294f565b509392505050565b600082601f8301126129b5576129b4612780565b5b81356129c584826020860161295e565b91505092915050565b600080600080608085870312156129e8576129e761235e565b5b60006129f6878288016125b4565b9450506020612a07878288016125b4565b9350506040612a18878288016124ff565b925050606085013567ffffffffffffffff811115612a3957612a38612363565b5b612a45878288016129a0565b91505092959194509250565b60008060408385031215612a6857612a6761235e565b5b6000612a76858286016125b4565b9250506020612a87858286016125b4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ad857607f821691505b602082108103612aeb57612aea612a91565b5b50919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000612b2760128361242e565b9150612b3282612af1565b602082019050919050565b60006020820190508181036000830152612b5681612b1a565b9050919050565b7f457863656564656420746865206d617820616d6f756e74207065722074780000600082015250565b6000612b93601e8361242e565b9150612b9e82612b5d565b602082019050919050565b60006020820190508181036000830152612bc281612b86565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c03826124de565b9150612c0e836124de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c4357612c42612bc9565b5b828201905092915050565b7f457863656564656420746865206d617820616d6f756e74206f66206d696e7473600082015250565b6000612c8460208361242e565b9150612c8f82612c4e565b602082019050919050565b60006020820190508181036000830152612cb381612c77565b9050919050565b7f4e6f7420656e6f756768204e616b617a756b69204e465473206c656674000000600082015250565b6000612cf0601d8361242e565b9150612cfb82612cba565b602082019050919050565b60006020820190508181036000830152612d1f81612ce3565b9050919050565b6000612d31826124de565b9150612d3c836124de565b925082821015612d4f57612d4e612bc9565b5b828203905092915050565b6000612d65826124de565b9150612d70836124de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612da957612da8612bc9565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6000612dea60158361242e565b9150612df582612db4565b602082019050919050565b60006020820190508181036000830152612e1981612ddd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e5a826124de565b9150612e65836124de565b925082612e7557612e74612e20565b5b828204905092915050565b7f4e6f7420656e6f756768204e616b617a756b69206c6566740000000000000000600082015250565b6000612eb660188361242e565b9150612ec182612e80565b602082019050919050565b60006020820190508181036000830152612ee581612ea9565b9050919050565b600081905092915050565b6000612f0282612423565b612f0c8185612eec565b9350612f1c81856020860161243f565b80840191505092915050565b6000612f348285612ef7565b9150612f408284612ef7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fa860268361242e565b9150612fb382612f4c565b604082019050919050565b60006020820190508181036000830152612fd781612f9b565b9050919050565b6000604082019050612ff36000830185612573565b6130006020830184612573565b9392505050565b60008151905061301681612832565b92915050565b6000602082840312156130325761303161235e565b5b600061304084828501613007565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061307f60208361242e565b915061308a82613049565b602082019050919050565b600060208201905081810360008301526130ae81613072565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130dc826130b5565b6130e681856130c0565b93506130f681856020860161243f565b6130ff81612472565b840191505092915050565b600060808201905061311f6000830187612573565b61312c6020830186612573565b613139604083018561265c565b818103606083015261314b81846130d1565b905095945050505050565b60008151905061316581612394565b92915050565b6000602082840312156131815761318061235e565b5b600061318f84828501613156565b9150509291505056fea2646970667358221220cbdd8343151de2f58de9d783747c82bddd185369485ff501a20aec4b5fb4de3f64736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d506569486a38366b7576574268726a4673314734706664397a4d5064334466347a6f353145695746377931672f00000000000000000000

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

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d506569486a38366b7576574268726a4673314734706664
Arg [3] : 397a4d5064334466347a6f353145695746377931672f00000000000000000000


Deployed Bytecode Sourcemap

75665:4532:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18437:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19339:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76162:1133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25830:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79410:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77315:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78516:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15090:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79583:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77908:400;;;:::i;:::-;;72270:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79762:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75984:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78608:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79011:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78912:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20732:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75952:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16274:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63805:103;;;;;;;;;;;;;:::i;:::-;;77743:151;;;;;;;;;;;;;:::i;:::-;;63157:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78712:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77535:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19515:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78426:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79226:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79949:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19725:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75927:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78821:85;;;;;;;;;;;;;;;;;;;;;;;:::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;76162:1133::-;76333:14;76350:12;:24;76363:10;76350:24;;;;;;;;;;;;;;;;76333:41;;76393:6;;;;;;;;;;;76385:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;76494:10;;76482:8;:22;;76474:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;76579:14;;76569:6;76558:8;:17;;;;:::i;:::-;:35;;76550:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;76711:6;;76699:8;76683:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;76675:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;76782:11;76796:8;76782:22;;76835:10;;76818:13;:11;:13::i;:::-;:27;76815:293;;76867:1;76861:7;;76815:293;;;76909:8;;76900:6;:17;76897:211;;;76956:8;76947:6;76936:8;;:17;;;;:::i;:::-;:28;76933:164;;;76990:1;76984:7;;76933:164;;;77074:6;77063:8;;:17;;;;:::i;:::-;77051:8;:30;;;;:::i;:::-;77045:36;;76933:164;76897:211;76815:293;77147:5;;77141:3;:11;;;;:::i;:::-;77128:9;:24;;77120:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;77191:31;77201:10;77213:8;77191:9;:31::i;:::-;77261:8;77233:12;:24;77246:10;77233:24;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;76211:1084;;76162:1133;:::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;79410:165::-;79514:8;74052:30;74073:8;74052:20;:30::i;:::-;79535:32:::1;79549:8;79559:7;79535:13;:32::i;:::-;79410:165:::0;;;:::o;77315:210::-;63043:13;:11;:13::i;:::-;77435:8:::1;77424;:19;;;;77475:6;77462:10;:19;;;;:::i;:::-;77454:5;:27;;;;77505:10;77492;:23;;;;77315:210:::0;;;:::o;78516:86::-;78560:7;78586:8;;78579:15;;78516:86;:::o;15090:323::-;15151:7;15379:15;:13;:15::i;:::-;15364:12;;15348:13;;:28;:46;15341:53;;15090:323;:::o;79583:171::-;79692:4;73786:10;73778:18;;:4;:18;;;73774:83;;73813:32;73834:10;73813:20;:32::i;:::-;73774:83;79709:37:::1;79728:4;79734:2;79738:7;79709:18;:37::i;:::-;79583:171:::0;;;;:::o;77908:400::-;63043:13;:11;:13::i;:::-;77968::::1;77984:42;77968:58;;78045:5;78037:23;;:59;78091:3;78086:2;78062:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;78037:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;78109:13;78125:42;78109:58;;78186:5;78178:23;;:59;78232:3;78227:2;78203:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;78178:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;78260:7;:5;:7::i;:::-;78252:25;;:48;78278:21;78252:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77955:353;;77908:400::o:0;72270:143::-;64744:42;72270:143;:::o;79762:179::-;79875:4;73786:10;73778:18;;:4;:18;;;73774:83;;73813:32;73834:10;73813:20;:32::i;:::-;73774:83;79892:41:::1;79915:4;79921:2;79925:7;79892:22;:41::i;:::-;79762:179:::0;;;;:::o;75984:44::-;;;;;;;;;;;;;;;;;:::o;78608:90::-;78654:7;78680:10;;78673:17;;78608:90;:::o;79011:94::-;63043:13;:11;:13::i;:::-;79092:5:::1;;79082:7;:15;;;;;;;:::i;:::-;;79011:94:::0;;:::o;78912:93::-;63043:13;:11;:13::i;:::-;78991:6:::1;78978:10;:19;;;;78912:93:::0;:::o;20732:152::-;20804:7;20847:27;20866:7;20847:18;:27::i;:::-;20824:52;;20732:152;;;:::o;75952: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;77743:151::-;63043:13;:11;:13::i;:::-;77795:6:::1;;;;;;;;;;;77792:95;;;77826:5;77817:6;;:14;;;;;;;;;;;;;;;;;;77792:95;;;77871:4;77862:6;;:13;;;;;;;;;;;;;;;;;;77792:95;77743:151::o:0;63157:87::-;63203:7;63230:6;;;;;;;;;;;63223:13;;63157:87;:::o;78712:103::-;63043:13;:11;:13::i;:::-;78801:6:::1;78792;:15;;;;:::i;:::-;78784:5;:23;;;;78712:103:::0;:::o;77535:198::-;63043:13;:11;:13::i;:::-;77648:6:::1;;77636:8;77620:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;77612:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;77694:31;77704:10;77716:8;77694:9;:31::i;:::-;77535:198:::0;:::o;19515:104::-;19571:13;19604:7;19597:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19515:104;:::o;78426:84::-;78471:7;78497:5;;78490:12;;78426:84;:::o;79226:176::-;79330:8;74052:30;74073:8;74052:20;:30::i;:::-;79351:43:::1;79375:8;79385;79351:23;:43::i;:::-;79226:176:::0;;;:::o;79949:245::-;80117:4;73786:10;73778:18;;:4;:18;;;73774:83;;73813:32;73834:10;73813:20;:32::i;:::-;73774:83;80139:47:::1;80162:4;80168:2;80172:7;80181:4;80139:22;:47::i;:::-;79949: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;75927:18::-;;;;;;;;;;;;;:::o;78821:85::-;63043:13;:11;:13::i;:::-;78894:4:::1;78883:8;:15;;;;78821:85:::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;63322:132::-;63397:12;:10;:12::i;:::-;63386:23;;:7;:5;:7::i;:::-;:23;;;63378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63322:132::o;14606:92::-;14662:7;14606:92;:::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;78318:100::-;78370:13;78403:7;78396:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78318: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:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:118::-;5650:24;5668:5;5650:24;:::i;:::-;5645:3;5638:37;5563:118;;:::o;5687:222::-;5780:4;5818:2;5807:9;5803:18;5795:26;;5831:71;5899:1;5888:9;5884:17;5875:6;5831:71;:::i;:::-;5687:222;;;;:::o;5915:619::-;5992:6;6000;6008;6057:2;6045:9;6036:7;6032:23;6028:32;6025:119;;;6063:79;;:::i;:::-;6025:119;6183:1;6208:53;6253:7;6244:6;6233:9;6229:22;6208:53;:::i;:::-;6198:63;;6154:117;6310:2;6336:53;6381:7;6372:6;6361:9;6357:22;6336:53;:::i;:::-;6326:63;;6281:118;6438:2;6464:53;6509:7;6500:6;6489:9;6485:22;6464:53;:::i;:::-;6454:63;;6409:118;5915:619;;;;;:::o;6540:60::-;6568:3;6589:5;6582:12;;6540:60;;;:::o;6606:142::-;6656:9;6689:53;6707:34;6716:24;6734:5;6716:24;:::i;:::-;6707:34;:::i;:::-;6689:53;:::i;:::-;6676:66;;6606:142;;;:::o;6754:126::-;6804:9;6837:37;6868:5;6837:37;:::i;:::-;6824:50;;6754:126;;;:::o;6886:158::-;6968:9;7001:37;7032:5;7001:37;:::i;:::-;6988:50;;6886:158;;;:::o;7050:195::-;7169:69;7232:5;7169:69;:::i;:::-;7164:3;7157:82;7050:195;;:::o;7251:286::-;7376:4;7414:2;7403:9;7399:18;7391:26;;7427:103;7527:1;7516:9;7512:17;7503:6;7427:103;:::i;:::-;7251:286;;;;:::o;7543:329::-;7602:6;7651:2;7639:9;7630:7;7626:23;7622:32;7619:119;;;7657:79;;:::i;:::-;7619:119;7777:1;7802:53;7847:7;7838:6;7827:9;7823:22;7802:53;:::i;:::-;7792:63;;7748:117;7543:329;;;;:::o;7878:117::-;7987:1;7984;7977:12;8001:117;8110:1;8107;8100:12;8124:117;8233:1;8230;8223:12;8261:553;8319:8;8329:6;8379:3;8372:4;8364:6;8360:17;8356:27;8346:122;;8387:79;;:::i;:::-;8346:122;8500:6;8487:20;8477:30;;8530:18;8522:6;8519:30;8516:117;;;8552:79;;:::i;:::-;8516:117;8666:4;8658:6;8654:17;8642:29;;8720:3;8712:4;8704:6;8700:17;8690:8;8686:32;8683:41;8680:128;;;8727:79;;:::i;:::-;8680:128;8261:553;;;;;:::o;8820:529::-;8891:6;8899;8948:2;8936:9;8927:7;8923:23;8919:32;8916:119;;;8954:79;;:::i;:::-;8916:119;9102:1;9091:9;9087:17;9074:31;9132:18;9124:6;9121:30;9118:117;;;9154:79;;:::i;:::-;9118:117;9267:65;9324:7;9315:6;9304:9;9300:22;9267:65;:::i;:::-;9249:83;;;;9045:297;8820:529;;;;;:::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:180::-;15119:32;15115:1;15107:6;15103:14;15096:56;14979:180;:::o;15165:366::-;15307:3;15328:67;15392:2;15387:3;15328:67;:::i;:::-;15321:74;;15404:93;15493:3;15404:93;:::i;:::-;15522:2;15517:3;15513:12;15506:19;;15165:366;;;:::o;15537:419::-;15703:4;15741:2;15730:9;15726:18;15718:26;;15790:9;15784:4;15780:20;15776:1;15765:9;15761:17;15754:47;15818:131;15944:4;15818:131;:::i;:::-;15810:139;;15537:419;;;:::o;15962:180::-;16010:77;16007:1;16000:88;16107:4;16104:1;16097:15;16131:4;16128:1;16121:15;16148:305;16188:3;16207:20;16225:1;16207:20;:::i;:::-;16202:25;;16241:20;16259:1;16241:20;:::i;:::-;16236:25;;16395:1;16327:66;16323:74;16320:1;16317:81;16314:107;;;16401:18;;:::i;:::-;16314:107;16445:1;16442;16438:9;16431:16;;16148:305;;;;:::o;16459:182::-;16599:34;16595:1;16587:6;16583:14;16576:58;16459:182;:::o;16647:366::-;16789:3;16810:67;16874:2;16869:3;16810:67;:::i;:::-;16803:74;;16886:93;16975:3;16886:93;:::i;:::-;17004:2;16999:3;16995:12;16988:19;;16647:366;;;:::o;17019:419::-;17185:4;17223:2;17212:9;17208:18;17200:26;;17272:9;17266:4;17262:20;17258:1;17247:9;17243:17;17236:47;17300:131;17426:4;17300:131;:::i;:::-;17292:139;;17019:419;;;:::o;17444:179::-;17584:31;17580:1;17572:6;17568:14;17561:55;17444:179;:::o;17629:366::-;17771:3;17792:67;17856:2;17851:3;17792:67;:::i;:::-;17785:74;;17868:93;17957:3;17868:93;:::i;:::-;17986:2;17981:3;17977:12;17970:19;;17629:366;;;:::o;18001:419::-;18167:4;18205:2;18194:9;18190:18;18182:26;;18254:9;18248:4;18244:20;18240:1;18229:9;18225:17;18218:47;18282:131;18408:4;18282:131;:::i;:::-;18274:139;;18001:419;;;:::o;18426:191::-;18466:4;18486:20;18504:1;18486:20;:::i;:::-;18481:25;;18520:20;18538:1;18520:20;:::i;:::-;18515:25;;18559:1;18556;18553:8;18550:34;;;18564:18;;:::i;:::-;18550:34;18609:1;18606;18602:9;18594:17;;18426:191;;;;:::o;18623:348::-;18663:7;18686:20;18704:1;18686:20;:::i;:::-;18681:25;;18720:20;18738:1;18720:20;:::i;:::-;18715:25;;18908:1;18840:66;18836:74;18833:1;18830:81;18825:1;18818:9;18811:17;18807:105;18804:131;;;18915:18;;:::i;:::-;18804:131;18963:1;18960;18956:9;18945:20;;18623:348;;;;:::o;18977:171::-;19117:23;19113:1;19105:6;19101:14;19094:47;18977:171;:::o;19154:366::-;19296:3;19317:67;19381:2;19376:3;19317:67;:::i;:::-;19310:74;;19393:93;19482:3;19393:93;:::i;:::-;19511:2;19506:3;19502:12;19495:19;;19154:366;;;:::o;19526:419::-;19692:4;19730:2;19719:9;19715:18;19707:26;;19779:9;19773:4;19769:20;19765:1;19754:9;19750:17;19743:47;19807:131;19933:4;19807:131;:::i;:::-;19799:139;;19526:419;;;:::o;19951:180::-;19999:77;19996:1;19989:88;20096:4;20093:1;20086:15;20120:4;20117:1;20110:15;20137:185;20177:1;20194:20;20212:1;20194:20;:::i;:::-;20189:25;;20228:20;20246:1;20228:20;:::i;:::-;20223:25;;20267:1;20257:35;;20272:18;;:::i;:::-;20257:35;20314:1;20311;20307:9;20302:14;;20137:185;;;;:::o;20328:174::-;20468:26;20464:1;20456:6;20452:14;20445:50;20328:174;:::o;20508:366::-;20650:3;20671:67;20735:2;20730:3;20671:67;:::i;:::-;20664:74;;20747:93;20836:3;20747:93;:::i;:::-;20865:2;20860:3;20856:12;20849:19;;20508:366;;;:::o;20880:419::-;21046:4;21084:2;21073:9;21069:18;21061:26;;21133:9;21127:4;21123:20;21119:1;21108:9;21104:17;21097:47;21161:131;21287:4;21161:131;:::i;:::-;21153:139;;20880:419;;;:::o;21305:148::-;21407:11;21444:3;21429:18;;21305:148;;;;:::o;21459:377::-;21565:3;21593:39;21626:5;21593:39;:::i;:::-;21648:89;21730:6;21725:3;21648:89;:::i;:::-;21641:96;;21746:52;21791:6;21786:3;21779:4;21772:5;21768:16;21746:52;:::i;:::-;21823:6;21818:3;21814:16;21807:23;;21569:267;21459:377;;;;:::o;21842:435::-;22022:3;22044:95;22135:3;22126:6;22044:95;:::i;:::-;22037:102;;22156:95;22247:3;22238:6;22156:95;:::i;:::-;22149:102;;22268:3;22261:10;;21842:435;;;;;:::o;22283:225::-;22423:34;22419:1;22411:6;22407:14;22400:58;22492:8;22487:2;22479:6;22475:15;22468:33;22283:225;:::o;22514:366::-;22656:3;22677:67;22741:2;22736:3;22677:67;:::i;:::-;22670:74;;22753:93;22842:3;22753:93;:::i;:::-;22871:2;22866:3;22862:12;22855:19;;22514:366;;;:::o;22886:419::-;23052:4;23090:2;23079:9;23075:18;23067:26;;23139:9;23133:4;23129:20;23125:1;23114:9;23110:17;23103:47;23167:131;23293:4;23167:131;:::i;:::-;23159:139;;22886:419;;;:::o;23311:332::-;23432:4;23470:2;23459:9;23455:18;23447:26;;23483:71;23551:1;23540:9;23536:17;23527:6;23483:71;:::i;:::-;23564:72;23632:2;23621:9;23617:18;23608:6;23564:72;:::i;:::-;23311:332;;;;;:::o;23649:137::-;23703:5;23734:6;23728:13;23719:22;;23750:30;23774:5;23750:30;:::i;:::-;23649:137;;;;:::o;23792:345::-;23859:6;23908:2;23896:9;23887:7;23883:23;23879:32;23876:119;;;23914:79;;:::i;:::-;23876:119;24034:1;24059:61;24112:7;24103:6;24092:9;24088:22;24059:61;:::i;:::-;24049:71;;24005:125;23792:345;;;;:::o;24143:182::-;24283:34;24279:1;24271:6;24267:14;24260:58;24143:182;:::o;24331:366::-;24473:3;24494:67;24558:2;24553:3;24494:67;:::i;:::-;24487:74;;24570:93;24659:3;24570:93;:::i;:::-;24688:2;24683:3;24679:12;24672:19;;24331:366;;;:::o;24703:419::-;24869:4;24907:2;24896:9;24892:18;24884:26;;24956:9;24950:4;24946:20;24942:1;24931:9;24927:17;24920:47;24984:131;25110:4;24984:131;:::i;:::-;24976:139;;24703:419;;;:::o;25128:98::-;25179:6;25213:5;25207:12;25197:22;;25128:98;;;:::o;25232:168::-;25315:11;25349:6;25344:3;25337:19;25389:4;25384:3;25380:14;25365:29;;25232:168;;;;:::o;25406:360::-;25492:3;25520:38;25552:5;25520:38;:::i;:::-;25574:70;25637:6;25632:3;25574:70;:::i;:::-;25567:77;;25653:52;25698:6;25693:3;25686:4;25679:5;25675:16;25653:52;:::i;:::-;25730:29;25752:6;25730:29;:::i;:::-;25725:3;25721:39;25714:46;;25496:270;25406:360;;;;:::o;25772:640::-;25967:4;26005:3;25994:9;25990:19;25982:27;;26019:71;26087:1;26076:9;26072:17;26063:6;26019:71;:::i;:::-;26100:72;26168:2;26157:9;26153:18;26144:6;26100:72;:::i;:::-;26182;26250:2;26239:9;26235:18;26226:6;26182:72;:::i;:::-;26301:9;26295:4;26291:20;26286:2;26275:9;26271:18;26264:48;26329:76;26400:4;26391:6;26329:76;:::i;:::-;26321:84;;25772:640;;;;;;;:::o;26418:141::-;26474:5;26505:6;26499:13;26490:22;;26521:32;26547:5;26521:32;:::i;:::-;26418:141;;;;:::o;26565:349::-;26634:6;26683:2;26671:9;26662:7;26658:23;26654:32;26651:119;;;26689:79;;:::i;:::-;26651:119;26809:1;26834:63;26889:7;26880:6;26869:9;26865:22;26834:63;:::i;:::-;26824:73;;26780:127;26565:349;;;;:::o

Swarm Source

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