ETH Price: $2,416.01 (-1.32%)

Token

D3LUSIONAPEYACHTCLUB (D3LUSIONAPEYC)
 

Overview

Max Total Supply

218 D3LUSIONAPEYC

Holders

213

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
liangkuai.eth
Balance
1 D3LUSIONAPEYC
0x2Fad8AdBC659e5599f5B7929ABdBb75A80335923
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:
D3LUSIONAPEYACHTCLUB

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-30
*/

// SPDX-License-Identifier: MIT


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

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



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



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





pragma solidity ^0.8.0;



contract D3LUSIONAPEYACHTCLUB is ERC721A, Ownable {
    uint256 public price;
    uint256 public maxMintPerTx;
    uint256 public immutable collectionSize;
    string public baseUri;
    bool public open = false;
    uint256 public maxFree;

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _price,
        uint256 _maxMintPerTx,
        uint256 _collectionSize,
        uint256 _maxFree
    ) ERC721A(_name, _symbol) {
        price = _price;
        maxMintPerTx = _maxMintPerTx;
        collectionSize = _collectionSize;
        maxFree = _maxFree;
    }

    // Events
    event PriceChanged(uint256 newPrice);
    event MaxMintPerTxChanged(uint256 newMaxMintPerTx);

    modifier mintCompliance(uint256 _quantity) {
        unchecked {
            require(open, "Minting has not started yet");
            require(_quantity <= maxMintPerTx, "Quantity is too large");
            require(_quantity != 0, "Must mint at least 1 token");
        }
        _;
    }

    // Minting
    function mint(uint256 _quantity)
        external
        payable
        mintCompliance(_quantity)
    {
        uint256 requiredValue = _quantity * price;
        uint256 userMinted = _numberMinted(msg.sender);

        if (userMinted == 0) {
            requiredValue = _quantity <= maxFree
                ? 0
                : requiredValue - (price * maxFree);
        }
        require(msg.value >= requiredValue, "Sent Ether is too low");
        if (_totalMinted() + _quantity <= collectionSize) {
            _safeMint(msg.sender, _quantity);
        }
    }

    // TokenURIs
    function _baseURI() internal view override returns (string memory) {
        return baseUri;
    }

    // Utils
    function setPrice(uint256 _newPrice) external onlyOwner {
        require(price != _newPrice, "Already set to this value");
        price = _newPrice;

        emit PriceChanged(_newPrice);
    }

    function setMaxMintPerTx(uint256 _newMaxMintPerTx) external onlyOwner {
        require(maxMintPerTx != _newMaxMintPerTx, "Already set to this value");
        maxMintPerTx = _newMaxMintPerTx;

        emit MaxMintPerTxChanged(_newMaxMintPerTx);
    }

    function setBaseURI(string calldata _newBaseURI) external onlyOwner {
        baseUri = _newBaseURI;
    }

    function setOpen(bool _value) external onlyOwner {
        open = _value;
    }

    function setMaxFree(uint256 _newMaxFree) external onlyOwner {
        require(maxFree != _newMaxFree, "Already set to this value");
        maxFree = _newMaxFree;
    }

    function allowlistMint(uint256 _quantity) external onlyOwner {
        require(
            _totalMinted() + _quantity <= collectionSize,
            "Collection is full"
        );
        _safeMint(msg.sender, _quantity);
    }

    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    // ERC721A overrides
    // ERC721A starts counting tokenIds from 0, this contract starts from 1
    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    // ERC721A has no file extensions for its tokenURIs
    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), ".json"))
                : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_maxMintPerTx","type":"uint256"},{"internalType":"uint256","name":"_collectionSize","type":"uint256"},{"internalType":"uint256","name":"_maxFree","type":"uint256"}],"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":[],"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":false,"internalType":"uint256","name":"newMaxMintPerTx","type":"uint256"}],"name":"MaxMintPerTxChanged","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":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"PriceChanged","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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFree","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000600c60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040516200349f3803806200349f833981810160405281019062000052919062000446565b858581600290805190602001906200006c929190620001be565b50806003908051906020019062000085929190620001be565b5062000096620000e760201b60201c565b6000819055505050620000be620000b2620000f060201b60201c565b620000f860201b60201c565b8360098190555082600a81905550816080818152505080600d8190555050505050505062000585565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cc906200054f565b90600052602060002090601f016020900481019282620001f057600085556200023c565b82601f106200020b57805160ff19168380011785556200023c565b828001600101855582156200023c579182015b828111156200023b5782518255916020019190600101906200021e565b5b5090506200024b91906200024f565b5090565b5b808211156200026a57600081600090555060010162000250565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002d7826200028c565b810181811067ffffffffffffffff82111715620002f957620002f86200029d565b5b80604052505050565b60006200030e6200026e565b90506200031c8282620002cc565b919050565b600067ffffffffffffffff8211156200033f576200033e6200029d565b5b6200034a826200028c565b9050602081019050919050565b60005b83811015620003775780820151818401526020810190506200035a565b8381111562000387576000848401525b50505050565b6000620003a46200039e8462000321565b62000302565b905082815260208101848484011115620003c357620003c262000287565b5b620003d084828562000357565b509392505050565b600082601f830112620003f057620003ef62000282565b5b8151620004028482602086016200038d565b91505092915050565b6000819050919050565b62000420816200040b565b81146200042c57600080fd5b50565b600081519050620004408162000415565b92915050565b60008060008060008060c0878903121562000466576200046562000278565b5b600087015167ffffffffffffffff8111156200048757620004866200027d565b5b6200049589828a01620003d8565b965050602087015167ffffffffffffffff811115620004b957620004b86200027d565b5b620004c789828a01620003d8565b9550506040620004da89828a016200042f565b9450506060620004ed89828a016200042f565b93505060806200050089828a016200042f565b92505060a06200051389828a016200042f565b9150509295509295509295565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200056857607f821691505b602082108114156200057f576200057e62000520565b5b50919050565b608051612ef0620005af60003960008181610df70152818161132301526114f30152612ef06000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063de7fcb1d11610064578063de7fcb1d1461063f578063e985e9c51461066a578063f2fde38b146106a7578063fcfff16f146106d0576101d8565b8063b88d4fde14610594578063c180526a146105b0578063c87b56dd146105d9578063d755bf9914610616576101d8565b80639abc8320116100d15780639abc8320146104f9578063a035b1fe14610524578063a0712d681461054f578063a22cb4651461056b576101d8565b8063715018a6146104635780638da5cb5b1461047a57806391b7f5ed146104a557806395d89b41146104ce576101d8565b806342842e0e1161017a578063616cdb1e11610149578063616cdb1e146103975780636352211e146103c05780636fdca5e0146103fd57806370a0823114610426576101d8565b806342842e0e146102fc57806345c0f53314610318578063485a68a31461034357806355f804b31461036e576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd1461029e57806323b872dd146102c95780633ccfd60b146102e5576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612143565b6106fb565b604051610211919061218b565b60405180910390f35b34801561022657600080fd5b5061022f61078d565b60405161023c919061223f565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612297565b61081f565b6040516102799190612305565b60405180910390f35b61029c6004803603810190610297919061234c565b61089e565b005b3480156102aa57600080fd5b506102b36109e2565b6040516102c0919061239b565b60405180910390f35b6102e360048036038101906102de91906123b6565b6109f9565b005b3480156102f157600080fd5b506102fa610d1e565b005b610316600480360381019061031191906123b6565b610dd5565b005b34801561032457600080fd5b5061032d610df5565b60405161033a919061239b565b60405180910390f35b34801561034f57600080fd5b50610358610e19565b604051610365919061239b565b60405180910390f35b34801561037a57600080fd5b506103956004803603810190610390919061246e565b610e1f565b005b3480156103a357600080fd5b506103be60048036038101906103b99190612297565b610e3d565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190612297565b610ecb565b6040516103f49190612305565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f91906124e7565b610edd565b005b34801561043257600080fd5b5061044d60048036038101906104489190612514565b610f02565b60405161045a919061239b565b60405180910390f35b34801561046f57600080fd5b50610478610fbb565b005b34801561048657600080fd5b5061048f610fcf565b60405161049c9190612305565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190612297565b610ff9565b005b3480156104da57600080fd5b506104e3611087565b6040516104f0919061223f565b60405180910390f35b34801561050557600080fd5b5061050e611119565b60405161051b919061223f565b60405180910390f35b34801561053057600080fd5b506105396111a7565b604051610546919061239b565b60405180910390f35b61056960048036038101906105649190612297565b6111ad565b005b34801561057757600080fd5b50610592600480360381019061058d9190612541565b61136b565b005b6105ae60048036038101906105a991906126b1565b611476565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190612297565b6114e9565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612297565b611573565b60405161060d919061223f565b60405180910390f35b34801561062257600080fd5b5061063d60048036038101906106389190612297565b611612565b005b34801561064b57600080fd5b50610654611669565b604051610661919061239b565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612734565b61166f565b60405161069e919061218b565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190612514565b611703565b005b3480156106dc57600080fd5b506106e5611787565b6040516106f2919061218b565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107865750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461079c906127a3565b80601f01602080910402602001604051908101604052809291908181526020018280546107c8906127a3565b80156108155780601f106107ea57610100808354040283529160200191610815565b820191906000526020600020905b8154815290600101906020018083116107f857829003601f168201915b5050505050905090565b600061082a8261179a565b610860576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a982610ecb565b90508073ffffffffffffffffffffffffffffffffffffffff166108ca6117f9565b73ffffffffffffffffffffffffffffffffffffffff161461092d576108f6816108f16117f9565b61166f565b61092c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109ec611801565b6001546000540303905090565b6000610a048261180a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a77846118d8565b91509150610a8d8187610a886117f9565b6118ff565b610ad957610aa286610a9d6117f9565b61166f565b610ad8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b40576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4d8686866001611943565b8015610b5857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2685610c02888887611949565b7c020000000000000000000000000000000000000000000000000000000017611971565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cae576000600185019050600060046000838152602001908152602001600020541415610cac576000548114610cab578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d16868686600161199c565b505050505050565b610d266119a2565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d4c90612806565b60006040518083038185875af1925050503d8060008114610d89576040519150601f19603f3d011682016040523d82523d6000602084013e610d8e565b606091505b5050905080610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990612867565b60405180910390fd5b50565b610df083838360405180602001604052806000815250611476565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d5481565b610e276119a2565b8181600b9190610e38929190612034565b505050565b610e456119a2565b80600a541415610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e81906128d3565b60405180910390fd5b80600a819055507f67a9eaf2f3789db91ee068d120ab9ae3231aef935f2a6a77f96d0de1638337db81604051610ec0919061239b565b60405180910390a150565b6000610ed68261180a565b9050919050565b610ee56119a2565b80600c60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fc36119a2565b610fcd6000611a20565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110016119a2565b806009541415611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d906128d3565b60405180910390fd5b806009819055507fa6dc15bdb68da224c66db4b3838d9a2b205138e8cff6774e57d0af91e196d6228160405161107c919061239b565b60405180910390a150565b606060038054611096906127a3565b80601f01602080910402602001604051908101604052809291908181526020018280546110c2906127a3565b801561110f5780601f106110e45761010080835404028352916020019161110f565b820191906000526020600020905b8154815290600101906020018083116110f257829003601f168201915b5050505050905090565b600b8054611126906127a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611152906127a3565b801561119f5780601f106111745761010080835404028352916020019161119f565b820191906000526020600020905b81548152906001019060200180831161118257829003601f168201915b505050505081565b60095481565b80600c60009054906101000a900460ff166111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f49061293f565b60405180910390fd5b600a54811115611242576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611239906129ab565b60405180910390fd5b6000811415611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d90612a17565b60405180910390fd5b6000600954836112969190612a66565b905060006112a333611ae6565b905060008114156112de57600d548411156112d857600d546009546112c89190612a66565b826112d39190612ac0565b6112db565b60005b91505b81341015611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890612b40565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008461134b611b3d565b6113559190612b60565b11611365576113643385611b50565b5b50505050565b80600760006113786117f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114256117f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161146a919061218b565b60405180910390a35050565b6114818484846109f9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114e3576114ac84848484611b6e565b6114e2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6114f16119a2565b7f00000000000000000000000000000000000000000000000000000000000000008161151b611b3d565b6115259190612b60565b1115611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155d90612c02565b60405180910390fd5b6115703382611b50565b50565b606061157e8261179a565b6115b4576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115be611cce565b90506000815114156115df576040518060200160405280600081525061160a565b806115e984611d60565b6040516020016115fa929190612caa565b6040516020818303038152906040525b915050919050565b61161a6119a2565b80600d54141561165f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611656906128d3565b60405180910390fd5b80600d8190555050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61170b6119a2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290612d4b565b60405180910390fd5b61178481611a20565b50565b600c60009054906101000a900460ff1681565b6000816117a5611801565b111580156117b4575060005482105b80156117f2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611819611801565b116118a1576000548110156118a05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561189e575b6000811415611894576004600083600190039350838152602001908152602001600020549050611869565b80925050506118d3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611960868684611db9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119aa611dc2565b73ffffffffffffffffffffffffffffffffffffffff166119c8610fcf565b73ffffffffffffffffffffffffffffffffffffffff1614611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590612db7565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000611b47611801565b60005403905090565b611b6a828260405180602001604052806000815250611dca565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b946117f9565b8786866040518563ffffffff1660e01b8152600401611bb69493929190612e2c565b602060405180830381600087803b158015611bd057600080fd5b505af1925050508015611c0157506040513d601f19601f82011682018060405250810190611bfe9190612e8d565b60015b611c7b573d8060008114611c31576040519150601f19603f3d011682016040523d82523d6000602084013e611c36565b606091505b50600081511415611c73576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611cdd906127a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611d09906127a3565b8015611d565780601f10611d2b57610100808354040283529160200191611d56565b820191906000526020600020905b815481529060010190602001808311611d3957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611da457600184039350600a81066030018453600a8104905080611d9f57611da4565b611d79565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b611dd48383611e67565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e6257600080549050600083820390505b611e146000868380600101945086611b6e565b611e4a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e01578160005414611e5f57600080fd5b50505b505050565b6000805490506000821415611ea8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eb56000848385611943565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f2c83611f1d6000866000611949565b611f2685612024565b17611971565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fcd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f92565b506000821415612009576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061201f600084838561199c565b505050565b60006001821460e11b9050919050565b828054612040906127a3565b90600052602060002090601f01602090048101928261206257600085556120a9565b82601f1061207b57803560ff19168380011785556120a9565b828001600101855582156120a9579182015b828111156120a857823582559160200191906001019061208d565b5b5090506120b691906120ba565b5090565b5b808211156120d35760008160009055506001016120bb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612120816120eb565b811461212b57600080fd5b50565b60008135905061213d81612117565b92915050565b600060208284031215612159576121586120e1565b5b60006121678482850161212e565b91505092915050565b60008115159050919050565b61218581612170565b82525050565b60006020820190506121a0600083018461217c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121e05780820151818401526020810190506121c5565b838111156121ef576000848401525b50505050565b6000601f19601f8301169050919050565b6000612211826121a6565b61221b81856121b1565b935061222b8185602086016121c2565b612234816121f5565b840191505092915050565b600060208201905081810360008301526122598184612206565b905092915050565b6000819050919050565b61227481612261565b811461227f57600080fd5b50565b6000813590506122918161226b565b92915050565b6000602082840312156122ad576122ac6120e1565b5b60006122bb84828501612282565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122ef826122c4565b9050919050565b6122ff816122e4565b82525050565b600060208201905061231a60008301846122f6565b92915050565b612329816122e4565b811461233457600080fd5b50565b60008135905061234681612320565b92915050565b60008060408385031215612363576123626120e1565b5b600061237185828601612337565b925050602061238285828601612282565b9150509250929050565b61239581612261565b82525050565b60006020820190506123b0600083018461238c565b92915050565b6000806000606084860312156123cf576123ce6120e1565b5b60006123dd86828701612337565b93505060206123ee86828701612337565b92505060406123ff86828701612282565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261242e5761242d612409565b5b8235905067ffffffffffffffff81111561244b5761244a61240e565b5b60208301915083600182028301111561246757612466612413565b5b9250929050565b60008060208385031215612485576124846120e1565b5b600083013567ffffffffffffffff8111156124a3576124a26120e6565b5b6124af85828601612418565b92509250509250929050565b6124c481612170565b81146124cf57600080fd5b50565b6000813590506124e1816124bb565b92915050565b6000602082840312156124fd576124fc6120e1565b5b600061250b848285016124d2565b91505092915050565b60006020828403121561252a576125296120e1565b5b600061253884828501612337565b91505092915050565b60008060408385031215612558576125576120e1565b5b600061256685828601612337565b9250506020612577858286016124d2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125be826121f5565b810181811067ffffffffffffffff821117156125dd576125dc612586565b5b80604052505050565b60006125f06120d7565b90506125fc82826125b5565b919050565b600067ffffffffffffffff82111561261c5761261b612586565b5b612625826121f5565b9050602081019050919050565b82818337600083830152505050565b600061265461264f84612601565b6125e6565b9050828152602081018484840111156126705761266f612581565b5b61267b848285612632565b509392505050565b600082601f83011261269857612697612409565b5b81356126a8848260208601612641565b91505092915050565b600080600080608085870312156126cb576126ca6120e1565b5b60006126d987828801612337565b94505060206126ea87828801612337565b93505060406126fb87828801612282565b925050606085013567ffffffffffffffff81111561271c5761271b6120e6565b5b61272887828801612683565b91505092959194509250565b6000806040838503121561274b5761274a6120e1565b5b600061275985828601612337565b925050602061276a85828601612337565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127bb57607f821691505b602082108114156127cf576127ce612774565b5b50919050565b600081905092915050565b50565b60006127f06000836127d5565b91506127fb826127e0565b600082019050919050565b6000612811826127e3565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006128516010836121b1565b915061285c8261281b565b602082019050919050565b6000602082019050818103600083015261288081612844565b9050919050565b7f416c72656164792073657420746f20746869732076616c756500000000000000600082015250565b60006128bd6019836121b1565b91506128c882612887565b602082019050919050565b600060208201905081810360008301526128ec816128b0565b9050919050565b7f4d696e74696e6720686173206e6f742073746172746564207965740000000000600082015250565b6000612929601b836121b1565b9150612934826128f3565b602082019050919050565b600060208201905081810360008301526129588161291c565b9050919050565b7f5175616e7469747920697320746f6f206c617267650000000000000000000000600082015250565b60006129956015836121b1565b91506129a08261295f565b602082019050919050565b600060208201905081810360008301526129c481612988565b9050919050565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b6000612a01601a836121b1565b9150612a0c826129cb565b602082019050919050565b60006020820190508181036000830152612a30816129f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a7182612261565b9150612a7c83612261565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ab557612ab4612a37565b5b828202905092915050565b6000612acb82612261565b9150612ad683612261565b925082821015612ae957612ae8612a37565b5b828203905092915050565b7f53656e7420457468657220697320746f6f206c6f770000000000000000000000600082015250565b6000612b2a6015836121b1565b9150612b3582612af4565b602082019050919050565b60006020820190508181036000830152612b5981612b1d565b9050919050565b6000612b6b82612261565b9150612b7683612261565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bab57612baa612a37565b5b828201905092915050565b7f436f6c6c656374696f6e2069732066756c6c0000000000000000000000000000600082015250565b6000612bec6012836121b1565b9150612bf782612bb6565b602082019050919050565b60006020820190508181036000830152612c1b81612bdf565b9050919050565b600081905092915050565b6000612c38826121a6565b612c428185612c22565b9350612c528185602086016121c2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612c94600583612c22565b9150612c9f82612c5e565b600582019050919050565b6000612cb68285612c2d565b9150612cc28284612c2d565b9150612ccd82612c87565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d356026836121b1565b9150612d4082612cd9565b604082019050919050565b60006020820190508181036000830152612d6481612d28565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612da16020836121b1565b9150612dac82612d6b565b602082019050919050565b60006020820190508181036000830152612dd081612d94565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612dfe82612dd7565b612e088185612de2565b9350612e188185602086016121c2565b612e21816121f5565b840191505092915050565b6000608082019050612e4160008301876122f6565b612e4e60208301866122f6565b612e5b604083018561238c565b8181036060830152612e6d8184612df3565b905095945050505050565b600081519050612e8781612117565b92915050565b600060208284031215612ea357612ea26120e1565b5b6000612eb184828501612e78565b9150509291505056fea264697066735822122078489663d5fdd0868d76c9f7977c179fb007b9f1d5085106d509b7e360305fa464736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000008ae0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001444334c5553494f4e4150455941434854434c5542000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d44334c5553494f4e415045594300000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063de7fcb1d11610064578063de7fcb1d1461063f578063e985e9c51461066a578063f2fde38b146106a7578063fcfff16f146106d0576101d8565b8063b88d4fde14610594578063c180526a146105b0578063c87b56dd146105d9578063d755bf9914610616576101d8565b80639abc8320116100d15780639abc8320146104f9578063a035b1fe14610524578063a0712d681461054f578063a22cb4651461056b576101d8565b8063715018a6146104635780638da5cb5b1461047a57806391b7f5ed146104a557806395d89b41146104ce576101d8565b806342842e0e1161017a578063616cdb1e11610149578063616cdb1e146103975780636352211e146103c05780636fdca5e0146103fd57806370a0823114610426576101d8565b806342842e0e146102fc57806345c0f53314610318578063485a68a31461034357806355f804b31461036e576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd1461029e57806323b872dd146102c95780633ccfd60b146102e5576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612143565b6106fb565b604051610211919061218b565b60405180910390f35b34801561022657600080fd5b5061022f61078d565b60405161023c919061223f565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612297565b61081f565b6040516102799190612305565b60405180910390f35b61029c6004803603810190610297919061234c565b61089e565b005b3480156102aa57600080fd5b506102b36109e2565b6040516102c0919061239b565b60405180910390f35b6102e360048036038101906102de91906123b6565b6109f9565b005b3480156102f157600080fd5b506102fa610d1e565b005b610316600480360381019061031191906123b6565b610dd5565b005b34801561032457600080fd5b5061032d610df5565b60405161033a919061239b565b60405180910390f35b34801561034f57600080fd5b50610358610e19565b604051610365919061239b565b60405180910390f35b34801561037a57600080fd5b506103956004803603810190610390919061246e565b610e1f565b005b3480156103a357600080fd5b506103be60048036038101906103b99190612297565b610e3d565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190612297565b610ecb565b6040516103f49190612305565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f91906124e7565b610edd565b005b34801561043257600080fd5b5061044d60048036038101906104489190612514565b610f02565b60405161045a919061239b565b60405180910390f35b34801561046f57600080fd5b50610478610fbb565b005b34801561048657600080fd5b5061048f610fcf565b60405161049c9190612305565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190612297565b610ff9565b005b3480156104da57600080fd5b506104e3611087565b6040516104f0919061223f565b60405180910390f35b34801561050557600080fd5b5061050e611119565b60405161051b919061223f565b60405180910390f35b34801561053057600080fd5b506105396111a7565b604051610546919061239b565b60405180910390f35b61056960048036038101906105649190612297565b6111ad565b005b34801561057757600080fd5b50610592600480360381019061058d9190612541565b61136b565b005b6105ae60048036038101906105a991906126b1565b611476565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190612297565b6114e9565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612297565b611573565b60405161060d919061223f565b60405180910390f35b34801561062257600080fd5b5061063d60048036038101906106389190612297565b611612565b005b34801561064b57600080fd5b50610654611669565b604051610661919061239b565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612734565b61166f565b60405161069e919061218b565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190612514565b611703565b005b3480156106dc57600080fd5b506106e5611787565b6040516106f2919061218b565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107865750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461079c906127a3565b80601f01602080910402602001604051908101604052809291908181526020018280546107c8906127a3565b80156108155780601f106107ea57610100808354040283529160200191610815565b820191906000526020600020905b8154815290600101906020018083116107f857829003601f168201915b5050505050905090565b600061082a8261179a565b610860576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a982610ecb565b90508073ffffffffffffffffffffffffffffffffffffffff166108ca6117f9565b73ffffffffffffffffffffffffffffffffffffffff161461092d576108f6816108f16117f9565b61166f565b61092c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109ec611801565b6001546000540303905090565b6000610a048261180a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a77846118d8565b91509150610a8d8187610a886117f9565b6118ff565b610ad957610aa286610a9d6117f9565b61166f565b610ad8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b40576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4d8686866001611943565b8015610b5857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2685610c02888887611949565b7c020000000000000000000000000000000000000000000000000000000017611971565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cae576000600185019050600060046000838152602001908152602001600020541415610cac576000548114610cab578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d16868686600161199c565b505050505050565b610d266119a2565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d4c90612806565b60006040518083038185875af1925050503d8060008114610d89576040519150601f19603f3d011682016040523d82523d6000602084013e610d8e565b606091505b5050905080610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990612867565b60405180910390fd5b50565b610df083838360405180602001604052806000815250611476565b505050565b7f00000000000000000000000000000000000000000000000000000000000008ae81565b600d5481565b610e276119a2565b8181600b9190610e38929190612034565b505050565b610e456119a2565b80600a541415610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e81906128d3565b60405180910390fd5b80600a819055507f67a9eaf2f3789db91ee068d120ab9ae3231aef935f2a6a77f96d0de1638337db81604051610ec0919061239b565b60405180910390a150565b6000610ed68261180a565b9050919050565b610ee56119a2565b80600c60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fc36119a2565b610fcd6000611a20565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110016119a2565b806009541415611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d906128d3565b60405180910390fd5b806009819055507fa6dc15bdb68da224c66db4b3838d9a2b205138e8cff6774e57d0af91e196d6228160405161107c919061239b565b60405180910390a150565b606060038054611096906127a3565b80601f01602080910402602001604051908101604052809291908181526020018280546110c2906127a3565b801561110f5780601f106110e45761010080835404028352916020019161110f565b820191906000526020600020905b8154815290600101906020018083116110f257829003601f168201915b5050505050905090565b600b8054611126906127a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611152906127a3565b801561119f5780601f106111745761010080835404028352916020019161119f565b820191906000526020600020905b81548152906001019060200180831161118257829003601f168201915b505050505081565b60095481565b80600c60009054906101000a900460ff166111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f49061293f565b60405180910390fd5b600a54811115611242576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611239906129ab565b60405180910390fd5b6000811415611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d90612a17565b60405180910390fd5b6000600954836112969190612a66565b905060006112a333611ae6565b905060008114156112de57600d548411156112d857600d546009546112c89190612a66565b826112d39190612ac0565b6112db565b60005b91505b81341015611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890612b40565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000008ae8461134b611b3d565b6113559190612b60565b11611365576113643385611b50565b5b50505050565b80600760006113786117f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114256117f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161146a919061218b565b60405180910390a35050565b6114818484846109f9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114e3576114ac84848484611b6e565b6114e2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6114f16119a2565b7f00000000000000000000000000000000000000000000000000000000000008ae8161151b611b3d565b6115259190612b60565b1115611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155d90612c02565b60405180910390fd5b6115703382611b50565b50565b606061157e8261179a565b6115b4576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115be611cce565b90506000815114156115df576040518060200160405280600081525061160a565b806115e984611d60565b6040516020016115fa929190612caa565b6040516020818303038152906040525b915050919050565b61161a6119a2565b80600d54141561165f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611656906128d3565b60405180910390fd5b80600d8190555050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61170b6119a2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290612d4b565b60405180910390fd5b61178481611a20565b50565b600c60009054906101000a900460ff1681565b6000816117a5611801565b111580156117b4575060005482105b80156117f2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611819611801565b116118a1576000548110156118a05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561189e575b6000811415611894576004600083600190039350838152602001908152602001600020549050611869565b80925050506118d3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611960868684611db9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119aa611dc2565b73ffffffffffffffffffffffffffffffffffffffff166119c8610fcf565b73ffffffffffffffffffffffffffffffffffffffff1614611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590612db7565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000611b47611801565b60005403905090565b611b6a828260405180602001604052806000815250611dca565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b946117f9565b8786866040518563ffffffff1660e01b8152600401611bb69493929190612e2c565b602060405180830381600087803b158015611bd057600080fd5b505af1925050508015611c0157506040513d601f19601f82011682018060405250810190611bfe9190612e8d565b60015b611c7b573d8060008114611c31576040519150601f19603f3d011682016040523d82523d6000602084013e611c36565b606091505b50600081511415611c73576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611cdd906127a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611d09906127a3565b8015611d565780601f10611d2b57610100808354040283529160200191611d56565b820191906000526020600020905b815481529060010190602001808311611d3957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611da457600184039350600a81066030018453600a8104905080611d9f57611da4565b611d79565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b611dd48383611e67565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e6257600080549050600083820390505b611e146000868380600101945086611b6e565b611e4a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e01578160005414611e5f57600080fd5b50505b505050565b6000805490506000821415611ea8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eb56000848385611943565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f2c83611f1d6000866000611949565b611f2685612024565b17611971565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fcd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f92565b506000821415612009576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061201f600084838561199c565b505050565b60006001821460e11b9050919050565b828054612040906127a3565b90600052602060002090601f01602090048101928261206257600085556120a9565b82601f1061207b57803560ff19168380011785556120a9565b828001600101855582156120a9579182015b828111156120a857823582559160200191906001019061208d565b5b5090506120b691906120ba565b5090565b5b808211156120d35760008160009055506001016120bb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612120816120eb565b811461212b57600080fd5b50565b60008135905061213d81612117565b92915050565b600060208284031215612159576121586120e1565b5b60006121678482850161212e565b91505092915050565b60008115159050919050565b61218581612170565b82525050565b60006020820190506121a0600083018461217c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121e05780820151818401526020810190506121c5565b838111156121ef576000848401525b50505050565b6000601f19601f8301169050919050565b6000612211826121a6565b61221b81856121b1565b935061222b8185602086016121c2565b612234816121f5565b840191505092915050565b600060208201905081810360008301526122598184612206565b905092915050565b6000819050919050565b61227481612261565b811461227f57600080fd5b50565b6000813590506122918161226b565b92915050565b6000602082840312156122ad576122ac6120e1565b5b60006122bb84828501612282565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122ef826122c4565b9050919050565b6122ff816122e4565b82525050565b600060208201905061231a60008301846122f6565b92915050565b612329816122e4565b811461233457600080fd5b50565b60008135905061234681612320565b92915050565b60008060408385031215612363576123626120e1565b5b600061237185828601612337565b925050602061238285828601612282565b9150509250929050565b61239581612261565b82525050565b60006020820190506123b0600083018461238c565b92915050565b6000806000606084860312156123cf576123ce6120e1565b5b60006123dd86828701612337565b93505060206123ee86828701612337565b92505060406123ff86828701612282565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261242e5761242d612409565b5b8235905067ffffffffffffffff81111561244b5761244a61240e565b5b60208301915083600182028301111561246757612466612413565b5b9250929050565b60008060208385031215612485576124846120e1565b5b600083013567ffffffffffffffff8111156124a3576124a26120e6565b5b6124af85828601612418565b92509250509250929050565b6124c481612170565b81146124cf57600080fd5b50565b6000813590506124e1816124bb565b92915050565b6000602082840312156124fd576124fc6120e1565b5b600061250b848285016124d2565b91505092915050565b60006020828403121561252a576125296120e1565b5b600061253884828501612337565b91505092915050565b60008060408385031215612558576125576120e1565b5b600061256685828601612337565b9250506020612577858286016124d2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125be826121f5565b810181811067ffffffffffffffff821117156125dd576125dc612586565b5b80604052505050565b60006125f06120d7565b90506125fc82826125b5565b919050565b600067ffffffffffffffff82111561261c5761261b612586565b5b612625826121f5565b9050602081019050919050565b82818337600083830152505050565b600061265461264f84612601565b6125e6565b9050828152602081018484840111156126705761266f612581565b5b61267b848285612632565b509392505050565b600082601f83011261269857612697612409565b5b81356126a8848260208601612641565b91505092915050565b600080600080608085870312156126cb576126ca6120e1565b5b60006126d987828801612337565b94505060206126ea87828801612337565b93505060406126fb87828801612282565b925050606085013567ffffffffffffffff81111561271c5761271b6120e6565b5b61272887828801612683565b91505092959194509250565b6000806040838503121561274b5761274a6120e1565b5b600061275985828601612337565b925050602061276a85828601612337565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127bb57607f821691505b602082108114156127cf576127ce612774565b5b50919050565b600081905092915050565b50565b60006127f06000836127d5565b91506127fb826127e0565b600082019050919050565b6000612811826127e3565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006128516010836121b1565b915061285c8261281b565b602082019050919050565b6000602082019050818103600083015261288081612844565b9050919050565b7f416c72656164792073657420746f20746869732076616c756500000000000000600082015250565b60006128bd6019836121b1565b91506128c882612887565b602082019050919050565b600060208201905081810360008301526128ec816128b0565b9050919050565b7f4d696e74696e6720686173206e6f742073746172746564207965740000000000600082015250565b6000612929601b836121b1565b9150612934826128f3565b602082019050919050565b600060208201905081810360008301526129588161291c565b9050919050565b7f5175616e7469747920697320746f6f206c617267650000000000000000000000600082015250565b60006129956015836121b1565b91506129a08261295f565b602082019050919050565b600060208201905081810360008301526129c481612988565b9050919050565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b6000612a01601a836121b1565b9150612a0c826129cb565b602082019050919050565b60006020820190508181036000830152612a30816129f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a7182612261565b9150612a7c83612261565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ab557612ab4612a37565b5b828202905092915050565b6000612acb82612261565b9150612ad683612261565b925082821015612ae957612ae8612a37565b5b828203905092915050565b7f53656e7420457468657220697320746f6f206c6f770000000000000000000000600082015250565b6000612b2a6015836121b1565b9150612b3582612af4565b602082019050919050565b60006020820190508181036000830152612b5981612b1d565b9050919050565b6000612b6b82612261565b9150612b7683612261565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bab57612baa612a37565b5b828201905092915050565b7f436f6c6c656374696f6e2069732066756c6c0000000000000000000000000000600082015250565b6000612bec6012836121b1565b9150612bf782612bb6565b602082019050919050565b60006020820190508181036000830152612c1b81612bdf565b9050919050565b600081905092915050565b6000612c38826121a6565b612c428185612c22565b9350612c528185602086016121c2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612c94600583612c22565b9150612c9f82612c5e565b600582019050919050565b6000612cb68285612c2d565b9150612cc28284612c2d565b9150612ccd82612c87565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d356026836121b1565b9150612d4082612cd9565b604082019050919050565b60006020820190508181036000830152612d6481612d28565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612da16020836121b1565b9150612dac82612d6b565b602082019050919050565b60006020820190508181036000830152612dd081612d94565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612dfe82612dd7565b612e088185612de2565b9350612e188185602086016121c2565b612e21816121f5565b840191505092915050565b6000608082019050612e4160008301876122f6565b612e4e60208301866122f6565b612e5b604083018561238c565b8181036060830152612e6d8184612df3565b905095945050505050565b600081519050612e8781612117565b92915050565b600060208284031215612ea357612ea26120e1565b5b6000612eb184828501612e78565b9150509291505056fea264697066735822122078489663d5fdd0868d76c9f7977c179fb007b9f1d5085106d509b7e360305fa464736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000008ae0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001444334c5553494f4e4150455941434854434c5542000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d44334c5553494f4e415045594300000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): D3LUSIONAPEYACHTCLUB
Arg [1] : _symbol (string): D3LUSIONAPEYC
Arg [2] : _price (uint256): 5000000000000000
Arg [3] : _maxMintPerTx (uint256): 20
Arg [4] : _collectionSize (uint256): 2222
Arg [5] : _maxFree (uint256): 1

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000011c37937e08000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 00000000000000000000000000000000000000000000000000000000000008ae
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [7] : 44334c5553494f4e4150455941434854434c5542000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [9] : 44334c5553494f4e415045594300000000000000000000000000000000000000


Deployed Bytecode Sourcemap

54674:3767:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19029:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19931:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26422:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25855:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15682:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30061:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57572:173;;;;;;;;;;;;;:::i;:::-;;32982:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54792:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54897:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56945:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56681:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21324:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57061:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16866:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53818:103;;;;;;;;;;;;;:::i;:::-;;53170:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56473:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20107:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54838:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54731:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55740:585;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26980:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33773:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57329:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58014:424;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57150:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54758:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27371:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54076:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54866:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19029:639;19114:4;19453:10;19438:25;;:11;:25;;;;:102;;;;19530:10;19515:25;;:11;:25;;;;19438:102;:179;;;;19607:10;19592:25;;:11;:25;;;;19438:179;19418:199;;19029:639;;;:::o;19931:100::-;19985:13;20018:5;20011:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19931:100;:::o;26422:218::-;26498:7;26523:16;26531:7;26523;:16::i;:::-;26518:64;;26548:34;;;;;;;;;;;;;;26518:64;26602:15;:24;26618:7;26602:24;;;;;;;;;;;:30;;;;;;;;;;;;26595:37;;26422:218;;;:::o;25855:408::-;25944:13;25960:16;25968:7;25960;:16::i;:::-;25944:32;;26016:5;25993:28;;:19;:17;:19::i;:::-;:28;;;25989:175;;26041:44;26058:5;26065:19;:17;:19::i;:::-;26041:16;:44::i;:::-;26036:128;;26113:35;;;;;;;;;;;;;;26036:128;25989:175;26209:2;26176:15;:24;26192:7;26176:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26247:7;26243:2;26227:28;;26236:5;26227:28;;;;;;;;;;;;25933:330;25855:408;;:::o;15682:323::-;15743:7;15971:15;:13;:15::i;:::-;15956:12;;15940:13;;:28;:46;15933:53;;15682:323;:::o;30061:2825::-;30203:27;30233;30252:7;30233:18;:27::i;:::-;30203:57;;30318:4;30277:45;;30293:19;30277:45;;;30273:86;;30331:28;;;;;;;;;;;;;;30273:86;30373:27;30402:23;30429:35;30456:7;30429:26;:35::i;:::-;30372:92;;;;30564:68;30589:15;30606:4;30612:19;:17;:19::i;:::-;30564:24;:68::i;:::-;30559:180;;30652:43;30669:4;30675:19;:17;:19::i;:::-;30652:16;:43::i;:::-;30647:92;;30704:35;;;;;;;;;;;;;;30647:92;30559:180;30770:1;30756:16;;:2;:16;;;30752:52;;;30781:23;;;;;;;;;;;;;;30752:52;30817:43;30839:4;30845:2;30849:7;30858:1;30817:21;:43::i;:::-;30953:15;30950:160;;;31093:1;31072:19;31065:30;30950:160;31490:18;:24;31509:4;31490:24;;;;;;;;;;;;;;;;31488:26;;;;;;;;;;;;31559:18;:22;31578:2;31559:22;;;;;;;;;;;;;;;;31557:24;;;;;;;;;;;31881:146;31918:2;31967:45;31982:4;31988:2;31992:19;31967:14;:45::i;:::-;12081:8;31939:73;31881:18;:146::i;:::-;31852:17;:26;31870:7;31852:26;;;;;;;;;;;:175;;;;32198:1;12081:8;32147:19;:47;:52;32143:627;;;32220:19;32252:1;32242:7;:11;32220:33;;32409:1;32375:17;:30;32393:11;32375:30;;;;;;;;;;;;:35;32371:384;;;32513:13;;32498:11;:28;32494:242;;32693:19;32660:17;:30;32678:11;32660:30;;;;;;;;;;;:52;;;;32494:242;32371:384;32201:569;32143:627;32817:7;32813:2;32798:27;;32807:4;32798:27;;;;;;;;;;;;32836:42;32857:4;32863:2;32867:7;32876:1;32836:20;:42::i;:::-;30192:2694;;;30061:2825;;;:::o;57572:173::-;53056:13;:11;:13::i;:::-;57623:12:::1;57641:10;:15;;57664:21;57641:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57622:68;;;57709:7;57701:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;57611:134;57572:173::o:0;32982:193::-;33128:39;33145:4;33151:2;33155:7;33128:39;;;;;;;;;;;;:16;:39::i;:::-;32982:193;;;:::o;54792:39::-;;;:::o;54897:22::-;;;;:::o;56945:108::-;53056:13;:11;:13::i;:::-;57034:11:::1;;57024:7;:21;;;;;;;:::i;:::-;;56945:108:::0;;:::o;56681:256::-;53056:13;:11;:13::i;:::-;56786:16:::1;56770:12;;:32;;56762:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;56858:16;56843:12;:31;;;;56892:37;56912:16;56892:37;;;;;;:::i;:::-;;;;;;;;56681:256:::0;:::o;21324:152::-;21396:7;21439:27;21458:7;21439:18;:27::i;:::-;21416:52;;21324:152;;;:::o;57061:81::-;53056:13;:11;:13::i;:::-;57128:6:::1;57121:4;;:13;;;;;;;;;;;;;;;;;;57061:81:::0;:::o;16866:233::-;16938:7;16979:1;16962:19;;:5;:19;;;16958:60;;;16990:28;;;;;;;;;;;;;;16958:60;11025:13;17036:18;:25;17055:5;17036:25;;;;;;;;;;;;;;;;:55;17029:62;;16866:233;;;:::o;53818:103::-;53056:13;:11;:13::i;:::-;53883:30:::1;53910:1;53883:18;:30::i;:::-;53818:103::o:0;53170:87::-;53216:7;53243:6;;;;;;;;;;;53236:13;;53170:87;:::o;56473:200::-;53056:13;:11;:13::i;:::-;56557:9:::1;56548:5;;:18;;56540:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;56615:9;56607:5;:17;;;;56642:23;56655:9;56642:23;;;;;;:::i;:::-;;;;;;;;56473:200:::0;:::o;20107:104::-;20163:13;20196:7;20189:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20107:104;:::o;54838:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54731:20::-;;;;:::o;55740:585::-;55832:9;55507:4;;;;;;;;;;;55499:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;55579:12;;55566:9;:25;;55558:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;55653:1;55640:9;:14;;55632:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;55859:21:::1;55895:5;;55883:9;:17;;;;:::i;:::-;55859:41;;55911:18;55932:25;55946:10;55932:13;:25::i;:::-;55911:46;;55988:1;55974:10;:15;55970:158;;;56035:7;;56022:9;:20;;:94;;56108:7;;56100:5;;:15;;;;:::i;:::-;56083:13;:33;;;;:::i;:::-;56022:94;;;56062:1;56022:94;56006:110;;55970:158;56159:13;56146:9;:26;;56138:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;56243:14;56230:9;56213:14;:12;:14::i;:::-;:26;;;;:::i;:::-;:44;56209:109;;56274:32;56284:10;56296:9;56274;:32::i;:::-;56209:109;55848:477;;55740:585:::0;;:::o;26980:234::-;27127:8;27075:18;:39;27094:19;:17;:19::i;:::-;27075:39;;;;;;;;;;;;;;;:49;27115:8;27075:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27187:8;27151:55;;27166:19;:17;:19::i;:::-;27151:55;;;27197:8;27151:55;;;;;;:::i;:::-;;;;;;;;26980:234;;:::o;33773:407::-;33948:31;33961:4;33967:2;33971:7;33948:12;:31::i;:::-;34012:1;33994:2;:14;;;:19;33990:183;;34033:56;34064:4;34070:2;34074:7;34083:5;34033:30;:56::i;:::-;34028:145;;34117:40;;;;;;;;;;;;;;34028:145;33990:183;33773:407;;;;:::o;57329:235::-;53056:13;:11;:13::i;:::-;57453:14:::1;57440:9;57423:14;:12;:14::i;:::-;:26;;;;:::i;:::-;:44;;57401:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;57524:32;57534:10;57546:9;57524;:32::i;:::-;57329:235:::0;:::o;58014:424::-;58132:13;58168:16;58176:7;58168;:16::i;:::-;58163:59;;58193:29;;;;;;;;;;;;;;58163:59;58235:21;58259:10;:8;:10::i;:::-;58235:34;;58325:1;58306:7;58300:21;:26;;:130;;;;;;;;;;;;;;;;;58370:7;58379:18;58389:7;58379:9;:18::i;:::-;58353:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58300:130;58280:150;;;58014:424;;;:::o;57150:171::-;53056:13;:11;:13::i;:::-;57240:11:::1;57229:7;;:22;;57221:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;57302:11;57292:7;:21;;;;57150:171:::0;:::o;54758:27::-;;;;:::o;27371:164::-;27468:4;27492:18;:25;27511:5;27492:25;;;;;;;;;;;;;;;:35;27518:8;27492:35;;;;;;;;;;;;;;;;;;;;;;;;;27485:42;;27371:164;;;;:::o;54076:201::-;53056:13;:11;:13::i;:::-;54185:1:::1;54165:22;;:8;:22;;;;54157:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54241:28;54260:8;54241:18;:28::i;:::-;54076:201:::0;:::o;54866:24::-;;;;;;;;;;;;;:::o;27793:282::-;27858:4;27914:7;27895:15;:13;:15::i;:::-;:26;;:66;;;;;27948:13;;27938:7;:23;27895:66;:153;;;;;28047:1;11801:8;27999:17;:26;28017:7;27999:26;;;;;;;;;;;;:44;:49;27895:153;27875:173;;27793:282;;;:::o;50101:105::-;50161:7;50188:10;50181:17;;50101:105;:::o;57856:93::-;57913:7;57940:1;57933:8;;57856:93;:::o;22479:1275::-;22546:7;22566:12;22581:7;22566:22;;22649:4;22630:15;:13;:15::i;:::-;:23;22626:1061;;22683:13;;22676:4;:20;22672:1015;;;22721:14;22738:17;:23;22756:4;22738:23;;;;;;;;;;;;22721:40;;22855:1;11801:8;22827:6;:24;:29;22823:845;;;23492:113;23509:1;23499:6;:11;23492:113;;;23552:17;:25;23570:6;;;;;;;23552:25;;;;;;;;;;;;23543:34;;23492:113;;;23638:6;23631:13;;;;;;22823:845;22698:989;22672:1015;22626:1061;23715:31;;;;;;;;;;;;;;22479:1275;;;;:::o;28956:485::-;29058:27;29087:23;29128:38;29169:15;:24;29185:7;29169:24;;;;;;;;;;;29128:65;;29346:18;29323:41;;29403:19;29397:26;29378:45;;29308:126;28956:485;;;:::o;28184:659::-;28333:11;28498:16;28491:5;28487:28;28478:37;;28658:16;28647:9;28643:32;28630:45;;28808:15;28797:9;28794:30;28786:5;28775:9;28772:20;28769:56;28759:66;;28184:659;;;;;:::o;34842:159::-;;;;;:::o;49410:311::-;49545:7;49565:16;12205:3;49591:19;:41;;49565:68;;12205:3;49659:31;49670:4;49676:2;49680:9;49659:10;:31::i;:::-;49651:40;;:62;;49644:69;;;49410:311;;;;;:::o;24302:450::-;24382:14;24550:16;24543:5;24539:28;24530:37;;24727:5;24713:11;24688:23;24684:41;24681:52;24674:5;24671:63;24661:73;;24302:450;;;;:::o;35666:158::-;;;;;:::o;53335:132::-;53410:12;:10;:12::i;:::-;53399:23;;:7;:5;:7::i;:::-;:23;;;53391:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53335:132::o;54437:191::-;54511:16;54530:6;;;;;;;;;;;54511:25;;54556:8;54547:6;;:17;;;;;;;;;;;;;;;;;;54611:8;54580:40;;54601:8;54580:40;;;;;;;;;;;;54500:128;54437:191;:::o;17181:178::-;17242:7;11025:13;11163:2;17270:18;:25;17289:5;17270:25;;;;;;;;;;;;;;;;:50;;17269:82;17262:89;;17181:178;;;:::o;16103:296::-;16158:7;16365:15;:13;:15::i;:::-;16349:13;;:31;16342:38;;16103:296;:::o;43933:112::-;44010:27;44020:2;44024:8;44010:27;;;;;;;;;;;;:9;:27::i;:::-;43933:112;;:::o;36264:716::-;36427:4;36473:2;36448:45;;;36494:19;:17;:19::i;:::-;36515:4;36521:7;36530:5;36448:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36444:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36748:1;36731:6;:13;:18;36727:235;;;36777:40;;;;;;;;;;;;;;36727:235;36920:6;36914:13;36905:6;36901:2;36897:15;36890:38;36444:529;36617:54;;;36607:64;;;:6;:64;;;;36600:71;;;36264:716;;;;;;:::o;56351:100::-;56403:13;56436:7;56429:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56351:100;:::o;50308:1745::-;50373:17;50807:4;50800;50794:11;50790:22;50899:1;50893:4;50886:15;50974:4;50971:1;50967:12;50960:19;;51056:1;51051:3;51044:14;51160:3;51399:5;51381:428;51407:1;51381:428;;;51447:1;51442:3;51438:11;51431:18;;51618:2;51612:4;51608:13;51604:2;51600:22;51595:3;51587:36;51712:2;51706:4;51702:13;51694:21;;51779:4;51769:25;;51787:5;;51769:25;51381:428;;;51385:21;51848:3;51843;51839:13;51963:4;51958:3;51954:14;51947:21;;52028:6;52023:3;52016:19;50412:1634;;;50308:1745;;;:::o;49111:147::-;49248:6;49111:147;;;;;:::o;604:98::-;657:7;684:10;677:17;;604:98;:::o;43160:689::-;43291:19;43297:2;43301:8;43291:5;:19::i;:::-;43370:1;43352:2;:14;;;:19;43348:483;;43392:11;43406:13;;43392:27;;43438:13;43460:8;43454:3;:14;43438:30;;43487:233;43518:62;43557:1;43561:2;43565:7;;;;;;43574:5;43518:30;:62::i;:::-;43513:167;;43616:40;;;;;;;;;;;;;;43513:167;43715:3;43707:5;:11;43487:233;;43802:3;43785:13;;:20;43781:34;;43807:8;;;43781:34;43373:458;;43348:483;43160:689;;;:::o;37442:2966::-;37515:20;37538:13;;37515:36;;37578:1;37566:8;:13;37562:44;;;37588:18;;;;;;;;;;;;;;37562:44;37619:61;37649:1;37653:2;37657:12;37671:8;37619:21;:61::i;:::-;38163:1;11163:2;38133:1;:26;;38132:32;38120:8;:45;38094:18;:22;38113:2;38094:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38442:139;38479:2;38533:33;38556:1;38560:2;38564:1;38533:14;:33::i;:::-;38500:30;38521:8;38500:20;:30::i;:::-;:66;38442:18;:139::i;:::-;38408:17;:31;38426:12;38408:31;;;;;;;;;;;:173;;;;38598:16;38629:11;38658:8;38643:12;:23;38629:37;;39179:16;39175:2;39171:25;39159:37;;39551:12;39511:8;39470:1;39408:25;39349:1;39288;39261:335;39922:1;39908:12;39904:20;39862:346;39963:3;39954:7;39951:16;39862:346;;40181:7;40171:8;40168:1;40141:25;40138:1;40135;40130:59;40016:1;40007:7;40003:15;39992:26;;39862:346;;;39866:77;40253:1;40241:8;:13;40237:45;;;40263:19;;;;;;;;;;;;;;40237:45;40315:3;40299:13;:19;;;;37868:2462;;40340:60;40369:1;40373:2;40377:12;40391:8;40340:20;:60::i;:::-;37504:2904;37442:2966;;:::o;24854:324::-;24924:14;25157:1;25147:8;25144:15;25118:24;25114:46;25104:56;;24854:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:116::-;7462:21;7477:5;7462:21;:::i;:::-;7455:5;7452:32;7442:60;;7498:1;7495;7488:12;7442:60;7392:116;:::o;7514:133::-;7557:5;7595:6;7582:20;7573:29;;7611:30;7635:5;7611:30;:::i;:::-;7514:133;;;;:::o;7653:323::-;7709:6;7758:2;7746:9;7737:7;7733:23;7729:32;7726:119;;;7764:79;;:::i;:::-;7726:119;7884:1;7909:50;7951:7;7942:6;7931:9;7927:22;7909:50;:::i;:::-;7899:60;;7855:114;7653:323;;;;:::o;7982:329::-;8041:6;8090:2;8078:9;8069:7;8065:23;8061:32;8058:119;;;8096:79;;:::i;:::-;8058:119;8216:1;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8187:117;7982:329;;;;:::o;8317:468::-;8382:6;8390;8439:2;8427:9;8418:7;8414:23;8410:32;8407:119;;;8445:79;;:::i;:::-;8407:119;8565:1;8590:53;8635:7;8626:6;8615:9;8611:22;8590:53;:::i;:::-;8580:63;;8536:117;8692:2;8718:50;8760:7;8751:6;8740:9;8736:22;8718:50;:::i;:::-;8708:60;;8663:115;8317:468;;;;;:::o;8791:117::-;8900:1;8897;8890:12;8914:180;8962:77;8959:1;8952:88;9059:4;9056:1;9049:15;9083:4;9080:1;9073:15;9100:281;9183:27;9205:4;9183:27;:::i;:::-;9175:6;9171:40;9313:6;9301:10;9298:22;9277:18;9265:10;9262:34;9259:62;9256:88;;;9324:18;;:::i;:::-;9256:88;9364:10;9360:2;9353:22;9143:238;9100:281;;:::o;9387:129::-;9421:6;9448:20;;:::i;:::-;9438:30;;9477:33;9505:4;9497:6;9477:33;:::i;:::-;9387:129;;;:::o;9522:307::-;9583:4;9673:18;9665:6;9662:30;9659:56;;;9695:18;;:::i;:::-;9659:56;9733:29;9755:6;9733:29;:::i;:::-;9725:37;;9817:4;9811;9807:15;9799:23;;9522:307;;;:::o;9835:154::-;9919:6;9914:3;9909;9896:30;9981:1;9972:6;9967:3;9963:16;9956:27;9835:154;;;:::o;9995:410::-;10072:5;10097:65;10113:48;10154:6;10113:48;:::i;:::-;10097:65;:::i;:::-;10088:74;;10185:6;10178:5;10171:21;10223:4;10216:5;10212:16;10261:3;10252:6;10247:3;10243:16;10240:25;10237:112;;;10268:79;;:::i;:::-;10237:112;10358:41;10392:6;10387:3;10382;10358:41;:::i;:::-;10078:327;9995:410;;;;;:::o;10424:338::-;10479:5;10528:3;10521:4;10513:6;10509:17;10505:27;10495:122;;10536:79;;:::i;:::-;10495:122;10653:6;10640:20;10678:78;10752:3;10744:6;10737:4;10729:6;10725:17;10678:78;:::i;:::-;10669:87;;10485:277;10424:338;;;;:::o;10768:943::-;10863:6;10871;10879;10887;10936:3;10924:9;10915:7;10911:23;10907:33;10904:120;;;10943:79;;:::i;:::-;10904:120;11063:1;11088:53;11133:7;11124:6;11113:9;11109:22;11088:53;:::i;:::-;11078:63;;11034:117;11190:2;11216:53;11261:7;11252:6;11241:9;11237:22;11216:53;:::i;:::-;11206:63;;11161:118;11318:2;11344:53;11389:7;11380:6;11369:9;11365:22;11344:53;:::i;:::-;11334:63;;11289:118;11474:2;11463:9;11459:18;11446:32;11505:18;11497:6;11494:30;11491:117;;;11527:79;;:::i;:::-;11491:117;11632:62;11686:7;11677:6;11666:9;11662:22;11632:62;:::i;:::-;11622:72;;11417:287;10768:943;;;;;;;:::o;11717:474::-;11785:6;11793;11842:2;11830:9;11821:7;11817:23;11813:32;11810:119;;;11848:79;;:::i;:::-;11810:119;11968:1;11993:53;12038:7;12029:6;12018:9;12014:22;11993:53;:::i;:::-;11983:63;;11939:117;12095:2;12121:53;12166:7;12157:6;12146:9;12142:22;12121:53;:::i;:::-;12111:63;;12066:118;11717:474;;;;;:::o;12197:180::-;12245:77;12242:1;12235:88;12342:4;12339:1;12332:15;12366:4;12363:1;12356:15;12383:320;12427:6;12464:1;12458:4;12454:12;12444:22;;12511:1;12505:4;12501:12;12532:18;12522:81;;12588:4;12580:6;12576:17;12566:27;;12522:81;12650:2;12642:6;12639:14;12619:18;12616:38;12613:84;;;12669:18;;:::i;:::-;12613:84;12434:269;12383:320;;;:::o;12709:147::-;12810:11;12847:3;12832:18;;12709:147;;;;:::o;12862:114::-;;:::o;12982:398::-;13141:3;13162:83;13243:1;13238:3;13162:83;:::i;:::-;13155:90;;13254:93;13343:3;13254:93;:::i;:::-;13372:1;13367:3;13363:11;13356:18;;12982:398;;;:::o;13386:379::-;13570:3;13592:147;13735:3;13592:147;:::i;:::-;13585:154;;13756:3;13749:10;;13386:379;;;:::o;13771:166::-;13911:18;13907:1;13899:6;13895:14;13888:42;13771:166;:::o;13943:366::-;14085:3;14106:67;14170:2;14165:3;14106:67;:::i;:::-;14099:74;;14182:93;14271:3;14182:93;:::i;:::-;14300:2;14295:3;14291:12;14284:19;;13943:366;;;:::o;14315:419::-;14481:4;14519:2;14508:9;14504:18;14496:26;;14568:9;14562:4;14558:20;14554:1;14543:9;14539:17;14532:47;14596:131;14722:4;14596:131;:::i;:::-;14588:139;;14315:419;;;:::o;14740:175::-;14880:27;14876:1;14868:6;14864:14;14857:51;14740:175;:::o;14921:366::-;15063:3;15084:67;15148:2;15143:3;15084:67;:::i;:::-;15077:74;;15160:93;15249:3;15160:93;:::i;:::-;15278:2;15273:3;15269:12;15262:19;;14921:366;;;:::o;15293:419::-;15459:4;15497:2;15486:9;15482:18;15474:26;;15546:9;15540:4;15536:20;15532:1;15521:9;15517:17;15510:47;15574:131;15700:4;15574:131;:::i;:::-;15566:139;;15293:419;;;:::o;15718:177::-;15858:29;15854:1;15846:6;15842:14;15835:53;15718:177;:::o;15901:366::-;16043:3;16064:67;16128:2;16123:3;16064:67;:::i;:::-;16057:74;;16140:93;16229:3;16140:93;:::i;:::-;16258:2;16253:3;16249:12;16242:19;;15901:366;;;:::o;16273:419::-;16439:4;16477:2;16466:9;16462:18;16454:26;;16526:9;16520:4;16516:20;16512:1;16501:9;16497:17;16490:47;16554:131;16680:4;16554:131;:::i;:::-;16546:139;;16273:419;;;:::o;16698:171::-;16838:23;16834:1;16826:6;16822:14;16815:47;16698:171;:::o;16875:366::-;17017:3;17038:67;17102:2;17097:3;17038:67;:::i;:::-;17031:74;;17114:93;17203:3;17114:93;:::i;:::-;17232:2;17227:3;17223:12;17216:19;;16875:366;;;:::o;17247:419::-;17413:4;17451:2;17440:9;17436:18;17428:26;;17500:9;17494:4;17490:20;17486:1;17475:9;17471:17;17464:47;17528:131;17654:4;17528:131;:::i;:::-;17520:139;;17247:419;;;:::o;17672:176::-;17812:28;17808:1;17800:6;17796:14;17789:52;17672:176;:::o;17854:366::-;17996:3;18017:67;18081:2;18076:3;18017:67;:::i;:::-;18010:74;;18093:93;18182:3;18093:93;:::i;:::-;18211:2;18206:3;18202:12;18195:19;;17854:366;;;:::o;18226:419::-;18392:4;18430:2;18419:9;18415:18;18407:26;;18479:9;18473:4;18469:20;18465:1;18454:9;18450:17;18443:47;18507:131;18633:4;18507:131;:::i;:::-;18499:139;;18226:419;;;:::o;18651:180::-;18699:77;18696:1;18689:88;18796:4;18793:1;18786:15;18820:4;18817:1;18810:15;18837:348;18877:7;18900:20;18918:1;18900:20;:::i;:::-;18895:25;;18934:20;18952:1;18934:20;:::i;:::-;18929:25;;19122:1;19054:66;19050:74;19047:1;19044:81;19039:1;19032:9;19025:17;19021:105;19018:131;;;19129:18;;:::i;:::-;19018:131;19177:1;19174;19170:9;19159:20;;18837:348;;;;:::o;19191:191::-;19231:4;19251:20;19269:1;19251:20;:::i;:::-;19246:25;;19285:20;19303:1;19285:20;:::i;:::-;19280:25;;19324:1;19321;19318:8;19315:34;;;19329:18;;:::i;:::-;19315:34;19374:1;19371;19367:9;19359:17;;19191:191;;;;:::o;19388:171::-;19528:23;19524:1;19516:6;19512:14;19505:47;19388:171;:::o;19565:366::-;19707:3;19728:67;19792:2;19787:3;19728:67;:::i;:::-;19721:74;;19804:93;19893:3;19804:93;:::i;:::-;19922:2;19917:3;19913:12;19906:19;;19565:366;;;:::o;19937:419::-;20103:4;20141:2;20130:9;20126:18;20118:26;;20190:9;20184:4;20180:20;20176:1;20165:9;20161:17;20154:47;20218:131;20344:4;20218:131;:::i;:::-;20210:139;;19937:419;;;:::o;20362:305::-;20402:3;20421:20;20439:1;20421:20;:::i;:::-;20416:25;;20455:20;20473:1;20455:20;:::i;:::-;20450:25;;20609:1;20541:66;20537:74;20534:1;20531:81;20528:107;;;20615:18;;:::i;:::-;20528:107;20659:1;20656;20652:9;20645:16;;20362:305;;;;:::o;20673:168::-;20813:20;20809:1;20801:6;20797:14;20790:44;20673:168;:::o;20847:366::-;20989:3;21010:67;21074:2;21069:3;21010:67;:::i;:::-;21003:74;;21086:93;21175:3;21086:93;:::i;:::-;21204:2;21199:3;21195:12;21188:19;;20847:366;;;:::o;21219:419::-;21385:4;21423:2;21412:9;21408:18;21400:26;;21472:9;21466:4;21462:20;21458:1;21447:9;21443:17;21436:47;21500:131;21626:4;21500:131;:::i;:::-;21492:139;;21219:419;;;:::o;21644:148::-;21746:11;21783:3;21768:18;;21644:148;;;;:::o;21798:377::-;21904:3;21932:39;21965:5;21932:39;:::i;:::-;21987:89;22069:6;22064:3;21987:89;:::i;:::-;21980:96;;22085:52;22130:6;22125:3;22118:4;22111:5;22107:16;22085:52;:::i;:::-;22162:6;22157:3;22153:16;22146:23;;21908:267;21798:377;;;;:::o;22181:155::-;22321:7;22317:1;22309:6;22305:14;22298:31;22181:155;:::o;22342:400::-;22502:3;22523:84;22605:1;22600:3;22523:84;:::i;:::-;22516:91;;22616:93;22705:3;22616:93;:::i;:::-;22734:1;22729:3;22725:11;22718:18;;22342:400;;;:::o;22748:701::-;23029:3;23051:95;23142:3;23133:6;23051:95;:::i;:::-;23044:102;;23163:95;23254:3;23245:6;23163:95;:::i;:::-;23156:102;;23275:148;23419:3;23275:148;:::i;:::-;23268:155;;23440:3;23433:10;;22748:701;;;;;:::o;23455:225::-;23595:34;23591:1;23583:6;23579:14;23572:58;23664:8;23659:2;23651:6;23647:15;23640:33;23455:225;:::o;23686:366::-;23828:3;23849:67;23913:2;23908:3;23849:67;:::i;:::-;23842:74;;23925:93;24014:3;23925:93;:::i;:::-;24043:2;24038:3;24034:12;24027:19;;23686:366;;;:::o;24058:419::-;24224:4;24262:2;24251:9;24247:18;24239:26;;24311:9;24305:4;24301:20;24297:1;24286:9;24282:17;24275:47;24339:131;24465:4;24339:131;:::i;:::-;24331:139;;24058:419;;;:::o;24483:182::-;24623:34;24619:1;24611:6;24607:14;24600:58;24483:182;:::o;24671:366::-;24813:3;24834:67;24898:2;24893:3;24834:67;:::i;:::-;24827:74;;24910:93;24999:3;24910:93;:::i;:::-;25028:2;25023:3;25019:12;25012:19;;24671:366;;;:::o;25043:419::-;25209:4;25247:2;25236:9;25232:18;25224:26;;25296:9;25290:4;25286:20;25282:1;25271:9;25267:17;25260:47;25324:131;25450:4;25324:131;:::i;:::-;25316:139;;25043:419;;;:::o;25468:98::-;25519:6;25553:5;25547:12;25537:22;;25468:98;;;:::o;25572:168::-;25655:11;25689:6;25684:3;25677:19;25729:4;25724:3;25720:14;25705:29;;25572:168;;;;:::o;25746:360::-;25832:3;25860:38;25892:5;25860:38;:::i;:::-;25914:70;25977:6;25972:3;25914:70;:::i;:::-;25907:77;;25993:52;26038:6;26033:3;26026:4;26019:5;26015:16;25993:52;:::i;:::-;26070:29;26092:6;26070:29;:::i;:::-;26065:3;26061:39;26054:46;;25836:270;25746:360;;;;:::o;26112:640::-;26307:4;26345:3;26334:9;26330:19;26322:27;;26359:71;26427:1;26416:9;26412:17;26403:6;26359:71;:::i;:::-;26440:72;26508:2;26497:9;26493:18;26484:6;26440:72;:::i;:::-;26522;26590:2;26579:9;26575:18;26566:6;26522:72;:::i;:::-;26641:9;26635:4;26631:20;26626:2;26615:9;26611:18;26604:48;26669:76;26740:4;26731:6;26669:76;:::i;:::-;26661:84;;26112:640;;;;;;;:::o;26758:141::-;26814:5;26845:6;26839:13;26830:22;;26861:32;26887:5;26861:32;:::i;:::-;26758:141;;;;:::o;26905:349::-;26974:6;27023:2;27011:9;27002:7;26998:23;26994:32;26991:119;;;27029:79;;:::i;:::-;26991:119;27149:1;27174:63;27229:7;27220:6;27209:9;27205:22;27174:63;:::i;:::-;27164:73;;27120:127;26905:349;;;;:::o

Swarm Source

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